@charset "UTF-8";
/* ==========================================================================
   #Folder Strucure
   ========================================================================== */
/*
|– settings/                                           # General Settings
|   |– _palette.scss                                     # Colour palette variables
|   |– _vars.scss                                        # Variables
|
|– tools/                                              # Functions & Mixins
|   |– _functions.scss                                   # Functions
|   |– _mixins.scss                                      # Mixins
|   |– _extends.scss                                     # General Classes to extend
|
|– generic/                                              # Sass from other projects
|   |– _normalize.scss                                   # Grid system
|
|– base/                                               # Sass from other projects
|   |– _typography.scss                                  # Font Styles
|   |– _headings.scss                                    # Headings h1,h2,h3,h4,h5 Styles
|   |– _buttons.scss                                     # Buttons Styles
|   |– _checkboxes.scss                                  # Checkboxes Styles
|   |– _file-input.scss                                  # File Input Styles
|   |– _labels.scss                                      # Labels Styles
|   |– _input-fields.scss                                # Input Fields/Input Forms Styles
|   |– _radio-buttons.scss                               # Ratio Buttons Styles
|   |– _range.scss                                       # Range Selector/Slider Styles
|   |– _table.scss                                       # Range Selector/Slider Styles
|   |– _select.scss                                      # Checkboxes Styles
|   |– _switches.scss                                    # Switches/Toggles Styles
    |– _dropdown.scss                                    # Dropdown Styles
    |– _google-recaptcha.scss                            # Google Recaptcha V2 Styles

|
|– layout/                                             # General layout Styles
|   |– _grid.scss                                        # Grid system
|   |– _header.scss                                      # Header/Top Navigation Bar
|   |– _sidebar.scss                                     # Sidebar Navigations
|   |– _jargon-dictionary.scss                           # Jargon Dictionary
|
|– modules/                                            # List of Modules that can be reusable
|   |- _cards.scss                                       #
|   |- _chat.scss                                        # Chat Module where consists on left right and full width bubles chat style
|   |- _chat-input.scss                                  #
|   |- _chips.scss                                       #
|   |- _collections.scss                                 # Collections
|   |- _modal.scss                                       # Confirm Dialog Modal
|   |- _pagination.scss                                  #
|   |- _preloader.scss                                   # Preloader
|   |- _progress-bar.scss                                #
|   |- _search-bar.scss                                  # Search Bar (generally apperas in collections List)
|   |- _slider.scss                                      #
|   |- _tabs.scss                                        # Tabs Buttons & Tabs Containers
|   |- _toast.scss                                       #
|   |- _toolti.scss                                      #
|   |- _waves.scss                                       #
|   |- _resources-filter-bar.scss                        # Resources Filter Bar
|   |- _rte.scss                                         # RTE
|
|– pages/                                              # Specific Pages Styles
|   |– _landing-page.scss                                # Home
|   |– _global.scss                                       # Login
|   |- _contact-form.scss                                 # Contact Form
|   |- _site-map.scss                                     # Site Map
|
|– theme/                                              # Specific styles to add into Database and be costumizable by the user
|   |– _base-theme.scss

**** WARNING ****
==========================================================================
WHEN CHANGING FILE NAMES PLEASE CHANGE IN THIS COMMENTS !!                */
/* ==========================================================================
   A collection of functions for color adjustments
   Usage: adjust-lightness(#000, 20%) { }
   ========================================================================== */
/* ==========================================================================
   A collection of function for advanced type checking
   Usage: @if is-number(14px) { }
   ========================================================================== */
/* ==========================================================================

   Usage:
   ========================================================================== */
/* ==========================================================================
   Responsive Font sizes
   Usage: get-button-size(xs);
   ========================================================================== */
/*  ==========================================================================
    MIXINS FOR THE LAZY PEOPLE & TO MAXIMIZE COMPATIBILITY
    ==========================================================================
    selection;                                          # Change color of selection
    opacity(0.8)                                        # Change opacity
    box-sizing(border-box)                              # The box-sizing property is used to tell the browser what the
                                                          sizing properties (width and height)
                                                          (http://www.w3schools.com/cssref/css3_pr_box-sizing.asp)
    user-select(none)                                   # Controls the actual Selection operation, represents the range of
                                                          text selected by the user or the current position of the caret.
    no-select()                                         # Doesnt allow select.
    line-height(2)                                      # Add lineheight rem and ox
    position(absolute, $top: 10px, $left: 10px);        # Set position on absolute, top, bottom, left, right
    size(2,3)                                           # width and height of an object
    filter: contrast(200%)                              # Provides graphical effects like blurring, sharpening, or color
                                                          shifting an element. Filters are commonly used to adjust the
                                                          rendering of images, backgrounds, and borders.
                                                          (https://developer.mozilla.org/en/docs/Web/CSS/filter)
    hyphens                                             # Tells the browser how to hyphenate words when line-wrapping.
                                                          You can prevent hyphenation entirely, control when the browser
                                                          should hyphenate, or let the browser control when to hyphenate.
    font-face('gotham', '/fonts/gotham')                # It allows control of the source of the font…font face, being a URL
    better-font                                         # Better Font Rendering
    ligature                                            # Enable Ligatures
    font-size(12)                                       # Enable px and its rem for fontsize
    border-radius(2)                                    # Set the 4 corners of border radius
    border-radius-separate(2,3,2,4)                     # Set the individual corners of border radius
    box-shadow(10px 10px 5px #888888)                   # The box-shadow property attaches one or more shadows to an element.
    text-shadow( 2px 2px #ff0000;)                      # The text-shadow property adds shadow to text.
    keyframes(animationName) { [content] }              # For best browser support, you should always define both the 0%
                                                          and the 100% selectors.
    animation('slide-down 5s 3')                        # Animation type
    linear-gradient(-90deg, red, yellow)                # linear-gradient(direction, color-stop1, color-stop2, ...);
    radial-gradient(red 5%, yellow 15%, green 60%)      # radial-gradient(shape size at position, start-color, ..., last-color);
    gradient-horizontal(...)                            # linear-gradient
    gradient-vertical(...)                              # linear-gradient
    gradient-directional(...)                           # linear-gradient
    gradient-horizontal-three-colors(...)               # linear-gradient
    gradient-vertical-three-colors(...)                 # linear-radial
    gradient-radial(...)                                # linear-gradient
    gradient-striped(...)                               # linear-gradient
    repeating-radial-gradient(...)                      # repeating-radial-gradient
    transform()                                         # This property allows you to rotate, scale, move, skew, etc., elements.
    rotate()                                            # Rotate an element in degrees
    scale()                                             #
    skew()                                              #
    translate()                                         #
    transform-origin()                                  #
    ha / translate3d()                                  #
    center-both()                                       # Center object in absolute position with parent as relative
    center-x()                                          # Same but only horizontally
    center-y()                                          # Same but only vertically
    position()                                          #
    transition()                                        #

    // FLEX BOX

    flexy                                               # Multi select flex options
    flexbox                                             # Flexbox compatibility
    inline-flex                                         # Same
    flex-direction / flex-dir                           # Same
    flex-wrap                                           # Same
    flex-flow                                           # Same
    flex-order / order                                  # Same
    flex-grow                                           # Same
    flex-shrink                                         # Same
    flex-basis                                          # Same
    flex                                                # Same
    justify-content                                     # Same
    flex-just                                           # Same
    align-items                                         # Same
    align-self                                          # Same
    align-content                                       # Same

    column-count                                        #
    clearfix                                            #

    //SHADOWS

    customShadow                                        #
    focus-shadow                                        #
    shadow-2dp                                          #
    shadow-3dp                                          #
    shadow-4dp                                          #
    shadow-6dp                                          #
    shadow-8dp                                          #
    shadow-16dp                                         #
    shadow-24dp                                         #

    trucane                                             #
*/
/* ==========================================================================
   # Breakpoint Mixin
   ========================================================================== */
/* ==========================================================================
   # Browsers Support
     Usage: @include prefixProperty(user-select, none);
   ========================================================================== */
/* ==========================================================================
   # Selection
     Change color of selection
     Usage: @include selection(red);
   ========================================================================== */
/* ==========================================================================
   # Opacity
     Usage: @include opacity(0.8);
   ========================================================================== */
/* ==========================================================================
   # Opacity
     Usage:
      *,
      *:after,
      *:before {
        @include box-sizing(border-box);
      }
   ========================================================================== */
/* ==========================================================================
   # user-select
     Usage: @include user-select(none);
   ========================================================================== */
/* ==========================================================================
   # no-select
     Usage: @include no-select();
   ========================================================================== */
/* ==========================================================================
   # Line Height.
     Usage: @include line-height(12);
   ========================================================================== */
/* ==========================================================================
   # Shorthandizes position declarations.
   Usage:
   @example scss - Usage
     .foo {
       @include position(absolute, $top: 10px, $left: 10px);
     }
   ========================================================================== */
/* ==========================================================================
   # Sizing helper.
   Usage:
   foo {
      @include size(350px);
   }
   ========================================================================== */
/* ==========================================================================
   # Browsers Support
     https://dvcs.w3.org/hg/FXTF/raw-file/tip/filters/index.html
     Usage:
     grayscale      ex: filter: grayscale(100%);
     sepia          ex: filter: sepia(100%);
     saturate       ex: filter: saturate(0%);
     hue-rotate     ex: filter: hue-rotate(45deg);
     invert         ex: filter: invert(100%);
     brightness     ex: filter: brightness(15%);
     contrast       ex: filter: contrast(200%);
     blur           ex: filter: blur(2px);
   ========================================================================== */
/* ==========================================================================
   # Transform Style
     Usage:
   ========================================================================== */
/* ==========================================================================
   # Transform Style
     Usage:
   ========================================================================== */
/* ==========================================================================
   # Place Holder for input text areas...
     Usage:
   ========================================================================== */
/* ==========================================================================
   # Hyphens
     Usage:
   ========================================================================== */
/* ==========================================================================
   # Typography
     Usage:
     font-face('gotham', '/fonts/gotham');            # Import font files
     better-font                                      # Better Font Rendering
     ligature                                         # Enable Ligatures
     font-size(16px)                                  # convert font size px to rem
   ========================================================================== */
/* ==========================================================================
   # Border Radius
     Usage:
     border-radius(3)
     border-radius-separate(2px, 6px, 8px, 4px)
   ========================================================================== */
/* ==========================================================================
   # Box Shadow
     Usage: @include box-shadow(...)
   ========================================================================== */
/* ==========================================================================
   # Text Shadow
     Usage: @include text-shadow(...)
   ========================================================================== */
/* ==========================================================================
  # Keyframes animation
    Usage:

  @include keyframes(slide-down) {
      0% { opacity: 1; }
      90% { opacity: 0; }
  }

  .element {
      width: 100px;
      height: 100px;
      background: black;
      @include animation('slide-down 5s 3');
  }
   ========================================================================== */
/* ==========================================================================
   # Material Animations
     Usage:
     @include material-animation-default();

   ========================================================================== */
/* ==========================================================================
   # Gradients
     Usage:
     @include linear-gradient(...)
     @include radial-gradient(...)

   ========================================================================== */
/* ==========================================================================
   # Transforms
     Usage:
     @include transform(...)                 # generic transform
     @include rotate(...)                    #
     @include scale(...)
     @include translate(...)
     @include skew(...)
     @include transform-origin(...)
   ========================================================================== */
/* ==========================================================================
   # Forces browsers to use hardware acceleration for transforms
     Usage:
     @include ha;
   ========================================================================== */
/* ==========================================================================
   # Center block elements
     Horizontally and vertically centers block elements
     Usage:
     @include center-both();
   ========================================================================== */
/* ==========================================================================
   # Transition
     Usage:
        a {
			color: gray;
		    @include transition(color .3s ease);
		}
   ========================================================================== */
/* ==========================================================================
   # Easing http://cubic-bezier.com/
     Usage:
     @include transition(top 500ms $easeInOutCubic);             # Cubic
     @include transition(top 500ms $easeInOut);                  # Circ
     @include transition(top 500ms $easeInOutExpo);              # Expo
     @include transition(top 500ms $easeInOutQuad);              # Quad
     @include transition(top 500ms $easeInOutQuart);             # Quart
     @include transition(top 500ms $easeInOutQuint);             # Quint
     @include transition(top 500ms $easeInOutSine);              # Sine
     @include transition(top 500ms $easeInOutBack);              # Back
     @include transition(top 500ms $easeInOutFast);              # Ease tFast
     @include transition(top 500ms $authenticMotion);            # Authentic Motion
   ========================================================================== */
/* ==========================================================================
   #
   ========================================================================== */
/* ==========================================================================
   # Flexbox Containers
     info:
      	 The "flex" value causes an element to generate a block-level flex
		 container box.
		 The "inline-flex" value causes an element to generate a inline-level
		 flex container box.
	 usage:
	 @extend %flexbox
	 @extend %inline-flex
   ========================================================================== */
/* ==========================================================================
   # Flexbox Containers
     info:
      	 The 'flex' value causes an element to generate a block-level flex
		 container box.
		 The 'inline-flex' value causes an element to generate a inline-level
		 flex container box.
	 usage:
	 @extend %flexbox
	 @extend %inline-flex
   ========================================================================== */
/* ==========================================================================
   # Flexbox Direction
     info:
      	 The 'flex-direction' property specifies how flex items are placed in
		 the flex container, by setting the direction of the flex container's
		 main axis. This determines the direction that flex items are laid out in.
	 usage:
	 @include flex-direction(row|row-reverse|column|column-reverse|initial|inherit)
	 @include flex-dir(row|row-reverse|column|column-reverse|initial|inherit)           # Shorter version
   ========================================================================== */
/* ==========================================================================
   # Flexbox Wrap
     info:
		 The 'flex-wrap' property controls whether the flex container is single-line
		 or multi-line, and the direction of the cross-axis, which determines
		 the direction new lines are stacked in.
	 usage:
	 @include flex-wrap(nowrap | wrap | wrap-reverse)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Flow
     info:
		 The 'flex-flow' property is a shorthand for setting the 'flex-direction'
		 and 'flex-wrap' properties, which together define the flex container's
		 main and cross axes.
	 usage:
	 @include flex-flow(flex-direction | flex-wrap)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Order
     info:
		  The 'order' property controls the order in which flex items appear within
 		  their flex container, by assigning them to ordinal groups.
	 usage:
	 @include flex-order(1)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Grow
     info:
		 The 'flex-grow' property sets the flex grow factor. Negative numbers
		 are invalid.
	 usage:
	 @include flex-grow(1)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Shrink
	  info:
		 The 'flex-shrink' property sets the flex shrink factor. Negative numbers
		 are invalid.
	 usage:
	 @include flex-shrink(1)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Basis
     info:
		 The 'flex-basis' property sets the flex basis. Negative lengths are invalid.
	 usage:
	 @include flex-basis(auto)
   ========================================================================== */
/* ==========================================================================
   # Flexbox "Flex" (shorthand)
     info:
		 The 'flex' property specifies the modules of a flexible length: the
		 flex grow factor and flex shrink factor, and the flex basis. When an
		 element is a flex item, 'flex' is consulted instead of the main size
		 property to determine the main size of the element. If an element is
		 not a flex item, 'flex' has no effect.
	 usage:
	 @include flex( none | flex-grow | flex-shrink | flex-basis)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Justify Content
     info:
		 The 'justify-content' property aligns flex items along the main axis
		 of the current line of the flex container. This is done after any flexible
		 lengths and any auto margins have been resolved. Typically it helps distribute
		 extra free space leftover when either all the flex items on a line are
		 inflexible, or are flexible but have reached their maximum size. It also
		 exerts some control over the alignment of items when they overflow the line.

		 Note: 'space-*' values not supported in older syntaxes.

	 usage:
	 @include justify-content(flex-start | flex-end | center | space-between | space-around)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Align Items
     info:
		 Flex items can be aligned in the cross axis of the current line of the
		 flex container, similar to 'justify-content' but in the perpendicular
		 direction. 'align-items' sets the default alignment for all of the flex
		 container's items, including anonymous flex items. 'align-self' allows
		 this default alignment to be overridden for individual flex items. (For
		 anonymous flex items, 'align-self' always matches the value of 'align-items'
		 on their associated flex container.)

	 usage:
	 @include align-items(flex-start | flex-end | center | baseline | stretch)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Align Self
     info:
		 Center the alignments for all the items of the flexible <div> element:
	 usage:
	 @include align-self(auto | flex-start | flex-end | center | baseline | stretch)
   ========================================================================== */
/* ==========================================================================
   # Flexbox Align Content
     info:
		 The 'align-content' property aligns a flex container's lines within the
		 flex container when there is extra space in the cross-axis, similar to
		 how 'justify-content' aligns individual items within the main-axis. Note,
		 this property has no effect when the flexbox has only a single line.
	 usage:
	 @include align-content(flex-start | flex-end | center | space-between | space-around | stretch)
   ========================================================================== */
/* ==========================================================================
   # Clearfix
    Divide the text in the <div> element into three columns:
	 usage:
	 @include column-count(auto);
   ========================================================================== */
/* ==========================================================================
   # Clearfix
	 usage:
	 @include clearfix
   ========================================================================== */
/* ==========================================================================
   # Material Design Custom Shadow
	 usage:
	 @include customShadow(1)
   ========================================================================== */
/* ==========================================================================
   # Material Shadow
	 usage:
	 @include focus-shadow()
   ========================================================================== */
/* ==========================================================================
   # Responsive Typography of Elements
	 usage:
	 @include responsiveH1();
   ========================================================================== */
/* ==========================================================================
   # Responsive Typography of Elements
	 usage:
	 @include responsiveH1();
   ========================================================================== */
/* ==========================================================================
   # Buttons
	 usage:
	 @include btn();
   ========================================================================== */
/* ==========================================================================
   # Grid
	 usage:
	 @include make-grid-columns();
   ========================================================================== */
/*
* @include triangle within a pseudo element and add positioning properties (ie. top, left)
* $direction: up, down, left, right
*/
@keyframes alertMe {
  from {
    border-width: 3px;
    border-color: gold; }
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1); } }

/* ==========================================================================
   # Trucane
	 usage:
	 @include trucane();
   ========================================================================== */
/* ==========================================================================
   # Material Colors
   ========================================================================== */
/* ==========================================================================
   FMO Variables
   ========================================================================== */
/*
 * Table of Contents:
 *
 *  1. Colors
 *  2. Media Queries
 *  3. Badges
 *  4. Buttons
 *  5. Cards
 *  6. Collapsible
 *  7. Chips
 *  8. Date Picker
 *  9. Dropdown
 *  10. Forms
 *  11. Global
 *  12. Grid
 *  13. Navigation Bar
 *  14. Side Navigation
 *  15. Photo Slider
 *  16. Spinners | Loaders
 *  17. Tabs
 *  18. Tables
 *  19. Toasts
 *  20. Fonts
 *  21. Typography
 *  22. Footer
 *  23. Flow Text
 *  24. Collections
 *  25. Progress Bar
 *  26. Animation
 *  27. Shadows
 *  28. Login Page
*/
/* 1. Colors
   ========================================================================== */
/* 2. Media Queries breakpoints
   ========================================================================== */
/* Fonts
   ========================================================================== */
/* Typography
   ========================================================================== */
/* Badges
   ========================================================================== */
/* Border Radius
   ========================================================================== */
/* Buttons
   ========================================================================== */
/* Cards
   ========================================================================== */
/* Hero Banner
   ========================================================================== */
/* Collapsible
   ========================================================================== */
/* Charts
   ========================================================================== */
/* Testimonials
   ========================================================================== */
/* Chips
   ========================================================================== */
/* Date Picker
   ========================================================================== */
/* Dropdown
   ========================================================================== */
/* Forms
   ========================================================================== */
/* Global
   ========================================================================== */
/* Grid
   ========================================================================== */
/* Navigation Bar
   ========================================================================== */
/* Side Navigation
   ========================================================================== */
/* Photo Slider
   ========================================================================== */
/* Spinners | Loaders
   ========================================================================== */
/* Tabs
   ========================================================================== */
/* Tables
   ========================================================================== */
/* Toasts
   ========================================================================== */
/* Footer
   ========================================================================== */
/* Icons
   ========================================================================== */
/* Flow Text
   ========================================================================== */
/* Collections
   ========================================================================== */
/* Progress Bar
   ========================================================================== */
/* Animation
   ========================================================================== */
/* Shadows
   ========================================================================== */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  /* font-family: 'Montserrat', sans-serif;*/
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("https://fmoutsource.com/fonts/glyphicons-halflings-regular.eot");
  src: url("https://fmoutsource.com/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("https://fmoutsource.com/fonts/glyphicons-halflings-regular.woff") format("woff"), url("https://fmoutsource.com/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("https://fmoutsource.com/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "\002a"; }

.glyphicon-plus:before {
  content: "\002b"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270f"; }

.glyphicon-glass:before {
  content: "\e001"; }

.glyphicon-music:before {
  content: "\e002"; }

.glyphicon-search:before {
  content: "\e003"; }

.glyphicon-heart:before {
  content: "\e005"; }

.glyphicon-star:before {
  content: "\e006"; }

.glyphicon-star-empty:before {
  content: "\e007"; }

.glyphicon-user:before {
  content: "\e008"; }

.glyphicon-film:before {
  content: "\e009"; }

.glyphicon-th-large:before {
  content: "\e010"; }

.glyphicon-th:before {
  content: "\e011"; }

.glyphicon-th-list:before {
  content: "\e012"; }

.glyphicon-ok:before {
  content: "\e013"; }

.glyphicon-remove:before {
  content: "\e014"; }

.glyphicon-zoom-in:before {
  content: "\e015"; }

.glyphicon-zoom-out:before {
  content: "\e016"; }

.glyphicon-off:before {
  content: "\e017"; }

.glyphicon-signal:before {
  content: "\e018"; }

.glyphicon-cog:before {
  content: "\e019"; }

.glyphicon-trash:before {
  content: "\e020"; }

.glyphicon-home:before {
  content: "\e021"; }

.glyphicon-file:before {
  content: "\e022"; }

.glyphicon-time:before {
  content: "\e023"; }

.glyphicon-road:before {
  content: "\e024"; }

.glyphicon-download-alt:before {
  content: "\e025"; }

.glyphicon-download:before {
  content: "\e026"; }

.glyphicon-upload:before {
  content: "\e027"; }

.glyphicon-inbox:before {
  content: "\e028"; }

.glyphicon-play-circle:before {
  content: "\e029"; }

.glyphicon-repeat:before {
  content: "\e030"; }

.glyphicon-refresh:before {
  content: "\e031"; }

.glyphicon-list-alt:before {
  content: "\e032"; }

.glyphicon-lock:before {
  content: "\e033"; }

.glyphicon-flag:before {
  content: "\e034"; }

.glyphicon-headphones:before {
  content: "\e035"; }

.glyphicon-volume-off:before {
  content: "\e036"; }

.glyphicon-volume-down:before {
  content: "\e037"; }

.glyphicon-volume-up:before {
  content: "\e038"; }

.glyphicon-qrcode:before {
  content: "\e039"; }

.glyphicon-barcode:before {
  content: "\e040"; }

.glyphicon-tag:before {
  content: "\e041"; }

.glyphicon-tags:before {
  content: "\e042"; }

.glyphicon-book:before {
  content: "\e043"; }

.glyphicon-bookmark:before {
  content: "\e044"; }

.glyphicon-print:before {
  content: "\e045"; }

.glyphicon-camera:before {
  content: "\e046"; }

.glyphicon-font:before {
  content: "\e047"; }

.glyphicon-bold:before {
  content: "\e048"; }

.glyphicon-italic:before {
  content: "\e049"; }

.glyphicon-text-height:before {
  content: "\e050"; }

.glyphicon-text-width:before {
  content: "\e051"; }

.glyphicon-align-left:before {
  content: "\e052"; }

.glyphicon-align-center:before {
  content: "\e053"; }

.glyphicon-align-right:before {
  content: "\e054"; }

.glyphicon-align-justify:before {
  content: "\e055"; }

.glyphicon-list:before {
  content: "\e056"; }

.glyphicon-indent-left:before {
  content: "\e057"; }

.glyphicon-indent-right:before {
  content: "\e058"; }

.glyphicon-facetime-video:before {
  content: "\e059"; }

.glyphicon-picture:before {
  content: "\e060"; }

.glyphicon-map-marker:before {
  content: "\e062"; }

.glyphicon-adjust:before {
  content: "\e063"; }

.glyphicon-tint:before {
  content: "\e064"; }

.glyphicon-edit:before {
  content: "\e065"; }

.glyphicon-share:before {
  content: "\e066"; }

.glyphicon-check:before {
  content: "\e067"; }

.glyphicon-move:before {
  content: "\e068"; }

.glyphicon-step-backward:before {
  content: "\e069"; }

.glyphicon-fast-backward:before {
  content: "\e070"; }

.glyphicon-backward:before {
  content: "\e071"; }

.glyphicon-play:before {
  content: "\e072"; }

.glyphicon-pause:before {
  content: "\e073"; }

.glyphicon-stop:before {
  content: "\e074"; }

.glyphicon-forward:before {
  content: "\e075"; }

.glyphicon-fast-forward:before {
  content: "\e076"; }

.glyphicon-step-forward:before {
  content: "\e077"; }

.glyphicon-eject:before {
  content: "\e078"; }

.glyphicon-chevron-left:before {
  content: "\e079"; }

.glyphicon-chevron-right:before {
  content: "\e080"; }

.glyphicon-plus-sign:before {
  content: "\e081"; }

.glyphicon-minus-sign:before {
  content: "\e082"; }

.glyphicon-remove-sign:before {
  content: "\e083"; }

.glyphicon-ok-sign:before {
  content: "\e084"; }

.glyphicon-question-sign:before {
  content: "\e085"; }

.glyphicon-info-sign:before {
  content: "\e086"; }

.glyphicon-screenshot:before {
  content: "\e087"; }

.glyphicon-remove-circle:before {
  content: "\e088"; }

.glyphicon-ok-circle:before {
  content: "\e089"; }

.glyphicon-ban-circle:before {
  content: "\e090"; }

.glyphicon-arrow-left:before {
  content: "\e091"; }

.glyphicon-arrow-right:before {
  content: "\e092"; }

.glyphicon-arrow-up:before {
  content: "\e093"; }

.glyphicon-arrow-down:before {
  content: "\e094"; }

.glyphicon-share-alt:before {
  content: "\e095"; }

.glyphicon-resize-full:before {
  content: "\e096"; }

.glyphicon-resize-small:before {
  content: "\e097"; }

.glyphicon-exclamation-sign:before {
  content: "\e101"; }

.glyphicon-gift:before {
  content: "\e102"; }

.glyphicon-leaf:before {
  content: "\e103"; }

.glyphicon-fire:before {
  content: "\e104"; }

.glyphicon-eye-open:before {
  content: "\e105"; }

.glyphicon-eye-close:before {
  content: "\e106"; }

.glyphicon-warning-sign:before {
  content: "\e107"; }

.glyphicon-plane:before {
  content: "\e108"; }

.glyphicon-calendar:before {
  content: "\e109"; }

.glyphicon-random:before {
  content: "\e110"; }

.glyphicon-comment:before {
  content: "\e111"; }

.glyphicon-magnet:before {
  content: "\e112"; }

.glyphicon-chevron-up:before {
  content: "\e113"; }

.glyphicon-chevron-down:before {
  content: "\e114"; }

.glyphicon-retweet:before {
  content: "\e115"; }

.glyphicon-shopping-cart:before {
  content: "\e116"; }

.glyphicon-folder-close:before {
  content: "\e117"; }

.glyphicon-folder-open:before {
  content: "\e118"; }

.glyphicon-resize-vertical:before {
  content: "\e119"; }

.glyphicon-resize-horizontal:before {
  content: "\e120"; }

.glyphicon-hdd:before {
  content: "\e121"; }

.glyphicon-bullhorn:before {
  content: "\e122"; }

.glyphicon-bell:before {
  content: "\e123"; }

.glyphicon-certificate:before {
  content: "\e124"; }

.glyphicon-thumbs-up:before {
  content: "\e125"; }

.glyphicon-thumbs-down:before {
  content: "\e126"; }

.glyphicon-hand-right:before {
  content: "\e127"; }

.glyphicon-hand-left:before {
  content: "\e128"; }

.glyphicon-hand-up:before {
  content: "\e129"; }

.glyphicon-hand-down:before {
  content: "\e130"; }

.glyphicon-circle-arrow-right:before {
  content: "\e131"; }

.glyphicon-circle-arrow-left:before {
  content: "\e132"; }

.glyphicon-circle-arrow-up:before {
  content: "\e133"; }

.glyphicon-circle-arrow-down:before {
  content: "\e134"; }

.glyphicon-globe:before {
  content: "\e135"; }

.glyphicon-wrench:before {
  content: "\e136"; }

.glyphicon-tasks:before {
  content: "\e137"; }

.glyphicon-filter:before {
  content: "\e138"; }

.glyphicon-briefcase:before {
  content: "\e139"; }

.glyphicon-fullscreen:before {
  content: "\e140"; }

.glyphicon-dashboard:before {
  content: "\e141"; }

.glyphicon-paperclip:before {
  content: "\e142"; }

.glyphicon-heart-empty:before {
  content: "\e143"; }

.glyphicon-link:before {
  content: "\e144"; }

.glyphicon-phone:before {
  content: "\e145"; }

.glyphicon-pushpin:before {
  content: "\e146"; }

.glyphicon-usd:before {
  content: "\e148"; }

.glyphicon-gbp:before {
  content: "\e149"; }

.glyphicon-sort:before {
  content: "\e150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

.glyphicon-sort-by-order:before {
  content: "\e153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

.glyphicon-sort-by-attributes:before {
  content: "\e155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

.glyphicon-unchecked:before {
  content: "\e157"; }

.glyphicon-expand:before {
  content: "\e158"; }

.glyphicon-collapse-down:before {
  content: "\e159"; }

.glyphicon-collapse-up:before {
  content: "\e160"; }

.glyphicon-log-in:before {
  content: "\e161"; }

.glyphicon-flash:before {
  content: "\e162"; }

.glyphicon-log-out:before {
  content: "\e163"; }

.glyphicon-new-window:before {
  content: "\e164"; }

.glyphicon-record:before {
  content: "\e165"; }

.glyphicon-save:before {
  content: "\e166"; }

.glyphicon-open:before {
  content: "\e167"; }

.glyphicon-saved:before {
  content: "\e168"; }

.glyphicon-import:before {
  content: "\e169"; }

.glyphicon-export:before {
  content: "\e170"; }

.glyphicon-send:before {
  content: "\e171"; }

.glyphicon-floppy-disk:before {
  content: "\e172"; }

.glyphicon-floppy-saved:before {
  content: "\e173"; }

.glyphicon-floppy-remove:before {
  content: "\e174"; }

.glyphicon-floppy-save:before {
  content: "\e175"; }

.glyphicon-floppy-open:before {
  content: "\e176"; }

.glyphicon-credit-card:before {
  content: "\e177"; }

.glyphicon-transfer:before {
  content: "\e178"; }

.glyphicon-cutlery:before {
  content: "\e179"; }

.glyphicon-header:before {
  content: "\e180"; }

.glyphicon-compressed:before {
  content: "\e181"; }

.glyphicon-earphone:before {
  content: "\e182"; }

.glyphicon-phone-alt:before {
  content: "\e183"; }

.glyphicon-tower:before {
  content: "\e184"; }

.glyphicon-stats:before {
  content: "\e185"; }

.glyphicon-sd-video:before {
  content: "\e186"; }

.glyphicon-hd-video:before {
  content: "\e187"; }

.glyphicon-subtitles:before {
  content: "\e188"; }

.glyphicon-sound-stereo:before {
  content: "\e189"; }

.glyphicon-sound-dolby:before {
  content: "\e190"; }

.glyphicon-sound-5-1:before {
  content: "\e191"; }

.glyphicon-sound-6-1:before {
  content: "\e192"; }

.glyphicon-sound-7-1:before {
  content: "\e193"; }

.glyphicon-copyright-mark:before {
  content: "\e194"; }

.glyphicon-registration-mark:before {
  content: "\e195"; }

.glyphicon-cloud-download:before {
  content: "\e197"; }

.glyphicon-cloud-upload:before {
  content: "\e198"; }

.glyphicon-tree-conifer:before {
  content: "\e199"; }

.glyphicon-tree-deciduous:before {
  content: "\e200"; }

.glyphicon-cd:before {
  content: "\e201"; }

.glyphicon-save-file:before {
  content: "\e202"; }

.glyphicon-open-file:before {
  content: "\e203"; }

.glyphicon-level-up:before {
  content: "\e204"; }

.glyphicon-copy:before {
  content: "\e205"; }

.glyphicon-paste:before {
  content: "\e206"; }

.glyphicon-alert:before {
  content: "\e209"; }

.glyphicon-equalizer:before {
  content: "\e210"; }

.glyphicon-king:before {
  content: "\e211"; }

.glyphicon-queen:before {
  content: "\e212"; }

.glyphicon-pawn:before {
  content: "\e213"; }

.glyphicon-bishop:before {
  content: "\e214"; }

.glyphicon-knight:before {
  content: "\e215"; }

.glyphicon-baby-formula:before {
  content: "\e216"; }

.glyphicon-tent:before {
  content: "\26fa"; }

.glyphicon-blackboard:before {
  content: "\e218"; }

.glyphicon-bed:before {
  content: "\e219"; }

.glyphicon-apple:before {
  content: "\f8ff"; }

.glyphicon-erase:before {
  content: "\e221"; }

.glyphicon-hourglass:before {
  content: "\231b"; }

.glyphicon-lamp:before {
  content: "\e223"; }

.glyphicon-duplicate:before {
  content: "\e224"; }

.glyphicon-piggy-bank:before {
  content: "\e225"; }

.glyphicon-scissors:before {
  content: "\e226"; }

.glyphicon-bitcoin:before {
  content: "\e227"; }

.glyphicon-btc:before {
  content: "\e227"; }

.glyphicon-xbt:before {
  content: "\e227"; }

.glyphicon-yen:before {
  content: "\00a5"; }

.glyphicon-jpy:before {
  content: "\00a5"; }

.glyphicon-ruble:before {
  content: "\20bd"; }

.glyphicon-rub:before {
  content: "\20bd"; }

.glyphicon-scale:before {
  content: "\e230"; }

.glyphicon-ice-lolly:before {
  content: "\e231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\e232"; }

.glyphicon-education:before {
  content: "\e233"; }

.glyphicon-option-horizontal:before {
  content: "\e234"; }

.glyphicon-option-vertical:before {
  content: "\e235"; }

.glyphicon-menu-hamburger:before {
  content: "\e236"; }

.glyphicon-modal-window:before {
  content: "\e237"; }

.glyphicon-oil:before {
  content: "\e238"; }

.glyphicon-grain:before {
  content: "\e239"; }

.glyphicon-sunglasses:before {
  content: "\e240"; }

.glyphicon-text-size:before {
  content: "\e241"; }

.glyphicon-text-color:before {
  content: "\e242"; }

.glyphicon-text-background:before {
  content: "\e243"; }

.glyphicon-object-align-top:before {
  content: "\e244"; }

.glyphicon-object-align-bottom:before {
  content: "\e245"; }

.glyphicon-object-align-horizontal:before {
  content: "\e246"; }

.glyphicon-object-align-left:before {
  content: "\e247"; }

.glyphicon-object-align-vertical:before {
  content: "\e248"; }

.glyphicon-object-align-right:before {
  content: "\e249"; }

.glyphicon-triangle-right:before {
  content: "\e250"; }

.glyphicon-triangle-left:before {
  content: "\e251"; }

.glyphicon-triangle-bottom:before {
  content: "\e252"; }

.glyphicon-triangle-top:before {
  content: "\e253"; }

.glyphicon-console:before {
  content: "\e254"; }

.glyphicon-superscript:before {
  content: "\e255"; }

.glyphicon-subscript:before {
  content: "\e256"; }

.glyphicon-menu-left:before {
  content: "\e257"; }

.glyphicon-menu-right:before {
  content: "\e258"; }

.glyphicon-menu-down:before {
  content: "\e259"; }

.glyphicon-menu-up:before {
  content: "\e260"; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial,'Roboto', sans-serif;
  font-size: 16.5px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #039be5;
  text-decoration: none; }
  a:hover, a:focus {
    color: #039be5;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 23px;
  margin-bottom: 23px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 23px;
  margin-bottom: 11.5px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 11.5px;
  margin-bottom: 11.5px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 42px; }

h2, .h2 {
  font-size: 35px; }

h3, .h3 {
  font-size: 29px; }

h4, .h4 {
  font-size: 21px; }

h5, .h5 {
  font-size: 16.5px; }

h6, .h6 {
  font-size: 15px; }

p {
  margin: 0 0 11.5px; }

.lead {
  margin-bottom: 23px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 24.75px; } }

small,
.small {
  font-size: 90%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

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

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

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

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

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

.text-uppercase, .initialism {
  text-transform: uppercase; }

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

.text-muted {
  color: #777777; }

.text-primary {
  color: #3f8bcd; }

a.text-primary:hover,
a.text-primary:focus {
  color: #3a8cd2; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #367c37; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #2c7294; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #906f35; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #b03e3b; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #3f8bcd; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #3a8cd2; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #def2d7; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #d8edf8; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #fcf8e3; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #f3dddd; }

.page-header {
  padding-bottom: 10.5px;
  margin: 46px 0 23px;
  border-bottom: 1px solid #eeeeee; }

ul { list-style: none; margin: 0; padding: 0;}
ul,
ol {
  margin-top: 0;
  margin-bottom: 11.5px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 23px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 11.5px 23px;
  margin: 0 0 23px;
  font-size: 20.625px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

address {
  margin-bottom: 23px;
  font-style: normal;
  line-height: 1.42857; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

pre {
  display: block;
  padding: 11px;
  margin: 0 0 11.5px;
  font-size: 15.5px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 23px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #f6f5f5; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #dff1d7; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #d9edf7; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #fcf8e3; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #f3dddd; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 17.25px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 23px;
  font-size: 24.75px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 16.5px;
  line-height: 1.42857;
  color: #555555; }

.form-control {
  display: block;
  width: 100%;
  height: 37px;
  padding: 6px 12px;
  font-size: 16.5px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder {
    color: #999; }
  .form-control::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled],
  fieldset[disabled] .form-control {
    cursor: not-allowed; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 37px; }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
  input[type="month"] {
    line-height: 34px; }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
  input[type="month"] {
    line-height: 50px; } }

.form-group, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .fmo-download-dialog__form-group, .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 23px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 39.5px; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 34px;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 34px;
  line-height: 34px; }

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-sm .form-control {
  height: 34px;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 34px;
  line-height: 34px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 34px;
  min-height: 38px;
  padding: 6px 10px;
  font-size: 15px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 50px;
  padding: 10px 16px;
  font-size: 21px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 50px;
  line-height: 50px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-lg .form-control {
  height: 50px;
  padding: 10px 16px;
  font-size: 21px;
  line-height: 1.33333;
  border-radius: 6px; }

.form-group-lg select.form-control {
  height: 50px;
  line-height: 50px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 50px;
  min-height: 44px;
  padding: 11px 16px;
  font-size: 21px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control {
    padding-right: 46.25px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 50px;
  height: 50px;
  line-height: 50px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 34px;
  height: 34px;
  line-height: 34px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus {
    border-color: #367c37;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #52a254;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #52a254; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus {
    border-color: #906f35;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #b48f50;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #b48f50; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus {
    border-color: #b03e3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c16361;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c16361; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 28px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #666666; }

@media (min-width: 768px) {
  .form-inline .form-group, .form-inline .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .form-inline .fmo-download-dialog__form-group, .form-inline .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 30px; }

.form-horizontal .form-group, .form-horizontal .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .form-horizontal .fmo-download-dialog__form-group, .form-horizontal .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .fmo-cpc-calculator__container__form__slider__slides__slide__form-group:before, .form-horizontal .fmo-download-dialog__form-group:before, .form-horizontal .fmo-macro-calculator__container__form__slider__slides__slide__form-group:before, .form-horizontal .form-group:after, .form-horizontal .fmo-cpc-calculator__container__form__slider__slides__slide__form-group:after, .form-horizontal .fmo-download-dialog__form-group:after, .form-horizontal .fmo-macro-calculator__container__form__slider__slides__slide__form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after, .form-horizontal .fmo-cpc-calculator__container__form__slider__slides__slide__form-group:after, .form-horizontal .fmo-download-dialog__form-group:after, .form-horizontal .fmo-macro-calculator__container__form__slider__slides__slide__form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 21px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 15px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16.5px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: white;
    border-color: #d9bfbf; }
  .btn-default:hover {
    color: #333;
    background-color: white;
    border-color: #d2c6c6; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: white;
    border-color: #d2c6c6; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #333;
      background-color: white;
      border-color: #d9bfbf; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #3f8bcd;
  border-color: #3c8bd0; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #3a8cd2;
    border-color: #308cdc; }
  .btn-primary:hover {
    color: #fff;
    background-color: #3a8cd2;
    border-color: #368cd6; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3a8cd2;
    border-color: #368cd6; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #368cd6;
      border-color: #308cdc; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #3f8bcd;
    border-color: #3c8bd0; }
  .btn-primary .badge {
    color: #3f8bcd;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #58bc58; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #55bf55;
    border-color: #48cc48; }
  .btn-success:hover {
    color: #fff;
    background-color: #55bf55;
    border-color: #50c450; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #55bf55;
    border-color: #50c450; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #50c450;
      border-color: #48cc48; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #58bc58; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #59c1e0; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #58c2e1;
    border-color: #52c5e7; }
  .btn-info:hover {
    color: #fff;
    background-color: #58c2e1;
    border-color: #56c3e3; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #58c2e1;
    border-color: #56c3e3; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #55c3e4;
      border-color: #52c5e7; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #59c1e0; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f1ad4d; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #f2ad4d;
    border-color: #f4ae4a; }
  .btn-warning:hover {
    color: #fff;
    background-color: #f2ad4d;
    border-color: #f2ad4c; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #f2ad4d;
    border-color: #f2ad4c; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #f3ad4b;
      border-color: #f4ae4a; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #f1ad4d; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #db514d; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #dd4f4b;
    border-color: #e44944; }
  .btn-danger:hover {
    color: #fff;
    background-color: #dd4f4b;
    border-color: #df4d49; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #dd4f4b;
    border-color: #df4d49; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #df4d49;
      border-color: #e44944; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #db514d; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #039be5;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #039be5;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 21px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16.5px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 10.5px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #363030;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #3f8bcd; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 15px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus {
      z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 16.5px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.input-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 3px; }
  .input-group-addon.input-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 21px;
    border-radius: 6px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn {
    position: relative; }
    .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
      z-index: 2; }
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #039be5; }
  .nav .nav-divider {
    height: 1px;
    margin: 10.5px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #3f8bcd; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 23px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse, .fmo-header__navbar__fixed .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse, .fmo-header__navbar__fixed .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse, .fmo-header__navbar__fixed .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top, .fmo-header__navbar__fixed,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top, .fmo-header__navbar__fixed,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top, .fmo-header__navbar__fixed {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 13.5px 15px;
  font-size: 21px;
  line-height: 23px;
  height: 50px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 6.75px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 23px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 23px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 13.5px;
          padding-bottom: 13.5px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 6.5px;
  margin-bottom: 6.5px; }
  @media (min-width: 768px) {
    .navbar-form .form-group, .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .navbar-form .fmo-download-dialog__form-group, .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control {
        width: auto; }
    .navbar-form .input-group > .form-control {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    .navbar-form .form-group, .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .navbar-form .fmo-download-dialog__form-group, .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child, .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group:last-child, .navbar-form .fmo-download-dialog__form-group:last-child, .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 6.5px;
  margin-bottom: 6.5px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 8px;
    margin-bottom: 8px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 13.5px;
  margin-bottom: 13.5px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #f8f8f8; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #836b6b;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #f8f8f8; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #f8f8f8; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #f8f8f8;
    color: #555; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #f8f8f8; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #251f1f; }
  .navbar-inverse .navbar-brand {
    color: #8b8b8b; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #8b8b8b; }
  .navbar-inverse .navbar-nav > li > a {
    color: #8b8b8b; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #251f1f; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #242020; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #251f1f;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #251f1f; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #251f1f; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #8b8b8b; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #251f1f; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: #8b8b8b; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #8b8b8b; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 23px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: "/ ";
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #777777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 23px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.42857;
      text-decoration: none;
      color: #039be5;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    z-index: 2;
    color: #039be5;
    background-color: #eeeeee;
    border-color: #ddd; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #3f8bcd;
    border-color: #3f8bcd;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 21px;
  line-height: 1.33333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 23px 0;
  list-style: none;
  text-align: center; }
  .pager:before, .pager:after {
    content: " ";
    display: table; }
  .pager:after {
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 15px; }
    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #777777;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #777777; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #836b6b; }

.label-primary {
  background-color: #3f8bcd; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #3a8cd2; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #55bf55; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #58c2e1; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #f2ad4d; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #dd4f4b; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge,
  .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #039be5;
    background-color: #fff; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #f0eded; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container .jumbotron,
      .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 75px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 23px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
  .thumbnail > img,
  .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .thumbnail .caption {
    padding: 9px;
    color: #333333; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #039be5; }

.alert {
  padding: 15px;
  margin-bottom: 23px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #e3f1d7;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #e3f1d7; }
  .alert-success .alert-link {
    color: #367c37; }

.alert-info {
  background-color: #d9edf7;
  border-color: #d8f2f8;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #d8f3f8; }
  .alert-info .alert-link {
    color: #2c7294; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #fcf4e3;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #fcf4e3; }
  .alert-warning .alert-link {
    color: #906f35; }

.alert-danger {
  background-color: #f2dede;
  border-color: #f3dde1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #f3dde0; }
  .alert-danger .alert-link {
    color: #b03e3b; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 23px;
  margin-bottom: 23px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 15px;
  line-height: 23px;
  color: #fff;
  text-align: center;
  background-color: #3f8bcd;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }
  .progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }
  .progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }
  .progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }
  .progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

a.list-group-item,
button.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus,
  button.list-group-item:hover,
  button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777777; }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #3f8bcd;
  border-color: #3f8bcd; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #8cbae1; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #dff1d7; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #31708f;
    background-color: #d9edf7; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #fcf8e3; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #f3dddd; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 23px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 23px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
  .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #3f8bcd; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #3f8bcd;
    border-color: #3f8bcd; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #3f8bcd; }
    .panel-primary > .panel-heading .badge {
      color: #3f8bcd;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #3f8bcd; }

.panel-success {
  border-color: #e3f1d7; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #e3f1d7; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #e3f1d7; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #e3f1d7; }

.panel-info {
  border-color: #d8f2f8; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #d8f2f8; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d8f2f8; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d8f2f8; }

.panel-warning {
  border-color: #fcf4e3; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #fcf4e3; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #fcf4e3; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #fcf4e3; }

.panel-danger {
  border-color: #f3dde1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #f3dde1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #f3dde1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #f3dde1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #f6f4f4;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 24.75px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 15px;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16.5px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16.5px;
  background-color: white;
  border-bottom: 1px solid white;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #d6c2c2;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #d6c2c2;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #d6c2c2;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #d6c2c2;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent; }
  .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent; }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs, .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
  display: none !important; }

.visible-sm, .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs, .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: block !important; }
  table.visible-xs, table.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: table !important; }
  tr.visible-xs, tr.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: table-row !important; }
  th.visible-xs, th.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger,
  td.visible-xs,
  td.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm, .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: block !important; }
  table.visible-sm, table.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: table !important; }
  tr.visible-sm, tr.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: table-row !important; }
  th.visible-sm, th.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger,
  td.visible-sm,
  td.fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/*

To get this list of colors inject jQuery at http://www.google.com/design/spec/style/color.html#color-color-palette

Then, run this script to get the list@mixin (function(){
  var colors = {}, main = {};
  $(".color-group")@mixin each(function(){
    var color = $(this).find(".name").text().trim().toLowerCase().replace(" ", "-");
    colors[color] = {};

    $(this)@mixin find(".color").not(".main-color").each(function(){
      var shade = $(this).find(".shade").text().trim(),
          hex   = $(this).find(".hex").text().trim();

      colors[color][shade] = hex;
    });
    main[color] = color + "-" + $(this).find(".main-color .shade").text().trim();

  });
  var LESS = "";
  $@mixin each(colors, function(name, shades){
    LESS += "\n\n";
    $@mixin each(shades, function(shade, hex){
      LESS += "$" + name + "-" + shade + ": " + hex + ";\n" !default;
    });
    if (main[name]) {
      LESS += "$" + name + ": " + main[name] + ";\n" !default;
    }
  });
  console.log(LESS);
})();
*/
/* ANIMATION */
/* SHADOWS */
/* Shadows (from mdl http://www.getmdl.io/) */
body {
  background-color: #fff; }
  body.inverse {
    background: #333; }
    body.inverse,
    body.inverse .form-control {
      color: rgba(255, 255, 255, 0.84); }
    body.inverse .modal,
    body.inverse .modal .form-control,
    body.inverse .panel-default,
    body.inverse .panel-default .form-control,
    body.inverse .card,
    body.inverse .card .form-control {
      background-color: initial;
      color: initial; }

body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300; }

h5,
h6 {
  font-weight: 400; }

a,
a:hover,
a:focus {
  color: #f7f6f7; }
  a .material-icons,
  a:hover .material-icons,
  a:focus .material-icons {
    vertical-align: middle; }

legend {
  border-bottom: 0; }

.dropdown-menu {
  border: 0;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); }
  .dropdown-menu .divider {
    background-color: rgba(0, 0, 0, 0.12); }
  .dropdown-menu li {
    overflow: hidden;
    position: relative; }
    .dropdown-menu li a:hover {
      background-color: transparent;
      color: #3f8bcd; }

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent; }
  *:focus {
    outline: 0; }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 0; }

.form-horizontal .radio {
  margin-bottom: 10px; }

.form-horizontal label {
  text-align: right; }

.form-horizontal label.control-label {
  margin: 0; }

body .container .well.well-sm,
body .container-fluid .well.well-sm {
  padding: 10px; }

body .container .well.well-lg,
body .container-fluid .well.well-lg {
  padding: 26px; }

body .container .well,
body .container .jumbotron,
body .container-fluid .well,
body .container-fluid .jumbotron {
  background-color: #fff;
  padding: 19px;
  margin-bottom: 20px;
  border: 0;
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  body .container .well p,
  body .container .jumbotron p,
  body .container-fluid .well p,
  body .container-fluid .jumbotron p {
    font-weight: 300; }
  body .container .well, body .container .well-default,
  body .container .jumbotron,
  body .container .jumbotron-default,
  body .container-fluid .well,
  body .container-fluid .well-default,
  body .container-fluid .jumbotron,
  body .container-fluid .jumbotron-default {
    background-color: #fff; }
  body .container .well-inverse,
  body .container .jumbotron-inverse,
  body .container-fluid .well-inverse,
  body .container-fluid .jumbotron-inverse {
    background-color: #3f51b5; }
  body .container .well-primary,
  body .container .jumbotron-primary,
  body .container-fluid .well-primary,
  body .container-fluid .jumbotron-primary {
    background-color: #3f8bcd; }
  body .container .well-success,
  body .container .jumbotron-success,
  body .container-fluid .well-success,
  body .container-fluid .jumbotron-success {
    background-color: #5cb85c; }
  body .container .well-info,
  body .container .jumbotron-info,
  body .container-fluid .well-info,
  body .container-fluid .jumbotron-info {
    background-color: #5bc0de; }
  body .container .well-warning,
  body .container .jumbotron-warning,
  body .container-fluid .well-warning,
  body .container-fluid .jumbotron-warning {
    background-color: #f0ad4e; }
  body .container .well-danger,
  body .container .jumbotron-danger,
  body .container-fluid .well-danger,
  body .container-fluid .jumbotron-danger {
    background-color: #d9534f; }

.btn,
.input-group-btn .btn {
  border: none;
  position: relative;
  padding: 8px 30px;
  margin: 10px 1px;
  will-change: box-shadow, transform;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0; }
  .btn::-moz-focus-inner,
  .input-group-btn .btn::-moz-focus-inner {
    border: 0; }
  .btn:not(.btn-raised),
  .input-group-btn .btn:not(.btn-raised) {
    -webkit-box-shadow: none;
    box-shadow: none; }
    .btn:not(.btn-raised), .btn:not(.btn-raised).btn-default,
    .input-group-btn .btn:not(.btn-raised),
    .input-group-btn .btn:not(.btn-raised).btn-default {
      color: rgba(0, 0, 0, 0.87); }
    .btn:not(.btn-raised).btn-inverse,
    .input-group-btn .btn:not(.btn-raised).btn-inverse {
      color: #3f51b5; }
    .btn:not(.btn-raised).btn-primary,
    .input-group-btn .btn:not(.btn-raised).btn-primary {
      color: #3f8bcd; }
    .btn:not(.btn-raised).btn-success,
    .input-group-btn .btn:not(.btn-raised).btn-success {
      color: #5cb85c; }
    .btn:not(.btn-raised).btn-info,
    .input-group-btn .btn:not(.btn-raised).btn-info {
      color: #5bc0de; }
    .btn:not(.btn-raised).btn-warning,
    .input-group-btn .btn:not(.btn-raised).btn-warning {
      color: #f0ad4e; }
    .btn:not(.btn-raised).btn-danger,
    .input-group-btn .btn:not(.btn-raised).btn-danger {
      color: #d9534f; }
    .btn:not(.btn-raised):not(.btn-link):hover, .btn:not(.btn-raised):not(.btn-link):focus,
    .input-group-btn .btn:not(.btn-raised):not(.btn-link):hover,
    .input-group-btn .btn:not(.btn-raised):not(.btn-link):focus {
      background-color: rgba(153, 153, 153, 0.2); }
      .theme-dark .btn:not(.btn-raised):not(.btn-link):hover, .theme-dark .btn:not(.btn-raised):not(.btn-link):focus, .theme-dark
      .input-group-btn .btn:not(.btn-raised):not(.btn-link):hover, .theme-dark
      .input-group-btn .btn:not(.btn-raised):not(.btn-link):focus {
        background-color: rgba(204, 204, 204, 0.15); }
  .btn.btn-raised, .btn.btn-raised.btn-default, .btn.btn-fab, .btn.btn-fab.btn-default,
  .btn-group-raised .btn,
  .btn-group-raised .btn.btn-default,
  .input-group-btn .btn.btn-raised,
  .input-group-btn .btn.btn-raised.btn-default,
  .input-group-btn .btn.btn-fab,
  .input-group-btn .btn.btn-fab.btn-default,
  .btn-group-raised
  .input-group-btn .btn,
  .btn-group-raised
  .input-group-btn .btn.btn-default {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87); }
  .btn.btn-raised.btn-inverse, .btn.btn-fab.btn-inverse,
  .btn-group-raised .btn.btn-inverse,
  .input-group-btn .btn.btn-raised.btn-inverse,
  .input-group-btn .btn.btn-fab.btn-inverse,
  .btn-group-raised
  .input-group-btn .btn.btn-inverse {
    background-color: #3f51b5;
    color: #fff; }
  .btn.btn-raised.btn-primary, .btn.btn-fab.btn-primary,
  .btn-group-raised .btn.btn-primary,
  .input-group-btn .btn.btn-raised.btn-primary,
  .input-group-btn .btn.btn-fab.btn-primary,
  .btn-group-raised
  .input-group-btn .btn.btn-primary {
    background-color: #3f8bcd;
    color: rgba(255, 255, 255, 0.84); }
  .btn.btn-raised.btn-success, .btn.btn-fab.btn-success,
  .btn-group-raised .btn.btn-success,
  .input-group-btn .btn.btn-raised.btn-success,
  .input-group-btn .btn.btn-fab.btn-success,
  .btn-group-raised
  .input-group-btn .btn.btn-success {
    background-color: #5cb85c;
    color: rgba(255, 255, 255, 0.84); }
  .btn.btn-raised.btn-info, .btn.btn-fab.btn-info,
  .btn-group-raised .btn.btn-info,
  .input-group-btn .btn.btn-raised.btn-info,
  .input-group-btn .btn.btn-fab.btn-info,
  .btn-group-raised
  .input-group-btn .btn.btn-info {
    background-color: #5bc0de;
    color: rgba(255, 255, 255, 0.84); }
  .btn.btn-raised.btn-warning, .btn.btn-fab.btn-warning,
  .btn-group-raised .btn.btn-warning,
  .input-group-btn .btn.btn-raised.btn-warning,
  .input-group-btn .btn.btn-fab.btn-warning,
  .btn-group-raised
  .input-group-btn .btn.btn-warning {
    background-color: #f0ad4e;
    color: rgba(255, 255, 255, 0.84); }
  .btn.btn-raised.btn-danger, .btn.btn-fab.btn-danger,
  .btn-group-raised .btn.btn-danger,
  .input-group-btn .btn.btn-raised.btn-danger,
  .input-group-btn .btn.btn-fab.btn-danger,
  .btn-group-raised
  .input-group-btn .btn.btn-danger {
    background-color: #d9534f;
    color: rgba(255, 255, 255, 0.84); }
  .btn.btn-raised:not(.btn-link),
  .btn-group-raised .btn:not(.btn-link),
  .input-group-btn .btn.btn-raised:not(.btn-link),
  .btn-group-raised
  .input-group-btn .btn:not(.btn-link) {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
    .btn.btn-raised:not(.btn-link):hover, .btn.btn-raised:not(.btn-link):focus, .btn.btn-raised:not(.btn-link).active, .btn.btn-raised:not(.btn-link):active,
    .btn-group-raised .btn:not(.btn-link):hover,
    .btn-group-raised .btn:not(.btn-link):focus,
    .btn-group-raised .btn:not(.btn-link).active,
    .btn-group-raised .btn:not(.btn-link):active,
    .input-group-btn .btn.btn-raised:not(.btn-link):hover,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus,
    .input-group-btn .btn.btn-raised:not(.btn-link).active,
    .input-group-btn .btn.btn-raised:not(.btn-link):active,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):hover,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link).active,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):active {
      outline: 0; }
      .btn.btn-raised:not(.btn-link):hover, .btn.btn-raised:not(.btn-link):hover.btn-default, .btn.btn-raised:not(.btn-link):focus, .btn.btn-raised:not(.btn-link):focus.btn-default, .btn.btn-raised:not(.btn-link).active, .btn.btn-raised:not(.btn-link).active.btn-default, .btn.btn-raised:not(.btn-link):active, .btn.btn-raised:not(.btn-link):active.btn-default,
      .btn-group-raised .btn:not(.btn-link):hover,
      .btn-group-raised .btn:not(.btn-link):hover.btn-default,
      .btn-group-raised .btn:not(.btn-link):focus,
      .btn-group-raised .btn:not(.btn-link):focus.btn-default,
      .btn-group-raised .btn:not(.btn-link).active,
      .btn-group-raised .btn:not(.btn-link).active.btn-default,
      .btn-group-raised .btn:not(.btn-link):active,
      .btn-group-raised .btn:not(.btn-link):active.btn-default,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-default,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-default,
      .input-group-btn .btn.btn-raised:not(.btn-link).active,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-default,
      .input-group-btn .btn.btn-raised:not(.btn-link):active,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-default,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-default,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-default,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-default,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-default {
        background-color: white; }
      .btn.btn-raised:not(.btn-link):hover.btn-inverse, .btn.btn-raised:not(.btn-link):focus.btn-inverse, .btn.btn-raised:not(.btn-link).active.btn-inverse, .btn.btn-raised:not(.btn-link):active.btn-inverse,
      .btn-group-raised .btn:not(.btn-link):hover.btn-inverse,
      .btn-group-raised .btn:not(.btn-link):focus.btn-inverse,
      .btn-group-raised .btn:not(.btn-link).active.btn-inverse,
      .btn-group-raised .btn:not(.btn-link):active.btn-inverse,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-inverse,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-inverse,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-inverse,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-inverse,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-inverse,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-inverse,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-inverse,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-inverse {
        background-color: #4255bd; }
      .btn.btn-raised:not(.btn-link):hover.btn-primary, .btn.btn-raised:not(.btn-link):focus.btn-primary, .btn.btn-raised:not(.btn-link).active.btn-primary, .btn.btn-raised:not(.btn-link):active.btn-primary,
      .btn-group-raised .btn:not(.btn-link):hover.btn-primary,
      .btn-group-raised .btn:not(.btn-link):focus.btn-primary,
      .btn-group-raised .btn:not(.btn-link).active.btn-primary,
      .btn-group-raised .btn:not(.btn-link):active.btn-primary,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-primary,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-primary,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-primary,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-primary,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-primary,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-primary,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-primary,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-primary {
        background-color: #4690cf; }
      .btn.btn-raised:not(.btn-link):hover.btn-success, .btn.btn-raised:not(.btn-link):focus.btn-success, .btn.btn-raised:not(.btn-link).active.btn-success, .btn.btn-raised:not(.btn-link):active.btn-success,
      .btn-group-raised .btn:not(.btn-link):hover.btn-success,
      .btn-group-raised .btn:not(.btn-link):focus.btn-success,
      .btn-group-raised .btn:not(.btn-link).active.btn-success,
      .btn-group-raised .btn:not(.btn-link):active.btn-success,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-success,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-success,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-success,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-success,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-success,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-success,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-success,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-success {
        background-color: #63bb63; }
      .btn.btn-raised:not(.btn-link):hover.btn-info, .btn.btn-raised:not(.btn-link):focus.btn-info, .btn.btn-raised:not(.btn-link).active.btn-info, .btn.btn-raised:not(.btn-link):active.btn-info,
      .btn-group-raised .btn:not(.btn-link):hover.btn-info,
      .btn-group-raised .btn:not(.btn-link):focus.btn-info,
      .btn-group-raised .btn:not(.btn-link).active.btn-info,
      .btn-group-raised .btn:not(.btn-link):active.btn-info,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-info,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-info,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-info,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-info,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-info,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-info,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-info,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-info {
        background-color: #62c3df; }
      .btn.btn-raised:not(.btn-link):hover.btn-warning, .btn.btn-raised:not(.btn-link):focus.btn-warning, .btn.btn-raised:not(.btn-link).active.btn-warning, .btn.btn-raised:not(.btn-link):active.btn-warning,
      .btn-group-raised .btn:not(.btn-link):hover.btn-warning,
      .btn-group-raised .btn:not(.btn-link):focus.btn-warning,
      .btn-group-raised .btn:not(.btn-link).active.btn-warning,
      .btn-group-raised .btn:not(.btn-link):active.btn-warning,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-warning,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-warning,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-warning,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-warning,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-warning,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-warning,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-warning,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-warning {
        background-color: #f1b055; }
      .btn.btn-raised:not(.btn-link):hover.btn-danger, .btn.btn-raised:not(.btn-link):focus.btn-danger, .btn.btn-raised:not(.btn-link).active.btn-danger, .btn.btn-raised:not(.btn-link):active.btn-danger,
      .btn-group-raised .btn:not(.btn-link):hover.btn-danger,
      .btn-group-raised .btn:not(.btn-link):focus.btn-danger,
      .btn-group-raised .btn:not(.btn-link).active.btn-danger,
      .btn-group-raised .btn:not(.btn-link):active.btn-danger,
      .input-group-btn .btn.btn-raised:not(.btn-link):hover.btn-danger,
      .input-group-btn .btn.btn-raised:not(.btn-link):focus.btn-danger,
      .input-group-btn .btn.btn-raised:not(.btn-link).active.btn-danger,
      .input-group-btn .btn.btn-raised:not(.btn-link):active.btn-danger,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):hover.btn-danger,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):focus.btn-danger,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link).active.btn-danger,
      .btn-group-raised
      .input-group-btn .btn:not(.btn-link):active.btn-danger {
        background-color: #db5a56; }
    .btn.btn-raised:not(.btn-link).active, .btn.btn-raised:not(.btn-link).active:hover, .btn.btn-raised:not(.btn-link):active, .btn.btn-raised:not(.btn-link):active:hover,
    .btn-group-raised .btn:not(.btn-link).active,
    .btn-group-raised .btn:not(.btn-link).active:hover,
    .btn-group-raised .btn:not(.btn-link):active,
    .btn-group-raised .btn:not(.btn-link):active:hover,
    .input-group-btn .btn.btn-raised:not(.btn-link).active,
    .input-group-btn .btn.btn-raised:not(.btn-link).active:hover,
    .input-group-btn .btn.btn-raised:not(.btn-link):active,
    .input-group-btn .btn.btn-raised:not(.btn-link):active:hover,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link).active,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link).active:hover,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):active,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):active:hover {
      -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
      box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
    .btn.btn-raised:not(.btn-link):focus, .btn.btn-raised:not(.btn-link):focus:hover, .btn.btn-raised:not(.btn-link):focus.active, .btn.btn-raised:not(.btn-link):focus.active:hover, .btn.btn-raised:not(.btn-link):focus:active, .btn.btn-raised:not(.btn-link):focus:active:hover,
    .btn-group-raised .btn:not(.btn-link):focus,
    .btn-group-raised .btn:not(.btn-link):focus:hover,
    .btn-group-raised .btn:not(.btn-link):focus.active,
    .btn-group-raised .btn:not(.btn-link):focus.active:hover,
    .btn-group-raised .btn:not(.btn-link):focus:active,
    .btn-group-raised .btn:not(.btn-link):focus:active:hover,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus:hover,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus.active,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus.active:hover,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus:active,
    .input-group-btn .btn.btn-raised:not(.btn-link):focus:active:hover,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus:hover,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus.active,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus.active:hover,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus:active,
    .btn-group-raised
    .input-group-btn .btn:not(.btn-link):focus:active:hover {
      -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36); }
  .btn.btn-fab,
  .input-group-btn .btn.btn-fab {
    font-size: 24px;
    height: 56px;
    margin: auto;
    min-width: 56px;
    width: 56px;
    padding: 0;
    overflow: hidden;
    position: relative;
    line-height: normal;
    -webkit-border-radius: 50%px;
    -khtml-border-radius: 50%px;
    -moz-border-radius: 50%px;
    -ms-border-radius: 50%px;
    -o-border-radius: 50%px;
    border-radius: 50%px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24); }
    .btn.btn-fab .ripple-container,
    .input-group-btn .btn.btn-fab .ripple-container {
      -webkit-border-radius: 50%px;
      -khtml-border-radius: 50%px;
      -moz-border-radius: 50%px;
      -ms-border-radius: 50%px;
      -o-border-radius: 50%px;
      border-radius: 50%px;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
    .btn.btn-fab.btn-fab-mini,
    .btn-group-sm .btn.btn-fab,
    .input-group-btn .btn.btn-fab.btn-fab-mini,
    .btn-group-sm
    .input-group-btn .btn.btn-fab {
      height: 40px;
      min-width: 40px;
      width: 40px; }
      .btn.btn-fab.btn-fab-mini.material-icons,
      .btn-group-sm .btn.btn-fab.material-icons,
      .input-group-btn .btn.btn-fab.btn-fab-mini.material-icons,
      .btn-group-sm
      .input-group-btn .btn.btn-fab.material-icons {
        top: 0px;
        left: 0px; }
    .btn.btn-fab i.material-icons,
    .input-group-btn .btn.btn-fab i.material-icons {
      position: absolute;
      top: 50%;
      left: 50%;
      line-height: 24px;
      width: 24px;
      transform: -webkit-translate(-12px, -12px);
      transform: -khtml-translate(-12px, -12px);
      transform: -moz-translate(-12px, -12px);
      transform: -ms-translate(-12px, -12px);
      transform: -o-translate(-12px, -12px);
      transform: translate(-12px, -12px); }
  .btn i.material-icons,
  .input-group-btn .btn i.material-icons {
    vertical-align: middle; }
  .btn.btn-lg, .btn-group-lg > .btn,
  .btn-group-lg .btn,
  .input-group-btn .btn.btn-lg,
  .input-group-btn .btn-group-lg > .btn,
  .btn-group-lg
  .input-group-btn .btn {
    font-size: 16px; }
  .btn.btn-sm, .btn-group-sm > .btn,
  .btn-group-sm .btn,
  .input-group-btn .btn.btn-sm,
  .input-group-btn .btn-group-sm > .btn,
  .btn-group-sm
  .input-group-btn .btn {
    padding: 5px 20px;
    font-size: 12px; }
  .btn.btn-xs, .btn-group-xs > .btn,
  .btn-group-xs .btn,
  .input-group-btn .btn.btn-xs,
  .input-group-btn .btn-group-xs > .btn,
  .btn-group-xs
  .input-group-btn .btn {
    padding: 4px 15px;
    font-size: 10px; }

fieldset[disabled][disabled] .btn, .btn.disabled, .btn:disabled, .btn[disabled][disabled], fieldset[disabled][disabled]
.input-group-btn .btn,
.input-group-btn .btn.disabled,
.input-group-btn .btn:disabled,
.input-group-btn .btn[disabled][disabled], fieldset[disabled][disabled]
.btn-group,
.btn-group.disabled,
.btn-group:disabled,
.btn-group[disabled][disabled], fieldset[disabled][disabled]
.btn-group-vertical,
.btn-group-vertical.disabled,
.btn-group-vertical:disabled,
.btn-group-vertical[disabled][disabled] {
  color: rgba(0, 0, 0, 0.26);
  background: transparent; }
  .theme-dark fieldset[disabled][disabled] .btn, .theme-dark .btn.disabled, .theme-dark .btn:disabled, .theme-dark .btn[disabled][disabled], .theme-dark fieldset[disabled][disabled]
  .input-group-btn .btn, .theme-dark
  .input-group-btn .btn.disabled, .theme-dark
  .input-group-btn .btn:disabled, .theme-dark
  .input-group-btn .btn[disabled][disabled], .theme-dark fieldset[disabled][disabled]
  .btn-group, .theme-dark
  .btn-group.disabled, .theme-dark
  .btn-group:disabled, .theme-dark
  .btn-group[disabled][disabled], .theme-dark fieldset[disabled][disabled]
  .btn-group-vertical, .theme-dark
  .btn-group-vertical.disabled, .theme-dark
  .btn-group-vertical:disabled, .theme-dark
  .btn-group-vertical[disabled][disabled] {
    color: rgba(255, 255, 255, 0.3); }
  fieldset[disabled][disabled] .btn.btn-raised, fieldset[disabled][disabled] .btn.btn-raised.active, fieldset[disabled][disabled] .btn.btn-raised:active, fieldset[disabled][disabled] .btn.btn-raised:focus:not(:active), fieldset[disabled][disabled] .btn.btn-group-raised, fieldset[disabled][disabled] .btn.btn-group-raised.active, fieldset[disabled][disabled] .btn.btn-group-raised:active, fieldset[disabled][disabled] .btn.btn-group-raised:focus:not(:active), .btn.disabled.btn-raised, .btn.disabled.btn-raised.active, .btn.disabled.btn-raised:active, .btn.disabled.btn-raised:focus:not(:active), .btn.disabled.btn-group-raised, .btn.disabled.btn-group-raised.active, .btn.disabled.btn-group-raised:active, .btn.disabled.btn-group-raised:focus:not(:active), .btn:disabled.btn-raised, .btn:disabled.btn-raised.active, .btn:disabled.btn-raised:active, .btn:disabled.btn-raised:focus:not(:active), .btn:disabled.btn-group-raised, .btn:disabled.btn-group-raised.active, .btn:disabled.btn-group-raised:active, .btn:disabled.btn-group-raised:focus:not(:active), .btn[disabled][disabled].btn-raised, .btn[disabled][disabled].btn-raised.active, .btn[disabled][disabled].btn-raised:active, .btn[disabled][disabled].btn-raised:focus:not(:active), .btn[disabled][disabled].btn-group-raised, .btn[disabled][disabled].btn-group-raised.active, .btn[disabled][disabled].btn-group-raised:active, .btn[disabled][disabled].btn-group-raised:focus:not(:active), fieldset[disabled][disabled]
  .input-group-btn .btn.btn-raised, fieldset[disabled][disabled]
  .input-group-btn .btn.btn-raised.active, fieldset[disabled][disabled]
  .input-group-btn .btn.btn-raised:active, fieldset[disabled][disabled]
  .input-group-btn .btn.btn-raised:focus:not(:active), fieldset[disabled][disabled]
  .input-group-btn .btn.btn-group-raised, fieldset[disabled][disabled]
  .input-group-btn .btn.btn-group-raised.active, fieldset[disabled][disabled]
  .input-group-btn .btn.btn-group-raised:active, fieldset[disabled][disabled]
  .input-group-btn .btn.btn-group-raised:focus:not(:active),
  .input-group-btn .btn.disabled.btn-raised,
  .input-group-btn .btn.disabled.btn-raised.active,
  .input-group-btn .btn.disabled.btn-raised:active,
  .input-group-btn .btn.disabled.btn-raised:focus:not(:active),
  .input-group-btn .btn.disabled.btn-group-raised,
  .input-group-btn .btn.disabled.btn-group-raised.active,
  .input-group-btn .btn.disabled.btn-group-raised:active,
  .input-group-btn .btn.disabled.btn-group-raised:focus:not(:active),
  .input-group-btn .btn:disabled.btn-raised,
  .input-group-btn .btn:disabled.btn-raised.active,
  .input-group-btn .btn:disabled.btn-raised:active,
  .input-group-btn .btn:disabled.btn-raised:focus:not(:active),
  .input-group-btn .btn:disabled.btn-group-raised,
  .input-group-btn .btn:disabled.btn-group-raised.active,
  .input-group-btn .btn:disabled.btn-group-raised:active,
  .input-group-btn .btn:disabled.btn-group-raised:focus:not(:active),
  .input-group-btn .btn[disabled][disabled].btn-raised,
  .input-group-btn .btn[disabled][disabled].btn-raised.active,
  .input-group-btn .btn[disabled][disabled].btn-raised:active,
  .input-group-btn .btn[disabled][disabled].btn-raised:focus:not(:active),
  .input-group-btn .btn[disabled][disabled].btn-group-raised,
  .input-group-btn .btn[disabled][disabled].btn-group-raised.active,
  .input-group-btn .btn[disabled][disabled].btn-group-raised:active,
  .input-group-btn .btn[disabled][disabled].btn-group-raised:focus:not(:active), fieldset[disabled][disabled]
  .btn-group.btn-raised, fieldset[disabled][disabled]
  .btn-group.btn-raised.active, fieldset[disabled][disabled]
  .btn-group.btn-raised:active, fieldset[disabled][disabled]
  .btn-group.btn-raised:focus:not(:active), fieldset[disabled][disabled]
  .btn-group.btn-group-raised, fieldset[disabled][disabled]
  .btn-group.btn-group-raised.active, fieldset[disabled][disabled]
  .btn-group.btn-group-raised:active, fieldset[disabled][disabled]
  .btn-group.btn-group-raised:focus:not(:active),
  .btn-group.disabled.btn-raised,
  .btn-group.disabled.btn-raised.active,
  .btn-group.disabled.btn-raised:active,
  .btn-group.disabled.btn-raised:focus:not(:active),
  .btn-group.disabled.btn-group-raised,
  .btn-group.disabled.btn-group-raised.active,
  .btn-group.disabled.btn-group-raised:active,
  .btn-group.disabled.btn-group-raised:focus:not(:active),
  .btn-group:disabled.btn-raised,
  .btn-group:disabled.btn-raised.active,
  .btn-group:disabled.btn-raised:active,
  .btn-group:disabled.btn-raised:focus:not(:active),
  .btn-group:disabled.btn-group-raised,
  .btn-group:disabled.btn-group-raised.active,
  .btn-group:disabled.btn-group-raised:active,
  .btn-group:disabled.btn-group-raised:focus:not(:active),
  .btn-group[disabled][disabled].btn-raised,
  .btn-group[disabled][disabled].btn-raised.active,
  .btn-group[disabled][disabled].btn-raised:active,
  .btn-group[disabled][disabled].btn-raised:focus:not(:active),
  .btn-group[disabled][disabled].btn-group-raised,
  .btn-group[disabled][disabled].btn-group-raised.active,
  .btn-group[disabled][disabled].btn-group-raised:active,
  .btn-group[disabled][disabled].btn-group-raised:focus:not(:active), fieldset[disabled][disabled]
  .btn-group-vertical.btn-raised, fieldset[disabled][disabled]
  .btn-group-vertical.btn-raised.active, fieldset[disabled][disabled]
  .btn-group-vertical.btn-raised:active, fieldset[disabled][disabled]
  .btn-group-vertical.btn-raised:focus:not(:active), fieldset[disabled][disabled]
  .btn-group-vertical.btn-group-raised, fieldset[disabled][disabled]
  .btn-group-vertical.btn-group-raised.active, fieldset[disabled][disabled]
  .btn-group-vertical.btn-group-raised:active, fieldset[disabled][disabled]
  .btn-group-vertical.btn-group-raised:focus:not(:active),
  .btn-group-vertical.disabled.btn-raised,
  .btn-group-vertical.disabled.btn-raised.active,
  .btn-group-vertical.disabled.btn-raised:active,
  .btn-group-vertical.disabled.btn-raised:focus:not(:active),
  .btn-group-vertical.disabled.btn-group-raised,
  .btn-group-vertical.disabled.btn-group-raised.active,
  .btn-group-vertical.disabled.btn-group-raised:active,
  .btn-group-vertical.disabled.btn-group-raised:focus:not(:active),
  .btn-group-vertical:disabled.btn-raised,
  .btn-group-vertical:disabled.btn-raised.active,
  .btn-group-vertical:disabled.btn-raised:active,
  .btn-group-vertical:disabled.btn-raised:focus:not(:active),
  .btn-group-vertical:disabled.btn-group-raised,
  .btn-group-vertical:disabled.btn-group-raised.active,
  .btn-group-vertical:disabled.btn-group-raised:active,
  .btn-group-vertical:disabled.btn-group-raised:focus:not(:active),
  .btn-group-vertical[disabled][disabled].btn-raised,
  .btn-group-vertical[disabled][disabled].btn-raised.active,
  .btn-group-vertical[disabled][disabled].btn-raised:active,
  .btn-group-vertical[disabled][disabled].btn-raised:focus:not(:active),
  .btn-group-vertical[disabled][disabled].btn-group-raised,
  .btn-group-vertical[disabled][disabled].btn-group-raised.active,
  .btn-group-vertical[disabled][disabled].btn-group-raised:active,
  .btn-group-vertical[disabled][disabled].btn-group-raised:focus:not(:active) {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn-group,
.btn-group-vertical {
  position: relative;
  margin: 10px 1px; }
  .btn-group.open > .dropdown-toggle.btn, .btn-group.open > .dropdown-toggle.btn.btn-default,
  .btn-group-vertical.open > .dropdown-toggle.btn,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-default {
    background-color: #fff; }
  .btn-group.open > .dropdown-toggle.btn.btn-inverse,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-inverse {
    background-color: #3f51b5; }
  .btn-group.open > .dropdown-toggle.btn.btn-primary,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-primary {
    background-color: #3f8bcd; }
  .btn-group.open > .dropdown-toggle.btn.btn-success,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-success {
    background-color: #5cb85c; }
  .btn-group.open > .dropdown-toggle.btn.btn-info,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-info {
    background-color: #5bc0de; }
  .btn-group.open > .dropdown-toggle.btn.btn-warning,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-warning {
    background-color: #f0ad4e; }
  .btn-group.open > .dropdown-toggle.btn.btn-danger,
  .btn-group-vertical.open > .dropdown-toggle.btn.btn-danger {
    background-color: #d9534f; }
  .btn-group .dropdown-menu,
  .btn-group-vertical .dropdown-menu {
    -webkit-border-radius: 0 0 4pxpx 4pxpx;
    -khtml-border-radius: 0 0 4pxpx 4pxpx;
    -moz-border-radius: 0 0 4pxpx 4pxpx;
    -ms-border-radius: 0 0 4pxpx 4pxpx;
    -o-border-radius: 0 0 4pxpx 4pxpx;
    border-radius: 0 0 4pxpx 4pxpx;
    -webkit-border-radius: 0 0 0.25rem 0.25rem;
    -khtml-border-radius: 0 0 0.25rem 0.25rem;
    -moz-border-radius: 0 0 0.25rem 0.25rem;
    -ms-border-radius: 0 0 0.25rem 0.25rem;
    -o-border-radius: 0 0 0.25rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
  .btn-group.btn-group-raised,
  .btn-group-vertical.btn-group-raised {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
  .btn-group .btn + .btn,
  .btn-group .btn,
  .btn-group .btn:active,
  .btn-group .btn-group,
  .btn-group-vertical .btn + .btn,
  .btn-group-vertical .btn,
  .btn-group-vertical .btn:active,
  .btn-group-vertical .btn-group {
    margin: 0; }

.checkbox label,
label.checkbox-inline {
  cursor: pointer;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.26); }
  .form-group.is-focused .checkbox label, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label, .is-focused.fmo-download-dialog__form-group .checkbox label, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label,
  .form-group.is-focused
  label.checkbox-inline,
  .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
  label.checkbox-inline,
  .is-focused.fmo-download-dialog__form-group
  label.checkbox-inline,
  .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
  label.checkbox-inline {
    color: rgba(0, 0, 0, 0.26); }
    .form-group.is-focused .checkbox label:hover, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label:hover, .is-focused.fmo-download-dialog__form-group .checkbox label:hover, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label:hover, .form-group.is-focused .checkbox label:focus, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label:focus, .is-focused.fmo-download-dialog__form-group .checkbox label:focus, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label:focus,
    .form-group.is-focused
    label.checkbox-inline:hover,
    .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.checkbox-inline:hover,
    .is-focused.fmo-download-dialog__form-group
    label.checkbox-inline:hover,
    .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.checkbox-inline:hover,
    .form-group.is-focused
    label.checkbox-inline:focus,
    .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.checkbox-inline:focus,
    .is-focused.fmo-download-dialog__form-group
    label.checkbox-inline:focus,
    .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.checkbox-inline:focus {
      color: rgba(0, 0, 0, 0.54); }
    fieldset[disabled] .form-group.is-focused .checkbox label, fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label, fieldset[disabled] .is-focused.fmo-download-dialog__form-group .checkbox label, fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label,
    fieldset[disabled] .form-group.is-focused
    label.checkbox-inline,
    fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.checkbox-inline,
    fieldset[disabled] .is-focused.fmo-download-dialog__form-group
    label.checkbox-inline,
    fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.checkbox-inline {
      color: rgba(0, 0, 0, 0.26); }

.checkbox input[type=checkbox],
label.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  left: 0;
  pointer-events: none;
  opacity: 0;
  filter: alpha(opacity=0); }

.checkbox .checkbox-material,
label.checkbox-inline .checkbox-material {
  vertical-align: middle;
  position: relative;
  top: 3px; }
  .checkbox .checkbox-material::before,
  label.checkbox-inline .checkbox-material::before {
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.84);
    height: 20px;
    width: 20px;
    z-index: 1;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale3d(2.3, 2.3, 1);
    transform: -khtml-scale3d(2.3, 2.3, 1);
    transform: -moz-scale3d(2.3, 2.3, 1);
    transform: -ms-scale3d(2.3, 2.3, 1);
    transform: -o-scale3d(2.3, 2.3, 1);
    transform: scale3d(2.3, 2.3, 1);
    -webkit-border-radius: 100%px;
    -khtml-border-radius: 100%px;
    -moz-border-radius: 100%px;
    -ms-border-radius: 100%px;
    -o-border-radius: 100%px;
    border-radius: 100%px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
  .checkbox .checkbox-material .check,
  label.checkbox-inline .checkbox-material .check {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.54);
    overflow: hidden;
    z-index: 1;
    -webkit-border-radius: 4pxpx;
    -khtml-border-radius: 4pxpx;
    -moz-border-radius: 4pxpx;
    -ms-border-radius: 4pxpx;
    -o-border-radius: 4pxpx;
    border-radius: 4pxpx;
    -webkit-border-radius: 0.25rem;
    -khtml-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    border-radius: 0.25rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
  .checkbox .checkbox-material .check::before,
  label.checkbox-inline .checkbox-material .check::before {
    position: absolute;
    content: "";
    display: block;
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    transform: -webkit-rotate(45deg);
    transform: -khtml-rotate(45deg);
    transform: -moz-rotate(45deg);
    transform: -ms-rotate(45deg);
    transform: -o-rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; }

.checkbox input[type=checkbox]:focus + .checkbox-material .check::after,
label.checkbox-inline input[type=checkbox]:focus + .checkbox-material .check::after {
  opacity: 0.2;
  filter: alpha(opacity=20); }

.checkbox input[type=checkbox]:focus:checked + .checkbox-material::before,
label.checkbox-inline input[type=checkbox]:focus:checked + .checkbox-material::before {
  -webkit-animation: rippleOn 500ms;
  -o-animation: rippleOn 500ms;
  animation: rippleOn 500ms; }

.checkbox input[type=checkbox]:focus:checked + .checkbox-material .check::before,
label.checkbox-inline input[type=checkbox]:focus:checked + .checkbox-material .check::before {
  -webkit-animation: checkbox-on 0.3s forwards;
  -o-animation: checkbox-on 0.3s forwards;
  animation: checkbox-on 0.3s forwards; }

.checkbox input[type=checkbox]:focus:checked + .checkbox-material .check::after,
label.checkbox-inline input[type=checkbox]:focus:checked + .checkbox-material .check::after {
  -webkit-animation: rippleOn 500ms forwards;
  -o-animation: rippleOn 500ms forwards;
  animation: rippleOn 500ms forwards; }

.checkbox input[type=checkbox]:focus:not(:checked) + .checkbox-material::before,
label.checkbox-inline input[type=checkbox]:focus:not(:checked) + .checkbox-material::before {
  -webkit-animation: rippleOff 500ms;
  -o-animation: rippleOff 500ms;
  animation: rippleOff 500ms; }

.checkbox input[type=checkbox]:focus:not(:checked) + .checkbox-material .check::before,
label.checkbox-inline input[type=checkbox]:focus:not(:checked) + .checkbox-material .check::before {
  -webkit-animation: checkbox-off 0.3s forwards;
  -o-animation: checkbox-off 0.3s forwards;
  animation: checkbox-off 0.3s forwards; }

.checkbox input[type=checkbox]:focus:not(:checked) + .checkbox-material .check::after,
label.checkbox-inline input[type=checkbox]:focus:not(:checked) + .checkbox-material .check::after {
  -webkit-animation: rippleOff 500ms forwards;
  -o-animation: rippleOff 500ms forwards;
  animation: rippleOff 500ms forwards; }

.checkbox input[type=checkbox]:checked + .checkbox-material .check,
label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check {
  color: #3f8bcd;
  border-color: #3f8bcd; }
  .checkbox input[type=checkbox]:checked + .checkbox-material .check::before,
  label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check::before {
    color: #3f8bcd;
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; }

fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox input[type=checkbox],
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .checkbox-material .check::before,
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .checkbox-material .check,
.checkbox input[type=checkbox][disabled] + .circle, fieldset[disabled]
label.checkbox-inline,
fieldset[disabled]
label.checkbox-inline input[type=checkbox],
label.checkbox-inline input[type=checkbox][disabled]:not(:checked) ~ .checkbox-material .check::before,
label.checkbox-inline input[type=checkbox][disabled]:not(:checked) ~ .checkbox-material .check,
label.checkbox-inline input[type=checkbox][disabled] + .circle {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.checkbox input[type=checkbox][disabled] + .checkbox-material .check::after,
label.checkbox-inline input[type=checkbox][disabled] + .checkbox-material .check::after {
  background-color: rgba(0, 0, 0, 0.87);
  transform: -webkit-rotate(-45deg);
  transform: -khtml-rotate(-45deg);
  transform: -moz-rotate(-45deg);
  transform: -ms-rotate(-45deg);
  transform: -o-rotate(-45deg);
  transform: rotate(-45deg); }

@-webkit-keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; }
  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; }
  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } }

@-moz-keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; }
  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; }
  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } }

@-ms-keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; }
  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; }
  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } }

@-o-keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; }
  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; }
  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } }

@keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; }
  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; }
  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } }

@-webkit-keyframes checkbox-off {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset; }
  25% {
    -webkit-box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset; }
  50% {
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    transform: -webkit-rotate(45deg);
    transform: -khtml-rotate(45deg);
    transform: -moz-rotate(45deg);
    transform: -ms-rotate(45deg);
    transform: -o-rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset; }
  51% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset; }
  100% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; } }

@-moz-keyframes checkbox-off {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset; }
  25% {
    -webkit-box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset; }
  50% {
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    transform: -webkit-rotate(45deg);
    transform: -khtml-rotate(45deg);
    transform: -moz-rotate(45deg);
    transform: -ms-rotate(45deg);
    transform: -o-rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset; }
  51% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset; }
  100% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; } }

@-ms-keyframes checkbox-off {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset; }
  25% {
    -webkit-box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset; }
  50% {
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    transform: -webkit-rotate(45deg);
    transform: -khtml-rotate(45deg);
    transform: -moz-rotate(45deg);
    transform: -ms-rotate(45deg);
    transform: -o-rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset; }
  51% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset; }
  100% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; } }

@-o-keyframes checkbox-off {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset; }
  25% {
    -webkit-box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset; }
  50% {
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    transform: -webkit-rotate(45deg);
    transform: -khtml-rotate(45deg);
    transform: -moz-rotate(45deg);
    transform: -ms-rotate(45deg);
    transform: -o-rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset; }
  51% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset; }
  100% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; } }

@keyframes checkbox-off {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20 px -12px 0 11px, 0 0 0 0 inset; }
  25% {
    -webkit-box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10 px-10 px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset; }
  50% {
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    transform: -webkit-rotate(45deg);
    transform: -khtml-rotate(45deg);
    transform: -moz-rotate(45deg);
    transform: -ms-rotate(45deg);
    transform: -o-rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset; }
  51% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 10px inset; }
  100% {
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; } }

@-webkit-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-webkit-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

.togglebutton {
  vertical-align: middle; }
  .togglebutton,
  .togglebutton label,
  .togglebutton input,
  .togglebutton .toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .togglebutton label {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.26); }
    .form-group.is-focused .togglebutton label, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .togglebutton label, .is-focused.fmo-download-dialog__form-group .togglebutton label, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .togglebutton label {
      color: rgba(0, 0, 0, 0.26); }
      .form-group.is-focused .togglebutton label:hover, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .togglebutton label:hover, .is-focused.fmo-download-dialog__form-group .togglebutton label:hover, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .togglebutton label:hover, .form-group.is-focused .togglebutton label:focus, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .togglebutton label:focus, .is-focused.fmo-download-dialog__form-group .togglebutton label:focus, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .togglebutton label:focus {
        color: rgba(0, 0, 0, 0.54); }
      fieldset[disabled] .form-group.is-focused .togglebutton label, fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .togglebutton label, fieldset[disabled] .is-focused.fmo-download-dialog__form-group .togglebutton label, fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .togglebutton label {
        color: rgba(0, 0, 0, 0.26); }
    .togglebutton label input[type=checkbox] {
      width: 0;
      height: 0;
      opacity: 0;
      filter: alpha(opacity=0); }
    .togglebutton label .toggle {
      text-align: left; }
    .togglebutton label .toggle,
    .togglebutton label input[type=checkbox][disabled] + .toggle {
      content: "";
      display: inline-block;
      width: 30px;
      height: 15px;
      background-color: rgba(80, 80, 80, 0.7);
      margin-right: 15px;
      vertical-align: middle;
      -webkit-transition: background 0.3s ease;
      -o-transition: background 0.3s ease;
      transition: background 0.3s ease;
      -webkit-border-radius: 15pxpx;
      -khtml-border-radius: 15pxpx;
      -moz-border-radius: 15pxpx;
      -ms-border-radius: 15pxpx;
      -o-border-radius: 15pxpx;
      border-radius: 15pxpx;
      -webkit-border-radius: 0.9375rem;
      -khtml-border-radius: 0.9375rem;
      -moz-border-radius: 0.9375rem;
      -ms-border-radius: 0.9375rem;
      -o-border-radius: 0.9375rem;
      border-radius: 0.9375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
    .togglebutton label .toggle::after {
      content: "";
      display: inline-block;
      width: 20px;
      height: 20px;
      background-color: #f1f1f1;
      position: relative;
      left: -5px;
      top: -2px;
      -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
      -webkit-transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease;
      -o-transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease;
      transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease;
      -webkit-border-radius: 20px;
      -khtml-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      border-radius: 20px;
      -webkit-border-radius: 1.25rem;
      -khtml-border-radius: 1.25rem;
      -moz-border-radius: 1.25rem;
      -ms-border-radius: 1.25rem;
      -o-border-radius: 1.25rem;
      border-radius: 1.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
    .togglebutton label input[type=checkbox][disabled] + .toggle::after,
    .togglebutton label input[type=checkbox][disabled]:checked + .toggle::after {
      background-color: #bdbdbd; }
    .togglebutton label input[type=checkbox] + .toggle:active::after,
    .togglebutton label input[type=checkbox][disabled] + .toggle:active::after {
      -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1); }
    .togglebutton label input[type=checkbox]:checked + .toggle::after {
      left: 15px; }
    .togglebutton label input[type=checkbox]:checked + .toggle {
      background-color: rgba(63, 139, 205, 0.5); }
    .togglebutton label input[type=checkbox]:checked + .toggle::after {
      background-color: #3f8bcd; }
    .togglebutton label input[type=checkbox]:checked + .toggle:active::after {
      -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 139, 205, 0.1);
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 139, 205, 0.1); }

.radio label,
label.radio-inline {
  cursor: pointer;
  padding-left: 45px;
  position: relative;
  color: rgba(0, 0, 0, 0.26); }
  .form-group.is-focused .radio label, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label, .is-focused.fmo-download-dialog__form-group .radio label, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label,
  .form-group.is-focused
  label.radio-inline,
  .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
  label.radio-inline,
  .is-focused.fmo-download-dialog__form-group
  label.radio-inline,
  .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
  label.radio-inline {
    color: rgba(0, 0, 0, 0.26); }
    .form-group.is-focused .radio label:hover, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label:hover, .is-focused.fmo-download-dialog__form-group .radio label:hover, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label:hover, .form-group.is-focused .radio label:focus, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label:focus, .is-focused.fmo-download-dialog__form-group .radio label:focus, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label:focus,
    .form-group.is-focused
    label.radio-inline:hover,
    .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.radio-inline:hover,
    .is-focused.fmo-download-dialog__form-group
    label.radio-inline:hover,
    .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.radio-inline:hover,
    .form-group.is-focused
    label.radio-inline:focus,
    .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.radio-inline:focus,
    .is-focused.fmo-download-dialog__form-group
    label.radio-inline:focus,
    .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.radio-inline:focus {
      color: rgba(0, 0, 0, 0.54); }
    fieldset[disabled] .form-group.is-focused .radio label, fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label, fieldset[disabled] .is-focused.fmo-download-dialog__form-group .radio label, fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label,
    fieldset[disabled] .form-group.is-focused
    label.radio-inline,
    fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.radio-inline,
    fieldset[disabled] .is-focused.fmo-download-dialog__form-group
    label.radio-inline,
    fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.radio-inline {
      color: rgba(0, 0, 0, 0.26); }

.radio span,
label.radio-inline span {
  display: block;
  position: absolute;
  left: 10px;
  top: 2px;
  transition-duration: 0.2s; }

.radio .circle,
label.radio-inline .circle {
  border: 2px solid rgba(0, 0, 0, 0.54);
  height: 15px;
  width: 15px;
  -webkit-border-radius: 100%px;
  -khtml-border-radius: 100%px;
  -moz-border-radius: 100%px;
  -ms-border-radius: 100%px;
  -o-border-radius: 100%px;
  border-radius: 100%px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.radio .check,
label.radio-inline .check {
  height: 15px;
  width: 15px;
  background-color: #3f8bcd;
  -webkit-border-radius: 100%px;
  -khtml-border-radius: 100%px;
  -moz-border-radius: 100%px;
  -ms-border-radius: 100%px;
  -o-border-radius: 100%px;
  border-radius: 100%px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  transform: -webkit-scale3d(0, 0, 0);
  transform: -khtml-scale3d(0, 0, 0);
  transform: -moz-scale3d(0, 0, 0);
  transform: -ms-scale3d(0, 0, 0);
  transform: -o-scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0); }

.radio .check::after,
label.radio-inline .check::after {
  display: block;
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.87);
  left: -18px;
  top: -18px;
  height: 50px;
  width: 50px;
  z-index: 1;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-border-radius: 100%px;
  -khtml-border-radius: 100%px;
  -moz-border-radius: 100%px;
  -ms-border-radius: 100%px;
  -o-border-radius: 100%px;
  border-radius: 100%px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  transform: -webkit-scale3d(1.5, 1.5, 1);
  transform: -khtml-scale3d(1.5, 1.5, 1);
  transform: -moz-scale3d(1.5, 1.5, 1);
  transform: -ms-scale3d(1.5, 1.5, 1);
  transform: -o-scale3d(1.5, 1.5, 1);
  transform: scale3d(1.5, 1.5, 1); }

.radio input[type=radio]:focus:not(:checked) ~ .check::after,
label.radio-inline input[type=radio]:focus:not(:checked) ~ .check::after {
  -webkit-animation: rippleOff 500ms;
  -o-animation: rippleOff 500ms;
  animation: rippleOff 500ms; }

.radio input[type=radio]:focus:checked ~ .check::after,
label.radio-inline input[type=radio]:focus:checked ~ .check::after {
  -webkit-animation: rippleOn 500ms;
  -o-animation: rippleOn 500ms;
  animation: rippleOn 500ms; }

.radio input[type=radio],
label.radio-inline input[type=radio] {
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=0); }
  .radio input[type=radio]:checked ~ .check,
  .radio input[type=radio]:checked ~ .circle,
  label.radio-inline input[type=radio]:checked ~ .check,
  label.radio-inline input[type=radio]:checked ~ .circle {
    opacity: 1;
    filter: alpha(opacity=100); }
  .radio input[type=radio]:checked ~ .check,
  label.radio-inline input[type=radio]:checked ~ .check {
    background-color: #3f8bcd; }
  .radio input[type=radio]:checked ~ .circle,
  label.radio-inline input[type=radio]:checked ~ .circle {
    border-color: #3f8bcd; }
  .radio input[type=radio]:checked ~ .check,
  label.radio-inline input[type=radio]:checked ~ .check {
    transform: -webkit-scale3d(0.55, 0.55, 1);
    transform: -khtml-scale3d(0.55, 0.55, 1);
    transform: -moz-scale3d(0.55, 0.55, 1);
    transform: -ms-scale3d(0.55, 0.55, 1);
    transform: -o-scale3d(0.55, 0.55, 1);
    transform: scale3d(0.55, 0.55, 1); }

.radio input[type=radio][disabled] ~ .check,
.radio input[type=radio][disabled] ~ .circle,
label.radio-inline input[type=radio][disabled] ~ .check,
label.radio-inline input[type=radio][disabled] ~ .circle {
  opacity: 0.26;
  filter: alpha(opacity=26); }

.radio input[type=radio][disabled] ~ .check,
label.radio-inline input[type=radio][disabled] ~ .check {
  background-color: #000; }

.radio input[type=radio][disabled] ~ .circle,
label.radio-inline input[type=radio][disabled] ~ .circle {
  border-color: #000; }

.theme-dark .radio input[type=radio][disabled] ~ .check,
.theme-dark .radio input[type=radio][disabled] ~ .circle, .theme-dark
label.radio-inline input[type=radio][disabled] ~ .check,
.theme-dark
label.radio-inline input[type=radio][disabled] ~ .circle {
  opacity: 0.3;
  filter: alpha(opacity=30); }

.theme-dark .radio input[type=radio][disabled] ~ .check, .theme-dark
label.radio-inline input[type=radio][disabled] ~ .check {
  background-color: #fff; }

.theme-dark .radio input[type=radio][disabled] ~ .circle, .theme-dark
label.radio-inline input[type=radio][disabled] ~ .circle {
  border-color: #fff; }

@-webkit-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-webkit-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

legend {
  margin-bottom: 22px;
  font-size: 24px; }

output {
  padding-top: 8px;
  font-size: 16px;
  line-height: 1.42857; }

.form-control {
  height: 38px;
  padding: 7px 0;
  font-size: 16px;
  line-height: 1.42857; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 38px; }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
  input[type="month"] {
    line-height: 27px; }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
  input[type="month"] {
    line-height: 48px; } }

.radio label,
.checkbox label {
  min-height: 22px; }

.form-control-static {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 38px; }

.input-sm .input-sm, .input-group-sm > .form-control .input-sm,
.input-group-sm > .input-group-addon .input-sm,
.input-group-sm > .input-group-btn > .btn .input-sm, .input-sm .input-group-sm > .form-control, .input-group-sm > .form-control .input-group-sm > .form-control,
.input-group-sm > .input-group-addon .input-group-sm > .form-control,
.input-group-sm > .input-group-btn > .btn .input-group-sm > .form-control, .input-sm
.input-group-sm > .input-group-addon, .input-group-sm > .form-control
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-addon
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > .input-group-addon, .input-sm
.input-group-sm > .input-group-btn > .btn, .input-group-sm > .form-control
.input-group-sm > .input-group-btn > .btn,
.input-group-sm > .input-group-addon
.input-group-sm > .input-group-btn > .btn,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > .input-group-btn > .btn {
  height: 27px;
  padding: 3px 0;
  font-size: 13px;
  line-height: 1.5;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.input-sm select.input-sm, .input-group-sm > .form-control select.input-sm,
.input-group-sm > .input-group-addon select.input-sm,
.input-group-sm > .input-group-btn > .btn select.input-sm, .input-sm .input-group-sm > select.form-control, .input-group-sm > .form-control .input-group-sm > select.form-control,
.input-group-sm > .input-group-addon .input-group-sm > select.form-control,
.input-group-sm > .input-group-btn > .btn .input-group-sm > select.form-control, .input-sm
.input-group-sm > select.input-group-addon, .input-group-sm > .form-control
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-addon
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > select.input-group-addon, .input-sm
.input-group-sm > .input-group-btn > select.btn, .input-group-sm > .form-control
.input-group-sm > .input-group-btn > select.btn,
.input-group-sm > .input-group-addon
.input-group-sm > .input-group-btn > select.btn,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > .input-group-btn > select.btn {
  height: 27px;
  line-height: 27px; }

.input-sm textarea.input-sm, .input-group-sm > .form-control textarea.input-sm,
.input-group-sm > .input-group-addon textarea.input-sm,
.input-group-sm > .input-group-btn > .btn textarea.input-sm, .input-sm .input-group-sm > textarea.form-control, .input-group-sm > .form-control .input-group-sm > textarea.form-control,
.input-group-sm > .input-group-addon .input-group-sm > textarea.form-control,
.input-group-sm > .input-group-btn > .btn .input-group-sm > textarea.form-control, .input-sm
.input-group-sm > textarea.input-group-addon, .input-group-sm > .form-control
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-addon
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > textarea.input-group-addon, .input-sm
.input-group-sm > .input-group-btn > textarea.btn, .input-group-sm > .form-control
.input-group-sm > .input-group-btn > textarea.btn,
.input-group-sm > .input-group-addon
.input-group-sm > .input-group-btn > textarea.btn,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > .input-group-btn > textarea.btn,
.input-sm select[multiple].input-sm, .input-group-sm > .form-control select[multiple].input-sm,
.input-group-sm > .input-group-addon select[multiple].input-sm,
.input-group-sm > .input-group-btn > .btn select[multiple].input-sm,
.input-sm .input-group-sm > select[multiple].form-control, .input-group-sm > .form-control .input-group-sm > select[multiple].form-control,
.input-group-sm > .input-group-addon .input-group-sm > select[multiple].form-control,
.input-group-sm > .input-group-btn > .btn .input-group-sm > select[multiple].form-control,
.input-sm
.input-group-sm > select[multiple].input-group-addon, .input-group-sm > .form-control
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-addon
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > select[multiple].input-group-addon,
.input-sm
.input-group-sm > .input-group-btn > select[multiple].btn, .input-group-sm > .form-control
.input-group-sm > .input-group-btn > select[multiple].btn,
.input-group-sm > .input-group-addon
.input-group-sm > .input-group-btn > select[multiple].btn,
.input-group-sm > .input-group-btn > .btn
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-sm .form-control {
  height: 27px;
  padding: 3px 0;
  font-size: 13px;
  line-height: 1.5; }

.form-group-sm select.form-control {
  height: 27px;
  line-height: 27px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 27px;
  min-height: 35px;
  padding: 4px 0;
  font-size: 13px;
  line-height: 1.5; }

.input-lg .input-lg, .input-group-lg > .form-control .input-lg,
.input-group-lg > .input-group-addon .input-lg,
.input-group-lg > .input-group-btn > .btn .input-lg, .input-lg .input-group-lg > .form-control, .input-group-lg > .form-control .input-group-lg > .form-control,
.input-group-lg > .input-group-addon .input-group-lg > .form-control,
.input-group-lg > .input-group-btn > .btn .input-group-lg > .form-control, .input-lg
.input-group-lg > .input-group-addon, .input-group-lg > .form-control
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-addon
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > .input-group-addon, .input-lg
.input-group-lg > .input-group-btn > .btn, .input-group-lg > .form-control
.input-group-lg > .input-group-btn > .btn,
.input-group-lg > .input-group-addon
.input-group-lg > .input-group-btn > .btn,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > .input-group-btn > .btn {
  height: 48px;
  padding: 9px 0;
  font-size: 21px;
  line-height: 1.33333;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.input-lg select.input-lg, .input-group-lg > .form-control select.input-lg,
.input-group-lg > .input-group-addon select.input-lg,
.input-group-lg > .input-group-btn > .btn select.input-lg, .input-lg .input-group-lg > select.form-control, .input-group-lg > .form-control .input-group-lg > select.form-control,
.input-group-lg > .input-group-addon .input-group-lg > select.form-control,
.input-group-lg > .input-group-btn > .btn .input-group-lg > select.form-control, .input-lg
.input-group-lg > select.input-group-addon, .input-group-lg > .form-control
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-addon
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > select.input-group-addon, .input-lg
.input-group-lg > .input-group-btn > select.btn, .input-group-lg > .form-control
.input-group-lg > .input-group-btn > select.btn,
.input-group-lg > .input-group-addon
.input-group-lg > .input-group-btn > select.btn,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > .input-group-btn > select.btn {
  height: 48px;
  line-height: 48px; }

.input-lg textarea.input-lg, .input-group-lg > .form-control textarea.input-lg,
.input-group-lg > .input-group-addon textarea.input-lg,
.input-group-lg > .input-group-btn > .btn textarea.input-lg, .input-lg .input-group-lg > textarea.form-control, .input-group-lg > .form-control .input-group-lg > textarea.form-control,
.input-group-lg > .input-group-addon .input-group-lg > textarea.form-control,
.input-group-lg > .input-group-btn > .btn .input-group-lg > textarea.form-control, .input-lg
.input-group-lg > textarea.input-group-addon, .input-group-lg > .form-control
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-addon
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > textarea.input-group-addon, .input-lg
.input-group-lg > .input-group-btn > textarea.btn, .input-group-lg > .form-control
.input-group-lg > .input-group-btn > textarea.btn,
.input-group-lg > .input-group-addon
.input-group-lg > .input-group-btn > textarea.btn,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > .input-group-btn > textarea.btn,
.input-lg select[multiple].input-lg, .input-group-lg > .form-control select[multiple].input-lg,
.input-group-lg > .input-group-addon select[multiple].input-lg,
.input-group-lg > .input-group-btn > .btn select[multiple].input-lg,
.input-lg .input-group-lg > select[multiple].form-control, .input-group-lg > .form-control .input-group-lg > select[multiple].form-control,
.input-group-lg > .input-group-addon .input-group-lg > select[multiple].form-control,
.input-group-lg > .input-group-btn > .btn .input-group-lg > select[multiple].form-control,
.input-lg
.input-group-lg > select[multiple].input-group-addon, .input-group-lg > .form-control
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-addon
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > select[multiple].input-group-addon,
.input-lg
.input-group-lg > .input-group-btn > select[multiple].btn, .input-group-lg > .form-control
.input-group-lg > .input-group-btn > select[multiple].btn,
.input-group-lg > .input-group-addon
.input-group-lg > .input-group-btn > select[multiple].btn,
.input-group-lg > .input-group-btn > .btn
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-lg .form-control {
  height: 48px;
  padding: 9px 0;
  font-size: 21px;
  line-height: 1.33333; }

.form-group-lg select.form-control {
  height: 48px;
  line-height: 48px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 48px;
  min-height: 43px;
  padding: 10px 0;
  font-size: 21px;
  line-height: 1.33333; }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 8px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 30px; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 8px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 13.0px;
    font-size: 21px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 4px;
    font-size: 13px; } }

.label {
  padding: 0.3em 0.6em;
  -webkit-border-radius: 3pxpx;
  -khtml-border-radius: 3pxpx;
  -moz-border-radius: 3pxpx;
  -ms-border-radius: 3pxpx;
  -o-border-radius: 3pxpx;
  border-radius: 3pxpx;
  -webkit-border-radius: 0.1875rem;
  -khtml-border-radius: 0.1875rem;
  -moz-border-radius: 0.1875rem;
  -ms-border-radius: 0.1875rem;
  -o-border-radius: 0.1875rem;
  border-radius: 0.1875rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .label, .label.label-default {
    background-color: #9e9e9e; }
  .label.label-inverse {
    background-color: #3f51b5; }
  .label.label-primary {
    background-color: #3f8bcd; }
  .label.label-success {
    background-color: #5cb85c; }
  .label.label-info {
    background-color: #5bc0de; }
  .label.label-warning {
    background-color: #f0ad4e; }
  .label.label-danger {
    background-color: #d9534f; }

.form-control,
.form-group .form-control, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .fmo-download-dialog__form-group .form-control, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
  border: 0;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#d2d2d2, #d2d2d2);
  background-size: 0 2px, 100% 2px;
  background-size: 0 0.125rem, 100% 0.125rem;
  background-repeat: no-repeat;
  background-position: center bottom, center calc(100% - 1px);
  background-color: transparent;
  float: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background 0s ease-out;
  -o-transition: background 0s ease-out;
  transition: background 0s ease-out; }
  .form-control::-moz-placeholder,
  .form-group .form-control::-moz-placeholder, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder, .fmo-download-dialog__form-group .form-control::-moz-placeholder, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder {
    color: #bdbdbd;
    font-weight: 400; }
  .form-control:-ms-input-placeholder,
  .form-group .form-control:-ms-input-placeholder, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder, .fmo-download-dialog__form-group .form-control:-ms-input-placeholder, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder {
    color: #bdbdbd;
    font-weight: 400; }
  .form-control::-webkit-input-placeholder,
  .form-group .form-control::-webkit-input-placeholder, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder, .fmo-download-dialog__form-group .form-control::-webkit-input-placeholder, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder {
    color: #bdbdbd;
    font-weight: 400; }
  .form-control[readonly], .form-control[disabled],
  fieldset[disabled] .form-control,
  .form-group .form-control[readonly], .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control[readonly], .fmo-download-dialog__form-group .form-control[readonly], .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control[readonly],
  .form-group .form-control[disabled], .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control[disabled], .fmo-download-dialog__form-group .form-control[disabled], .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control[disabled],
  fieldset[disabled]
  .form-group .form-control,
  fieldset[disabled] .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control,
  fieldset[disabled] .fmo-download-dialog__form-group .form-control,
  fieldset[disabled] .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-color: transparent; }
  .form-control[disabled],
  fieldset[disabled] .form-control,
  .form-group .form-control[disabled], .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control[disabled], .fmo-download-dialog__form-group .form-control[disabled], .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control[disabled],
  fieldset[disabled]
  .form-group .form-control,
  fieldset[disabled] .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control,
  fieldset[disabled] .fmo-download-dialog__form-group .form-control,
  fieldset[disabled] .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-image: none;
    border-bottom: 1px dotted #d2d2d2; }

.form-group, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .fmo-download-dialog__form-group, .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
  position: relative; }
  .form-group.label-static label.control-label, .label-static.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-static.fmo-download-dialog__form-group label.control-label, .label-static.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.label-placeholder label.control-label, .label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-placeholder.fmo-download-dialog__form-group label.control-label, .label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.label-floating label.control-label, .label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-floating.fmo-download-dialog__form-group label.control-label, .label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    position: absolute;
    pointer-events: none;
    transition: 0.3s ease all; }
  .form-group.label-floating label.control-label, .label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-floating.fmo-download-dialog__form-group label.control-label, .label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    will-change: left, top, contents; }
  .form-group.label-placeholder:not(.is-empty) label.control-label, .label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label, .label-placeholder.fmo-download-dialog__form-group:not(.is-empty) label.control-label, .label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label {
    display: none; }
  .form-group .help-block, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .fmo-download-dialog__form-group .help-block, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    position: absolute;
    display: none; }
  .form-group.is-focused .form-control, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .is-focused.fmo-download-dialog__form-group .form-control, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    outline: none;
    background-image: linear-gradient(#3f8bcd, #3f8bcd), linear-gradient(#d2d2d2, #d2d2d2);
    background-size: 100% 2px, 100% 2px;
    background-size: 100% 0.25rem, 100% 0.1875rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .form-group.is-focused .form-control .material-input::after, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control .material-input::after, .is-focused.fmo-download-dialog__form-group .form-control .material-input::after, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control .material-input::after {
      background-color: #3f8bcd; }
  .form-group.is-focused label, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label, .is-focused.fmo-download-dialog__form-group label, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label,
  .form-group.is-focused label.control-label, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .is-focused.fmo-download-dialog__form-group label.control-label, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    color: #3f8bcd; }
  .form-group.is-focused.label-placeholder label, .is-focused.label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label, .is-focused.label-placeholder.fmo-download-dialog__form-group label, .is-focused.label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group label,
  .form-group.is-focused.label-placeholder label.control-label, .is-focused.label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .is-focused.label-placeholder.fmo-download-dialog__form-group label.control-label, .is-focused.label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    color: #bdbdbd; }
  .form-group.is-focused .help-block, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .is-focused.fmo-download-dialog__form-group .help-block, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    display: block; }
  .form-group.has-warning .form-control, .has-warning.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-warning.fmo-download-dialog__form-group .form-control, .has-warning.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .form-group.has-warning.is-focused .form-control, .has-warning.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-warning.is-focused.fmo-download-dialog__form-group .form-control, .has-warning.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-image: linear-gradient(#f0ad4e, #f0ad4e), linear-gradient(#d2d2d2, #d2d2d2); }
  .form-group.has-warning label.control-label, .has-warning.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .has-warning.fmo-download-dialog__form-group label.control-label, .has-warning.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label,
  .form-group.has-warning .help-block, .has-warning.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .has-warning.fmo-download-dialog__form-group .help-block, .has-warning.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    color: #f0ad4e; }
  .form-group.has-error .form-control, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-error.fmo-download-dialog__form-group .form-control, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .form-group.has-error.is-focused .form-control, .has-error.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-error.is-focused.fmo-download-dialog__form-group .form-control, .has-error.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-image: linear-gradient(#d9534f, #d9534f), linear-gradient(#d2d2d2, #d2d2d2); }
  .form-group.has-error label.control-label, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .has-error.fmo-download-dialog__form-group label.control-label, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label,
  .form-group.has-error .help-block, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .has-error.fmo-download-dialog__form-group .help-block, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    color: #d9534f; }
  .form-group.has-success .form-control, .has-success.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-success.fmo-download-dialog__form-group .form-control, .has-success.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .form-group.has-success.is-focused .form-control, .has-success.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-success.is-focused.fmo-download-dialog__form-group .form-control, .has-success.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-image: linear-gradient(#5cb85c, #5cb85c), linear-gradient(#d2d2d2, #d2d2d2); }
  .form-group.has-success label.control-label, .has-success.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .has-success.fmo-download-dialog__form-group label.control-label, .has-success.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label,
  .form-group.has-success .help-block, .has-success.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .has-success.fmo-download-dialog__form-group .help-block, .has-success.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    color: #5cb85c; }
  .form-group.has-info .form-control, .has-info.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-info.fmo-download-dialog__form-group .form-control, .has-info.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .form-group.has-info.is-focused .form-control, .has-info.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .has-info.is-focused.fmo-download-dialog__form-group .form-control, .has-info.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-image: linear-gradient(#5bc0de, #5bc0de), linear-gradient(#d2d2d2, #d2d2d2); }
  .form-group.has-info label.control-label, .has-info.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .has-info.fmo-download-dialog__form-group label.control-label, .has-info.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label,
  .form-group.has-info .help-block, .has-info.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .has-info.fmo-download-dialog__form-group .help-block, .has-info.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    color: #5bc0de; }
  .form-group textarea, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group textarea, .fmo-download-dialog__form-group textarea, .fmo-macro-calculator__container__form__slider__slides__slide__form-group textarea {
    resize: none; }
    .form-group textarea ~ .form-control-highlight, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group textarea ~ .form-control-highlight, .fmo-download-dialog__form-group textarea ~ .form-control-highlight, .fmo-macro-calculator__container__form__slider__slides__slide__form-group textarea ~ .form-control-highlight {
      margin-top: -11px; }
  .form-group select, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group select, .fmo-download-dialog__form-group select, .fmo-macro-calculator__container__form__slider__slides__slide__form-group select {
    appearance: none; }
    .form-group select ~ .material-input::after, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group select ~ .material-input::after, .fmo-download-dialog__form-group select ~ .material-input::after, .fmo-macro-calculator__container__form__slider__slides__slide__form-group select ~ .material-input::after {
      display: none; }

.form-control {
  margin-bottom: 7px; }
  .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 1.42857;
    color: #bdbdbd;
    font-weight: 400; }
  .form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.42857;
    color: #bdbdbd;
    font-weight: 400; }
  .form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1.42857;
    color: #bdbdbd;
    font-weight: 400; }

.checkbox label,
.radio label,
label {
  font-size: 16px;
  line-height: 1.42857;
  color: #bdbdbd;
  font-weight: 400; }

label.control-label {
  font-size: 12px;
  line-height: 1.07143;
  font-weight: 400;
  margin: 16px 0 0; }

.help-block {
  margin-top: 0;
  font-size: 12px; }

.form-group, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .fmo-download-dialog__form-group, .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
  padding-bottom: 7px;
  margin: 28px 0 0 0; }
  .form-group .form-control, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .fmo-download-dialog__form-group .form-control, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    margin-bottom: 7px; }
    .form-group .form-control::-moz-placeholder, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder, .fmo-download-dialog__form-group .form-control::-moz-placeholder, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder {
      font-size: 16px;
      line-height: 1.42857;
      color: #bdbdbd;
      font-weight: 400; }
    .form-group .form-control:-ms-input-placeholder, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder, .fmo-download-dialog__form-group .form-control:-ms-input-placeholder, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder {
      font-size: 16px;
      line-height: 1.42857;
      color: #bdbdbd;
      font-weight: 400; }
    .form-group .form-control::-webkit-input-placeholder, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder, .fmo-download-dialog__form-group .form-control::-webkit-input-placeholder, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder {
      font-size: 16px;
      line-height: 1.42857;
      color: #bdbdbd;
      font-weight: 400; }
  .form-group .checkbox label, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label, .fmo-download-dialog__form-group .checkbox label, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label,
  .form-group .radio label, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label, .fmo-download-dialog__form-group .radio label, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label,
  .form-group label, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group label, .fmo-download-dialog__form-group label, .fmo-macro-calculator__container__form__slider__slides__slide__form-group label {
    font-size: 16px;
    line-height: 1.42857;
    color: #bdbdbd;
    font-weight: 400; }
  .form-group label.control-label, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .fmo-download-dialog__form-group label.control-label, .fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    font-size: 12px;
    line-height: 1.07143;
    font-weight: 400;
    margin: 16px 0 0; }
  .form-group .help-block, .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .fmo-download-dialog__form-group .help-block, .fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    margin-top: 0;
    font-size: 12px; }
  .form-group.label-floating label.control-label, .label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-floating.fmo-download-dialog__form-group label.control-label, .label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.label-placeholder label.control-label, .label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-placeholder.fmo-download-dialog__form-group label.control-label, .label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    top: -7px;
    font-size: 16px;
    line-height: 1.42857; }
  .form-group.label-static label.control-label, .label-static.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-static.fmo-download-dialog__form-group label.control-label, .label-static.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.label-floating.is-focused label.control-label, .label-floating.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .label-floating.is-focused.fmo-download-dialog__form-group label.control-label, .label-floating.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.label-floating:not(.is-empty) label.control-label, .label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label, .label-floating.fmo-download-dialog__form-group:not(.is-empty) label.control-label, .label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label {
    top: -30px;
    left: 0;
    font-size: 12px;
    line-height: 1.07143; }
  .form-group.label-floating input.form-control:-webkit-autofill ~ label.control-label label.control-label, .label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label, .label-floating.fmo-download-dialog__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label, .label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label {
    top: -30px;
    left: 0;
    font-size: 12px;
    line-height: 1.07143; }

.form-group.form-group-sm, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .form-group-sm.fmo-download-dialog__form-group, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group {
  padding-bottom: 3px;
  margin: 22px 0 0 0; }
  .form-group.form-group-sm .form-control, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .form-group-sm.fmo-download-dialog__form-group .form-control, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    margin-bottom: 3px; }
    .form-group.form-group-sm .form-control::-moz-placeholder, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder, .form-group-sm.fmo-download-dialog__form-group .form-control::-moz-placeholder, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder {
      font-size: 13px;
      line-height: 1.5;
      color: #bdbdbd;
      font-weight: 400; }
    .form-group.form-group-sm .form-control:-ms-input-placeholder, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder, .form-group-sm.fmo-download-dialog__form-group .form-control:-ms-input-placeholder, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder {
      font-size: 13px;
      line-height: 1.5;
      color: #bdbdbd;
      font-weight: 400; }
    .form-group.form-group-sm .form-control::-webkit-input-placeholder, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder, .form-group-sm.fmo-download-dialog__form-group .form-control::-webkit-input-placeholder, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder {
      font-size: 13px;
      line-height: 1.5;
      color: #bdbdbd;
      font-weight: 400; }
  .form-group.form-group-sm .checkbox label, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label, .form-group-sm.fmo-download-dialog__form-group .checkbox label, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label,
  .form-group.form-group-sm .radio label, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label, .form-group-sm.fmo-download-dialog__form-group .radio label, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label,
  .form-group.form-group-sm label, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label, .form-group-sm.fmo-download-dialog__form-group label, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group label {
    font-size: 13px;
    line-height: 1.5;
    color: #bdbdbd;
    font-weight: 400; }
  .form-group.form-group-sm label.control-label, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-sm.fmo-download-dialog__form-group label.control-label, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    font-size: 10px;
    line-height: 1.125;
    font-weight: 400;
    margin: 16px 0 0; }
  .form-group.form-group-sm .help-block, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .form-group-sm.fmo-download-dialog__form-group .help-block, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    margin-top: 0;
    font-size: 10px; }
  .form-group.form-group-sm.label-floating label.control-label, .form-group-sm.label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-sm.label-floating.fmo-download-dialog__form-group label.control-label, .form-group-sm.label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.form-group-sm.label-placeholder label.control-label, .form-group-sm.label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-sm.label-placeholder.fmo-download-dialog__form-group label.control-label, .form-group-sm.label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    top: -11px;
    font-size: 13px;
    line-height: 1.5; }
  .form-group.form-group-sm.label-static label.control-label, .form-group-sm.label-static.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-sm.label-static.fmo-download-dialog__form-group label.control-label, .form-group-sm.label-static.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.form-group-sm.label-floating.is-focused label.control-label, .form-group-sm.label-floating.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-sm.label-floating.is-focused.fmo-download-dialog__form-group label.control-label, .form-group-sm.label-floating.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.form-group-sm.label-floating:not(.is-empty) label.control-label, .form-group-sm.label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label, .form-group-sm.label-floating.fmo-download-dialog__form-group:not(.is-empty) label.control-label, .form-group-sm.label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label {
    top: -27px;
    left: 0;
    font-size: 10px;
    line-height: 1.125; }
  .form-group.form-group-sm.label-floating input.form-control:-webkit-autofill ~ label.control-label label.control-label, .form-group-sm.label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label, .form-group-sm.label-floating.fmo-download-dialog__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label, .form-group-sm.label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label {
    top: -27px;
    left: 0;
    font-size: 10px;
    line-height: 1.125; }

.form-group.form-group-lg, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .form-group-lg.fmo-download-dialog__form-group, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group {
  padding-bottom: 9px;
  margin: 32px 0 0 0; }
  .form-group.form-group-lg .form-control, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .form-group-lg.fmo-download-dialog__form-group .form-control, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    margin-bottom: 9px; }
    .form-group.form-group-lg .form-control::-moz-placeholder, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder, .form-group-lg.fmo-download-dialog__form-group .form-control::-moz-placeholder, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-moz-placeholder {
      font-size: 21px;
      line-height: 1.33333;
      color: #bdbdbd;
      font-weight: 400; }
    .form-group.form-group-lg .form-control:-ms-input-placeholder, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder, .form-group-lg.fmo-download-dialog__form-group .form-control:-ms-input-placeholder, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control:-ms-input-placeholder {
      font-size: 21px;
      line-height: 1.33333;
      color: #bdbdbd;
      font-weight: 400; }
    .form-group.form-group-lg .form-control::-webkit-input-placeholder, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder, .form-group-lg.fmo-download-dialog__form-group .form-control::-webkit-input-placeholder, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control::-webkit-input-placeholder {
      font-size: 21px;
      line-height: 1.33333;
      color: #bdbdbd;
      font-weight: 400; }
  .form-group.form-group-lg .checkbox label, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .checkbox label, .form-group-lg.fmo-download-dialog__form-group .checkbox label, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .checkbox label,
  .form-group.form-group-lg .radio label, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio label, .form-group-lg.fmo-download-dialog__form-group .radio label, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio label,
  .form-group.form-group-lg label, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label, .form-group-lg.fmo-download-dialog__form-group label, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group label {
    font-size: 21px;
    line-height: 1.33333;
    color: #bdbdbd;
    font-weight: 400; }
  .form-group.form-group-lg label.control-label, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-lg.fmo-download-dialog__form-group label.control-label, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    font-size: 16px;
    line-height: 1.0;
    font-weight: 400;
    margin: 16px 0 0; }
  .form-group.form-group-lg .help-block, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .form-group-lg.fmo-download-dialog__form-group .help-block, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
    margin-top: 0;
    font-size: 16px; }
  .form-group.form-group-lg.label-floating label.control-label, .form-group-lg.label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-lg.label-floating.fmo-download-dialog__form-group label.control-label, .form-group-lg.label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.form-group-lg.label-placeholder label.control-label, .form-group-lg.label-placeholder.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-lg.label-placeholder.fmo-download-dialog__form-group label.control-label, .form-group-lg.label-placeholder.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    top: -5px;
    font-size: 21px;
    line-height: 1.33333; }
  .form-group.form-group-lg.label-static label.control-label, .form-group-lg.label-static.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-lg.label-static.fmo-download-dialog__form-group label.control-label, .form-group-lg.label-static.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.form-group-lg.label-floating.is-focused label.control-label, .form-group-lg.label-floating.is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group-lg.label-floating.is-focused.fmo-download-dialog__form-group label.control-label, .form-group-lg.label-floating.is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label, .form-group.form-group-lg.label-floating:not(.is-empty) label.control-label, .form-group-lg.label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label, .form-group-lg.label-floating.fmo-download-dialog__form-group:not(.is-empty) label.control-label, .form-group-lg.label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group:not(.is-empty) label.control-label {
    top: -35px;
    left: 0;
    font-size: 16px;
    line-height: 1.0; }
  .form-group.form-group-lg.label-floating input.form-control:-webkit-autofill ~ label.control-label label.control-label, .form-group-lg.label-floating.fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label, .form-group-lg.label-floating.fmo-download-dialog__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label, .form-group-lg.label-floating.fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-webkit-autofill ~ label.control-label label.control-label {
    top: -35px;
    left: 0;
    font-size: 16px;
    line-height: 1.0; }

select.form-control {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .form-group.is-focused select.form-control, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group select.form-control, .is-focused.fmo-download-dialog__form-group select.form-control, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group select.form-control {
    border-color: #d2d2d2;
    -webkit-box-shadow: none;
    box-shadow: none; }
  select.form-control[multiple],
  .form-group.is-focused select.form-control[multiple], .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group select.form-control[multiple], .is-focused.fmo-download-dialog__form-group select.form-control[multiple], .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group select.form-control[multiple] {
    height: 85px; }

.input-group-btn .btn {
  margin: 0 0 7px 0; }

.form-group.form-group-sm .input-group-btn .btn, .form-group-sm.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .input-group-btn .btn, .form-group-sm.fmo-download-dialog__form-group .input-group-btn .btn, .form-group-sm.fmo-macro-calculator__container__form__slider__slides__slide__form-group .input-group-btn .btn {
  margin: 0 0 3px 0; }

.form-group.form-group-lg .input-group-btn .btn, .form-group-lg.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .input-group-btn .btn, .form-group-lg.fmo-download-dialog__form-group .input-group-btn .btn, .form-group-lg.fmo-macro-calculator__container__form__slider__slides__slide__form-group .input-group-btn .btn {
  margin: 0 0 9px 0; }

.input-group .input-group-btn {
  padding: 0 12px; }

.input-group .input-group-addon {
  border: 0;
  background: transparent; }

.form-group input[type=file], .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input[type=file], .fmo-download-dialog__form-group input[type=file], .fmo-macro-calculator__container__form__slider__slides__slide__form-group input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  filter: alpha(opacity=0); }

.list-group {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .list-group .list-group-item {
    background-color: transparent;
    overflow: hidden;
    border: 0;
    padding: 0 16px;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .list-group .list-group-item.baseline {
      border-bottom: 1px solid #cecece; }
      .list-group .list-group-item.baseline:last-child {
        border-bottom: none; }
    .list-group .list-group-item .row-picture,
    .list-group .list-group-item .row-action-primary {
      display: inline-block;
      padding-right: 16px; }
      .list-group .list-group-item .row-picture img,
      .list-group .list-group-item .row-picture i,
      .list-group .list-group-item .row-picture label,
      .list-group .list-group-item .row-action-primary img,
      .list-group .list-group-item .row-action-primary i,
      .list-group .list-group-item .row-action-primary label {
        display: block;
        width: 56px;
        height: 56px; }
      .list-group .list-group-item .row-picture img,
      .list-group .list-group-item .row-action-primary img {
        background: rgba(0, 0, 0, 0.1);
        padding: 1px; }
        .list-group .list-group-item .row-picture img.circle,
        .list-group .list-group-item .row-action-primary img.circle {
          -webkit-border-radius: 100%px;
          -khtml-border-radius: 100%px;
          -moz-border-radius: 100%px;
          -ms-border-radius: 100%px;
          -o-border-radius: 100%px;
          border-radius: 100%px;
          -webkit-border-radius: 100%;
          -khtml-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%;
          border-radius: 100%;
          -webkit-background-clip: padding-box;
          -khtml-background-clip: padding-box;
          -moz-background-clip: padding-box;
          -ms-background-clip: padding-box;
          -o-background-clip: padding-box;
          background-clip: padding-box; }
      .list-group .list-group-item .row-picture i,
      .list-group .list-group-item .row-action-primary i {
        background: rgba(0, 0, 0, 0.25);
        text-align: center;
        line-height: 56px;
        font-size: 20px;
        color: white;
        -webkit-border-radius: 100%px;
        -khtml-border-radius: 100%px;
        -moz-border-radius: 100%px;
        -ms-border-radius: 100%px;
        -o-border-radius: 100%px;
        border-radius: 100%px;
        -webkit-border-radius: 100%;
        -khtml-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .list-group .list-group-item .row-picture label,
      .list-group .list-group-item .row-action-primary label {
        margin-left: 7px;
        margin-right: -7px;
        margin-top: 5px;
        margin-bottom: -5px; }
        .list-group .list-group-item .row-picture label .checkbox-material,
        .list-group .list-group-item .row-action-primary label .checkbox-material {
          left: -10px; }
    .list-group .list-group-item .row-content {
      display: inline-block;
      width: calc(100% - 92px);
      min-height: 66px; }
      .list-group .list-group-item .row-content .action-secondary {
        position: absolute;
        right: 16px;
        top: 16px; }
        .list-group .list-group-item .row-content .action-secondary i {
          font-size: 20px;
          color: rgba(0, 0, 0, 0.25);
          cursor: pointer; }
      .list-group .list-group-item .row-content .action-secondary ~ * {
        max-width: calc(100% - 30px); }
      .list-group .list-group-item .row-content .least-content {
        position: absolute;
        right: 16px;
        top: 0;
        color: rgba(0, 0, 0, 0.54);
        font-size: 14px; }
    .list-group .list-group-item .list-group-item-heading {
      color: rgba(0, 0, 0, 0.77);
      font-size: 20px;
      line-height: 29px; }
  .list-group .list-group-item.active:hover, .list-group .list-group-item.active:focus {
    background: rgba(0, 0, 0, 0.15);
    outline: 10px solid rgba(0, 0, 0, 0.15); }
  .list-group .list-group-item.active .list-group-item-heading,
  .list-group .list-group-item.active .list-group-item-text {
    color: rgba(0, 0, 0, 0.87); }
  .list-group .list-group-separator {
    clear: both;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px; }
    .list-group .list-group-separator::before {
      content: "";
      width: calc(100% - 90px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      float: right; }

.navbar {
  background-color: #3f8bcd;
  border: 0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .navbar .navbar-brand {
    position: relative;
    height: 60px;
    line-height: 30px;
    color: inherit; }
    .navbar .navbar-brand:hover, .navbar .navbar-brand:focus {
      color: inherit;
      background-color: transparent; }
  .navbar .navbar-text {
    color: inherit;
    margin-top: 20px;
    margin-bottom: 20px; }
  .navbar .navbar-nav > li > a {
    color: inherit;
    padding-top: 20px;
    padding-bottom: 20px; }
    .navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus {
      color: inherit;
      background-color: transparent; }
  .navbar .navbar-nav > .active > a, .navbar .navbar-nav > .active > a:hover, .navbar .navbar-nav > .active > a:focus {
    color: inherit;
    background-color: rgba(255, 255, 255, 0.1); }
  .navbar .navbar-nav > .disabled > a, .navbar .navbar-nav > .disabled > a:hover, .navbar .navbar-nav > .disabled > a:focus {
    color: inherit;
    background-color: transparent;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .navbar .navbar-toggle {
    border: 0; }
    .navbar .navbar-toggle:hover, .navbar .navbar-toggle:focus {
      background-color: transparent; }
    .navbar .navbar-toggle .icon-bar {
      background-color: inherit;
      border: 1px solid; }
  .navbar .navbar-default .navbar-toggle,
  .navbar .navbar-inverse .navbar-toggle {
    border-color: transparent; }
  .navbar .navbar-collapse,
  .navbar .navbar-form {
    border-color: rgba(0, 0, 0, 0.1); }
  .navbar .navbar-nav > .open > a, .navbar .navbar-nav > .open > a:hover, .navbar .navbar-nav > .open > a:focus {
    background-color: transparent;
    color: inherit; }
  @media (max-width: 767px) {
    .navbar .navbar-nav .navbar-text {
      color: inherit;
      margin-top: 15px;
      margin-bottom: 15px; }
    .navbar .navbar-nav .dropdown .dropdown-toggle .caret {
      display: none; }
    .navbar .navbar-nav .dropdown .dropdown-toggle::after {
      content: 'keyboard_arrow_right';
      font-family: 'Material Icons';
      font-size: 1.5em;
      float: right; }
    .navbar .navbar-nav .dropdown .dropdown-menu {
      margin-left: 20px; }
    .navbar .navbar-nav .dropdown.open .dropdown-toggle::after {
      content: 'keyboard_arrow_down'; }
    .navbar .navbar-nav .dropdown.open .dropdown-menu > .dropdown-header {
      border: 0;
      color: inherit; }
    .navbar .navbar-nav .dropdown.open .dropdown-menu .divider {
      border-bottom: 1px solid;
      opacity: 0.08;
      filter: alpha(opacity=8); }
    .navbar .navbar-nav .dropdown.open .dropdown-menu > li > a {
      color: inherit;
      font-size: inherit; }
      .navbar .navbar-nav .dropdown.open .dropdown-menu > li > a:hover, .navbar .navbar-nav .dropdown.open .dropdown-menu > li > a:focus {
        color: inherit;
        background-color: transparent; }
    .navbar .navbar-nav .dropdown.open .dropdown-menu > .active > a, .navbar .navbar-nav .dropdown.open .dropdown-menu > .active > a:hover, .navbar .navbar-nav .dropdown.open .dropdown-menu > .active > a:focus {
      color: inherit;
      background-color: transparent; }
    .navbar .navbar-nav .dropdown.open .dropdown-menu > .disabled > a, .navbar .navbar-nav .dropdown.open .dropdown-menu > .disabled > a:hover, .navbar .navbar-nav .dropdown.open .dropdown-menu > .disabled > a:focus {
      color: inherit;
      background-color: transparent; } }
  .navbar .navbar-link {
    color: inherit; }
    .navbar .navbar-link:hover {
      color: inherit; }
  .navbar .btn-link {
    color: inherit; }
    .navbar .btn-link:hover, .navbar .btn-link:focus {
      color: inherit; }
    .navbar .btn-link[disabled]:hover, .navbar .btn-link[disabled]:focus,
    fieldset[disabled] .navbar .btn-link:hover,
    fieldset[disabled] .navbar .btn-link:focus {
      color: inherit; }
  .navbar .navbar-form {
    margin-top: 16px; }
    .navbar .navbar-form .form-group, .navbar .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group, .navbar .navbar-form .fmo-download-dialog__form-group, .navbar .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group {
      margin: 0;
      padding: 0; }
      .navbar .navbar-form .form-group .material-input::before, .navbar .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .material-input::before, .navbar .navbar-form .fmo-download-dialog__form-group .material-input::before, .navbar .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group .material-input::before,
      .navbar .navbar-form .form-group.is-focused .material-input::after,
      .navbar .navbar-form .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .material-input::after,
      .navbar .navbar-form .is-focused.fmo-download-dialog__form-group .material-input::after,
      .navbar .navbar-form .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .material-input::after {
        background-color: inherit; }
    .navbar .navbar-form .form-group .form-control, .navbar .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .navbar .navbar-form .fmo-download-dialog__form-group .form-control, .navbar .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control,
    .navbar .navbar-form .form-control {
      border-color: inherit;
      color: inherit;
      padding: 0;
      margin: 0;
      height: 31px;
      font-size: 16.5px;
      line-height: 1.42857; }
  .navbar, .navbar.navbar-default {
    background-color: #3f8bcd;
    color: rgba(255, 255, 255, 0.84); }
    .navbar .navbar-form .form-group input.form-control::-moz-placeholder, .navbar .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar .navbar-form input.form-control::-moz-placeholder, .navbar.navbar-default .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-default .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-default .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-default .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-default .navbar-form input.form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar .navbar-form input.form-control:-ms-input-placeholder, .navbar.navbar-default .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-default .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-default .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-default .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-default .navbar-form input.form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar .navbar-form input.form-control::-webkit-input-placeholder, .navbar.navbar-default .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-default .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-default .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-default .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-default .navbar-form input.form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar .dropdown-menu, .navbar.navbar-default .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar .dropdown-menu li > a, .navbar.navbar-default .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar .dropdown-menu li > a:hover, .navbar .dropdown-menu li > a:focus, .navbar.navbar-default .dropdown-menu li > a:hover, .navbar.navbar-default .dropdown-menu li > a:focus {
          color: #3f8bcd;
          background-color: #eee; }
      .navbar .dropdown-menu .active > a, .navbar.navbar-default .dropdown-menu .active > a {
        background-color: #3f8bcd;
        color: rgba(255, 255, 255, 0.84); }
        .navbar .dropdown-menu .active > a:hover, .navbar .dropdown-menu .active > a:focus, .navbar.navbar-default .dropdown-menu .active > a:hover, .navbar.navbar-default .dropdown-menu .active > a:focus {
          color: rgba(255, 255, 255, 0.84); }
  .navbar.navbar-inverse {
    background-color: #3f51b5;
    color: #fff; }
    .navbar.navbar-inverse .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-inverse .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-inverse .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-inverse .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-inverse .navbar-form input.form-control::-moz-placeholder {
      color: #fff; }
    .navbar.navbar-inverse .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-inverse .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-inverse .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-inverse .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-inverse .navbar-form input.form-control:-ms-input-placeholder {
      color: #fff; }
    .navbar.navbar-inverse .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-inverse .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-inverse .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-inverse .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-inverse .navbar-form input.form-control::-webkit-input-placeholder {
      color: #fff; }
    .navbar.navbar-inverse .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar.navbar-inverse .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar.navbar-inverse .dropdown-menu li > a:hover, .navbar.navbar-inverse .dropdown-menu li > a:focus {
          color: #3f51b5;
          background-color: #eee; }
      .navbar.navbar-inverse .dropdown-menu .active > a {
        background-color: #3f51b5;
        color: #fff; }
        .navbar.navbar-inverse .dropdown-menu .active > a:hover, .navbar.navbar-inverse .dropdown-menu .active > a:focus {
          color: #fff; }
  .navbar.navbar-primary {
    background-color: #3f8bcd;
    color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-primary .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-primary .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-primary .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-primary .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-primary .navbar-form input.form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-primary .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-primary .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-primary .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-primary .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-primary .navbar-form input.form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-primary .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-primary .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-primary .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-primary .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-primary .navbar-form input.form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-primary .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar.navbar-primary .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar.navbar-primary .dropdown-menu li > a:hover, .navbar.navbar-primary .dropdown-menu li > a:focus {
          color: #3f8bcd;
          background-color: #eee; }
      .navbar.navbar-primary .dropdown-menu .active > a {
        background-color: #3f8bcd;
        color: rgba(255, 255, 255, 0.84); }
        .navbar.navbar-primary .dropdown-menu .active > a:hover, .navbar.navbar-primary .dropdown-menu .active > a:focus {
          color: rgba(255, 255, 255, 0.84); }
  .navbar.navbar-success {
    background-color: #5cb85c;
    color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-success .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-success .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-success .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-success .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-success .navbar-form input.form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-success .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-success .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-success .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-success .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-success .navbar-form input.form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-success .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-success .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-success .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-success .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-success .navbar-form input.form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-success .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar.navbar-success .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar.navbar-success .dropdown-menu li > a:hover, .navbar.navbar-success .dropdown-menu li > a:focus {
          color: #5cb85c;
          background-color: #eee; }
      .navbar.navbar-success .dropdown-menu .active > a {
        background-color: #5cb85c;
        color: rgba(255, 255, 255, 0.84); }
        .navbar.navbar-success .dropdown-menu .active > a:hover, .navbar.navbar-success .dropdown-menu .active > a:focus {
          color: rgba(255, 255, 255, 0.84); }
  .navbar.navbar-info {
    background-color: #5bc0de;
    color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-info .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-info .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-info .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-info .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-info .navbar-form input.form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-info .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-info .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-info .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-info .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-info .navbar-form input.form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-info .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-info .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-info .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-info .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-info .navbar-form input.form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-info .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar.navbar-info .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar.navbar-info .dropdown-menu li > a:hover, .navbar.navbar-info .dropdown-menu li > a:focus {
          color: #5bc0de;
          background-color: #eee; }
      .navbar.navbar-info .dropdown-menu .active > a {
        background-color: #5bc0de;
        color: rgba(255, 255, 255, 0.84); }
        .navbar.navbar-info .dropdown-menu .active > a:hover, .navbar.navbar-info .dropdown-menu .active > a:focus {
          color: rgba(255, 255, 255, 0.84); }
  .navbar.navbar-warning {
    background-color: #f0ad4e;
    color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-warning .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-warning .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-warning .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-warning .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-warning .navbar-form input.form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-warning .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-warning .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-warning .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-warning .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-warning .navbar-form input.form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-warning .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-warning .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-warning .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-warning .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-warning .navbar-form input.form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-warning .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar.navbar-warning .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar.navbar-warning .dropdown-menu li > a:hover, .navbar.navbar-warning .dropdown-menu li > a:focus {
          color: #f0ad4e;
          background-color: #eee; }
      .navbar.navbar-warning .dropdown-menu .active > a {
        background-color: #f0ad4e;
        color: rgba(255, 255, 255, 0.84); }
        .navbar.navbar-warning .dropdown-menu .active > a:hover, .navbar.navbar-warning .dropdown-menu .active > a:focus {
          color: rgba(255, 255, 255, 0.84); }
  .navbar.navbar-danger {
    background-color: #d9534f;
    color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-danger .navbar-form .form-group input.form-control::-moz-placeholder, .navbar.navbar-danger .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder, .navbar.navbar-danger .navbar-form .fmo-download-dialog__form-group input.form-control::-moz-placeholder, .navbar.navbar-danger .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-moz-placeholder,
    .navbar.navbar-danger .navbar-form input.form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-danger .navbar-form .form-group input.form-control:-ms-input-placeholder, .navbar.navbar-danger .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-danger .navbar-form .fmo-download-dialog__form-group input.form-control:-ms-input-placeholder, .navbar.navbar-danger .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control:-ms-input-placeholder,
    .navbar.navbar-danger .navbar-form input.form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-danger .navbar-form .form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-danger .navbar-form .fmo-cpc-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-danger .navbar-form .fmo-download-dialog__form-group input.form-control::-webkit-input-placeholder, .navbar.navbar-danger .navbar-form .fmo-macro-calculator__container__form__slider__slides__slide__form-group input.form-control::-webkit-input-placeholder,
    .navbar.navbar-danger .navbar-form input.form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.84); }
    .navbar.navbar-danger .dropdown-menu {
      -webkit-border-radius: 4pxpx;
      -khtml-border-radius: 4pxpx;
      -moz-border-radius: 4pxpx;
      -ms-border-radius: 4pxpx;
      -o-border-radius: 4pxpx;
      border-radius: 4pxpx;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .navbar.navbar-danger .dropdown-menu li > a {
        font-size: 16px;
        padding: 13px 16px; }
        .navbar.navbar-danger .dropdown-menu li > a:hover, .navbar.navbar-danger .dropdown-menu li > a:focus {
          color: #d9534f;
          background-color: #eee; }
      .navbar.navbar-danger .dropdown-menu .active > a {
        background-color: #d9534f;
        color: rgba(255, 255, 255, 0.84); }
        .navbar.navbar-danger .dropdown-menu .active > a:hover, .navbar.navbar-danger .dropdown-menu .active > a:focus {
          color: rgba(255, 255, 255, 0.84); }
  .navbar-inverse {
    background-color: #3f51b5; }
  @media (max-width: 1199px) {
    .navbar .navbar-brand {
      height: 50px;
      padding: 10px 15px; }
    .navbar .navbar-form {
      margin-top: 10px; }
    .navbar .navbar-nav > li > a {
      padding-top: 15px;
      padding-bottom: 15px; } }

.alert {
  border: 0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .alert, .alert.alert-default {
    background-color: rgba(255, 255, 255, 0.84);
    color: rgba(255, 255, 255, 0.84); }
    .alert a,
    .alert .alert-link, .alert.alert-default a,
    .alert.alert-default .alert-link {
      color: rgba(255, 255, 255, 0.84); }
  .alert.alert-inverse {
    background-color: #3f51b5;
    color: #fff; }
    .alert.alert-inverse a,
    .alert.alert-inverse .alert-link {
      color: #fff; }
  .alert.alert-primary {
    background-color: #3f8bcd;
    color: rgba(255, 255, 255, 0.84); }
    .alert.alert-primary a,
    .alert.alert-primary .alert-link {
      color: rgba(255, 255, 255, 0.84); }
  .alert.alert-success {
    background-color: #5cb85c;
    color: rgba(255, 255, 255, 0.84); }
    .alert.alert-success a,
    .alert.alert-success .alert-link {
      color: rgba(255, 255, 255, 0.84); }
  .alert.alert-info {
    background-color: #5bc0de;
    color: rgba(255, 255, 255, 0.84); }
    .alert.alert-info a,
    .alert.alert-info .alert-link {
      color: rgba(255, 255, 255, 0.84); }
  .alert.alert-warning {
    background-color: #f0ad4e;
    color: rgba(255, 255, 255, 0.84); }
    .alert.alert-warning a,
    .alert.alert-warning .alert-link {
      color: rgba(255, 255, 255, 0.84); }
  .alert.alert-danger {
    background-color: #d9534f;
    color: rgba(255, 255, 255, 0.84); }
    .alert.alert-danger a,
    .alert.alert-danger .alert-link {
      color: rgba(255, 255, 255, 0.84); }
  .alert-info, .alert-danger, .alert-warning, .alert-success {
    color: rgba(255, 255, 255, 0.84); }
  .alert-default a,
  .alert-default .alert-link {
    color: rgba(0, 0, 0, 0.87); }

.progress {
  height: 4px;
  background: #c8c8c8;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .progress .progress-bar {
    -webkit-box-shadow: none;
    box-shadow: none; }
    .progress .progress-bar, .progress .progress-bar.progress-bar-default {
      background-color: #3f8bcd; }
    .progress .progress-bar.progress-bar-inverse {
      background-color: #3f51b5; }
    .progress .progress-bar.progress-bar-primary {
      background-color: #3f8bcd; }
    .progress .progress-bar.progress-bar-success {
      background-color: #5cb85c; }
    .progress .progress-bar.progress-bar-info {
      background-color: #5bc0de; }
    .progress .progress-bar.progress-bar-warning {
      background-color: #f0ad4e; }
    .progress .progress-bar.progress-bar-danger {
      background-color: #d9534f; }

.text-warning {
  color: #f0ad4e; }

.text-primary {
  color: #3f8bcd; }

.text-danger {
  color: #d9534f; }

.text-success {
  color: #5cb85c; }

.text-info {
  color: #5bc0de; }

.nav-tabs {
  background: #3f8bcd; }
  .nav-tabs > li > a {
    color: #fff;
    border: 0;
    margin: 0; }
    .nav-tabs > li > a:hover {
      background-color: transparent;
      border: 0; }
  .nav-tabs > li > a,
  .nav-tabs > li > a:hover,
  .nav-tabs > li > a:focus {
    background-color: transparent;
    border: 0;
    color: #fff;
    font-weight: 500; }
  .nav-tabs > li.disabled > a,
  .nav-tabs > li.disabled > a:hover {
    color: rgba(255, 255, 255, 0.5); }

.popover,
.tooltip-inner {
  color: #ececec;
  line-height: 1em;
  background: rgba(101, 101, 101, 0.9);
  border: none;
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12); }

.tooltip,
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100); }

.popover .arrow,
.popover .tooltip-arrow,
.tooltip .arrow,
.tooltip .tooltip-arrow {
  display: none; }

.card {
  display: inline-block;
  position: relative;
  width: 100%;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
  .card .card-height-indicator {
    margin-top: 100%; }
  .card .card-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .card .card-image {
    height: 60%;
    position: relative;
    overflow: hidden; }
    .card .card-image img {
      width: 100%;
      height: 100%;
      border-top-left-radius: 2px;
      border-top-right-radius: 2px;
      pointer-events: none; }
    .card .card-image .card-image-headline {
      position: absolute;
      bottom: 16px;
      left: 18px;
      color: #fff;
      font-size: 2em; }
  .card .card-body {
    height: 30%;
    padding: 18px; }
  .card .card-footer {
    height: 10%;
    padding: 18px; }
    .card .card-footer button,
    .card .card-footer a {
      margin: 0;
      position: relative;
      bottom: 25px;
      width: auto; }
      .card .card-footer button:first-child,
      .card .card-footer a:first-child {
        left: -15px; }

.modal-content {
  border: none;
  -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .modal-content .modal-header {
    border-bottom: none;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px; }
  .modal-content .modal-body {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px; }
  .modal-content .modal-footer {
    border-top: none;
    padding: 7px; }
    .modal-content .modal-footer button {
      margin: 0;
      padding-left: 16px;
      padding-right: 16px;
      width: auto; }
      .modal-content .modal-footer button.pull-left {
        padding-left: 5px;
        padding-right: 5px;
        position: relative;
        left: -5px; }
    .modal-content .modal-footer button + button {
      margin-bottom: 16px; }
  .modal-content .modal-body + .modal-footer {
    padding-top: 0; }

.modal-backdrop {
  background: rgba(0, 0, 0, 0.3); }

.panel {
  border: 0;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 0.125rem;
  -khtml-border-radius: 0.125rem;
  -moz-border-radius: 0.125rem;
  -ms-border-radius: 0.125rem;
  -o-border-radius: 0.125rem;
  border-radius: 0.125rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12); }
  .panel > .panel-heading,
  .panel.panel-default > .panel-heading {
    background-color: #eee; }
  .panel.panel-inverse > .panel-heading {
    background-color: #3f51b5; }
  .panel.panel-primary > .panel-heading {
    background-color: #3f8bcd; }
  .panel.panel-success > .panel-heading {
    background-color: #5cb85c; }
  .panel.panel-info > .panel-heading {
    background-color: #5bc0de; }
  .panel.panel-warning > .panel-heading {
    background-color: #f0ad4e; }
  .panel.panel-danger > .panel-heading {
    background-color: #d9534f; }

[class*="panel-"] > .panel-heading {
  color: rgba(255, 255, 255, 0.84);
  border: 0; }

.panel-default > .panel-heading,
.panel:not([class*="panel-"]) > .panel-heading {
  color: rgba(0, 0, 0, 0.87); }

.panel-footer {
  background-color: #eee; }

hr.on-dark {
  color: #1a1a1a; }

hr.on-light {
  color: white; }

@media (-webkit-min-device-pixel-ratio: 0.75), (min--moz-device-pixel-ratio: 0.75), (-o-device-pixel-ratio: 3 / 4), (min-device-pixel-ratio: 0.75), (min-resolution: 0.75dppx), (min-resolution: 120dpi) {
  hr {
    height: 0.75px; } }

@media (-webkit-min-device-pixel-ratio: 1), (min--moz-device-pixel-ratio: 1), (-o-device-pixel-ratio: 1), (min-device-pixel-ratio: 1), (min-resolution: 1dppx), (min-resolution: 160dpi) {
  hr {
    height: 1px; } }

@media (-webkit-min-device-pixel-ratio: 1.33), (min--moz-device-pixel-ratio: 1.33), (-o-device-pixel-ratio: 133 / 100), (min-device-pixel-ratio: 1.33), (min-resolution: 1.33dppx), (min-resolution: 213dpi) {
  hr {
    height: 1.333px; } }

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 240dpi) {
  hr {
    height: 1.5px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-device-pixel-ratio: 2 / 1), (min-device-pixel-ratio: 2), (min-resolution: 2dppx), (min-resolution: 380dpi) {
  hr {
    height: 2px; } }

@media (-webkit-min-device-pixel-ratio: 3), (min--moz-device-pixel-ratio: 3), (-o-device-pixel-ratio: 3 / 1), (min-device-pixel-ratio: 3), (min-resolution: 3dppx), (min-resolution: 480dpi) {
  hr {
    height: 3px; } }

@media (-webkit-min-device-pixel-ratio: 4), (min--moz-device-pixel-ratio: 4), (-o-device-pixel-ratio: 4 / 1), (min-device-pixel-ratio: 3), (min-resolution: 4dppx), (min-resolution: 640dpi) {
  hr {
    height: 4px; } }

.snackbar {
  background-color: #323232;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  height: 0;
  -webkit-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s;
  -o-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s;
  transform: -webkit-translateY(200%);
  transform: -khtml-translateY(200%);
  transform: -moz-translateY(200%);
  transform: -ms-translateY(200%);
  transform: -o-translateY(200%);
  transform: translateY(200%); }

.snackbar.snackbar-opened {
  padding: 14px 15px;
  margin-bottom: 20px;
  height: auto;
  -webkit-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, height 0s linear 0.2s;
  -o-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, height 0s linear 0.2s;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, height 0s linear 0.2s;
  transform: -webkit-none;
  transform: -khtml-none;
  transform: -moz-none;
  transform: -ms-none;
  transform: -o-none;
  transform: none; }

.snackbar.toast {
  -webkit-border-radius: 200px;
  -khtml-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  border-radius: 200px;
  -webkit-border-radius: 12.5rem;
  -khtml-border-radius: 12.5rem;
  -moz-border-radius: 12.5rem;
  -ms-border-radius: 12.5rem;
  -o-border-radius: 12.5rem;
  border-radius: 12.5rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.noUi-target,
.noUi-target * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative; }

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0; }

.noUi-handle {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-stacking .noUi-handle {
  z-index: 10; }

.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  -o-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s; }

.noUi-state-drag * {
  cursor: inherit; }

.noUi-horizontal {
  height: 10px; }

.noUi-handle {
  width: 12px;
  height: 12px;
  left: -10px;
  top: -5px;
  cursor: ew-resize;
  border: 1px solid;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 100%px;
  -khtml-border-radius: 100%px;
  -moz-border-radius: 100%px;
  -ms-border-radius: 100%px;
  -o-border-radius: 100%px;
  border-radius: 100%px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.noUi-vertical .noUi-handle {
  margin-left: 5px;
  cursor: ns-resize; }

.noUi-horizontal.noUi-extended {
  padding: 0 15px; }

.noUi-horizontal.noUi-extended .noUi-origin {
  right: -15px; }

.noUi-background {
  height: 2px;
  margin: 20px 0; }

.noUi-origin {
  margin: 0;
  height: 2px;
  background: #c8c8c8;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .noUi-origin[style^="left: 0"] .noUi-handle {
    background-color: #fff;
    border: 2px solid #c8c8c8; }
    .noUi-origin[style^="left: 0"] .noUi-handle.noUi-active {
      border-width: 1px; }

.noUi-target {
  -webkit-border-radius: 4pxpx;
  -khtml-border-radius: 4pxpx;
  -moz-border-radius: 4pxpx;
  -ms-border-radius: 4pxpx;
  -o-border-radius: 4pxpx;
  border-radius: 4pxpx;
  -webkit-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.noUi-horizontal {
  height: 2px;
  margin: 15px 0; }

.noUi-vertical {
  height: 100%;
  width: 2px;
  margin: 0 15px;
  display: inline-block; }

.noUi-handle.noUi-active {
  transform: -webkit-scale3d(2.5, 2.5, 1);
  transform: -khtml-scale3d(2.5, 2.5, 1);
  transform: -moz-scale3d(2.5, 2.5, 1);
  transform: -ms-scale3d(2.5, 2.5, 1);
  transform: -o-scale3d(2.5, 2.5, 1);
  transform: scale3d(2.5, 2.5, 1); }

[disabled].noUi-slider {
  opacity: 0.5;
  filter: alpha(opacity=50); }

[disabled] .noUi-handle {
  cursor: not-allowed; }

.slider {
  background: #c8c8c8; }

.slider.noUi-connect, .slider.slider-default.noUi-connect {
  background-color: #009688; }

.slider.slider-inverse.noUi-connect {
  background-color: #3f51b5; }

.slider.slider-primary.noUi-connect {
  background-color: #3f8bcd; }

.slider.slider-success.noUi-connect {
  background-color: #5cb85c; }

.slider.slider-info.noUi-connect {
  background-color: #5bc0de; }

.slider.slider-warning.noUi-connect {
  background-color: #f0ad4e; }

.slider.slider-danger.noUi-connect {
  background-color: #d9534f; }

.slider .noUi-connect,
.slider.slider-default .noUi-connect {
  background-color: #009688; }

.slider.slider-inverse .noUi-connect {
  background-color: #3f51b5; }

.slider.slider-primary .noUi-connect {
  background-color: #3f8bcd; }

.slider.slider-success .noUi-connect {
  background-color: #5cb85c; }

.slider.slider-info .noUi-connect {
  background-color: #5bc0de; }

.slider.slider-warning .noUi-connect {
  background-color: #f0ad4e; }

.slider.slider-danger .noUi-connect {
  background-color: #d9534f; }

.slider .noUi-handle,
.slider.slider-default .noUi-handle {
  background-color: #009688; }

.slider.slider-inverse .noUi-handle {
  background-color: #3f51b5; }

.slider.slider-primary .noUi-handle {
  background-color: #3f8bcd; }

.slider.slider-success .noUi-handle {
  background-color: #5cb85c; }

.slider.slider-info .noUi-handle {
  background-color: #5bc0de; }

.slider.slider-warning .noUi-handle {
  background-color: #f0ad4e; }

.slider.slider-danger .noUi-handle {
  background-color: #d9534f; }

.slider .noUi-handle,
.slider.slider-default .noUi-handle {
  border-color: #009688; }

.slider.slider-inverse .noUi-handle {
  border-color: #3f51b5; }

.slider.slider-primary .noUi-handle {
  border-color: #3f8bcd; }

.slider.slider-success .noUi-handle {
  border-color: #5cb85c; }

.slider.slider-info .noUi-handle {
  border-color: #5bc0de; }

.slider.slider-warning .noUi-handle {
  border-color: #f0ad4e; }

.slider.slider-danger .noUi-handle {
  border-color: #d9534f; }

.selectize-control.single,
.selectize-control.multi {
  padding: 0; }
  .selectize-control.single .selectize-input,
  .selectize-control.single .selectize-input.input-active,
  .selectize-control.multi .selectize-input,
  .selectize-control.multi .selectize-input.input-active {
    cursor: text;
    background: transparent;
    border: 0;
    padding: 0;
    height: 100%;
    font-size: 14px;
    line-height: 30px;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .selectize-control.single .selectize-input .has-items,
    .selectize-control.single .selectize-input.input-active .has-items,
    .selectize-control.multi .selectize-input .has-items,
    .selectize-control.multi .selectize-input.input-active .has-items {
      padding: 0; }
    .selectize-control.single .selectize-input::after,
    .selectize-control.single .selectize-input.input-active::after,
    .selectize-control.multi .selectize-input::after,
    .selectize-control.multi .selectize-input.input-active::after {
      right: 5px;
      position: absolute;
      font-size: 25px;
      content: "\e5c5";
      font-family: 'Material Icons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .selectize-control.single .selectize-input input,
    .selectize-control.single .selectize-input.input-active input,
    .selectize-control.multi .selectize-input input,
    .selectize-control.multi .selectize-input.input-active input {
      font-size: 14px;
      outline: 0;
      border: 0;
      background: transparent; }
    .selectize-control.single .selectize-input.label-floating-fix input,
    .selectize-control.single .selectize-input.input-active.label-floating-fix input,
    .selectize-control.multi .selectize-input.label-floating-fix input,
    .selectize-control.multi .selectize-input.input-active.label-floating-fix input {
      opacity: 0;
      filter: alpha(opacity=0); }
    .selectize-control.single .selectize-input > div,
    .selectize-control.single .selectize-input > .item,
    .selectize-control.single .selectize-input.input-active > div,
    .selectize-control.single .selectize-input.input-active > .item,
    .selectize-control.multi .selectize-input > div,
    .selectize-control.multi .selectize-input > .item,
    .selectize-control.multi .selectize-input.input-active > div,
    .selectize-control.multi .selectize-input.input-active > .item {
      display: inline-block;
      margin: 0 8px 3px 0;
      padding: 0;
      background: transparent;
      border: 0; }
      .selectize-control.single .selectize-input > div::after,
      .selectize-control.single .selectize-input > .item::after,
      .selectize-control.single .selectize-input.input-active > div::after,
      .selectize-control.single .selectize-input.input-active > .item::after,
      .selectize-control.multi .selectize-input > div::after,
      .selectize-control.multi .selectize-input > .item::after,
      .selectize-control.multi .selectize-input.input-active > div::after,
      .selectize-control.multi .selectize-input.input-active > .item::after {
        content: ","; }
      .selectize-control.single .selectize-input > div:last-of-type::after,
      .selectize-control.single .selectize-input > .item:last-of-type::after,
      .selectize-control.single .selectize-input.input-active > div:last-of-type::after,
      .selectize-control.single .selectize-input.input-active > .item:last-of-type::after,
      .selectize-control.multi .selectize-input > div:last-of-type::after,
      .selectize-control.multi .selectize-input > .item:last-of-type::after,
      .selectize-control.multi .selectize-input.input-active > div:last-of-type::after,
      .selectize-control.multi .selectize-input.input-active > .item:last-of-type::after {
        content: ""; }
      .selectize-control.single .selectize-input > div.active,
      .selectize-control.single .selectize-input > .item.active,
      .selectize-control.single .selectize-input.input-active > div.active,
      .selectize-control.single .selectize-input.input-active > .item.active,
      .selectize-control.multi .selectize-input > div.active,
      .selectize-control.multi .selectize-input > .item.active,
      .selectize-control.multi .selectize-input.input-active > div.active,
      .selectize-control.multi .selectize-input.input-active > .item.active {
        font-weight: bold;
        background: transparent;
        border: 0; }
  .selectize-control.single .selectize-dropdown,
  .selectize-control.multi .selectize-dropdown {
    position: absolute;
    z-index: 1000;
    border: 0;
    width: 100%;
    left: 0;
    height: auto;
    background-color: #fff;
    padding: 0;
    margin-top: 3px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-border-radius: 4pxpx;
    -khtml-border-radius: 4pxpx;
    -moz-border-radius: 4pxpx;
    -ms-border-radius: 4pxpx;
    -o-border-radius: 4pxpx;
    border-radius: 4pxpx;
    -webkit-border-radius: 0.25rem;
    -khtml-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    border-radius: 0.25rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .selectize-control.single .selectize-dropdown .active,
    .selectize-control.multi .selectize-dropdown .active {
      background-color: inherit; }
    .selectize-control.single .selectize-dropdown .highlight,
    .selectize-control.multi .selectize-dropdown .highlight {
      background-color: #d5d8ff; }
    .selectize-control.single .selectize-dropdown .selected,
    .selectize-control.single .selectize-dropdown .selected.active,
    .selectize-control.multi .selectize-dropdown .selected,
    .selectize-control.multi .selectize-dropdown .selected.active {
      background-color: #eee; }
    .selectize-control.single .selectize-dropdown [data-selectable],
    .selectize-control.single .selectize-dropdown .optgroup-header,
    .selectize-control.multi .selectize-dropdown [data-selectable],
    .selectize-control.multi .selectize-dropdown .optgroup-header {
      padding: 10px 20px;
      cursor: pointer; }
  .selectize-control.single .dropdown-active ~ .selectize-dropdown,
  .selectize-control.multi .dropdown-active ~ .selectize-dropdown {
    display: block; }

.dropdownjs::after {
  right: 5px;
  top: 3px;
  font-size: 25px;
  position: absolute;
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  content: "\e5c5";
  pointer-events: none;
  color: #757575; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.html") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #4dc7a0;
      color: #fff;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #d6d6d6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #4dc7a0; }

.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box; }

.tether-element {
  position: absolute;
  display: none; }
  .tether-element.tether-open {
    display: block; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center; }

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em; }

.blocker.behind {
  background-color: transparent; }

.modal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left; }

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAABGdBTUEAANjr9RwUqgAAACBjSFJNAABtmAAAc44AAPJxAACDbAAAg7sAANTIAAAx7AAAGbyeiMU/AAAG7ElEQVR42mJkwA8YoZjBwcGB6fPnz4w/fvxg/PnzJ2N6ejoLFxcX47Rp036B5Dk4OP7z8vL+P3DgwD+o3v9QjBUABBALHguZoJhZXV2dVUNDgxNIcwEtZnn27Nl/ZmZmQRYWFmag5c90dHQY5OXl/z98+PDn1atXv79+/foPUN9fIP4HxRgOAAggRhyWMoOwqKgoq6GhIZe3t7eYrq6uHBDb8/Pz27Gysloga/jz588FYGicPn/+/OapU6deOnXq1GdgqPwCOuA31AF/0S0HCCB0xAQNBU4FBQWB0NBQublz59oADV37Hw28ePHi74MHD/6ii3/8+HEFMGQUgQ6WEhQU5AeZBTWTCdkigABC9ylIAZeMjIxQTEyMysaNG/3+/v37AGTgr1+//s2cOfOXm5vbN6Caz8jY1NT0a29v76/v37//g6q9sHfv3khjY2M5YAgJgsyEmg0PYYAAQreUk4+PT8jd3V1l1apVgUAzfoIM2rlz5x9gHH5BtxAdA9PB1zNnzvyB+R6oLxoopgC1nBPZcoAAgiFQnLIDMb+enp5iV1eXBzDeHoI0z58//xcwIX0mZCkMg9S2trb+hFk+ffr0QCkpKVmQ2VA7QHYxAgQQzLesQMwjIiIilZWVZfPu3bstMJ+SYikyBmUzkBnA9HEMyNcCYgmQHVC7mAACCJagOEBBbGdnp7lgwYJEkIavX7/+BcY1SvAaGRl9tba2xohjMTGxL8nJyT+AWQsuxsbG9vnp06e/QWYdPHiwHmiWKlBcCGQXyNcAAQSzmBuoSQqYim3u37+/EKR48uTJv5ANB+bVr7Dga2xs/AkTV1JS+gq0AJyoQIkPWU9aWtoPkPibN2/2A/l6QCwJ9TULQADB4hcY//xKXl5eHt++fbsAUmxhYYHiM1DiAsr9R7ZcVVUVbikIdHd3/0TWIyws/AWYVsByAgICdkAxRSAWAGI2gACClV7C4uLiOv7+/lEgRZ8+ffqLLd6ABck3ZMuB6uCWrlu37je29HDx4kVwQisvL88FFqkaQDERUHADBBAomBl5eHiYgQmLE1hSgQQZgIUD1lJm69atf4HR8R1YKoH5QIPAWWP9+vV/gOI/gHkeQw+wGAXTwAJJ5t+/f/BUDRBA4NIEKMDMyMjICtQIiniG379/4yza7t69+//Lly8oDrty5co/bJaCAEwcZCkwwTJDLWYCCCCwxcDgY3z16hXDnTt3voP4EhISWA0BFgZMwNqHExh3jMiG1tbWsgHjnA2bHmAeBtdWwOL1MycnJ7wAAQggBmi+kgIW/OaKiorJwOLuFShO0LMSMPF9AUYBSpz6+vqixHlOTs4P9MIEWHaDsxSwYMoE2mEGFJcG5SKAAGJCqjv/AbPUn8ePH98ACQQHB6NUmZqamkzABIgSp5s3bwbHORCA1QDLAWZkPc7OzszA8oHl5cuXVy5duvQBGIXwWgoggGA+FgO6xkBNTS28r69vDrT2+Y1cIMDyJchX6KkXVEmAshd6KB06dAic94EO3AzkBwGxPhCLg8ptgACCZyeQp9jZ2b2AmsuAefM8tnxJCk5ISPgOLTKfAdNEOVDMA2QHLDsBBBC8AAFlbmCLwlZISCg5JSVlJizeQAaQaimoWAUFK0g/sGGwHiiWCMS2yAUIQAAxI7c4gEmeFZi4OJ48ecLMzc39CRiEmgEBASxA/QzA8vYvAxEgNjaWZc2aNezAsprp2LFjp4FpZRdQ+AkQvwLij0AMSoC/AQIIXklAC3AVUBoBxmE8sPXQAiyvN8J8fuPGjR/h4eHf0eMdhkENhOPHj8OT+NGjR88BxZuBOA5kJtRseCUBEECMSI0AdmgBDooDaaDl8sASTSkyMlKzpqZGU1paGlS7MABLrX83b978A6zwwakTmE0YgIkSnHpBfGCV+gxYh98qKSk5CeTeAxVeQPwUiN8AMSjxgdLNX4AAYkRqCLBAXcMHtVwSaLkMMMHJAvOq9IQJE9R8fHxElJWV1bEF8aNHj+7t27fvLTDlXwXGLyhoH0OD+DnU0k/QYAa1QP8BBBAjWsuSFWo5LzRYxKFYAljqiAHzqxCwIBEwMTERBdZeoOYMA7Bl+RFYEbwB5oS3IA9D4/IFEL+E4nfQ6IDFLTgvAwQQI5ZmLRtSsINSuyA0uwlBUyQPMPWD20/AKo8ByP4DTJTfgRgUjB+gFoEc8R6amGDB+wu5mQsQQIxYmrdMUJ+zQTM6NzQEeKGO4UJqOzFADQMZ/A1qCSzBfQXi71ALfyM17sEAIIAY8fQiWKAYFgIwzIbWTv4HjbdfUAf8RPLhH1icojfoAQKIEU8bG9kRyF0aRiz6YP0k5C4LsmUY9TtAADEyEA+IVfufGEUAAQYABejinPr4dLEAAAAASUVORK5CYII=") no-repeat 0 0; }

.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url("data:image/gif;base64,R0lGODlhIAAgAPMAABEREf///0VFRYKCglRUVG5ubsvLy62trTQ0NCkpKU5OTuLi4vr6+gAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQACgABACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQACgACACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkEAAoAAwAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkEAAoABAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAAKAAUALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAAKAAYALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQACgAHACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAAKAAgALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAAKAAkALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQACgAKACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkEAAoACwAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==") #111 no-repeat center center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px; }

/* ==========================================================================
   # Classic Clearfix
	 usage:
	 @extend %clearfix
   ========================================================================== */
/* ==========================================================================
   # Flexbox
	 usage:
	 @extend %flexbox
   ========================================================================== */
/* ==========================================================================
   # Hide Element
	 usage:
	 @extend %visuallyhidden;
   ========================================================================== */
/* ==========================================================================
   # No Text Select
	 usage:
	 @extend %no-select;
   ========================================================================== */
/* ==========================================================================
   # Shadow depth
	 usage:
	 @extend %z-depth-0;
   ========================================================================== */
/* ==========================================================================
   # Shadow on hover
	 usage:
	 @extend hoverable;
   ========================================================================== */
/* ==========================================================================
   # Image Circle Mask
	 usage:
	 @extend %circle;
   ========================================================================== */
/* ==========================================================================
   # Responsive Image
	 usage:
	 @extend %circle;
   ========================================================================== */
/* ==========================================================================
   # No Padding
	 usage:
	 @extend %no-padding;
   ========================================================================== */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* 2 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* ==========================================================================
   # Typography
   ========================================================================== */
@font-face {
  font-family: "Montserrat";
  src: url("https://fmoutsource.com/Content/fonts/Montserrat-regular/Montserrat-regular.eot");
  src: url("https://fmoutsource.com/Content/fonts/Montserrat-regular/Montserrat-regular.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Montserrat-regular/Montserrat-regular.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Montserrat-regular/Montserrat-regular.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Montserrat-regular/Montserrat-regular.svg#Montserrat") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Montserrat";
  src: url("https://fmoutsource.com/Content/fonts/Montserrat-700/Montserrat-700.eot");
  src: url("https://fmoutsource.com/Content/fonts/Montserrat-700/Montserrat-700.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Montserrat-700/Montserrat-700.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Montserrat-700/Montserrat-700.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Montserrat-700/Montserrat-700.svg#Montserrat") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200/Source-Sans-Pro-200.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200/Source-Sans-Pro-200.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200/Source-Sans-Pro-200.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200/Source-Sans-Pro-200.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200/Source-Sans-Pro-200.svg#Source Sans Pro") format("svg");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.svg#Source Sans Pro") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.svg#Source Sans Pro") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.svg#Source Sans Pro") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.svg#Source Sans Pro") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900/Source-Sans-Pro-900.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900/Source-Sans-Pro-900.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900/Source-Sans-Pro-900.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900/Source-Sans-Pro-900.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900/Source-Sans-Pro-900.svg#Source Sans Pro") format("svg");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-italic/Source-Sans-Pro-italic.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-italic/Source-Sans-Pro-italic.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-italic/Source-Sans-Pro-italic.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-italic/Source-Sans-Pro-italic.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-italic/Source-Sans-Pro-italic.svg#Source Sans Pro") format("svg");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200italic/Source-Sans-Pro-200italic.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200italic/Source-Sans-Pro-200italic.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200italic/Source-Sans-Pro-200italic.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200italic/Source-Sans-Pro-200italic.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-200italic/Source-Sans-Pro-200italic.svg#Source Sans Pro") format("svg");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300italic/Source-Sans-Pro-300italic.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300italic/Source-Sans-Pro-300italic.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300italic/Source-Sans-Pro-300italic.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300italic/Source-Sans-Pro-300italic.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-300italic/Source-Sans-Pro-300italic.svg#Source Sans Pro") format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.svg#Source Sans Pro") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600italic/Source-Sans-Pro-600italic.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600italic/Source-Sans-Pro-600italic.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600italic/Source-Sans-Pro-600italic.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600italic/Source-Sans-Pro-600italic.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-600italic/Source-Sans-Pro-600italic.svg#Source Sans Pro") format("svg");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700italic/Source-Sans-Pro-700italic.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700italic/Source-Sans-Pro-700italic.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700italic/Source-Sans-Pro-700italic.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700italic/Source-Sans-Pro-700italic.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-700italic/Source-Sans-Pro-700italic.svg#Source Sans Pro") format("svg");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900italic/Source-Sans-Pro-900italic.eot");
  src: url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900italic/Source-Sans-Pro-900italic.eot?#iefix") format("embedded-opentype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900italic/Source-Sans-Pro-900italic.woff") format("woff"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900italic/Source-Sans-Pro-900italic.ttf") format("truetype"), url("https://fmoutsource.com/Content/fonts/Source-Sans-Pro-900italic/Source-Sans-Pro-900italic.svg#Source Sans Pro") format("svg");
  font-weight: 900;
  font-style: italic; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat, Verdana; }

small,
p,
a {
  font-family: 'Roboto', Source Sans Pro, Calibri, sans; }

/* ==========================================================================
   # Headings
   ========================================================================== */
/* ==========================================================================
   # Buttons
   ========================================================================== */
/* -- Main style ------------------------------------ */
.btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: inherit;
  color: rgba(255, 255, 255, 0.87); }

.btn-default,
.btn-link {
  color: rgba(0, 0, 0, 0.87); }

/* -- Buttons style ------------------------------------ */
.btn {
  outline: 0;
  outline-offset: 0;
  border: 0;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 0.125rem;
  -khtml-border-radius: 0.125rem;
  -moz-border-radius: 0.125rem;
  -ms-border-radius: 0.125rem;
  -o-border-radius: 0.125rem;
  border-radius: 0.125rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }
  .btn:focus, .btn:visited, .btn.visited, .btn:active, .btn.active, .btn:active:focus, .btn.active:focus {
    outline: 0;
    outline-offset: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }

/* -- Buttons types -------------------------------- */
.btn-raised {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12); }
  .btn-raised:active, .btn-raised.active, .btn-raised:visited, .btn-raised.visited, .btn-raised:active:focus, .btn-raised.active:focus {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
  .btn-raised:focus {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }

.btn.btn-circle {
  padding: 0;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

/* -- Buttons sizes -------------------------------- */
.btn {
  min-width: 88px;
  padding: 10px 14px; }

.btn-lg, .btn-group-lg > .btn,
.btn-group-lg > .btn {
  min-width: 122px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3; }

.btn-sm, .btn-group-sm > .btn,
.btn-group-sm > .btn {
  min-width: 64px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1.5; }

.btn-xs, .btn-group-xs > .btn,
.btn-group-xs > .btn {
  min-width: 46px;
  padding: 2px 10px;
  font-size: 10px;
  line-height: 1.5; }

.btn-circle {
  width: 56px;
  height: 56px;
  min-width: 56px; }
  .btn-circle span {
    line-height: 56px; }

.btn-circle.btn-lg, .btn-group-lg > .btn-circle.btn {
  width: 78px;
  height: 78px;
  min-width: 78px; }
  .btn-circle.btn-lg span, .btn-group-lg > .btn-circle.btn span {
    line-height: 78px; }

.btn-circle.btn-sm, .btn-group-sm > .btn-circle.btn {
  width: 40px;
  height: 40px;
  min-width: 40px; }
  .btn-circle.btn-sm span, .btn-group-sm > .btn-circle.btn span {
    line-height: 40px; }

.btn-circle.btn-xs, .btn-group-xs > .btn-circle.btn {
  width: 30px;
  height: 30px;
  min-width: 30px; }
  .btn-circle.btn-xs span, .btn-group-xs > .btn-circle.btn span {
    line-height: 30px; }

/* Button groups --------------------------------- */
.btn-group .btn {
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 0.125rem;
  -khtml-border-radius: 0.125rem;
  -moz-border-radius: 0.125rem;
  -ms-border-radius: 0.125rem;
  -o-border-radius: 0.125rem;
  border-radius: 0.125rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.btn-group.open .dropdown-toggle {
  outline: 0;
  outline-offset: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: 0; }

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 0; }

.btn-group > .btn:focus:hover,
.btn-group-vertical > .btn:focus:hover,
.btn-group > .btn:active:hover,
.btn-group-vertical > .btn:active:hover,
.btn-group > .btn.active:hover,
.btn-group-vertical > .btn.active:hover {
  z-index: 2; }

/* Button Loading animations --------------------------------- */
.fmo-loading-msg {
  margin: 0px;
  max-height: 40px;
  overflow: hidden; }
  .fmo-loading-msg__text,
  .fmo-loading-msg .fmo-start-msg,
  .fmo-loading-msg .fmo-end-msg,
  .fmo-loading-msg .fmo-error-msg {
    font-weight: 400; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-loading-msg__text,
      .fmo-loading-msg .fmo-start-msg,
      .fmo-loading-msg .fmo-end-msg,
      .fmo-loading-msg .fmo-error-msg {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-loading-msg__text,
      .fmo-loading-msg .fmo-start-msg,
      .fmo-loading-msg .fmo-end-msg,
      .fmo-loading-msg .fmo-error-msg {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-loading-msg__text,
      .fmo-loading-msg .fmo-start-msg,
      .fmo-loading-msg .fmo-end-msg,
      .fmo-loading-msg .fmo-error-msg {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-loading-msg__text,
      .fmo-loading-msg .fmo-start-msg,
      .fmo-loading-msg .fmo-end-msg,
      .fmo-loading-msg .fmo-error-msg {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-loading-msg__text,
      .fmo-loading-msg .fmo-start-msg,
      .fmo-loading-msg .fmo-end-msg,
      .fmo-loading-msg .fmo-error-msg {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-loading-msg__text,
      .fmo-loading-msg .fmo-start-msg,
      .fmo-loading-msg .fmo-end-msg,
      .fmo-loading-msg .fmo-error-msg {
        font-size: 18px;
        line-height: 2; } }
  .fmo-loading-msg__contact-text {
    height: 24px;
    margin: -5px 12px;
    display: inline-block; }

.fmo-status-start .fmo-start-msg {
  display: initial; }

.fmo-status-start .fmo-loading-msg {
  display: none; }

.fmo-status-start .fmo-end-msg {
  display: none; }

.fmo-status-start .fmo-error-msg {
  display: none; }

.fmo-status-loading .fmo-start-msg {
  display: none; }

.fmo-status-loading .fmo-loading-msg {
  display: initial; }

.fmo-status-loading .fmo-end-msg {
  display: none; }

.fmo-status-loading .fmo-error-msg {
  display: none; }

.fmo-status-ended .fmo-start-msg {
  display: none; }

.fmo-status-ended .fmo-loading-msg {
  display: none; }

.fmo-status-ended .fmo-end-msg {
  display: initial; }

.fmo-status-ended .fmo-error-msg {
  display: none; }

.fmo-status-error .fmo-start-msg {
  display: none; }

.fmo-status-error .fmo-loading-msg {
  display: none; }

.fmo-status-error .fmo-end-msg {
  display: none; }

.fmo-status-error .fmo-error-msg {
  display: initial; }

.fmo-btn-loader, .fmo-btn-loader-dark, .fmo-btn-loader-light, .fmo-newsletter-btn-loading, .fmo-newsletter-card__form__btn-submit:hover .fmo-btn-loader-dark {
  height: 24px;
  width: 24px;
  margin: -10px 12px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: rotating 0.3s linear infinite;
  -o-animation: rotating 0.3s linear infinite;
  animation: rotating 0.3s linear infinite; }

.fmo-contact-form .fmo-btn-loader, .fmo-contact-form .fmo-btn-loader-dark, .fmo-contact-form .fmo-btn-loader-light, .fmo-contact-form .fmo-newsletter-btn-loading, .fmo-contact-form .fmo-newsletter-card__form__btn-submit:hover .fmo-btn-loader-dark, .fmo-newsletter-card__form__btn-submit:hover .fmo-contact-form .fmo-btn-loader-dark,
.fmo-load-more .fmo-btn-loader,
.fmo-load-more .fmo-btn-loader-dark,
.fmo-load-more .fmo-btn-loader-light,
.fmo-load-more .fmo-newsletter-btn-loading,
.fmo-load-more .fmo-newsletter-card__form__btn-submit:hover .fmo-btn-loader-dark, .fmo-newsletter-card__form__btn-submit:hover
.fmo-load-more .fmo-btn-loader-dark {
  margin: -6px 12px; }

.fmo-btn-loader-dark {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPlNwaW5uZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8bGluZWFyR3JhZGllbnQgeDE9IjUwJSIgeTE9IjkuMjA1NjQzNzklIiB4Mj0iMTAwJSIgeTI9IjIwLjc0NzEwMDclIiBpZD0ibGluZWFyR3JhZGllbnQtMSI+ICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iI0E4QUFBQyIgb2Zmc2V0PSIwJSI+PC9zdG9wPiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiNBOEFBQUMiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+ICAgICAgICA8L2xpbmVhckdyYWRpZW50PiAgICA8L2RlZnM+ICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPiAgICAgICAgPGcgaWQ9IlNwaW5uZXIiIHNrZXRjaDp0eXBlPSJNU0FydGJvYXJkR3JvdXAiIGZpbGw9InVybCgjbGluZWFyR3JhZGllbnQtMSkiPiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMiwyNCBDNS4zNzI1ODMsMjQgMCwxOC42Mjc0MTcgMCwxMiBDMCw1LjM3MjU4MyA1LjM3MjU4MywwIDEyLDAgTDEyLDIgQzYuNDc3MTUyNSwyIDIsNi40NzcxNTI1IDIsMTIgQzIsMTcuNTIyODQ3NSA2LjQ3NzE1MjUsMjIgMTIsMjIgQzE3LjUyMjg0NzUsMjIgMjIsMTcuNTIyODQ3NSAyMiwxMiBMMjQsMTIgQzI0LDE4LjYyNzQxNyAxOC42Mjc0MTcsMjQgMTIsMjQgWiIgaWQ9InNwaW4iIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==); }

.fmo-btn-loader-light, .fmo-newsletter-btn-loading, .fmo-newsletter-card__form__btn-submit:hover .fmo-btn-loader-dark {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjQgMjQiPg0KICA8c3R5bGU+DQogICAgLnN0MHtmaWxsOnVybCgjc3Bpbl8xXyk7fQ0KICA8L3N0eWxlPg0KICA8ZyBpZD0iUGFnZS0xIj4NCiAgICA8ZyBpZD0iU3Bpbm5lciI+DQogICAgICA8bGluZWFyR3JhZGllbnQgaWQ9InNwaW5fMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTQ0Ny4xMzIiIHkxPSIyODEuMzg5IiB4Mj0iLTQ0Ni42MzIiIHkyPSIyODEuMjc0IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDI0IDAgMCAtMjQgMTA3NDEgNjc2NSkiPg0KICAgICAgICA8c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNGRkYiLz4NCiAgICAgICAgPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9IjAiLz4NCiAgICAgIDwvbGluZWFyR3JhZGllbnQ+DQogICAgICA8cGF0aCBpZD0ic3BpbiIgY2xhc3M9InN0MCIgZD0iTTEyIDI0QzUuNCAyNCAwIDE4LjYgMCAxMlM1LjQgMCAxMiAwdjJDNi41IDIgMiA2LjUgMiAxMnM0LjUgMTAgMTAgMTAgMTAtNC41IDEwLTEwaDJjMCA2LjYtNS40IDEyLTEyIDEyeiIvPg0KICAgIDwvZz4NCiAgPC9nPg0KPC9zdmc+DQo=); }

@-webkit-keyframes rotating {
  from {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  to {
    transform: -webkit-rotate(360deg);
    transform: -khtml-rotate(360deg);
    transform: -moz-rotate(360deg);
    transform: -ms-rotate(360deg);
    transform: -o-rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes rotating {
  from {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  to {
    transform: -webkit-rotate(360deg);
    transform: -khtml-rotate(360deg);
    transform: -moz-rotate(360deg);
    transform: -ms-rotate(360deg);
    transform: -o-rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes rotating {
  from {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  to {
    transform: -webkit-rotate(360deg);
    transform: -khtml-rotate(360deg);
    transform: -moz-rotate(360deg);
    transform: -ms-rotate(360deg);
    transform: -o-rotate(360deg);
    transform: rotate(360deg); } }

@-o-keyframes rotating {
  from {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  to {
    transform: -webkit-rotate(360deg);
    transform: -khtml-rotate(360deg);
    transform: -moz-rotate(360deg);
    transform: -ms-rotate(360deg);
    transform: -o-rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotating {
  from {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  to {
    transform: -webkit-rotate(360deg);
    transform: -khtml-rotate(360deg);
    transform: -moz-rotate(360deg);
    transform: -ms-rotate(360deg);
    transform: -o-rotate(360deg);
    transform: rotate(360deg); } }

.fmo-newsletter-btn-loading {
  margin-top: 1px;
  margin-bottom: -2px;
  margin-left: 2px;
  margin-right: 2px; }

.fmo-newsletter-btn-end {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 25%;
  left: 22%;
  background-image: url("../Content/img/tick.png"); }

.fmo-newsletter-status-start .fmo-newsletter-btn-start {
  display: initial; }

.fmo-newsletter-status-start .fmo-newsletter-btn-loading {
  display: none; }

.fmo-newsletter-status-start .fmo-newsletter-btn-end {
  display: none; }

.fmo-newsletter-status-loading .fmo-newsletter-btn-start {
  display: none; }

.fmo-newsletter-status-loading .fmo-newsletter-btn-loading {
  display: inline-block; }

.fmo-newsletter-status-loading .fmo-newsletter-btn-end {
  display: none; }

.fmo-newsletter-status-ended .fmo-newsletter-btn-start {
  display: none; }

.fmo-newsletter-status-ended .fmo-newsletter-btn-loading {
  display: none; }

.fmo-newsletter-status-ended .fmo-newsletter-btn-end {
  display: initial; }

/* ==========================================================================
   # Checkboxes
   ========================================================================== */
/* ==========================================================================
   # File Input
   ========================================================================== */
/* ==========================================================================
   # Input Fields
   ========================================================================== */
figure {
  display: block;
  margin: 0; }

.graf-figure {
  position: relative;
  clear: both;
  outline: 0;
  box-sizing: border-box; }

.aspectRatioPlaceholder {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: block; }

.aspectRatioPlaceholder-big {
  max-width: 686px;
  max-height: 386px; }

.aspectRatioPlaceholder-small {
  max-width: 418px;
  max-height: 235px; }

.aspectRatioPlaceholder-fill {
  display: block;
  padding-bottom: 56.25%; }

.progressiveMedia {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05); }

.progressiveMedia-thumbnail {
  display: none; }

.progressiveMedia-canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  box-sizing: border-box;
  vertical-align: baseline; }

.progressiveMedia-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 100;
  box-sizing: border-box; }

.progressiveMedia .progressiveMedia-canvas {
  visibility: hidden;
  opacity: 0;
  backface-visibility: hidden; }

.progressiveMedia.is-canvasLoaded .progressiveMedia-canvas {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.4s 0s; }

.progressiveMedia .progressiveMedia-image {
  visibility: hidden;
  opacity: 0;
  backface-visibility: hidden; }

.progressiveMedia.is-imageLoaded .progressiveMedia-image {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 1s 0s; }

.infographic-macro-image {
  width: 100%;
  height: 100%;
  order: 0;
  flex: 0 1 auto;
  align-self: auto; }

.fmo-img {
  margin: 20px 0; }
  .fmo-img:before, .fmo-img:after {
    content: " ";
    display: table; }
  .fmo-img:after {
    clear: both; }
  .fmo-img .aspectRatioPlaceholder {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
    .fmo-img .aspectRatioPlaceholder:before, .fmo-img .aspectRatioPlaceholder:after {
      content: " ";
      display: table; }
    .fmo-img .aspectRatioPlaceholder:after {
      clear: both; }
  .fmo-img__legend {
    width: 100%;
    text-align: center; }
    .fmo-img__legend__text {
      color: #c2c7ca;
      font-style: italic;
      font-weight: 100; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-img__legend__text {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-img__legend__text {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-img__legend__text {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-img__legend__text {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-img__legend__text {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-img__legend__text {
          font-size: 18px;
          line-height: 2; } }

/* ==========================================================================
   # Labels
   ========================================================================== */
/* ==========================================================================
   #  nanoScrollerJS (Sass)
   ========================================================================== */
/** initial setup **/
.nano {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }
  .nano .nano-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: scroll;
    overflow-x: hidden; }
    .nano .nano-content:focus {
      outline: thin dotted; }
    .nano .nano-content::-webkit-scrollbar {
      display: none; }
  .nano > .nano-pane {
   /* width: 12px;
    background: rgba(0, 0, 0, 0.15);*/
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    visibility: hidden\9;
    z-index: 20;
    opacity: 0.01;
    filter: alpha(opacity=1);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-border-radius: 0.3125rem;
    -khtml-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    -ms-border-radius: 0.3125rem;
    -o-border-radius: 0.3125rem;
    border-radius: 0.3125rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    @media (min-width: 0) and (max-width: 991px) {
      .nano > .nano-pane {
        width: 6px;
        background: rgba(0, 0, 0, 0.25); } }
    .nano > .nano-pane > .nano-slider {
      background: #444;
      background: rgba(0, 0, 0, 0.4);
      position: relative;
      margin: 0 1px;
      -webkit-border-radius: 3px;
      -khtml-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      -webkit-border-radius: 0.1875rem;
      -khtml-border-radius: 0.1875rem;
      -moz-border-radius: 0.1875rem;
      -ms-border-radius: 0.1875rem;
      -o-border-radius: 0.1875rem;
      border-radius: 0.1875rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }

.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block; }

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility: visible\9;
  opacity: 0.99;
  filter: alpha(opacity=99); }

/* ==========================================================================
   # Radio Buttons
   ========================================================================== */
/* ==========================================================================
   # Range
   ========================================================================== */
/* ==========================================================================
   # Table
   ========================================================================== */
/* ==========================================================================
   # Select
   ========================================================================== */
/* ==========================================================================
   # Switch
   ========================================================================== */
/* ==========================================================================
   # Dropdown
   # Dropdownhover v1.0.0 (http://bs-dropdownhover.kybarg.com)
   ========================================================================== */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus .dropdown-menu > li > p:hover,
.dropdown-menu > li > p:focus {
  background-color: rgba(99, 16, 140, 0.16);
  color: #431070; }

.dropdown.open > .dropdown-menu {
  display: block; }

.dropdown.open li {
  overflow: visible; }

.dropdown .dropdown-menu {
  min-width: 166px;
  display: none;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  -webkit-border-radius: 1.125rem;
  -khtml-border-radius: 1.125rem;
  -moz-border-radius: 1.125rem;
  -ms-border-radius: 1.125rem;
  -o-border-radius: 1.125rem;
  border-radius: 1.125rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
  .dropdown .dropdown-menu li {
    padding: 4px 0;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 0.125rem;
    -khtml-border-radius: 0.125rem;
    -moz-border-radius: 0.125rem;
    -ms-border-radius: 0.125rem;
    -o-border-radius: 0.125rem;
    border-radius: 0.125rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
  .dropdown .dropdown-menu.caret {
    border: 4px solid transparent;
    border-left-color: #000;
    float: right;
    margin-top: 6px; }
  .dropdown .dropdown-menu .dropdown a .caret {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: -webkit-rotate(-90deg);
    transform: -khtml-rotate(-90deg);
    transform: -moz-rotate(-90deg);
    transform: -ms-rotate(-90deg);
    transform: -o-rotate(-90deg);
    transform: rotate(-90deg); }
  .dropdown .dropdown-menu > li > a,
  .dropdown .dropdown-menu > li > p {
    color: #431070; }
    .dropdown .dropdown-menu > li > a:hover,
    .dropdown .dropdown-menu > li > p:hover {
      background-color: rgba(99, 16, 140, 0.16); }
  .dropdown .dropdown-menu > li.open > a,
  .dropdown .dropdown-menu > li.open > p {
    background-color: rgba(99, 16, 140, 0.16);
    color: #431070;
    text-decoration: none; }
    .dropdown .dropdown-menu > li.open > a:hover,
    .dropdown .dropdown-menu > li.open > p:hover {
      background-color: rgba(99, 16, 140, 0.16); }
  .dropdown .dropdown-menu .dropdown-menu {
    left: 100%;
    margin: 0;
    right: auto;
    top: -1px; }

.dropdown-menu-right .dropdown-menu,
.navbar-right .dropdown-menu .dropdown-menu,
.pull-right .dropdown-menu .dropdown-menu {
  left: auto;
  right: 100%; }

.dropdown-menu.animated {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s; }

.dropdown-menu.animated::before {
  content: " ";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99; }

.dropdownhover-top {
  margin-bottom: 2px;
  margin-top: 0; }

.navbar-fixed-bottom .dropdown-menu .dropdown-menu,
.dropdownhover-top .dropdown-menu {
  bottom: -1px;
  top: auto; }

.navbar-nav > li > .dropdown-menu {
  margin-bottom: 0; }

.dropdownhover-bottom {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.dropdownhover-left {
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.dropdownhover-right {
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.dropdownhover-top {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%; }

.dropdown-menu__item__svg {
  width: 16px;
  height: 16px;
  left: 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -khtml-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%); }

/* ==========================================================================
   # Google Recaptcha
   ========================================================================== */
.g-recaptcha {
  -webkit-transform: scale(0.77);
  -moz-transform: scale(0.77);
  -ms-transform: scale(0.77);
  -o-transform: scale(0.77);
  transform: scale(0.77);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0; }

.rc-anchor-checkbox-label, .rc-anchor-logo-text, .rc-anchor-pt a:link {
  color: #ffffff; }

.rc-anchor-light {
  background-color: transparent; }

.recaptcha-checkbox-checkmark {
  background-image: url(../Content/img/google-recaptcha/google-recaptcha-tick.png); }

.fmo-recaptcha--error {
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: -15px; }
  .fmo-recaptcha--error__hidden {
    display: none; }
  .fmo-recaptcha--error__shown {
    display: block; }

.fmo-recaptcha--container {
  width: 60%;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -khtml-order: 2;
  -moz-order: 2;
  -ms-order: 2;
  -o-order: 2;
  order: 2;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2 1 auto;
  -khtml-flex: 2 1 auto;
  -moz-flex: 2 1 auto;
  -ms-flex: 2 1 auto;
  -o-flex: 2 1 auto;
  flex: 2 1 auto;
  -ms-flex-item-align: auto;
  -webkit-align-self: auto;
  -khtml-align-self: auto;
  -moz-align-self: auto;
  -ms-align-self: auto;
  -o-align-self: auto;
  align-self: auto;
  margin-top: 20px; }

/* ==========================================================================
   # Landing Page Styles
   ========================================================================== */
/* ==========================================================================
   # Login Page Styles
   ========================================================================== */
html,
body {
  height: 100%;
  position: relative; }

body {
  background-color: #fff;
  font-size: 100%;
  font-family:'Roboto', sans-serif;
  /* flexible baseline */
  /*font-family: Source Sans Pro, Calibri, sans;*/
  -webkit-transform: translate3d(0, 0, 0); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.1; }

span,
p,
a,
label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500; }

.fmo-perspective {
  position: relative;
  width: 100%;
  height: 95%;
  background-color: #5d2a8a;
  overflow: hidden;
  background-image: -webkit-linear-gradient(left, #5d2a8a 0%, #7643a3 100%);
  background-image: -khtml-linear-gradient(left, #5d2a8a 0%, #7643a3 100%);
  background-image: -moz-linear-gradient(left, #5d2a8a 0%, #7643a3 100%);
  background-image: -ms-linear-gradient(left, #5d2a8a 0%, #7643a3 100%);
  background-image: -o-linear-gradient(left, #5d2a8a 0%, #7643a3 100%);
  background-image: linear-gradient(left, #5d2a8a 0%, #7643a3 100%);
  /*
        perspective: 1500px;    
        -webkit-perspective: 1500px;
    */ }

.fmo-body-wrapper {
  position: relative;
  min-height: 100%;
  outline: 1px solid transparent;
  z-index: 10;
  transform: -webkit-translateZ(0) translateX(0) rotateY(0deg);
  transform: -khtml-translateZ(0) translateX(0) rotateY(0deg);
  transform: -moz-translateZ(0) translateX(0) rotateY(0deg);
  transform: -ms-translateZ(0) translateX(0) rotateY(0deg);
  transform: -o-translateZ(0) translateX(0) rotateY(0deg);
  transform: translateZ(0) translateX(0) rotateY(0deg);
  -webkit-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }
  .fmo-body-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s, height 0s 0.4s;
    -o-transition: opacity 0.4s, height 0s 0.4s;
    transition: opacity 0.4s, height 0s 0.4s; }

.fmo-rte-header1 {
  font-family:'Roboto', sans-serif;
  font-size: 24px;
  color: #565656; }

.fmo-rte-header2 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #565656; }

.fmo-rte-header3 {
  font-family:'Roboto', sans-serif;
  font-size: 20px;
  color: #565656; }

.fmo-rte-body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #565656; }

.fmo-rte-body a {
  font-family: 'Roboto', sans-serif;
  font-size: 18px !important; }

body .margin-padding-bottom-0px {
  margin-bottom: 0px;
  padding-bottom: 0px; }

.margin-0-67-em {
  margin: .67em 0; }

body .row-title-big-margin {
  margin-top: 10px;
  margin-bottom: 55px; }

body .bg-248-grey {
  background-color: #f8f8f8; }

body .bg-white {
  background-color: white; }

body .text-black {
  color: black; }

body .text-white {
  color: white; }

.fmo-flapper-container {
  height: 60px; }

.fmo-chart-container-img {
  width: 200px;
  height: 200px; }

.article-author-img {
  max-width: 80px;
  max-height: 80px; }

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

@media (min-width: 992px) {
  body .vertical-align-middle-flex-outer {
    display: inline-flex; }
  body .vertical-align-middle-flex-inner {
    margin-top: auto;
    margin-bottom: auto; }
  body .vertical-align-middle-flex-outer .fmo-container--normal-page__row__btn-container {
    height: 100%; } }

body .fmo-contact-form__details-container__details__head-office__desc,
body .fmo-contact-form__details-container__details__email__desc,
body .fmo-contact-form__details-container__details__phone__desc,
body .fmo-contact-form__details-container__details__email-hr__desc,
body .fmo-contact-form__details-container__details__find-us__desc {
  font-weight: 500; }

/* ==========================================================================
   # Site Map
   ========================================================================== */
#fmo-site-map {
  display: inline-block;
  margin: auto;
  color: #4b4f54;
  text-align: left; }

#fmo-site-map ul,
#fmo-site-map li,
#fmo-site-map a {
  font-size: 18px;
  padding: 0px;
  margin: 0px;
  list-style-image: none;
  list-style-type: circle;
  list-style-position: inside; }

#fmo-site-map a {
  text-decoration: none;
  font-family: Source Sans Pro, Calibri, sans;
  color: #4b4f54;
  line-height: 1.42857;
  font-weight: 400; }

#fmo-site-map .level-3 {
  padding-left: 10px; }

#fmo-site-map .level-4 {
  padding-left: 20px; }

/* ==========================================================================
   # Main Container
   ========================================================================== */
.fmo-container--landing-page {
  position: relative;
  margin-top: -40px;
  min-height: 20px;
  background-color: #fff;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  width: 1620px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
  @media (min-width: 1920px) {
    .fmo-container--landing-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--landing-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--landing-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--landing-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--landing-page {
      width: auto;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-height: 610px) and (max-height: 876px) and (orientation: portrait) {
    .fmo-container--landing-page {
      margin-top: -120px; } }
  @media (min-height: 0) and (max-height: 610px) and (orientation: portrait) {
    .fmo-container--landing-page {
      margin-top: -20px; } }
  .fmo-container--landing-page__row {
    padding: 62px 24px;
    text-align: center; }
    .fmo-container--landing-page__row::before, .fmo-container--landing-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--landing-page__row::after {
      clear: both; }
    .fmo-container--landing-page__row:last-child {
      margin-bottom: 0;
      padding: 62px 24px; }
    .fmo-container--landing-page__row--no-bottom-padding {
      padding: 0 24px 12px; }
    .fmo-container--landing-page__row__title {
      font-family:'Roboto', sans-serif;
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--landing-page__row__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--landing-page__row__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--landing-page__row__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--landing-page__row__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-container--landing-page__row__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-container--landing-page__row__large-heading {
      font-family: 'Roboto', sans-serif;
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0; }
      @media (min-width: 1920px) {
        .fmo-container--landing-page__row__large-heading {
          font-size: 450%; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--landing-page__row__large-heading {
          font-size: 430%; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__large-heading {
          font-size: 410%; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--landing-page__row__large-heading {
          font-size: 390%; } }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-container--landing-page__row__large-heading {
          font-size: 370%; } }
    .fmo-container--landing-page__row__sub-title {
      font-family: 'Roboto', sans-serif;
      color: #4b4f54;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--landing-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--landing-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--landing-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--landing-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-container--landing-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
    .fmo-container--landing-page__row__content {
      font-family: 'Roboto', sans-serif;
      color: #4b4f54;
      font-weight: 100; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--landing-page__row__content {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--landing-page__row__content {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--landing-page__row__content {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__content {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--landing-page__row__content {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--landing-page__row__content {
          font-size: 18px;
          line-height: 2; } }
    .fmo-container--landing-page__row__btn-container {
      height: 80px;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-container--landing-page__row__btn-container__btn {
        padding: 16px 14px;
        border: none;
        border-top: 1px solid rgba(139, 141, 141, 0.09);
        background: #fdfdfd;
        outline: none;
        text-transform: uppercase;
        bottom: 0;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: 'Roboto', sans-serif;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--landing-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--landing-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--landing-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--landing-page__row__btn-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--landing-page__row__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-container--landing-page__row__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-container--landing-page__row__btn-container__btn:focus, .fmo-container--landing-page__row__btn-container__btn:active, .fmo-container--landing-page__row__btn-container__btn.active, .fmo-container--landing-page__row__btn-container__btn:active:focus, .fmo-container--landing-page__row__btn-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-container--landing-page__row__btn-container__btn:focus, .fmo-container--landing-page__row__btn-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-container--landing-page__row__btn-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #26a69a; }
        .fmo-container--landing-page__row__btn-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
    .fmo-container--landing-page__row__macro-btn-container {
      height: 40px;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-container--landing-page__row__macro-btn-container__btn {
        padding: 16px 14px;
        border: none;
        border-top: 1px solid rgba(139, 141, 141, 0.09);
        background: #fdfdfd;
        outline: none;
        text-transform: uppercase;
        bottom: 0;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: 'Roboto', sans-serif;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--landing-page__row__macro-btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--landing-page__row__macro-btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--landing-page__row__macro-btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--landing-page__row__macro-btn-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--landing-page__row__macro-btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-container--landing-page__row__macro-btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-container--landing-page__row__macro-btn-container__btn:focus, .fmo-container--landing-page__row__macro-btn-container__btn:active, .fmo-container--landing-page__row__macro-btn-container__btn.active, .fmo-container--landing-page__row__macro-btn-container__btn:active:focus, .fmo-container--landing-page__row__macro-btn-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-container--landing-page__row__macro-btn-container__btn:focus, .fmo-container--landing-page__row__macro-btn-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-container--landing-page__row__macro-btn-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #26a69a; }
        .fmo-container--landing-page__row__macro-btn-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
    .fmo-container--landing-page__row__flapper {
      text-align: center; }
    .fmo-container--landing-page__row__image, .fmo-container--landing-page__row__svg {
      max-width: 80%;
      max-height: 300px; }
    .fmo-container--landing-page__row__svg__atom-container {
      width: 60%;
      display: block;
      text-align: center;
      margin: 40px auto 0;
      position: relative; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-container--landing-page__row__svg__atom-container {
          margin: 40px 0;
          width: 100%; } }
      @media (min-width: 768px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__svg__atom-container {
          width: 80%; } }
      .fmo-container--landing-page__row__svg__atom-container__canvas {
        display: block;
        width: 100%;
        visibility: hidden; }
      .fmo-container--landing-page__row__svg__atom-container__atom {
        position: absolute;
        top: 0;
        left: 0; }
    .fmo-container--landing-page__row__svg__trust, .fmo-container--landing-page__row__svg__customer-service {
      width: 60%;
      display: block;
      text-align: center;
      margin: 40px auto 0; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-container--landing-page__row__svg__trust, .fmo-container--landing-page__row__svg__customer-service {
          margin: 40px 0;
          width: 100%; } }
      @media (min-width: 768px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__svg__trust, .fmo-container--landing-page__row__svg__customer-service {
          width: 80%; } }
    .fmo-container--landing-page__row__svg__trust {
      width: 50%; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-container--landing-page__row__svg__trust {
          margin: 40px 0;
          width: 100%; } }
      @media (min-width: 768px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__svg__trust {
          width: 60%; } }
    .fmo-container--landing-page__row__svg__customer-service {
      width: 60%; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-container--landing-page__row__svg__customer-service {
          margin: 0 0 40px;
          width: 100%; } }
      @media (min-width: 768px) and (max-width: 1199px) {
        .fmo-container--landing-page__row__svg__customer-service {
          width: 60%; } }
    .fmo-container--landing-page__row__cards-container {
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -khtml-justify-content: space-around;
      -moz-justify-content: space-around;
      -ms-justify-content: space-around;
      -o-justify-content: space-around;
      justify-content: space-around;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -khtml-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; }
      .fmo-container--landing-page__row__cards-container .fmo-rotating-card {
        margin: 40px 0;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--landing-page__row__cards-container .fmo-rotating-card {
            margin: 28px 0; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--landing-page__row__cards-container .fmo-rotating-card {
            margin: 30px 0; } }
    .fmo-container--landing-page__row--logos-slider {
      padding: 0; }

.fmo-macro-container-img {
  height: inherit;
  width: inherit;
  display: block;
  margin: 0 auto; }

@media (min-width: 0) and (max-width: 971px) {
  .fmo-grid-row-image__right {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center; } }

@media (min-width: 0) and (max-width: 971px) {
  .fmo-container--multicolumns__bottom-padding {
    padding-bottom: 60px; }
  .fmo-container--multicolumns__no-bottom-padding {
    padding-bottom: 0px; } }

.fmo-container--normal-page {
  position: relative;
  margin-top: -40px;
  min-height: 20px;
  background-color: #fff;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  width: 1620px;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
  @media (min-width: 1920px) {
    .fmo-container--normal-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--normal-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--normal-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--normal-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--normal-page {
      width: auto;
      margin-left: 0;
      margin-right: 0;
      margin-top: 0; } }
  .fmo-container--normal-page--contact-form.fmo-container--normal-page {
    margin-bottom: 100px;
    margin-top: 60px; }
  .fmo-container--normal-page__row {
    padding: 36px 20px;
    margin-right: auto;
    margin-left: auto; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-container--normal-page__row {
        padding: 36px 58px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-container--normal-page__row {
        padding: 34px 58px; } }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-container--normal-page__row {
        padding: 34px 13px; } }
    .fmo-container--normal-page__row::before, .fmo-container--normal-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--normal-page__row::after {
      clear: both; }
    .fmo-container--normal-page__row--no-bg {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none; }
    .fmo-container--normal-page__row--no-padding.fmo-container--normal-page__row {
      padding: 0; }
    .fmo-container--normal-page__row--no-side-padding.fmo-container--normal-page__row {
      padding: 36px 0px; }
    .fmo-container--normal-page__row--contact-form.fmo-container--normal-page__row {
      margin-bottom: 60px;
      margin-top: 60px; }
    .fmo-container--normal-page__row__title {
      font-family: 'Roboto', sans-serif;
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0;
      line-height: 1.1;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--normal-page__row__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--normal-page__row__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--normal-page__row__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--normal-page__row__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--normal-page__row__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-container--normal-page__row__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-container--normal-page__row__sub-title {
      font-family: Source Sans Pro, Calibri, sans;
      color: #4b4f54;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 20px;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--normal-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--normal-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--normal-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--normal-page__row__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--normal-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-container--normal-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
    .fmo-container--normal-page__row__content {
      font-family: Source Sans Pro, Calibri, sans;
      color: #4b4f54;
      font-weight: 100; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--normal-page__row__content {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--normal-page__row__content {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--normal-page__row__content {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--normal-page__row__content {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--normal-page__row__content {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--normal-page__row__content {
          font-size: 18px;
          line-height: 2; } }
    .fmo-container--normal-page__row__btn-container {
      height: 80px;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-container--normal-page__row__btn-container__btn {
        padding: 16px 14px;
        border: none;
        border-top: 1px solid rgba(139, 141, 141, 0.09);
        background: #fdfdfd;
        outline: none;
        text-transform: uppercase;
        bottom: 0;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: Source Sans Pro, Calibri, sans;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--normal-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--normal-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--normal-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--normal-page__row__btn-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--normal-page__row__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-container--normal-page__row__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-container--normal-page__row__btn-container__btn:focus, .fmo-container--normal-page__row__btn-container__btn:active, .fmo-container--normal-page__row__btn-container__btn.active, .fmo-container--normal-page__row__btn-container__btn:active:focus, .fmo-container--normal-page__row__btn-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-container--normal-page__row__btn-container__btn:focus, .fmo-container--normal-page__row__btn-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-container--normal-page__row__btn-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #26a69a; }
        .fmo-container--normal-page__row__btn-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
    .fmo-container--normal-page__row__image, .fmo-container--normal-page__row__img, .fmo-container--normal-page__row__svg {
      max-width: 80%;
      max-height: 300px; }
    .fmo-container--normal-page__row__img-container {
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -khtml-justify-content: space-around;
      -moz-justify-content: space-around;
      -ms-justify-content: space-around;
      -o-justify-content: space-around;
      justify-content: space-around;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -khtml-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; }
      .fmo-container--normal-page__row__img-container__img {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        width: 400px;
        height: 300px; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--normal-page__row__img-container__img {
            margin: 0;
            padding: 15px 35px; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--normal-page__row__img-container__img {
            margin: 30px 0; } }
      .fmo-container--normal-page__row__img-container__photo {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        width: 100%;
        height: auto;
        max-height: 300px;
        max-width: 600px; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--normal-page__row__img-container__photo {
            margin: 0;
            max-height: 220px; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--normal-page__row__img-container__photo {
            margin: 30px 0; } }
      .fmo-container--normal-page__row__img-container__svg {
        width: 400px;
        height: 300px;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -webkit-box;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        -webkit-justify-content: space-around;
        -khtml-justify-content: space-around;
        -moz-justify-content: space-around;
        -ms-justify-content: space-around;
        -o-justify-content: space-around;
        justify-content: space-around;
        -ms-flex-line-pack: stretch;
        -webkit-align-content: stretch;
        -khtml-align-content: stretch;
        -moz-align-content: stretch;
        -ms-align-content: stretch;
        -o-align-content: stretch;
        align-content: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        -webkit-align-items: stretch;
        -khtml-align-items: stretch;
        -moz-align-items: stretch;
        -ms-align-items: stretch;
        -o-align-items: stretch;
        align-items: stretch; }
    .fmo-container--normal-page__row--logos-slider.fmo-container--normal-page__row {
      padding: 0; }
    .fmo-container--normal-page__row__cards-container {
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -khtml-justify-content: space-around;
      -moz-justify-content: space-around;
      -ms-justify-content: space-around;
      -o-justify-content: space-around;
      justify-content: space-around;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -khtml-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; }
      .fmo-container--normal-page__row__cards-container .fmo-card {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        margin: 40px 0; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--normal-page__row__cards-container .fmo-card {
            margin: 28px 0; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--normal-page__row__cards-container .fmo-card {
            margin: 30px 0; } }

.fmo-vertical-center-container-wrapper {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%; }

.fmo-vertical-center-container, .fmo-vertical-center-container__non-centred-row {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -khtml-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  -khtml-align-content: stretch;
  -moz-align-content: stretch;
  -ms-align-content: stretch;
  -o-align-content: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -khtml-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch; }
  .fmo-vertical-center-container h1, .fmo-vertical-center-container__non-centred-row h1,
  .fmo-vertical-center-container h2, .fmo-vertical-center-container__non-centred-row h2,
  .fmo-vertical-center-container div, .fmo-vertical-center-container__non-centred-row div,
  .fmo-vertical-center-container img, .fmo-vertical-center-container__non-centred-row img {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -khtml-order: 0;
    -moz-order: 0;
    -ms-order: 0;
    -o-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -khtml-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -o-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: auto;
    -webkit-align-self: auto;
    -khtml-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    -o-align-self: auto;
    align-self: auto; }
  .fmo-vertical-center-container__non-centred-row {
    min-height: 300px; }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-vertical-center-container__non-centred-row {
        min-height: 200px; } }

.fmo-container--about-page__row__cards-container {
  width: 100%;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -khtml-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  -khtml-align-content: stretch;
  -moz-align-content: stretch;
  -ms-align-content: stretch;
  -o-align-content: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -khtml-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  /*
    .fmo-rotating-card {
        width: 260px;
        height: 360px;
        margin: 40px 0;
        @include order(0);
        @include flex(0 1 auto);
        @include align-self(auto);
        @include breakpoint($from-xs-sm) {
            margin: 28px 0;
        }
        @include breakpoint($from-md-lg) {
            margin: 30px 0;
        }

        .fmo-rotating-card__front__title,
        .fmo-rotating-card__back__title {
            text-align: center;
            width: 100%;
        }

        .fmo-rotating-card__back__text {
            text-align: center;
            line-height: 1.4;
            @include responsive-body-text(400, false);
        }
    }
    */ }

/* ==========================================================================
   # Contact page Layout
   ========================================================================== */
.fmo-container--contact-page {
  position: relative;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  min-height: 20px;
  background-color: #fff;
  z-index: 2;
  width: 1620px;
  overflow: visible;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
  @media (min-width: 1920px) {
    .fmo-container--contact-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--contact-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--contact-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--contact-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--contact-page {
      width: auto;
      margin-left: 10px;
      margin-right: 10px; } }
  @media (min-height: 610px) and (max-height: 876px) {
    .fmo-container--contact-page {
      margin-top: -120px; } }
  @media (min-height: 0) and (max-height: 610px) {
    .fmo-container--contact-page {
      margin-top: -20px; } }
  @media (min-width: 0) and (max-width: 991px) {
    .fmo-container--contact-page {
      margin-bottom: 60px; } }
  .fmo-container--contact-page__row {
    padding: 0; }
    .fmo-container--contact-page__row::before, .fmo-container--contact-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--contact-page__row::after {
      clear: both; }
    .fmo-container--contact-page__row:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }

.fmo-container--partial-contact-page {
  position: relative;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  min-height: 20px;
  margin-top: 3%;
  background-color: #fff;
  z-index: 2;
  width: 1620px;
  overflow: visible;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
  @media (min-width: 1920px) {
    .fmo-container--partial-contact-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--partial-contact-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--partial-contact-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--partial-contact-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--partial-contact-page {
      width: auto;
      margin-left: 10px;
      margin-right: 10px;
      margin-top: 10%; } }
  @media (min-width: 0) and (max-width: 991px) {
    .fmo-container--partial-contact-page {
      margin-bottom: 20px;
      margin-top: 40px; } }
  .fmo-container--partial-contact-page--macro {
    margin-top: 60px;
    margin-bottom: 100px; }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-container--partial-contact-page--macro {
        margin-bottom: 50px; } }
  .fmo-container--partial-contact-page__row {
    padding: 0; }
    .fmo-container--partial-contact-page__row::before, .fmo-container--partial-contact-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--partial-contact-page__row::after {
      clear: both; }
    .fmo-container--partial-contact-page__row:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }
    @media (min-width: 768px) and (max-width: 1199px) {
      .fmo-container--partial-contact-page__row--macro {
        margin-top: -20px;
        margin-bottom: 90px !important; } }

/* ==========================================================================
   # CPC Calculator Page Styles
   ========================================================================== */
.fmo-container--cpc-page {
  position: relative;
  margin-top: -40px;
  min-height: 20px;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  width: 1620px;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out; }
  @media (min-width: 1920px) {
    .fmo-container--cpc-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--cpc-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--cpc-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--cpc-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--cpc-page {
      width: auto;
      margin-left: 10px;
      margin-right: 10px; } }
  .fmo-container--cpc-page__row {
    margin: 30px 0;
    /*padding: 62px 34px;*/
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
   /* -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-border-radius: 0.375rem;
    -khtml-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); */}
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-container--cpc-page__row {
        padding: 46px 0; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-container--cpc-page__row {
        padding: 24px 0; } }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-container--cpc-page__row {
        padding: 24px 2px; } }
    .fmo-container--cpc-page__row::before, .fmo-container--cpc-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--cpc-page__row::after {
      clear: both; }
    .fmo-container--cpc-page__row:first-child {
      margin-top: 0px; }
    .fmo-container--cpc-page__row:last-child {
      margin-bottom: 20px; }
    .fmo-container--cpc-page__row--no-padding.fmo-container--cpc-page__row {
      padding: 0; }
    .fmo-container--cpc-page__row--no-bg.fmo-container--cpc-page__row {
      background-color: transparent;
      padding: 0; }
    .fmo-container--cpc-page__row__title {
      font-family: Montserrat, Verdana;
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--cpc-page__row__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--cpc-page__row__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--cpc-page__row__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--cpc-page__row__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--cpc-page__row__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-container--cpc-page__row__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-container--cpc-page__row__sub-title {
      font-family: Source Sans Pro, Calibri, sans;
      color: #4b4f54;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--cpc-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--cpc-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--cpc-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--cpc-page__row__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--cpc-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-container--cpc-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
    .fmo-container--cpc-page__row__content {
      text-align: center;
      font-family: Source Sans Pro, Calibri, sans;
      color: #4b4f54;
      font-weight: 100;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--cpc-page__row__content {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--cpc-page__row__content {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--cpc-page__row__content {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--cpc-page__row__content {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--cpc-page__row__content {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--cpc-page__row__content {
          font-size: 18px;
          line-height: 2; } }
    .fmo-container--cpc-page__row__cards-container {
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: center;
      -webkit-align-content: center;
      -khtml-align-content: center;
      -moz-align-content: center;
      -ms-align-content: center;
      -o-align-content: center;
      align-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-container--cpc-page__row__cards-container .fmo-card {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
       /* margin: 40px 7.5px;*/ }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--cpc-page__row__cards-container .fmo-card {
            margin: 28px 7.5px; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--cpc-page__row__cards-container .fmo-card {
            margin: 30px 7.5px; } }

/* ==========================================================================
   # Header
   ========================================================================== */
.fmo-header {
  position: relative;
  z-index: 4; }
  .fmo-header__navbar__not-fixed, .fmo-header__navbar__fixed {
    background-color: transparent;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .fmo-header__navbar__not-fixed__container, .fmo-header__navbar__fixed__container {
      margin-right: auto;
      margin-left: auto;
      padding-left: 15px;
      padding-right: 15px; }
      @media (min-width: 1920px) {
        .fmo-header__navbar__not-fixed__container, .fmo-header__navbar__fixed__container {
          width: 1620px; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-header__navbar__not-fixed__container, .fmo-header__navbar__fixed__container {
          width: 1170px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-header__navbar__not-fixed__container, .fmo-header__navbar__fixed__container {
          width: 920px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-header__navbar__not-fixed__container, .fmo-header__navbar__fixed__container {
          width: 750px; } }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-header__navbar__not-fixed__container, .fmo-header__navbar__fixed__container {
          width: auto;
          margin-left: 10px;
          margin-right: 10px; } }
      .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__nav-container__nav__item__link__icon {
        fill: #fff;
        height: 16px;
        width: 16px;
        margin: -3px; }
      .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger {
        display: none;
        color: #fff;
        padding: 10px 15px;
        padding-top: 6px;
        padding-bottom: 6px;
        position: relative;
        -webkit-border-radius: 26px;
        -khtml-border-radius: 26px;
        -moz-border-radius: 26px;
        -ms-border-radius: 26px;
        -o-border-radius: 26px;
        border-radius: 26px;
        -webkit-border-radius: 1.625rem;
        -khtml-border-radius: 1.625rem;
        -moz-border-radius: 1.625rem;
        -ms-border-radius: 1.625rem;
        -o-border-radius: 1.625rem;
        border-radius: 1.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out;
        -o-transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out;
        transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out; }
        .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger:hover, .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger:focus, .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger.active, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger:hover, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger:focus, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger.active, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger:hover, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger:focus, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger.active, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger:hover, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger:focus, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger.active {
          color: #431070;
          outline: none;
          text-decoration: none;
          background-color: #eeeeee;
          -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
          .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger:hover .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger:focus .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger.active .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger:hover .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger:focus .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger.active .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger:hover .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger:focus .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger.active .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger:hover .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger:focus .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger.active .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon {
            fill: #431070; }
        @media (min-width: 0) and (max-width: 991px) {
          .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger, .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger {
            display: block;
            position: absolute;
            top: 50%;
            -webkit-transform: translate(0%, -50%);
            -khtml-transform: translate(0%, -50%);
            -moz-transform: translate(0%, -50%);
            -ms-transform: translate(0%, -50%);
            -o-transform: translate(0%, -50%);
            transform: translate(0%, -50%); } }
      @media (min-width: 544px) and (max-width: 991px) {
        .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger {
          right: 34px; } }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-header__navbar__not-fixed__container__mobile-nav-menu-trigger, .fmo-header__navbar__fixed__container__mobile-nav-menu-trigger {
          right: 20px; } }
      @media (min-width: 544px) and (max-width: 991px) {
        .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger {
          left: 34px; } }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-header__navbar__not-fixed__container__mobile-nav-search-trigger, .fmo-header__navbar__fixed__container__mobile-nav-search-trigger {
          left: 20px; } }
  .fmo-header__navbar__not-fixed {
    min-height: 80px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0; }
    .fmo-header__navbar__not-fixed::before {
      content: 'desktop';
      display: none; }
    .fmo-header__navbar__not-fixed__container {
      min-height: 80px;
      position: relative;
      margin-top: 34px; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-header__navbar__not-fixed__container {
          margin-top: 0; } }
      .fmo-header__navbar__not-fixed__container__logo-container {
        width: 180px;
        height: 80px;
        text-align: center;
        position: absolute; }
        @media (min-width: 0) and (max-width: 1199px) {
          .fmo-header__navbar__not-fixed__container__logo-container {
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -khtml-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-header__navbar__not-fixed__container__logo-container {
            left: 0;
            top: 50%;
            -webkit-transform: translate(0%, -50%);
            -khtml-transform: translate(0%, -50%);
            -moz-transform: translate(0%, -50%);
            -ms-transform: translate(0%, -50%);
            -o-transform: translate(0%, -50%);
            transform: translate(0%, -50%); } }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-header__navbar__not-fixed__container__logo-container {
            width: 120px;
            height: 60px; } }
        .fmo-header__navbar__not-fixed__container__logo-container__link {
          color: #fff;
          padding: 0;
          display: block;
          width: 100%;
          height: 100%; }
          .fmo-header__navbar__not-fixed__container__logo-container__link__logo {
            fill: #fff;
            width: 100%;
            height: 100%;
            display: block; }
      .fmo-header__navbar__not-fixed__container__nav-container {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -khtml-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
        @media (min-width: 0) and (max-width: 991px) {
          .fmo-header__navbar__not-fixed__container__nav-container {
            display: none !important; } }
        .fmo-header__navbar__not-fixed__container__nav-container__nav {
          padding-left: 0;
          list-style: none;
          margin: 6.75px -15px;
          float: left; }
          .fmo-header__navbar__not-fixed__container__nav-container__nav:before, .fmo-header__navbar__not-fixed__container__nav-container__nav:after {
            content: " ";
            display: table; }
          .fmo-header__navbar__not-fixed__container__nav-container__nav:after {
            clear: both; }
          .fmo-header__navbar__not-fixed__container__nav-container__nav__item {
            position: relative;
            display: block;
            float: left;
            margin: 0 2px; }
            .fmo-header__navbar__not-fixed__container__nav-container__nav__item.open > .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link {
              color: #431070;
              outline: none;
              text-decoration: none;
              background-color: #eeeeee;
              -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
              box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
            .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link {
              color: #fff;
              padding: 10px 15px;
              padding-top: 6px;
              padding-bottom: 6px;
              position: relative;
              display: block;
              -webkit-border-radius: 26px;
              -khtml-border-radius: 26px;
              -moz-border-radius: 26px;
              -ms-border-radius: 26px;
              -o-border-radius: 26px;
              border-radius: 26px;
              -webkit-border-radius: 1.625rem;
              -khtml-border-radius: 1.625rem;
              -moz-border-radius: 1.625rem;
              -ms-border-radius: 1.625rem;
              -o-border-radius: 1.625rem;
              border-radius: 1.625rem;
              -webkit-background-clip: padding-box;
              -khtml-background-clip: padding-box;
              -moz-background-clip: padding-box;
              -ms-background-clip: padding-box;
              -o-background-clip: padding-box;
              background-clip: padding-box;
              -webkit-transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out;
              -o-transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out;
              transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out; }
              .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link:focus {
                color: #fff;
                text-decoration: none; }
              .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link:hover, .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link.active {
                color: #431070;
                outline: none;
                text-decoration: none;
                background-color: #eeeeee;
                -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
                box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
                .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link:hover .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link.active .fmo-header__navbar__not-fixed__container__nav-container__nav__item__link__icon {
                  fill: #431070; }
        .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger {
          display: block;
          position: absolute;
          right: 0;
          top: 0;
          height: 100%;
          width: 50px;
          color: transparent;
          text-indent: 100%;
          overflow: hidden;
          white-space: nowrap; }
          .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger__icon {
            position: absolute;
            height: 2px;
            width: 20px;
            background-color: #fff;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -khtml-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            -webkit-transition: background-color 0.3s;
            -o-transition: background-color 0.3s;
            transition: background-color 0.3s; }
            .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger__icon::before, .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger__icon::after {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background-color: #fff;
              transform: -webkit-translateZ(0);
              transform: -khtml-translateZ(0);
              transform: -moz-translateZ(0);
              transform: -ms-translateZ(0);
              transform: -o-translateZ(0);
              transform: translateZ(0);
              -webkit-backface-visibility: hidden;
              -moz-backface-visibility: hidden;
              backface-visibility: hidden;
              -webkit-transition: transform 0.3s;
              -o-transition: transform 0.3s;
              transition: transform 0.3s; }
            .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger__icon::before {
              transform: -webkit-translateY(-6px);
              transform: -khtml-translateY(-6px);
              transform: -moz-translateY(-6px);
              transform: -ms-translateY(-6px);
              transform: -o-translateY(-6px);
              transform: translateY(-6px); }
            .fmo-header__navbar__not-fixed__container__nav-container__mobile-nav-trigger__icon::after {
              transform: -webkit-translateY(6px);
              transform: -khtml-translateY(6px);
              transform: -moz-translateY(6px);
              transform: -ms-translateY(6px);
              transform: -o-translateY(6px);
              transform: translateY(6px); }
  .fmo-header__navbar__fixed {
    min-height: 50px;
    background-color: #431070;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
    .fmo-header__navbar__fixed--transparent {
      height: 0;
      visibility: hidden;
      opacity: 0;
      filter: alpha(opacity=0); }
    .fmo-header__navbar__fixed--opaque {
      height: 50px;
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translate3d(0, 0, 0); }
    .fmo-header__navbar__fixed__container {
      min-height: 50px;
      position: relative; }
      .fmo-header__navbar__fixed__container__logo-container {
        width: 120px;
        height: 50px;
        text-align: center;
        position: absolute; }
        @media (min-width: 0) and (max-width: 1199px) {
          .fmo-header__navbar__fixed__container__logo-container {
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -khtml-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-header__navbar__fixed__container__logo-container {
            left: 0;
            top: 50%;
            -webkit-transform: translate(0%, -50%);
            -khtml-transform: translate(0%, -50%);
            -moz-transform: translate(0%, -50%);
            -ms-transform: translate(0%, -50%);
            -o-transform: translate(0%, -50%);
            transform: translate(0%, -50%); } }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-header__navbar__fixed__container__logo-container {
            width: 120px;
            height: 50px; } }
        .fmo-header__navbar__fixed__container__logo-container__link {
          color: #fff;
          padding: 0;
          display: block;
          width: 100%;
          height: 100%; }
          .fmo-header__navbar__fixed__container__logo-container__link__logo {
            fill: #fff;
            width: 100%;
            height: 100%;
            display: block; }
      .fmo-header__navbar__fixed__container__nav-container {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -khtml-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
        @media (min-width: 0) and (max-width: 991px) {
          .fmo-header__navbar__fixed__container__nav-container {
            display: none !important; } }
        .fmo-header__navbar__fixed__container__nav-container__nav {
          padding-left: 0;
          list-style: none;
          margin: 6.75px -15px;
          float: left; }
          .fmo-header__navbar__fixed__container__nav-container__nav:before, .fmo-header__navbar__fixed__container__nav-container__nav:after {
            content: " ";
            display: table; }
          .fmo-header__navbar__fixed__container__nav-container__nav:after {
            clear: both; }
          .fmo-header__navbar__fixed__container__nav-container__nav__item {
            position: relative;
            display: block;
            float: left;
            margin: 0 2px; }
            .fmo-header__navbar__fixed__container__nav-container__nav__item__link {
              color: #fff;
              padding: 10px 15px;
              padding-top: 6px;
              padding-bottom: 6px;
              position: relative;
              display: block;
              -webkit-border-radius: 26px;
              -khtml-border-radius: 26px;
              -moz-border-radius: 26px;
              -ms-border-radius: 26px;
              -o-border-radius: 26px;
              border-radius: 26px;
              -webkit-border-radius: 1.625rem;
              -khtml-border-radius: 1.625rem;
              -moz-border-radius: 1.625rem;
              -ms-border-radius: 1.625rem;
              -o-border-radius: 1.625rem;
              border-radius: 1.625rem;
              -webkit-background-clip: padding-box;
              -khtml-background-clip: padding-box;
              -moz-background-clip: padding-box;
              -ms-background-clip: padding-box;
              -o-background-clip: padding-box;
              background-clip: padding-box;
              -webkit-transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out;
              -o-transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out;
              transition: background 0.2s ease-in, box-shadow 0.3s ease-in-out; }
              .fmo-header__navbar__fixed__container__nav-container__nav__item__link:focus {
                color: #fff;
                text-decoration: none; }
              .fmo-header__navbar__fixed__container__nav-container__nav__item__link:hover, .fmo-header__navbar__fixed__container__nav-container__nav__item__link.active {
                color: #431070;
                outline: none;
                text-decoration: none;
                background-color: #eeeeee;
                -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
                box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
                .fmo-header__navbar__fixed__container__nav-container__nav__item__link:hover .fmo-header__navbar__fixed__container__nav-container__nav__item__link__icon, .fmo-header__navbar__fixed__container__nav-container__nav__item__link.active .fmo-header__navbar__fixed__container__nav-container__nav__item__link__icon {
                  fill: #431070; }

/* ==========================================================================
   # Sidebar
   ========================================================================== */
/* ==========================================================================
   # Mobile Menu
   ========================================================================== */
/* Modal view */
.fmo-perspective.js-modalview {
  position: fixed;
  overflow-y: auto; }

.js-modalview .fmo-body-wrapper {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 7px 129px rgba(0, 0, 0, 0.27);
  box-shadow: 0 7px 129px rgba(0, 0, 0, 0.27); }

.js-modalview .fmo-body-wrapper__main {
  transform: -webkit-translateZ(-1px);
  transform: -khtml-translateZ(-1px);
  transform: -moz-translateZ(-1px);
  transform: -ms-translateZ(-1px);
  transform: -o-translateZ(-1px);
  transform: translateZ(-1px);
  /* solves a rendering bug in Chrome on Windows */ }

.animate .fmo-body-wrapper::after {
  height: 101%;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s; }

/* Outer Nav */
.fmo-mobile-menu {
  position: absolute;
  height: auto;
  font-size: 2em;
  top: 0;
  padding-top: 25px;
  right: 35%;
  -webkit-transform-style: preserve-3d;
  -khtml-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.fmo-mobile-menu a {
  display: inline-block;
  white-space: nowrap;
  font-weight: 300;
  margin: 0 0 20px;
  color: #fff;
  -webkit-transform-style: preserve-3d;
  -khtml-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s; }

.fmo-mobile-menu a:hover {
  color: #ffdccd; }

.fmo-mobile-menu a {
  display: block; }

/* Effect Move Left */
.fmo-effect-moveleft {
 /*background: #223a8f;*/
 background: #ffffff;
}

.fmo-effect-moveleft .fmo-body-wrapper {
  -webkit-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

.fmo-effect-moveleft .fmo-body-wrapper::after {
  background: rgba(67, 16, 112, 0.6); }

.fmo-effect-moveleft.animate .fmo-body-wrapper {
  transform: -webkit-translateX(-50%) rotateY(45deg) translateZ(-50px);
  transform: -khtml-translateX(-50%) rotateY(45deg) translateZ(-50px);
  transform: -moz-translateX(-50%) rotateY(45deg) translateZ(-50px);
  transform: -ms-translateX(-50%) rotateY(45deg) translateZ(-50px);
  transform: -o-translateX(-50%) rotateY(45deg) translateZ(-50px);
  transform: translateX(-50%) rotateY(45deg) translateZ(-50px); }

.no-csstransforms3d .fmo-effect-moveleft.animate .fmo-body-wrapper {
  left: -75%; }

.fmo-effect-moveleft .fmo-mobile-menu a {
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: -webkit-translateX(100px) translateZ(-1000px);
  transform: -khtml-translateX(100px) translateZ(-1000px);
  transform: -moz-translateX(100px) translateZ(-1000px);
  transform: -ms-translateX(100px) translateZ(-1000px);
  transform: -o-translateX(100px) translateZ(-1000px);
  transform: translateX(100px) translateZ(-1000px);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s; }

.fmo-effect-moveleft .fmo-mobile-menu a:hover {
  text-decoration: none;
  color: #c28fef; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: -webkit-translateX(0) translateZ(0);
  transform: -khtml-translateX(0) translateZ(0);
  transform: -moz-translateX(0) translateZ(0);
  transform: -ms-translateX(0) translateZ(0);
  transform: -o-translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0); }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(2) {
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(3) {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(4) {
  -webkit-transition-delay: 0.16s;
  transition-delay: 0.16s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(5) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(6) {
  -webkit-transition-delay: 0.24s;
  transition-delay: 0.24s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(7) {
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(8) {
  -webkit-transition-delay: 0.32s;
  transition-delay: 0.32s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(9) {
  -webkit-transition-delay: 0.36s;
  transition-delay: 0.36s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(10) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(11) {
  -webkit-transition-delay: 0.44s;
  transition-delay: 0.44s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(12) {
  -webkit-transition-delay: 0.48s;
  transition-delay: 0.48s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(13) {
  -webkit-transition-delay: 0.52s;
  transition-delay: 0.52s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(14) {
  -webkit-transition-delay: 0.56s;
  transition-delay: 0.56s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(15) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(16) {
  -webkit-transition-delay: 0.64s;
  transition-delay: 0.64s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(17) {
  -webkit-transition-delay: 0.68s;
  transition-delay: 0.68s; }

.fmo-effect-moveleft.animate .fmo-mobile-menu a:nth-child(18) {
  -webkit-transition-delay: 0.72s;
  transition-delay: 0.72s; }

a.fmo-mobile-menu__item__link {
  text-transform: uppercase;
  font-weight: 600; }
  a.fmo-mobile-menu__item__link.level {
    margin-bottom: 0; }
  a.fmo-mobile-menu__item__link.level--1 {
    padding-left: 5px;
    margin: 20px 10px; }
  a.fmo-mobile-menu__item__link.level--2 {
    padding-left: 15px;
    margin: 20px 10px; }

/* Media Queries */
@media screen and (max-width: 77em) {
  .fmo-mobile-menu.top {
    top: 15%; }
  .fmo-mobile-menu.bottom {
    bottom: 15%; } }

@media screen and (max-width: 36.625em), screen and (max-height: 41.75em) {
  .fmo-mobile-menu.top {
    top: 5%; }
  .fmo-mobile-menu.bottom {
    bottom: 5%; }
  .fmo-mobile-menu.horizontal {
    font-size: 1.7em;
    width: 6.2em; }
  .fmo-mobile-menu.horizontal a {
    display: block;
    text-align: left; }
  /* Special Case */
  .effect-rotatetop .fmo-mobile-menu.horizontal {
    width: 95%;
    bottom: auto;
    top: 50%; }
  .effect-rotatetop .fmo-mobile-menu.horizontal a {
    display: inline-block; } }

@media screen and (max-width: 767px), screen and (max-height: 36.2em) {
  .fmo-mobile-menu {
    font-size: 1.2em;
    width: 6.8em;
    right: auto;
    left: 35%; } }

@media screen and (max-height: 31.6em) {
  .fmo-mobile-menu a {
    margin-bottom: 20px; } }

/* ==========================================================================
   # Footer Styles
   ========================================================================== */
.fmo-footer {
  z-index: 3; }
  .fmo-footer__container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1620px;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out; }
    @media (min-width: 1920px) {
      .fmo-footer__container {
        width: 1620px; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-footer__container {
        width: 1170px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-footer__container {
        width: 920px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-footer__container {
        width: 750px; } }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-footer__container {
        width: auto;
        margin-left: 10px;
        margin-right: 10px; } }
    .fmo-footer__container__row {
      position: relative;
      text-align: left;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -khtml-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -khtml-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start; }
      .fmo-footer__container__row--last__col {
        width: 30%; }
        @media (min-width: 0) and (max-width: 1199px) {
          .fmo-footer__container__row--last__col.copyright {
            order: 3;
            width: 100%;
            padding: 20px 4px;
            border-top: 0.5px solid #4c1b77; } }
      .fmo-footer__container__row__col {
        position: relative;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -khtml-flex: 1 1 auto;
        -moz-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        -o-flex: 1 1 auto;
        flex: 1 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto; }
        .fmo-footer__container__row__col__header__link {
          color: #fff;
          font-weight: bold;
          text-transform: uppercase; }
          .fmo-footer__container__row__col__header__link:hover, .fmo-footer__container__row__col__header__link:focus {
            color: #fff;
            text-decoration: none; }
        .fmo-footer__container__row__col--site-map {
          min-width: 40px;
          padding: 20px 8px; }
          @media (min-width: 0) and (max-width: 1199px) {
            .fmo-footer__container__row__col--site-map {
              display: none; } }
        .fmo-footer__container__row__col--newsletter, .fmo-footer__container__row__col--social {
          padding-top: 20px; }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-footer__container__row__col--newsletter, .fmo-footer__container__row__col--social {
              min-width: 170px; } }
          @media (min-width: 544px) and (max-width: 1199px) {
            .fmo-footer__container__row__col--newsletter, .fmo-footer__container__row__col--social {
              min-width: 50%; } }
          @media (min-width: 0) and (max-width: 767px) {
            .fmo-footer__container__row__col--newsletter, .fmo-footer__container__row__col--social {
              min-width: 100%; } }
        .fmo-footer__container__row__col--newsletter {
          min-width: 170px;
          height: 100px;
          padding-top: 20px; }
          @media (min-width: 0) and (max-width: 767px) {
            .fmo-footer__container__row__col--newsletter {
              padding: 30px 10% 10px;
              height: 120px; } }
          @media (min-width: 544px) and (max-width: 991px) {
            .fmo-footer__container__row__col--newsletter {
              padding: 30px 0;
              height: 120px; } }
          @media (min-width: 768px) and (max-width: 1199px) {
            .fmo-footer__container__row__col--newsletter {
              padding: 20px 0;
              text-align: left; } }
        .fmo-footer__container__row__col--social {
          min-width: 82px; }
          @media (min-width: 0) and (max-width: 767px) {
            .fmo-footer__container__row__col--social {
              padding: 18px 0;
              text-align: center;
              min-width: 100%; } }
          @media (min-width: 544px) and (max-width: 1199px) {
            .fmo-footer__container__row__col--social {
              padding: 66px 0 0; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-footer__container__row__col--social {
              padding: 22px 0;
              text-align: center; } }
          .fmo-footer__container__row__col--social .fmo-footer__container__row__col__header {
            padding-bottom: 10px; }
        .fmo-footer__container__row__col__links {
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: -webkit-box;
          display: flex;
          -webkit-box-direction: normal;
          -webkit-box-orient: vertical;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-flex-wrap: nowrap;
          -moz-flex-wrap: wrap;
          -ms-flex-wrap: none;
          flex-wrap: nowrap;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -khtml-justify-content: flex-start;
          -moz-justify-content: flex-start;
          -ms-justify-content: flex-start;
          -o-justify-content: flex-start;
          justify-content: flex-start;
          -ms-flex-line-pack: start;
          -webkit-align-content: flex-start;
          -khtml-align-content: flex-start;
          -moz-align-content: flex-start;
          -ms-align-content: flex-start;
          -o-align-content: flex-start;
          align-content: flex-start;
          -webkit-box-align: start;
          -ms-flex-align: start;
          -webkit-align-items: flex-start;
          -khtml-align-items: flex-start;
          -moz-align-items: flex-start;
          -ms-align-items: flex-start;
          -o-align-items: flex-start;
          align-items: flex-start; }
          .fmo-footer__container__row__col__links__link {
            color: #fff;
            -webkit-box-flex: 0;
            -moz-box-flex: 0;
            -webkit-flex: 0 1 auto;
            -khtml-flex: 0 1 auto;
            -moz-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
            -o-flex: 0 1 auto;
            flex: 0 1 auto;
            -ms-flex-item-align: auto;
            -webkit-align-self: auto;
            -khtml-align-self: auto;
            -moz-align-self: auto;
            -ms-align-self: auto;
            -o-align-self: auto;
            align-self: auto; }
            .fmo-footer__container__row__col__links__link:hover, .fmo-footer__container__row__col__links__link:focus {
              color: #fff;
              text-decoration: none; }
            .fmo-footer__container__row__col__links__link.level--1, .fmo-footer__container__row__col__links__link.level--2 {
              font-size: small;
              display: inline-block; }
        .fmo-footer__container__row__col__links--icons {
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: -webkit-box;
          display: flex;
          -webkit-box-direction: normal;
          -webkit-box-orient: horizontal;
          -webkit-flex-direction: row;
          -moz-flex-direction: row;
          -ms-flex-direction: row;
          flex-direction: row;
          -webkit-flex-wrap: nowrap;
          -moz-flex-wrap: wrap;
          -ms-flex-wrap: none;
          flex-wrap: nowrap;
          -ms-flex-pack: distribute;
          -webkit-justify-content: space-around;
          -khtml-justify-content: space-around;
          -moz-justify-content: space-around;
          -ms-justify-content: space-around;
          -o-justify-content: space-around;
          justify-content: space-around;
          -ms-flex-line-pack: start;
          -webkit-align-content: flex-start;
          -khtml-align-content: flex-start;
          -moz-align-content: flex-start;
          -ms-align-content: flex-start;
          -o-align-content: flex-start;
          align-content: flex-start;
          -webkit-box-align: start;
          -ms-flex-align: start;
          -webkit-align-items: flex-start;
          -khtml-align-items: flex-start;
          -moz-align-items: flex-start;
          -ms-align-items: flex-start;
          -o-align-items: flex-start;
          align-items: flex-start; }
          .fmo-footer__container__row__col__links--icons__link--icon {
            color: #fff;
            -webkit-box-flex: 0;
            -moz-box-flex: 0;
            -webkit-flex: 0 1 auto;
            -khtml-flex: 0 1 auto;
            -moz-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
            -o-flex: 0 1 auto;
            flex: 0 1 auto;
            -ms-flex-item-align: auto;
            -webkit-align-self: auto;
            -khtml-align-self: auto;
            -moz-align-self: auto;
            -ms-align-self: auto;
            -o-align-self: auto;
            align-self: auto; }
            .fmo-footer__container__row__col__links--icons__link--icon:hover .fmo-footer__container__row__col__links--icons__link--icon__svg {
              fill: #c28fef;
              text-decoration: none; }
            .fmo-footer__container__row__col__links--icons__link--icon__svg {
              fill: #fff;
              width: 20px;
              height: 20px;
              pointer-events: none; }
        .fmo-footer__container__row__col__newsletter-form {
          position: relative; }
          .fmo-footer__container__row__col__newsletter-form__input {
            position: absolute;
            top: 15px;
            left: 0;
            padding: 0 30px 0 8px;
            width: calc(100% - 60px);
            height: 35px;
            font-size: 15px;
            color: #fff;
            border: 1px solid transparent;
            background-color: #340d56;
            box-sizing: border-box;
            z-index: 1;
            -webkit-border-radius: 30px;
            -khtml-border-radius: 30px;
            -moz-border-radius: 30px;
            -ms-border-radius: 30px;
            -o-border-radius: 30px;
            border-radius: 30px;
            -webkit-border-radius: 1.875rem;
            -khtml-border-radius: 1.875rem;
            -moz-border-radius: 1.875rem;
            -ms-border-radius: 1.875rem;
            -o-border-radius: 1.875rem;
            border-radius: 1.875rem;
            -webkit-background-clip: padding-box;
            -khtml-background-clip: padding-box;
            -moz-background-clip: padding-box;
            -ms-background-clip: padding-box;
            -o-background-clip: padding-box;
            background-clip: padding-box; }
            .fmo-footer__container__row__col__newsletter-form__input -webkit- {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input::-webkit-input-placeholder {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input -khtml- {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input::-khtml-input-placeholder {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input -moz- {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input::-moz-input-placeholder {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input -ms- {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input::-ms-input-placeholder {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input -o- {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input::-o-input-placeholder {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input::input-placeholder {
              color: #fff; }
            .fmo-footer__container__row__col__newsletter-form__input:focus {
              outline: none;
              border: 1px solid rgba(255, 255, 255, 0.2); }
            @media (min-width: 0) and (max-width: 543px) {
              .fmo-footer__container__row__col__newsletter-form__input {
                width: calc(100% - 20px); } }
          .fmo-footer__container__row__col__newsletter-form__submit {
            display: block;
            position: absolute;
            top: 12px;
            right: 42px;
            height: 40px;
            width: 40px;
            border: none;
            background: #592d80;
            z-index: 2;
            -webkit-border-radius: 30px;
            -khtml-border-radius: 30px;
            -moz-border-radius: 30px;
            -ms-border-radius: 30px;
            -o-border-radius: 30px;
            border-radius: 30px;
            -webkit-border-radius: 1.875rem;
            -khtml-border-radius: 1.875rem;
            -moz-border-radius: 1.875rem;
            -ms-border-radius: 1.875rem;
            -o-border-radius: 1.875rem;
            border-radius: 1.875rem;
            -webkit-background-clip: padding-box;
            -khtml-background-clip: padding-box;
            -moz-background-clip: padding-box;
            -ms-background-clip: padding-box;
            -o-background-clip: padding-box;
            background-clip: padding-box;
            -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); }
            .fmo-footer__container__row__col__newsletter-form__submit:focus {
              border: 1px solid rgba(255, 255, 255, 0.2);
              outline: none;
              -webkit-border-radius: 32px;
              -khtml-border-radius: 32px;
              -moz-border-radius: 32px;
              -ms-border-radius: 32px;
              -o-border-radius: 32px;
              border-radius: 32px;
              -webkit-border-radius: 2rem;
              -khtml-border-radius: 2rem;
              -moz-border-radius: 2rem;
              -ms-border-radius: 2rem;
              -o-border-radius: 2rem;
              border-radius: 2rem;
              -webkit-background-clip: padding-box;
              -khtml-background-clip: padding-box;
              -moz-background-clip: padding-box;
              -ms-background-clip: padding-box;
              -o-background-clip: padding-box;
              background-clip: padding-box; }
            @media (min-width: 0) and (max-width: 543px) {
              .fmo-footer__container__row__col__newsletter-form__submit {
                right: 10px; } }
            .fmo-footer__container__row__col__newsletter-form__submit__svg {
              width: 14px;
              height: 14px;
              fill: #fff;
              position: absolute;
              top: 50%;
              left: calc(50% - -1px);
              transform: -webkit-translate(-50%, -50%);
              transform: -khtml-translate(-50%, -50%);
              transform: -moz-translate(-50%, -50%);
              transform: -ms-translate(-50%, -50%);
              transform: -o-translate(-50%, -50%);
              transform: translate(-50%, -50%); }
        .fmo-footer__container__row__col__logo {
          width: 140px;
          height: 46px; }
          .fmo-footer__container__row__col__logo__svg {
            width: 100%;
            height: 100%;
            fill: #fff; }
        .fmo-footer__container__row__col__copyright {
          text-align: center;
          color: #fff;
          line-height: 48px; }
          @media (min-width: 0) and (max-width: 1199px) {
            .fmo-footer__container__row__col__copyright {
              line-height: inherit; } }
        .fmo-footer__container__row__col__language {
          position: absolute;
          right: 4px;
          margin: 15px 0;
          margin: 8px 0;
          padding: 6px 12px;
          -webkit-border-radius: 152px;
          -khtml-border-radius: 152px;
          -moz-border-radius: 152px;
          -ms-border-radius: 152px;
          -o-border-radius: 152px;
          border-radius: 152px;
          -webkit-border-radius: 9.5rem;
          -khtml-border-radius: 9.5rem;
          -moz-border-radius: 9.5rem;
          -ms-border-radius: 9.5rem;
          -o-border-radius: 9.5rem;
          border-radius: 9.5rem;
          -webkit-background-clip: padding-box;
          -khtml-background-clip: padding-box;
          -moz-background-clip: padding-box;
          -ms-background-clip: padding-box;
          -o-background-clip: padding-box;
          background-clip: padding-box; }
          .fmo-footer__container__row__col__language:hover, .fmo-footer__container__row__col__language.open {
            background-color: white;
            -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
            .fmo-footer__container__row__col__language:hover .fmo-footer__container__row__col__language__selector__text,
            .fmo-footer__container__row__col__language:hover .fmo-footer__container__row__col__language__selector__toggle, .fmo-footer__container__row__col__language.open .fmo-footer__container__row__col__language__selector__text,
            .fmo-footer__container__row__col__language.open .fmo-footer__container__row__col__language__selector__toggle {
              color: #431070; }
          .fmo-footer__container__row__col__language__selector {
            text-align: right; }
            .fmo-footer__container__row__col__language__selector__text, .fmo-footer__container__row__col__language__selector__toggle {
              color: #fff; }
            .fmo-footer__container__row__col__language__selector__text {
              padding-right: 4px; }
              @media (min-width: 0) and (max-width: 991px) {
                .fmo-footer__container__row__col__language__selector__text {
                  display: none; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-footer__container__row__col__language__selector__text {
                  display: inline-block; } }
            .fmo-footer__container__row__col__language__selector__toggle {
              padding: 0 0 0 23px;
              position: relative; }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-footer__container__row__col__language__selector__toggle {
                  margin-right: 8px; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-footer__container__row__col__language__selector__toggle {
                  margin-right: 8px; } }
              .fmo-footer__container__row__col__language__selector__toggle:hover, .fmo-footer__container__row__col__language__selector__toggle:focus {
                color: #fff;
                text-decoration: none; }
              .fmo-footer__container__row__col__language__selector__toggle__svg {
                width: 16px;
                height: 16px;
                position: absolute;
                top: 50%;
                left: 0;
                transform: -webkit-translate(0, -50%);
                transform: -khtml-translate(0, -50%);
                transform: -moz-translate(0, -50%);
                transform: -ms-translate(0, -50%);
                transform: -o-translate(0, -50%);
                transform: translate(0, -50%); }
              .fmo-footer__container__row__col__language__selector__toggle .caret {
                margin: 0 10px 4px; }
            .fmo-footer__container__row__col__language__selector .dropdown-menu {
              right: -18px;
              left: inherit;
              min-width: initial;
              bottom: 24px; }
              .fmo-footer__container__row__col__language__selector .dropdown-menu__item {
                line-height: 16px;
                position: relative;
                padding: 3px 28px; }
    .fmo-footer__container__hr {
      border-top: 0.5px solid rgba(255, 255, 255, 0.05);
      width: 100%;
      margin: 6px 0 0; }

/* ==========================================================================
   # Article Page Layout
   ========================================================================== */
.fmo-container--article-page {
  position: relative;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  min-height: 20px;
  background: transparent;
  z-index: 2;
  width: 1620px;
  overflow: visible;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out; }
  @media (min-width: 1920px) {
    .fmo-container--article-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--article-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--article-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--article-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--article-page {
      width: auto;
      margin-left: 2px;
      margin-right: 2px; } }
  @media (min-height: 610px) and (max-height: 876px) and (orientation: portrait) {
    .fmo-container--article-page {
      margin-top: -120px; } }
  @media (min-height: 0) and (max-height: 610px) and (orientation: portrait) {
    .fmo-container--article-page {
      margin-top: -20px; } }
  @media only screen and (max-height: 543px) and (orientation: landscape) {
    .fmo-container--article-page {
      margin-top: 0; } }
  .fmo-container--article-page .container {
    max-width: 100%; }
  .fmo-container--article-page .fmo-quotes__container__content {
    font-size: 16px;
    color: #4b4f54;
    text-align: justify;
    font-style: normal;
    line-height: 1.88;
    font-weight: 400;
    letter-spacing: -0.003em;
    font-weight: 400; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-container--article-page .fmo-quotes__container__content {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-container--article-page .fmo-quotes__container__content {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-container--article-page .fmo-quotes__container__content {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-container--article-page .fmo-quotes__container__content {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-container--article-page .fmo-quotes__container__content {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-container--article-page .fmo-quotes__container__content {
        font-size: 18px;
        line-height: 2; } }
  .fmo-container--article-page__headline {
    width: 80%;
    display: block;
    margin: 30px auto 2px;
    text-align: center;
    font-size: 1.7em;
    color: black;
    font-weight: 600;
    font-family: 'Roboto', sans-serif; }
    .fmo-container--article-page__headline__container {
      color: #565656;
      font-weight: 600; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--article-page__headline__container {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--article-page__headline__container {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--article-page__headline__container {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--article-page__headline__container {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--article-page__headline__container {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--article-page__headline__container {
          font-size: 18px;
          line-height: 2; } }
  .fmo-container--article-page__description {
    display: block;
    width: 80%;
    margin: 0px auto 20px;
    text-align: center;
    font-size: 1.2em;
    color: black;
    font-family: Montserrat;
    font-weight: 200; }
    .fmo-container--article-page__description__container {
      color: #565656;
      font-weight: 600; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--article-page__description__container {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--article-page__description__container {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--article-page__description__container {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--article-page__description__container {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--article-page__description__container {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--article-page__description__container {
          font-size: 18px;
          line-height: 2; } }
  .fmo-container--article-page__top-bar__container {
    position: relative;
    height: 64px;
    border-bottom: 1px solid rgba(74, 79, 85, 0.12); }
    .fmo-container--article-page__top-bar__container__btn {
      font-weight: 500; }
      .fmo-container--article-page__top-bar__container__btn-left {
        position: absolute;
        left: 10px;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -khtml-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
      .fmo-container--article-page__top-bar__container__btn-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -khtml-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      .fmo-container--article-page__top-bar__container__btn-right {
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -khtml-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
      .fmo-container--article-page__top-bar__container__btn__link {
        color: #4a4f55;
        padding: 10px 15px;
        position: relative;
        display: block;
        border: 1px solid rgba(74, 79, 85, 0.4);
        position: relative;
        font-weight: 500;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-transition: all 0.2s ease-in, box-shadow 0.3s ease-in-out;
        -o-transition: all 0.2s ease-in, box-shadow 0.3s ease-in-out;
        transition: all 0.2s ease-in, box-shadow 0.3s ease-in-out; }
        .fmo-container--article-page__top-bar__container__btn__link:hover {
          color: #4a4f55;
          text-decoration: none;
          border: 1px solid #565656; }
        .fmo-container--article-page__top-bar__container__btn__link:focus {
          color: #4a4f55;
          text-decoration: none;
          outline: none;
          border: 1px solid #565656; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--article-page__top-bar__container__btn__link {
            padding: 6px 10px; } }
        .fmo-container--article-page__top-bar__container__btn__link.previous .fmo-container--article-page__top-bar__container__btn__link__icon, .fmo-container--article-page__top-bar__container__btn__link.next .fmo-container--article-page__top-bar__container__btn__link__icon {
          width: 20px;
          height: 20px;
          position: absolute;
          top: 50%;
          fill: rgba(74, 79, 85, 0.12);
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease;
          top: 50%;
          -webkit-transform: translate(0%, -50%);
          -khtml-transform: translate(0%, -50%);
          -moz-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          -o-transform: translate(0%, -50%);
          transform: translate(0%, -50%); }
        .fmo-container--article-page__top-bar__container__btn__link.previous:hover .fmo-container--article-page__top-bar__container__btn__link__icon, .fmo-container--article-page__top-bar__container__btn__link.next:hover .fmo-container--article-page__top-bar__container__btn__link__icon {
          fill: #565656; }
        .fmo-container--article-page__top-bar__container__btn__link.previous {
          padding: 10px 15px 10px 36px; }
          @media (min-width: 0) and (max-width: 767px) {
            .fmo-container--article-page__top-bar__container__btn__link.previous {
              display: none; } }
          .fmo-container--article-page__top-bar__container__btn__link.previous .fmo-container--article-page__top-bar__container__btn__link__icon {
            left: 8px;
            transform: -webkit-rotate(180deg) translateY(50%);
            transform: -khtml-rotate(180deg) translateY(50%);
            transform: -moz-rotate(180deg) translateY(50%);
            transform: -ms-rotate(180deg) translateY(50%);
            transform: -o-rotate(180deg) translateY(50%);
            transform: rotate(180deg) translateY(50%); }
        .fmo-container--article-page__top-bar__container__btn__link.next {
          padding: 10px 36px 10px 15px; }
          @media (min-width: 0) and (max-width: 767px) {
            .fmo-container--article-page__top-bar__container__btn__link.next {
              display: none; } }
          .fmo-container--article-page__top-bar__container__btn__link.next .fmo-container--article-page__top-bar__container__btn__link__icon {
            right: 8px; }
        .fmo-container--article-page__top-bar__container__btn__link.disabled, .fmo-container--article-page__top-bar__container__btn__link.is-disabled {
          cursor: not-allowed;
          pointer-events: none;
          color: rgba(74, 79, 85, 0.3); }
          .fmo-container--article-page__top-bar__container__btn__link.disabled .fmo-container--article-page__top-bar__container__btn__link__icon, .fmo-container--article-page__top-bar__container__btn__link.is-disabled .fmo-container--article-page__top-bar__container__btn__link__icon {
            fill: rgba(74, 79, 85, 0.12); }
          .fmo-container--article-page__top-bar__container__btn__link.disabled:hover, .fmo-container--article-page__top-bar__container__btn__link.is-disabled:hover {
            color: rgba(74, 79, 85, 0.2);
            border: 1px solid rgba(74, 79, 85, 0.12);
            background-color: #fff;
            text-decoration: none;
            -webkit-box-shadow: none;
            box-shadow: none; }
            .fmo-container--article-page__top-bar__container__btn__link.disabled:hover .fmo-container--article-page__top-bar__container__btn__link__icon, .fmo-container--article-page__top-bar__container__btn__link.is-disabled:hover .fmo-container--article-page__top-bar__container__btn__link__icon {
              fill: rgba(74, 79, 85, 0.12); }
  .fmo-container--article-page__header__social {
    position: relative; }
    .fmo-container--article-page__header__social__like {
      position: absolute;
      top: 20px;
      left: 20px;
      text-align: center;
      color: #999; }
      .fmo-container--article-page__header__social__like:hover .fmo-container--article-page__header__social__like__numbers {
        color: #565656; }
      .fmo-container--article-page__header__social__like:hover .fmo-container--article-page__header__social__like__link__icon {
        fill: #565656; }
      .fmo-container--article-page__header__social__like__link {
        position: relative;
        border-radius: 50%;
        border: 1px solid #565656;
        display: block;
        width: 50px;
        height: 50px; }
        .fmo-container--article-page__header__social__like__link__icon {
          position: absolute;
          width: 24px;
          height: 24px;
          fill: #565656;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -khtml-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
      .fmo-container--article-page__header__social__like__numbers {
        color: #565656;
        bottom: -32px;
        position: absolute;
        text-align: center;
        -webkit-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        -khtml-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        font-weight: 100; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__header__social__like__numbers {
            font-size: 10px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__header__social__like__numbers {
            font-size: 11px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__header__social__like__numbers {
            font-size: 12px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__header__social__like__numbers {
            font-size: 13px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__header__social__like__numbers {
            font-size: 14px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__header__social__like__numbers {
            font-size: 15px;
            line-height: 2; } }
    .fmo-container--article-page__header__social__share {
      position: absolute;
      top: 20px;
      right: 20px; }
      .fmo-container--article-page__header__social__share:hover .fmo-container--article-page__header__social__share__numbers {
        color: #565656; }
      .fmo-container--article-page__header__social__share:hover .fmo-container--article-page__header__social__share__link__icon {
        fill: #565656; }
      .fmo-container--article-page__header__social__share__link {
        position: relative;
        border-radius: 50%;
        border: 1px solid #565656;
        display: block;
        width: 50px;
        height: 50px; }
        .fmo-container--article-page__header__social__share__link__icon {
          position: absolute;
          width: 24px;
          height: 24px;
          fill: #565656;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -khtml-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
      .fmo-container--article-page__header__social__share__numbers {
        bottom: -32px;
        position: absolute;
        text-align: center;
        color: #565656;
        -webkit-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        -khtml-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        font-weight: 100; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__header__social__share__numbers {
            font-size: 10px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__header__social__share__numbers {
            font-size: 11px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__header__social__share__numbers {
            font-size: 12px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__header__social__share__numbers {
            font-size: 13px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__header__social__share__numbers {
            font-size: 14px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__header__social__share__numbers {
            font-size: 15px;
            line-height: 2; } }
  .fmo-container--article-page__tags {
    width: 100%;
    display: block;
    margin-top: 20px; }
    .fmo-container--article-page__tags__container {
      width: 80%;
      margin: 4px auto;
      text-align: center; }
      .fmo-container--article-page__tags__container__tag {
        display: inline-block;
        margin: 4px; }
        .fmo-container--article-page__tags__container__tag__link {
          color: #fff;
          padding: 4px 8px;
          background-color: #009688;
          -webkit-border-radius: 3px;
          -khtml-border-radius: 3px;
          -moz-border-radius: 3px;
          -ms-border-radius: 3px;
          -o-border-radius: 3px;
          border-radius: 3px;
          -webkit-border-radius: 0.1875rem;
          -khtml-border-radius: 0.1875rem;
          -moz-border-radius: 0.1875rem;
          -ms-border-radius: 0.1875rem;
          -o-border-radius: 0.1875rem;
          border-radius: 0.1875rem;
          -webkit-background-clip: padding-box;
          -khtml-background-clip: padding-box;
          -moz-background-clip: padding-box;
          -ms-background-clip: padding-box;
          -o-background-clip: padding-box;
          background-clip: padding-box;
          font-weight: 100;
          -webkit-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-container--article-page__tags__container__tag__link {
              font-size: 10px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-container--article-page__tags__container__tag__link {
              font-size: 11px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-container--article-page__tags__container__tag__link {
              font-size: 12px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-container--article-page__tags__container__tag__link {
              font-size: 13px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-container--article-page__tags__container__tag__link {
              font-size: 14px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-container--article-page__tags__container__tag__link {
              font-size: 15px;
              line-height: 2; } }
          .fmo-container--article-page__tags__container__tag__link:hover {
            color: #fff;
            text-decoration: none;
            -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); }
          .fmo-container--article-page__tags__container__tag__link:focus {
            color: #fff;
            text-decoration: none;
            outline: none; }
  .fmo-container--article-page__article-title {
    width: 100%;
    display: block;
    margin: 80px 0 0; }
    .fmo-container--article-page__article-title__container {
      width: 80%;
      margin: 10px auto;
      text-align: center; }
      .fmo-container--article-page__article-title__container__title {
        line-height: 1.1;
        font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
        letter-spacing: -0.02em;
        font-weight: 700;
        font-style: normal;
        font-weight: bold; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__article-title__container__title {
            font-size: 180%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__article-title__container__title {
            font-size: 220%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__article-title__container__title {
            font-size: 240%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__article-title__container__title {
            font-size: 260%;
            line-height: 1.3; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__article-title__container__title {
            font-size: 280%;
            line-height: 1.2; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__article-title__container__title {
            font-size: 300%;
            line-height: 1.1; } }
      .fmo-container--article-page__article-title__container__sub-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        letter-spacing: 0;
        font-weight: 700;
        font-style: normal;
        line-height: 1.1;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__article-title__container__sub-title {
            font-size: 150%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__article-title__container__sub-title {
            font-size: 150%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__article-title__container__sub-title {
            font-size: 150%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__article-title__container__sub-title {
            font-size: 160%;
            line-height: 1.42857; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__article-title__container__sub-title {
            font-size: 180%;
            line-height: 1.42857; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__article-title__container__sub-title {
            font-size: 180%;
            line-height: 1.42857; } }
  .fmo-container--article-page__date {
    width: 100%;
    display: block;
    margin: 25px 0; }
    .fmo-container--article-page__date__container {
      width: 80%;
      margin: 10px auto;
      text-align: center; }
      .fmo-container--article-page__date__container__text {
        color: #565656;
        font-weight: 400; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__date__container__text {
            font-size: 14px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__date__container__text {
            font-size: 15px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__date__container__text {
            font-size: 16px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__date__container__text {
            font-size: 16px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__date__container__text {
            font-size: 17px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__date__container__text {
            font-size: 18px;
            line-height: 2; } }
  .fmo-container--article-page__info {
    width: 100%;
    margin: 25px 0; }
    .fmo-container--article-page__info__container {
      width: 80%;
      margin: 0 auto;
      text-align: center;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      -webkit-align-items: baseline;
      -khtml-align-items: baseline;
      -moz-align-items: baseline;
      -ms-align-items: baseline;
      -o-align-items: baseline;
      align-items: baseline; }
      .fmo-container--article-page__info__container__views, .fmo-container--article-page__info__container__comments, .fmo-container--article-page__info__container__author {
        margin: 4px;
        border: 1px solid #565656;
        border-radius: 3px;
        line-height: 1;
        padding: 4px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -webkit-box;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: none;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -khtml-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        -ms-flex-line-pack: stretch;
        -webkit-align-content: stretch;
        -khtml-align-content: stretch;
        -moz-align-content: stretch;
        -ms-align-content: stretch;
        -o-align-content: stretch;
        align-content: stretch;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -khtml-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -o-align-items: center;
        align-items: center; }
        .fmo-container--article-page__info__container__views__icon, .fmo-container--article-page__info__container__comments__icon, .fmo-container--article-page__info__container__author__icon {
          width: 16px;
          height: 16px;
          fill: #565656;
          margin: 0 8px;
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
          -khtml-order: 0;
          -moz-order: 0;
          -ms-order: 0;
          -o-order: 0;
          order: 0;
          -webkit-box-flex: 0;
          -moz-box-flex: 0;
          -webkit-flex: 0 1 auto;
          -khtml-flex: 0 1 auto;
          -moz-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          -o-flex: 0 1 auto;
          flex: 0 1 auto;
          -ms-flex-item-align: auto;
          -webkit-align-self: auto;
          -khtml-align-self: auto;
          -moz-align-self: auto;
          -ms-align-self: auto;
          -o-align-self: auto;
          align-self: auto; }
        .fmo-container--article-page__info__container__views__number, .fmo-container--article-page__info__container__views__text, .fmo-container--article-page__info__container__comments__number, .fmo-container--article-page__info__container__comments__text, .fmo-container--article-page__info__container__author__number, .fmo-container--article-page__info__container__author__text {
          color: #565656;
          margin: 0;
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
          -khtml-order: 0;
          -moz-order: 0;
          -ms-order: 0;
          -o-order: 0;
          order: 0;
          -webkit-box-flex: 0;
          -moz-box-flex: 0;
          -webkit-flex: 0 1 auto;
          -khtml-flex: 0 1 auto;
          -moz-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          -o-flex: 0 1 auto;
          flex: 0 1 auto;
          -ms-flex-item-align: auto;
          -webkit-align-self: auto;
          -khtml-align-self: auto;
          -moz-align-self: auto;
          -ms-align-self: auto;
          -o-align-self: auto;
          align-self: auto;
          font-weight: 500; }
  .fmo-container--article-page__line {
    position: relative;
    margin: 40px 0; }
    .fmo-container--article-page__line__block {
      border-top: 8px solid #009688;
      width: 130px;
      position: absolute;
      top: -4px;
      margin: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -khtml-transform: translate(-50%, 0%);
      -moz-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      -o-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
    .fmo-container--article-page__line__hr {
      border-top: 1px solid rgba(74, 79, 85, 0.12); }
  .fmo-container--article-page__row {
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: visible; }
    .fmo-container--article-page__row:not(:last-child) {
      border-bottom: 1px solid rgba(74, 79, 85, 0.12); }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-container--article-page__row {
        padding-top: 0;
        padding-bottom: 0; } }
    .fmo-container--article-page__row::before, .fmo-container--article-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--article-page__row::after {
      clear: both; }
    .fmo-container--article-page__row:last-child {
      margin-bottom: 0; }
    .fmo-container--article-page__row--no-bg {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none; }
    @media (min-width: 1920px) {
      .fmo-container--article-page__row {
        padding: 48px; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-container--article-page__row {
        padding: 48px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-container--article-page__row {
        padding: 36px 48px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-container--article-page__row {
        padding: 24px 48px; } }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-container--article-page__row {
        padding: 0 2px; } }
    .fmo-container--article-page__row::before, .fmo-container--article-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--article-page__row::after {
      clear: both; }
    .fmo-container--article-page__row:last-child {
      margin-bottom: 20px;
      padding-bottom: 120px; }
    .fmo-container--article-page__row a {
      font-weight: 400;
      color: #431070; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--article-page__row a {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--article-page__row a {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--article-page__row a {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--article-page__row a {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--article-page__row a {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--article-page__row a {
          font-size: 18px;
          line-height: 2; } }
      .fmo-container--article-page__row a:visited {
        color: #2a0057; }
      .fmo-container--article-page__row a:hover {
        color: #a976d6; }
      .fmo-container--article-page__row a:active {
        color: #7643a3; }
      .fmo-container--article-page__row a:visited, .fmo-container--article-page__row a:hover, .fmo-container--article-page__row a:active, .fmo-container--article-page__row a:focus {
        text-decoration: none; }
    .fmo-container--article-page__row__title {
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0;
      line-height: 1.1;
      font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
      letter-spacing: -0.02em;
      font-weight: 700;
      font-style: normal;
      line-height: 1.04;
      letter-spacing: -0.028em;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--article-page__row__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--article-page__row__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--article-page__row__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--article-page__row__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--article-page__row__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-container--article-page__row__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-container--article-page__row__sub-title {
      color: #4b4f54;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 80px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      letter-spacing: 0;
      font-weight: 700;
      font-style: normal;
      line-height: 1.1;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--article-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--article-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--article-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--article-page__row__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--article-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-container--article-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
    .fmo-container--article-page__row__content,
    .fmo-container--article-page__row__content a {
      font-style: normal;
      font-weight: 400; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--article-page__row__content,
        .fmo-container--article-page__row__content a {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--article-page__row__content,
        .fmo-container--article-page__row__content a {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--article-page__row__content,
        .fmo-container--article-page__row__content a {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--article-page__row__content,
        .fmo-container--article-page__row__content a {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--article-page__row__content,
        .fmo-container--article-page__row__content a {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--article-page__row__content,
        .fmo-container--article-page__row__content a {
          font-size: 18px;
          line-height: 2; } }
      .fmo-container--article-page__row__content__justified,
      .fmo-container--article-page__row__content a__justified {
        font-style: normal;
        font-weight: 400;
        text-align: justify; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__row__content__justified,
          .fmo-container--article-page__row__content a__justified {
            font-size: 14px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__row__content__justified,
          .fmo-container--article-page__row__content a__justified {
            font-size: 15px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__row__content__justified,
          .fmo-container--article-page__row__content a__justified {
            font-size: 16px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__row__content__justified,
          .fmo-container--article-page__row__content a__justified {
            font-size: 16px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__row__content__justified,
          .fmo-container--article-page__row__content a__justified {
            font-size: 17px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__row__content__justified,
          .fmo-container--article-page__row__content a__justified {
            font-size: 18px;
            line-height: 2; } }
    .fmo-container--article-page__row__btn-container {
      height: 120px;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-container--article-page__row__btn-container__btn {
        padding: 16px 14px;
        border: none;
        border-top: 1px solid rgba(139, 141, 141, 0.09);
        background: #fdfdfd;
        outline: none;
        text-transform: uppercase;
        bottom: 0;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: Source Sans Pro, Calibri, sans;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--article-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--article-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--article-page__row__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--article-page__row__btn-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--article-page__row__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-container--article-page__row__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-container--article-page__row__btn-container__btn:focus, .fmo-container--article-page__row__btn-container__btn:active, .fmo-container--article-page__row__btn-container__btn.active, .fmo-container--article-page__row__btn-container__btn:active:focus, .fmo-container--article-page__row__btn-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-container--article-page__row__btn-container__btn:focus, .fmo-container--article-page__row__btn-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-container--article-page__row__btn-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #26a69a; }
        .fmo-container--article-page__row__btn-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
    .fmo-container--article-page__row__image, .fmo-container--article-page__row__img, .fmo-container--article-page__row__svg {
      max-width: 80%;
      maxheight: 250px; }
    .fmo-container--article-page__row__img-container {
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -khtml-justify-content: space-around;
      -moz-justify-content: space-around;
      -ms-justify-content: space-around;
      -o-justify-content: space-around;
      justify-content: space-around;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -khtml-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; }
      .fmo-container--article-page__row__img-container__img {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        width: 400px;
        height: 300px; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--article-page__row__img-container__img {
            margin: 28px 0; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--article-page__row__img-container__img {
            margin: 30px 0; } }
      .fmo-container--article-page__row__img-container__svg {
        width: 400px;
        height: 300px;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -webkit-box;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        -webkit-justify-content: space-around;
        -khtml-justify-content: space-around;
        -moz-justify-content: space-around;
        -ms-justify-content: space-around;
        -o-justify-content: space-around;
        justify-content: space-around;
        -ms-flex-line-pack: stretch;
        -webkit-align-content: stretch;
        -khtml-align-content: stretch;
        -moz-align-content: stretch;
        -ms-align-content: stretch;
        -o-align-content: stretch;
        align-content: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        -webkit-align-items: stretch;
        -khtml-align-items: stretch;
        -moz-align-items: stretch;
        -ms-align-items: stretch;
        -o-align-items: stretch;
        align-items: stretch; }
    .fmo-container--article-page__row--logos-slider.fmo-container--normal-page__row {
      padding: 0; }
    .fmo-container--article-page__row__cards-container {
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      -webkit-justify-content: space-around;
      -khtml-justify-content: space-around;
      -moz-justify-content: space-around;
      -ms-justify-content: space-around;
      -o-justify-content: space-around;
      justify-content: space-around;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -khtml-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; }
      .fmo-container--article-page__row__cards-container .fmo-card {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        margin: 40px 0; }
        @media (min-width: 0) and (max-width: 767px) {
          .fmo-container--article-page__row__cards-container .fmo-card {
            margin: 28px 0; } }
        @media (min-width: 768px) and (max-width: 1199px) {
          .fmo-container--article-page__row__cards-container .fmo-card {
            margin: 30px 0; } }
  .fmo-container--article-page__full-img {
    width: 100%;
    margin: 0;
    padding: 0; }
  @media (min-width: 544px) {
    .fmo-container--article-page__grid {
      margin: 0 20px; } }
  @media (min-width: 0) and (max-width: 543px) {
    .fmo-container--article-page__grid {
      margin: 0 10px; } }

body .fmo-article-newsletter__form__btn-container__submit {
  font-weight: 500;
  min-width: 223px;
  height: 38.2px;
  padding-top: 1px;
  padding-bottom: 1px; }

/* Share and Like features on the Article pages */
.like-icon {
  width: 50px;
  height: 50px;
  cursor: pointer;
  top: 0px; }

.share-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  cursor: pointer;
  top: 0px;
  margin-left: 5px;
  display: block; }

.share-google-plus {
  background-color: #DF4D34;
  position: absolute;
  top: 0px;
  display: none;
  padding-top: 11px; }

.share-twitter {
  background-color: #1DA1F2;
  position: absolute;
  top: 0px;
  display: none;
  padding-left: 3px;
  padding-top: 12px; }

.share-facebook {
  background-color: #3B579D;
  position: absolute;
  top: 0px;
  display: none;
  padding-left: 1px;
  padding-top: 10px; }

.share-linkedin {
  background-color: #0077B5;
  position: absolute;
  top: 0px;
  display: none;
  padding-top: 10px; }

.fa-share-linkedin {
  margin-bottom: 3px;
  margin-left: 1px; }

.share-show {
  display: block; }
  @media (min-width: 0) and (max-width: 767px) {
    .share-show {
      display: none; } }

.share-button-trigger {
  display: none; }
  @media (min-width: 0) and (max-width: 767px) {
    .share-button-trigger {
      display: block; } }

.fmo-container--article-page__header__social__share {
  right: 70px;
  top: -45px; }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--article-page__header__social__share {
      right: 20px;
      top: 20px; } }

.share-exit {
  font-size: 50px;
  font-family: 'Roboto', sans-serif; }

.fa-lg {
  text-decoration: none !important; }

.fa-lg:hover {
  color: white; }

.share-show-js {
  display: block; }

@media screen and (min-width: 768px) {
  .share-google-plus {
    top: 225px !important; }
  .share-twitter {
    top: 60px !important; }
  .share-facebook {
    top: 115px !important; }
  .share-linkedin {
    top: 170px !important; } }

@media (max-width: 768px) {
  .share-icons:not(.trigger) {
    display: none; } }

@media (max-width: 640px) {
  .fmo-container--article-page__header__social__like {
    top: 5px;
    left: 5px; }
  /*.fmo-container--article-page__header__social__share {
            top: 5px;
            right: 9px;
        }*/
  .fmo-container--article-page__headline {
    margin: 70px auto 2px; }
  .fmo-header__navbar__not-fixed__container__logo-container__link__logo {
    display: none; } }

/* ==========================================================================
   # Resources Page Layout
   ========================================================================== */
.fmo-container--resources-page {
  position: relative;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  min-height: 20px;
  background: transparent;
  z-index: 2;
  width: 1620px;
  overflow: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out; }
  @media (min-width: 1920px) {
    .fmo-container--resources-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--resources-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--resources-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--resources-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--resources-page {
      width: auto;
      margin-left: 20px;
      margin-right: 20px; } }
  @media (min-height: 640px) and (max-height: 999px) {
    .fmo-container--resources-page {
      margin-top: -20px; } }
  @media (min-height: 0px) and (max-height: 639px) {
    .fmo-container--resources-page {
      margin-top: 0px; } }
  .fmo-container--resources-page__header {
    padding: 0;
    margin: 20px auto;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
    .fmo-container--resources-page__header::before, .fmo-container--resources-page__header::after {
      content: " ";
      display: table; }
    .fmo-container--resources-page__header::after {
      clear: both; }
    .fmo-container--resources-page__header:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }
    .fmo-container--resources-page__header .col-xs-8 {
      margin: 0;
      padding: 0; }
  .fmo-container--resources-page__row {
    padding: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;
    overflow: visible;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-container--resources-page__row {
        padding-top: 0;
        padding-bottom: 0; } }
    .fmo-container--resources-page__row::before, .fmo-container--resources-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--resources-page__row::after {
      clear: both; }
    .fmo-container--resources-page__row:last-child {
      margin-bottom: 0;
      padding-bottom: 15px; }
    .fmo-container--resources-page__row--filter {
      margin: 0 0 30px;
      padding: 15px 0; }
    .fmo-container--resources-page__row--no-bg {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none; }
    .fmo-container--resources-page__row__news-title-container {
      width: 100%;
      height: 70px;
      position: relative; }
      .fmo-container--resources-page__row__news-title-container__title {
        position: absolute;
        text-align: center;
        color: #fff;
        background-color: #431070;
        font-weight: 300;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -khtml-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-weight: bold; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-container--resources-page__row__news-title-container__title {
            font-size: 180%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-container--resources-page__row__news-title-container__title {
            font-size: 220%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-container--resources-page__row__news-title-container__title {
            font-size: 240%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-container--resources-page__row__news-title-container__title {
            font-size: 260%;
            line-height: 1.3; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-container--resources-page__row__news-title-container__title {
            font-size: 280%;
            line-height: 1.2; } }
        @media (min-width: 1920px) {
          .fmo-container--resources-page__row__news-title-container__title {
            font-size: 300%;
            line-height: 1.1; } }
      .fmo-container--resources-page__row__news-title-container__line {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -khtml-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .fmo-container--resources-page__row__filter {
      width: 100%;
      height: 64px; }
    .fmo-container--resources-page__row__grid-container__item {
      float: left;
      width: 25%;
      position: relative; }

.fmo-resources--social__container {
  top: 7.5px; }

.fmo-resources--social__links--icons {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -khtml-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  -khtml-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  -o-align-content: flex-end;
  align-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -khtml-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end; }
  .fmo-resources--social__links--icons__link--icon {
    color: #fff;
    padding: 0 20px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -khtml-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -o-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: auto;
    -webkit-align-self: auto;
    -khtml-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    -o-align-self: auto;
    align-self: auto; }
    .fmo-resources--social__links--icons__link--icon:hover .fmo-resources--social__links--icons__link--icon__svg {
      fill: #c28fef;
      text-decoration: none; }
    .fmo-resources--social__links--icons__link--icon__svg {
      fill: #fff;
      width: 20px;
      height: 20px;
      pointer-events: none; }

.fmo-resources--social__follow-text {
  color: #fff;
  padding: 0 10px;
  pointer-events: none;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fmo-card-news {
  cursor: pointer;
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); }
  @media (min-width: 0) and (max-width: 991px) {
    .fmo-card-news {
      margin-bottom: 15px;
      margin-top: 15px; } }
  .fmo-card-news__link, .fmo-card-news__link:link, .fmo-card-news__link:hover, .fmo-card-news__link:active, .fmo-card-news__link:visited {
    color: inherit;
    text-decoration: inherit;
    font-size: inherit; }
  .fmo-card-news:hover .fmo-card-news__wrapper__header__share-menu {
    top: 20px;
    right: 0;
    opacity: 1; }
  .fmo-card-news:hover .fmo-card-news__wrapper__data {
    background-color: rgba(67, 16, 112, 0.8);
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); }
  .fmo-card-news__wrapper {
    min-height: 375px;
    position: relative;
    overflow: hidden;
    z-index: 1; }
    .fmo-card-news__wrapper__header {
      color: #fff;
      padding: 1.6em 1em; }
      .fmo-card-news__wrapper__header:before, .fmo-card-news__wrapper__header:after {
        content: " ";
        display: table; }
      .fmo-card-news__wrapper__header:after {
        clear: both; }
      .fmo-card-news__wrapper__header__date {
        float: left;
        padding: 2px 8px;
        border-radius: 40px; }
        .fmo-card-news__wrapper__header__date__day, .fmo-card-news__wrapper__header__date__month, .fmo-card-news__wrapper__header__date__year {
          font-size: 12px;
          -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
          -khtml-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
          -moz-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
          -ms-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
          -o-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); }
      .fmo-card-news__wrapper__header__share-menu {
        margin: 0;
        padding: 0;
        list-style-type: none;
        position: absolute;
        top: 0;
        right: 0;
        transform: -webkit-translate(-50%, 0);
        transform: -khtml-translate(-50%, 0);
        transform: -moz-translate(-50%, 0);
        transform: -ms-translate(-50%, 0);
        transform: -o-translate(-50%, 0);
        transform: translate(-50%, 0);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        opacity: 0;
        filter: alpha(opacity=0); }
        .fmo-card-news__wrapper__header__share-menu:before, .fmo-card-news__wrapper__header__share-menu:after {
          content: " ";
          display: table; }
        .fmo-card-news__wrapper__header__share-menu:after {
          clear: both; }
        .fmo-card-news__wrapper__header__share-menu__item {
          display: inline-block;
          margin: 0 5px;
          position: relative; }
          .fmo-card-news__wrapper__header__share-menu__item__link {
            color: #fff; }
            .fmo-card-news__wrapper__header__share-menu__item__link__icon {
              width: 18px;
              height: 18px;
              fill: #fff;
              -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
              -khtml-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
              -moz-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
              -ms-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
              -o-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
              filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4)); }
    .fmo-card-news__wrapper__data {
      position: absolute;
      bottom: 0;
      width: 100%;
      color: #fff;
      background-color: rgba(67, 16, 112, 0.4);
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      transform: -webkit-translateY(calc(50px + 6em));
      transform: -khtml-translateY(calc(50px + 6em));
      transform: -moz-translateY(calc(50px + 6em));
      transform: -ms-translateY(calc(50px + 6em));
      transform: -o-translateY(calc(50px + 6em));
      transform: translateY(calc(50px + 6em)); }
      .fmo-card-news__wrapper__data__content {
        padding: 1em 2em;
        position: relative;
        z-index: 1; }
        .fmo-card-news__wrapper__data__content__title {
          margin: 10px 0;
          text-decoration: none;
          color: #fff;
          line-height: 1.2;
          font-size: 3.5rem;
          max-width: 480px;
          display: -webkit-box;
          overflow: hidden;
          text-overflow: ellipsis;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical; }
        .fmo-card-news__wrapper__data__content__button {
          text-decoration: none;
          font-family: Montserrat, Verdana;
          font-size: 2em;
          display: block;
          width: 100px;
          margin: 2em auto 1em;
          text-align: center;
          font-size: 12px;
          color: #fff;
          line-height: 1;
          position: relative;
          font-weight: 700; }
          .fmo-card-news__wrapper__data__content__button::after {
            content: '\2192';
            opacity: 0;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translate(0, -50%);
            transition: all 0.3s; }
          .fmo-card-news__wrapper__data__content__button:hover {
            text-decoration: none;
            color: #fff;
            cursor: pointer; }
            .fmo-card-news__wrapper__data__content__button:hover::after {
              transform: translate(5px, -50%);
              opacity: 1; }
        .fmo-card-news__wrapper__data__content__author {
          font-size: 12px; }
        .fmo-card-news__wrapper__data__content__text {
          padding-bottom: 10px;
          margin: 0;
          max-width: 480px;
          height: 46px;
          margin-bottom: 6px;
          display: -webkit-box;
          overflow: hidden;
          text-overflow: ellipsis;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical; }
        .fmo-card-news__wrapper__data__content__btn {
          letter-spacing: 2px;
          padding: 16px 14px;
          display: inline-block;
          margin: 0px 0px 6px;
          border: none;
          border-top: 1px solid rgba(139, 141, 141, 0.09);
          background-color: #fdfdfd;
          outline: none;
          text-transform: uppercase;
          bottom: 0;
          font-weight: 100;
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
          -khtml-order: 0;
          -moz-order: 0;
          -ms-order: 0;
          -o-order: 0;
          order: 0;
          -webkit-box-flex: 0;
          -moz-box-flex: 0;
          -webkit-flex: 0 1 auto;
          -khtml-flex: 0 1 auto;
          -moz-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
          -o-flex: 0 1 auto;
          flex: 0 1 auto;
          -ms-flex-item-align: auto;
          -webkit-align-self: auto;
          -khtml-align-self: auto;
          -moz-align-self: auto;
          -ms-align-self: auto;
          -o-align-self: auto;
          align-self: auto;
          text-transform: uppercase;
          letter-spacing: inherit;
          border: none;
          cursor: pointer;
          text-decoration: none;
          background-color: #009688;
          color: rgba(255, 255, 255, 0.9);
          font-family: Source Sans Pro, Calibri, sans;
          font-weight: light;
          min-width: 88px;
          -webkit-border-radius: 250px;
          -khtml-border-radius: 250px;
          -moz-border-radius: 250px;
          -ms-border-radius: 250px;
          -o-border-radius: 250px;
          border-radius: 250px;
          -webkit-border-radius: 15.625rem;
          -khtml-border-radius: 15.625rem;
          -moz-border-radius: 15.625rem;
          -ms-border-radius: 15.625rem;
          -o-border-radius: 15.625rem;
          border-radius: 15.625rem;
          -webkit-background-clip: padding-box;
          -khtml-background-clip: padding-box;
          -moz-background-clip: padding-box;
          -ms-background-clip: padding-box;
          -o-background-clip: padding-box;
          background-clip: padding-box;
          -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          font-weight: 100;
          -webkit-transition: all 0.15s ease-in-out;
          -o-transition: all 0.15s ease-in-out;
          transition: all 0.15s ease-in-out;
          -webkit-border-radius: 35px;
          -khtml-border-radius: 35px;
          -moz-border-radius: 35px;
          -ms-border-radius: 35px;
          -o-border-radius: 35px;
          border-radius: 35px;
          -webkit-border-radius: 2.1875rem;
          -khtml-border-radius: 2.1875rem;
          -moz-border-radius: 2.1875rem;
          -ms-border-radius: 2.1875rem;
          -o-border-radius: 2.1875rem;
          border-radius: 2.1875rem;
          -webkit-background-clip: padding-box;
          -khtml-background-clip: padding-box;
          -moz-background-clip: padding-box;
          -ms-background-clip: padding-box;
          -o-background-clip: padding-box;
          background-clip: padding-box;
          font-size: 100%;
          font-weight: 500; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 150%;
              line-height: 2rem;
              padding: 6px 16px; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 150%;
              line-height: 2rem;
              padding: 8px 16px; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 150%;
              line-height: 2rem;
              padding: 10px 20px; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 160%;
              line-height: 1.32rem;
              padding: 10px 20px; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 180%;
              line-height: 1.32rem;
              padding: 12px 20px; } }
          @media (min-width: 1920px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 180%;
              line-height: 1.32rem;
              padding: 12px 20px; } }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 150%;
              line-height: 2rem;
              padding: 6px 16px; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 150%;
              line-height: 2rem;
              padding: 8px 16px; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 150%;
              line-height: 2rem;
              padding: 10px 20px; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 160%;
              line-height: 1.32rem;
              padding: 10px 20px; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 180%;
              line-height: 1.32rem;
              padding: 12px 20px; } }
          @media (min-width: 1920px) {
            .fmo-card-news__wrapper__data__content__btn {
              font-size: 180%;
              line-height: 1.32rem;
              padding: 12px 20px; } }
          .fmo-card-news__wrapper__data__content__btn:focus, .fmo-card-news__wrapper__data__content__btn:active, .fmo-card-news__wrapper__data__content__btn.active, .fmo-card-news__wrapper__data__content__btn:active:focus, .fmo-card-news__wrapper__data__content__btn.active:focus {
            outline: 0;
            outline-offset: 0;
            text-decoration: none; }
          .fmo-card-news__wrapper__data__content__btn:focus, .fmo-card-news__wrapper__data__content__btn:hover {
            outline: none;
            text-decoration: none;
            -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
          .fmo-card-news__wrapper__data__content__btn:hover {
            color: rgba(255, 255, 255, 0.7);
            background-color: #26a69a; }
          .fmo-card-news__wrapper__data__content__btn:focus {
            color: rgba(255, 255, 255, 0.7); }
  .fmo-card-news__container {
    position: absolute;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    .fmo-card-news__container__bg {
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      height: 100%;
      overflow: hidden; }
      .fmo-card-news__container__bg__img {
        object-fit: cover;
        object-position: center;
        font-family: 'object-fit: cover; object-position: center;';
        width: 100%; }

/* The headline card */
.fmo-headline-news-card {
  position: relative;
  height: 450px;
  background-color: #fff;
  margin-bottom: 15px;
  -webkit-box-shadow: 10px 10px 93px 0 rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 93px 0 rgba(0, 0, 0, 0.75); }
  @media (min-width: 0) and (max-width: 543px) {
    .fmo-headline-news-card {
      height: inherit; } }
  .fmo-headline-news-card__link, .fmo-headline-news-card__link:link, .fmo-headline-news-card__link:hover, .fmo-headline-news-card__link:active, .fmo-headline-news-card__link:visited {
    color: inherit;
    text-decoration: inherit;
    font-size: inherit; }
  .fmo-headline-news-card__img-container {
    float: left;
    position: relative;
    left: 30px;
    top: -30px;
    height: 320px;
    width: 50%;
    overflow: hidden;
    background-color: #431070;
    -webkit-box-shadow: 10px 10px 60px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 60px 0 rgba(0, 0, 0, 0.75); }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-headline-news-card__img-container {
        top: 20px;
        left: 20px;
        height: 80px;
        width: 32%;
        margin: 0 30px 15px 0; } }
    .fmo-headline-news-card__img-container__container {
      position: absolute;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .fmo-headline-news-card__img-container__container__bg {
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -webkit-box;
        display: flex;
        height: 100%;
        overflow: hidden; }
        .fmo-headline-news-card__img-container__container__bg__img {
          object-fit: cover;
          object-position: center;
          font-family: 'object-fit: cover; object-position: center;';
          width: 100%; }
  .fmo-headline-news-card__text-container {
    margin-left: calc(50% + 56px);
    margin-right: 20px; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-headline-news-card__text-container {
        margin-left: 20px;
        margin-right: 20px;
        padding-bottom: 140px; } }
    .fmo-headline-news-card__text-container__title {
      padding: 15px 0;
      font-size: 1.3rem;
      color: #4b4b4b;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-headline-news-card__text-container__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-headline-news-card__text-container__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-headline-news-card__text-container__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-headline-news-card__text-container__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-headline-news-card__text-container__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-headline-news-card__text-container__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-headline-news-card__text-container__author {
      height: 30px;
      /*width: 110px;*/
      -webkit-border-radius: 28px;
      -khtml-border-radius: 28px;
      -moz-border-radius: 28px;
      -ms-border-radius: 28px;
      -o-border-radius: 28px;
      border-radius: 28px;
      -webkit-border-radius: 1.75rem;
      -khtml-border-radius: 1.75rem;
      -moz-border-radius: 1.75rem;
      -ms-border-radius: 1.75rem;
      -o-border-radius: 1.75rem;
      border-radius: 1.75rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .fmo-headline-news-card__text-container__author__avatar {
        margin-top: 5px;
        margin-left: 6px;
        float: left;
        height: 20px;
        width: 20px;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .fmo-headline-news-card__text-container__author__name {
        padding: 6px 12px 0 34px;
        font-size: 1.2rem;
        color: #4b4b4b; }
    .fmo-headline-news-card__text-container__separator {
      margin-top: 10px;
      border: 1px solid #c3c3c3; }
    .fmo-headline-news-card__text-container__summary {
      text-align: justify;
      padding-top: 10px;
      font-size: 0.95rem;
      line-height: 150%;
      color: #4b4b4b;
      max-height: 236px;
      overflow-y: hidden;
      font-weight: 100;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-headline-news-card__text-container__summary {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-headline-news-card__text-container__summary {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-headline-news-card__text-container__summary {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-headline-news-card__text-container__summary {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-headline-news-card__text-container__summary {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-headline-news-card__text-container__summary {
          font-size: 18px;
          line-height: 2; } }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-headline-news-card__text-container__summary {
          max-height: 210px; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-headline-news-card__text-container__summary {
          max-height: 140px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-headline-news-card__text-container__summary {
          max-height: 185px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-headline-news-card__text-container__summary {
          max-height: 250px; } }
    .fmo-headline-news-card__text-container__date-letters {
      font-weight: 100;
      font-weight: 400; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-headline-news-card__text-container__date-letters {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-headline-news-card__text-container__date-letters {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-headline-news-card__text-container__date-letters {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-headline-news-card__text-container__date-letters {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-headline-news-card__text-container__date-letters {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-headline-news-card__text-container__date-letters {
          font-size: 18px;
          line-height: 2; } }
    .fmo-headline-news-card__text-container__btn-container {
      display: block; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-headline-news-card__text-container__btn-container {
          padding-top: 16px; } }
      .fmo-headline-news-card__text-container__btn-container__btn {
        letter-spacing: 2px;
        padding: 16px 14px;
        border: none;
        border-top: 1px solid rgba(139, 141, 141, 0.09);
        background-color: #fdfdfd;
        outline: none;
        text-transform: uppercase;
        bottom: 0;
        font-weight: 100;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: Source Sans Pro, Calibri, sans;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        display: inline-block;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-headline-news-card__text-container__btn-container__btn:focus, .fmo-headline-news-card__text-container__btn-container__btn:active, .fmo-headline-news-card__text-container__btn-container__btn.active, .fmo-headline-news-card__text-container__btn-container__btn:active:focus, .fmo-headline-news-card__text-container__btn-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-headline-news-card__text-container__btn-container__btn:focus, .fmo-headline-news-card__text-container__btn-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-headline-news-card__text-container__btn-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #26a69a; }
        .fmo-headline-news-card__text-container__btn-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-headline-news-card__text-container__btn-container__btn {
            display: inline-block;
            margin: 0px 0px 15px; } }
  .fmo-headline-news-card__date__day {
    position: absolute;
    left: 30px;
    bottom: 60px;
    font-size: 6rem;
    color: #c3c3c3; }
  .fmo-headline-news-card__date__month {
    position: absolute;
    left: 30px;
    bottom: 26px;
    font-size: 2rem;
    color: #7b7b7b; }
  .fmo-headline-news-card__social-menu {
    position: absolute;
    bottom: 10px;
    right: 0; }
    .fmo-headline-news-card__social-menu__item {
      display: inline;
      list-style: none;
      padding-right: 40px;
      color: #7b7b7b; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-headline-news-card__social-menu__item {
          padding-right: 20px; } }
      .fmo-headline-news-card__social-menu__item__icon {
        fill: #c3c3c3;
        width: 30px;
        height: 30px; }

.fmo-load-more__btn-container {
  text-align: center;
  margin: 30px auto 0;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -khtml-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  -khtml-align-content: stretch;
  -moz-align-content: stretch;
  -ms-align-content: stretch;
  -o-align-content: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -khtml-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .fmo-load-more__btn-container__btn {
    padding: 6px 38px;
    border: none;
    border-top: 1px solid rgba(139, 141, 141, 0.09);
    outline: none;
    text-transform: uppercase;
    bottom: 0;
    text-transform: uppercase;
    letter-spacing: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: #009688;
    color: rgba(255, 255, 255, 0.9);
    font-family: Source Sans Pro, Calibri, sans;
    font-size: 180%;
    font-weight: light;
    min-width: 88px;
    -webkit-border-radius: 250px;
    -khtml-border-radius: 250px;
    -moz-border-radius: 250px;
    -ms-border-radius: 250px;
    -o-border-radius: 250px;
    border-radius: 250px;
    -webkit-border-radius: 15.625rem;
    -khtml-border-radius: 15.625rem;
    -moz-border-radius: 15.625rem;
    -ms-border-radius: 15.625rem;
    -o-border-radius: 15.625rem;
    border-radius: 15.625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    font-weight: 100;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    font-weight: 500;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -khtml-order: 0;
    -moz-order: 0;
    -ms-order: 0;
    -o-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -khtml-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -o-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: auto;
    -webkit-align-self: auto;
    -khtml-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    -o-align-self: auto;
    align-self: auto; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-load-more__btn-container__btn {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-load-more__btn-container__btn {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-load-more__btn-container__btn {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-load-more__btn-container__btn {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-load-more__btn-container__btn {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-load-more__btn-container__btn {
        font-size: 18px;
        line-height: 2; } }
    .fmo-load-more__btn-container__btn:focus, .fmo-load-more__btn-container__btn:active, .fmo-load-more__btn-container__btn.active, .fmo-load-more__btn-container__btn:active:focus, .fmo-load-more__btn-container__btn.active:focus {
      outline: 0;
      outline-offset: 0;
      text-decoration: none; }
    .fmo-load-more__btn-container__btn:focus, .fmo-load-more__btn-container__btn:hover {
      outline: none;
      text-decoration: none;
      -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2);
      box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2); }
    .fmo-load-more__btn-container__btn:hover {
      color: rgba(255, 255, 255, 0.7);
      background-color: #26a69a; }
    .fmo-load-more__btn-container__btn:focus {
      color: inherit; }

#wrapper.purple,
.wrapper.purple {
  background-color: #380E5E;
  background-color: #481c72; }

body .margin-bottom-30px {
  margin-bottom: 30px; }

body .margin-top-0px {
  margin-top: 0px; }

.fmo-container--normal-page__row.full-radius {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

body .box-shadow {
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); }

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

.fmo-container--normal-page__row.top-radius {
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

/* --------- big-purple-price --------- */
#big-purple-price {
  text-align: center;
  color: black;
  vertical-align: middle; }

#big-purple-price .big-purple-price-big {
  font-size: 18em;
  line-height: 50%;
  color: #582c82; }

#big-purple-price .big-purple-price-small {
  color: inherit;
  font-size: 4em;
  margin-top: 10px; }

/* ==========================================================================
   # Jargon Dictionary Layout
   ========================================================================== */
.fmo-container--landing-page.js-container {
  margin-top: -80px;
  margin-left: auto;
  margin-right: auto; }

.fmo-faq {
  color: #3a3a3a;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28px;
  word-spacing: 0;
  font-family: "Montserrant", sans;
  text-transform: none;
  width: 100%; }
  .fmo-faq-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 45px;
    z-index: 2; }
    @media (max-width: 620px) {
      .fmo-faq-container {
        padding: 20px; } }
  .fmo-faq__no-results {
    margin-bottom: 15px;
    background: #f7f8f9;
    border-radius: 5px;
    padding: 20px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    -khtml-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    display: none; }
    .fmo-faq__no-results h3 {
      margin: 0; }
    .fmo-faq__no-results.show-jargon-no-results {
      display: flex !important; }
  .fmo-faq__showing-results {
    margin-bottom: 15px;
    background: #f7f8f9;
    border-radius: 5px;
    padding: 20px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    -khtml-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    display: none; }
    .fmo-faq__showing-results h3 {
      margin: 0; }
    .fmo-faq__showing-results.show-jargon-showing-results {
      display: flex !important; }
  .fmo-faq__title {
    color: #272829;
    font-size: 48px;
    font-weight: 800;
    line-height: 60px;
    text-transform: capitalize; }
    .fmo-faq__title_hr {
      border: 2px solid rgba(0, 0, 0, 0.2); }
    .fmo-faq__title__container {
      /* stylelint-disable */
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -khtml-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-line-pack: center;
      -webkit-align-content: center;
      -khtml-align-content: center;
      -moz-align-content: center;
      -ms-align-content: center;
      -o-align-content: center;
      align-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      @media (max-width: 620px) {
        .fmo-faq__title__container {
          flex-wrap: wrap; } }
      .fmo-faq__title__container > .fmo-search-faq {
        font-size: 16px;
        margin-top: 0;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: flex-end;
        -khtml-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        -o-justify-content: flex-end;
        justify-content: flex-end; }
        .fmo-faq__title__container > .fmo-search-faq > .fmo-search-faq__input {
          border-color: #cccccc;
          border-width: 1px;
          border-style: solid;
          border-right-width: 0; }
  .fmo-faq__list__holder {
    margin-top: 30px;
    padding-top: 30px;
    font-family: "Source Sans Pro", sans; }
  .fmo-faq__list__item {
    cursor: pointer;
    margin-bottom: 15px;
    background: #f7f8f9;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 20px; }
    @media (max-width: 620px) {
      .fmo-faq__list__item {
        padding-left: 10px;
        padding-right: 10px; } }
    .fmo-faq__list__item.opened {
      opacity: 1; }
      .fmo-faq__list__item.opened .fmo-plus-minus-icon__horizontal {
        opacity: 0;
        transform: -webkit-translate(-50%, -50%) rotate(90deg);
        transform: -khtml-translate(-50%, -50%) rotate(90deg);
        transform: -moz-translate(-50%, -50%) rotate(90deg);
        transform: -ms-translate(-50%, -50%) rotate(90deg);
        transform: -o-translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg); }
      .fmo-faq__list__item.opened .fmo-plus-minus-icon__vertical {
        transform: -webkit-translate(-50%, -50%) rotate(90deg);
        transform: -khtml-translate(-50%, -50%) rotate(90deg);
        transform: -moz-translate(-50%, -50%) rotate(90deg);
        transform: -ms-translate(-50%, -50%) rotate(90deg);
        transform: -o-translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg); }
      .fmo-faq__list__item.opened > .fmo-faq__list__item__container {
        height: 100%; }
    .fmo-faq__list__item__container {
      height: 0;
      overflow: hidden;
      padding-left: 40px;
      /* stylelint-disable */
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: flext-start;
      -ms-flex-pack: flext-start;
      -webkit-justify-content: flext-start;
      -khtml-justify-content: flext-start;
      -moz-justify-content: flext-start;
      -ms-justify-content: flext-start;
      -o-justify-content: flext-start;
      justify-content: flext-start;
      -ms-flex-line-pack: flext-start;
      -webkit-align-content: flext-start;
      -khtml-align-content: flext-start;
      -moz-align-content: flext-start;
      -ms-align-content: flext-start;
      -o-align-content: flext-start;
      align-content: flext-start;
      -webkit-box-align: flext-start;
      -ms-flex-align: flext-start;
      -webkit-align-items: flext-start;
      -khtml-align-items: flext-start;
      -moz-align-items: flext-start;
      -ms-align-items: flext-start;
      -o-align-items: flext-start;
      align-items: flext-start;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
    .fmo-faq__list__item__title {
      font-size: 16px;
      font-weight: 700;
      font-size: 18px;
      color: #444;
      padding-top: 20px;
      padding-bottom: 20px;
      margin: 0;
      user-select: none;
      outline-style: none;
      /* stylelint-disable */
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: flext-start;
      -ms-flex-pack: flext-start;
      -webkit-justify-content: flext-start;
      -khtml-justify-content: flext-start;
      -moz-justify-content: flext-start;
      -ms-justify-content: flext-start;
      -o-justify-content: flext-start;
      justify-content: flext-start;
      -ms-flex-line-pack: center;
      -webkit-align-content: center;
      -khtml-align-content: center;
      -moz-align-content: center;
      -ms-align-content: center;
      -o-align-content: center;
      align-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-faq__list__item__title > span {
        margin-left: 10px; }
    .fmo-faq__list__item__sub-title {
      font-size: 16px;
      margin-bottom: 20px;
      font-weight: 800; }
    .fmo-faq__list__item__text {
      font-size: 16px;
      margin-bottom: 20px; }
  .fmo-faq__alphabet {
    /* stylelint-disable */
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -khtml-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-line-pack: start;
    -webkit-align-content: flex-start;
    -khtml-align-content: flex-start;
    -moz-align-content: flex-start;
    -ms-align-content: flex-start;
    -o-align-content: flex-start;
    align-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -khtml-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }
    @media (max-width: 1202px) {
      .fmo-faq__alphabet {
        flex-wrap: wrap; } }
    @media (max-width: 620px) {
      .fmo-faq__alphabet {
        flex-wrap: wrap; }
        .fmo-faq__alphabet > a {
          padding: 4px 12px; } }
    .fmo-faq__alphabet > a,
    .fmo-faq__alphabet > a:focus,
    .fmo-faq__alphabet > a:hover {
      color: #431070;
      text-decoration: none;
      opacity: 0.4;
      cursor: pointer; }
    .fmo-faq__alphabet > a:hover {
      opacity: 1;
      cursor: pointer; }

.fmo-search-faq {
  font-family: "Source Sans Pro";
  margin-top: 140px;
  height: 40px;
  width: 100%;
  font-size: 20px;
  /* stylelint-disable */
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -khtml-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  -khtml-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  -o-align-content: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -khtml-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .fmo-search-faq__input {
    border: 0;
    padding: 6px 20px;
    height: 100%;
    max-width: 300px;
    min-width: 100px;
    width: 100%;
    color: #431070;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px; }
  .fmo-search-faq__search-btn {
    border: 0;
    padding: 6px 20px;
    height: 100%;
    width: 9%;
    min-width: 100px;
    outline: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #009688;
    color: #fff; }
    @media (max-width: 620px) {
      .fmo-search-faq__search-btn {
        padding: 4px 10px;
        min-width: 80px; } }

.fmo-alphbet-letter {
  font-size: 28px;
  font-weight: 800;
  padding: 10px;
  border-bottom: 8px solid #795599;
  margin-bottom: 14px;
  width: 52px; }
  .fmo-alphbet-letter__section {
    display: block; }
    .fmo-alphbet-letter__section.hide-jargon-section-divider {
      display: none !important; }

.fmo-plus-minus-icon {
  height: 40px;
  min-height: 40px;
  width: 40px;
  min-width: 40px;
  opacity: 0.7; }
  @media (max-width: 620px) {
    .fmo-plus-minus-icon {
      height: 20px;
      min-height: 20px;
      width: 20px;
      min-width: 20px; } }

.fmo-plus-minus-icon__circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #431070; }

.fmo-plus-minus-icon__horizontal,
.fmo-plus-minus-icon__vertical {
  position: absolute;
  background-color: #fff;
  left: 50%;
  top: 50%;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: -webkit-translate(-50%, -50%) rotate(-90deg);
  transform: -khtml-translate(-50%, -50%) rotate(-90deg);
  transform: -moz-translate(-50%, -50%) rotate(-90deg);
  transform: -ms-translate(-50%, -50%) rotate(-90deg);
  transform: -o-translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg); }

.fmo-plus-minus-icon__horizontal {
  width: 50%;
  height: 5px; }
  @media (max-width: 620px) {
    .fmo-plus-minus-icon__horizontal {
      width: 8px;
      height: 2px; } }

.fmo-plus-minus-icon__vertical {
  width: 5px;
  height: 50%; }
  @media (max-width: 620px) {
    .fmo-plus-minus-icon__vertical {
      width: 2px;
      height: 8px; } }

.fmo-author-box {
  padding: 20px;
  position: relative; }
  .fmo-author-box a {
    font-weight: 400;
    color: #431070; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-author-box a {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-author-box a {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-author-box a {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-author-box a {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-author-box a {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-author-box a {
        font-size: 18px;
        line-height: 2; } }
    .fmo-author-box a:visited {
      color: #2a0057; }
    .fmo-author-box a:hover {
      color: #a976d6; }
    .fmo-author-box a:active {
      color: #7643a3; }
    .fmo-author-box a:visited, .fmo-author-box a:hover, .fmo-author-box a:active, .fmo-author-box a:focus {
      text-decoration: none; }
  .fmo-author-box__title {
    text-transform: uppercase;
    font-weight: bold; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-author-box__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-author-box__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-author-box__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-author-box__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-author-box__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-author-box__title {
        font-size: 300%;
        line-height: 1.1; } }
    .fmo-author-box__title__bar-block {
      border-top: 8px solid #009688;
      width: 130px;
      position: relative;
      margin: 12px 0 40px; }
  .fmo-author-box__container {
    position: relative; }
    .fmo-author-box__container__img {
      display: block;
      position: absolute;
      left: 10px;
      height: 80px;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      -khtml-transform: translate(0%, -50%);
      -moz-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      -o-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-author-box__container__img {
          left: 4px;
          width: 64px;
          height: 64px; } }
    .fmo-author-box__container__info {
      padding-left: 120px;
      margin-top: 5px; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-author-box__container__info {
          padding-left: 84px; } }
      .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        letter-spacing: 0;
        font-weight: 400;
        line-height: 1.3;
        font-style: normal;
        font-weight: 100; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
            font-size: 14px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
            font-size: 15px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
            font-size: 16px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
            font-size: 16px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
            font-size: 17px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-author-box__container__info__name, .fmo-author-box__container__info__position, .fmo-author-box__container__info__description {
            font-size: 18px;
            line-height: 2; } }
      .fmo-author-box__container__info__name {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 0;
        font-weight: 500;
        line-height: 1.1; }
      .fmo-author-box__container__info__position {
        color: #777777;
        font-size: 15px;
        font-weight: 600;
        margin-right: 10px;
        margin-bottom: 10px;
        display: inline-block; }
      .fmo-author-box__container__info__description {
        color: #888; }

@media (max-width: 480px) {
  .entry-author-box .author-img {
    width: 50px; }
  .entry-author-box .author-info {
    padding-left: 70px; } }

.fmo-article-newsletter {
  padding: 20px;
  position: relative; }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-article-newsletter {
      padding: 20px 20px 0; } }
  .fmo-article-newsletter__title {
    text-transform: uppercase;
    font-weight: bold; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-article-newsletter__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-article-newsletter__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-article-newsletter__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-article-newsletter__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-article-newsletter__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-article-newsletter__title {
        font-size: 300%;
        line-height: 1.1; } }
    .fmo-article-newsletter__title__number {
      margin-left: 4px;
      font-size: 100%; }
    .fmo-article-newsletter__title__bar-block {
      border-top: 8px solid #009688;
      width: 130px;
      position: relative;
      margin: 12px 0 40px; }
  .fmo-article-newsletter__sub-title-container__sub-title {
    font-size: 16px;
    font-family: Source Sans Pro, Calibri, sans;
    color: #4b4f54;
    line-height: 1.6;
    text-align: justify;
    font-style: normal;
    font-size: 21px;
    line-height: 1.58;
    letter-spacing: -0.003em;
    font-weight: 400; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-article-newsletter__sub-title-container__sub-title {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-article-newsletter__sub-title-container__sub-title {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-article-newsletter__sub-title-container__sub-title {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-article-newsletter__sub-title-container__sub-title {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-article-newsletter__sub-title-container__sub-title {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-article-newsletter__sub-title-container__sub-title {
        font-size: 18px;
        line-height: 2; } }
  .fmo-article-newsletter__card {
    padding: 20px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    -khtml-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -khtml-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }
    .fmo-article-newsletter__card:before, .fmo-article-newsletter__card:after {
      content: " ";
      display: table; }
    .fmo-article-newsletter__card:after {
      clear: both; }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-article-newsletter__card {
        padding: 0 20px 20px; } }
    .fmo-article-newsletter__card__img-container {
      position: relative;
      width: 100%;
      height: 174px; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-article-newsletter__card__img-container {
          height: 144px; } }
      .fmo-article-newsletter__card__img-container__img {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -khtml-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .fmo-article-newsletter__card__title {
      padding: 10px;
      text-align: center;
      background-color: #009688;
      color: #fff;
      -webkit-border-radius: 3px 3px 0 0;
      -khtml-border-radius: 3px 3px 0 0;
      -moz-border-radius: 3px 3px 0 0;
      -ms-border-radius: 3px 3px 0 0;
      -o-border-radius: 3px 3px 0 0;
      border-radius: 3px 3px 0 0;
      -webkit-border-radius: 0.1875rem 0.1875rem 0 0;
      -khtml-border-radius: 0.1875rem 0.1875rem 0 0;
      -moz-border-radius: 0.1875rem 0.1875rem 0 0;
      -ms-border-radius: 0.1875rem 0.1875rem 0 0;
      -o-border-radius: 0.1875rem 0.1875rem 0 0;
      border-radius: 0.1875rem 0.1875rem 0 0;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-article-newsletter__card__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-article-newsletter__card__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-article-newsletter__card__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-article-newsletter__card__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-article-newsletter__card__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-article-newsletter__card__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-article-newsletter__card--full {
      width: 100%;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto;
      -webkit-border-radius: 3px;
      -khtml-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      -webkit-border-radius: 0.1875rem;
      -khtml-border-radius: 0.1875rem;
      -moz-border-radius: 0.1875rem;
      -ms-border-radius: 0.1875rem;
      -o-border-radius: 0.1875rem;
      border-radius: 0.1875rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      -webkit-box-shadow: 3px 5px 20px 1px #d8d8d8;
      box-shadow: 3px 5px 20px 1px #d8d8d8; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-article-newsletter__card--full {
          width: 100%; } }
    .fmo-article-newsletter__card--left {
      width: 50%;
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -khtml-order: 0;
      -moz-order: 0;
      -ms-order: 0;
      -o-order: 0;
      order: 0;
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -khtml-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      -o-flex: 0 1 auto;
      flex: 0 1 auto;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-article-newsletter__card--left {
          padding: 0 0 40px;
          width: 100%; } }
    .fmo-article-newsletter__card--right {
      width: 50%;
      border: 1px solid #eaeaea;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -khtml-order: 1;
      -moz-order: 1;
      -ms-order: 1;
      -o-order: 1;
      order: 1;
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -khtml-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      -o-flex: 0 1 auto;
      flex: 0 1 auto;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto;
      -webkit-border-radius: 3px;
      -khtml-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      -webkit-border-radius: 0.1875rem;
      -khtml-border-radius: 0.1875rem;
      -moz-border-radius: 0.1875rem;
      -ms-border-radius: 0.1875rem;
      -o-border-radius: 0.1875rem;
      border-radius: 0.1875rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      -webkit-box-shadow: 3px 5px 20px 1px #d8d8d8;
      box-shadow: 3px 5px 20px 1px #d8d8d8; }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-article-newsletter__card--right {
          width: 100%; } }
  .fmo-article-newsletter__form {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px 20px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -khtml-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-line-pack: space-around;
    -webkit-align-content: space-around;
    -khtml-align-content: space-around;
    -moz-align-content: space-around;
    -ms-align-content: space-around;
    -o-align-content: space-around;
    align-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    .fmo-article-newsletter__form__form-group {
      width: 50%;
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -khtml-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      -o-flex: 0 1 auto;
      flex: 0 1 auto;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto; }
      .fmo-article-newsletter__form__form-group__label.control-label {
        text-align: left; }
      .fmo-article-newsletter__form__form-group.is-focused .fmo-article-newsletter__form__form-group__label.control-label {
        color: #009688; }
      .fmo-article-newsletter__form__form-group.is-focused .fmo-article-newsletter__form__form-group__input.form-control {
        background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)); }
      .fmo-article-newsletter__form__form-group__label.control-label {
        color: #009688; }
      .fmo-article-newsletter__form__form-group__input.form-control {
        color: #009688; }
      .fmo-article-newsletter__form__form-group__help {
        color: rgba(0, 0, 0, 0.55); }
      .fmo-article-newsletter__form__form-group__help-error {
        color: rgba(255, 0, 0, 0.8); }
    .fmo-article-newsletter__form__btn-container {
      flex: 0 1 auto;
      align-self: auto;
      height: 80px;
      width: 100%;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-article-newsletter__form__btn-container__submit {
        font-weight: 500;
        padding: 16px 14px;
        border: none;
        border-top: 1px solid rgba(139, 141, 141, 0.09);
        background: #fdfdfd;
        outline: none;
        text-transform: uppercase;
        bottom: 0;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: Source Sans Pro, Calibri, sans;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        -webkit-border-radius: 35px;
        -khtml-border-radius: 35px;
        -moz-border-radius: 35px;
        -ms-border-radius: 35px;
        -o-border-radius: 35px;
        border-radius: 35px;
        -webkit-border-radius: 2.1875rem;
        -khtml-border-radius: 2.1875rem;
        -moz-border-radius: 2.1875rem;
        -ms-border-radius: 2.1875rem;
        -o-border-radius: 2.1875rem;
        border-radius: 2.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-article-newsletter__form__btn-container__submit {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-article-newsletter__form__btn-container__submit {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-article-newsletter__form__btn-container__submit {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-article-newsletter__form__btn-container__submit {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-article-newsletter__form__btn-container__submit {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-article-newsletter__form__btn-container__submit {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-article-newsletter__form__btn-container__submit:focus, .fmo-article-newsletter__form__btn-container__submit:active, .fmo-article-newsletter__form__btn-container__submit.active, .fmo-article-newsletter__form__btn-container__submit:active:focus, .fmo-article-newsletter__form__btn-container__submit.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-article-newsletter__form__btn-container__submit:focus, .fmo-article-newsletter__form__btn-container__submit:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-article-newsletter__form__btn-container__submit:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #26a69a; }
        .fmo-article-newsletter__form__btn-container__submit:focus {
          color: rgba(255, 255, 255, 0.7); }

@media (min-width: 544px) {
  .fmo-article-newsletter__form__form-group {
    padding-left: 20px;
    padding-right: 20px; }
  .fmo-article-newsletter__form__btn-container {
    width: auto; } }

/* ==========================================================================
   # Cards
   ========================================================================== */
@media screen and (max-width: 768px) {
  .fmo-rotating-card {
    margin-top: 0px !important;
    margin-bottom: 0px !important; } }

.fmo-rotating-card {
  width: 300px;
  height: 360px;
  position: relative;
  will-change: transform;
  -webkit-perspective: 500px;
  perspective: 500px;
  margin: 40px 0; }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-rotating-card {
      margin: 28px 0; } }
  @media (min-width: 768px) and (max-width: 1199px) {
    .fmo-rotating-card {
      margin: 30px 0; } }
  .fmo-rotating-card__front, .fmo-rotating-card__back {
    border-radius: 10px !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-line-pack: space-between;
    -webkit-align-content: space-between;
    -khtml-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    .fmo-rotating-card__front h1, .fmo-rotating-card__back h1 {
      font-size: 24px; }
  .fmo-rotating-card__front {
    color: #444;
    background-color: #fff;
    transform: -webkit-rotateY(180deg);
    transform: -khtml-rotateY(180deg);
    transform: -moz-rotateY(180deg);
    transform: -ms-rotateY(180deg);
    transform: -o-rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: frontSideBackwards ease-out 800ms forwards;
    -o-animation: frontSideBackwards ease-out 800ms forwards;
    animation: frontSideBackwards ease-out 800ms forwards; }
    .fmo-rotating-card__front__title {
      text-align: center;
      width: 100%;
      font-size: 20px;
      text-transform: uppercase;
      font-weight: bold;
      position: absolute;
      top: 16px;
      color: #4a4f55;
      margin: 0.67em 0;
      line-height: 1.1;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -khtml-transform: translate(-50%, 0%);
      -moz-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      -o-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
    .fmo-rotating-card__front__svg {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: -webkit-translate(-50%, -50%);
      transform: -khtml-translate(-50%, -50%);
      transform: -moz-translate(-50%, -50%);
      transform: -ms-translate(-50%, -50%);
      transform: -o-translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .fmo-rotating-card__front__btn {
      position: relative;
      color: #616161;
      font-size: 22px;
      width: 100%;
      padding: 16px 14px;
      border: none;
      border-top: 1px solid rgba(139, 141, 141, 0.09);
      background: #fdfdfd;
      outline: none;
      text-transform: uppercase;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      -webkit-border-radius: 0px;
      -khtml-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      -webkit-border-radius: 0;
      -khtml-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      font-weight: 500; }
  .fmo-rotating-card__back {
    color: #444;
    background-color: #fff;
    transform: -webkit-rotateY(180deg);
    transform: -khtml-rotateY(180deg);
    transform: -moz-rotateY(180deg);
    transform: -ms-rotateY(180deg);
    transform: -o-rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: backSideBackwards ease-out 800ms forwards;
    -o-animation: backSideBackwards ease-out 800ms forwards;
    animation: backSideBackwards ease-out 800ms forwards; }
    .fmo-rotating-card__back__title {
      font-family: Source Sans Pro, Calibri, sans;
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 1.1;
      margin: 0 auto; }
    .fmo-rotating-card__back__text {
      text-align: center;
      padding: 20px 40px;
      box-sizing: border-box;
      max-width: 100%;
      font-size: 20px;
      font-family: Source Sans Pro, Calibri, sans;
      font-weight: 500;
      margin: 0 auto; }
    .fmo-rotating-card__back__btn {
      border: none;
      color: #fff;
      font-size: 22px;
      width: 100%;
      padding: 16px 14px;
      bottom: 0;
      position: absolute;
      background-color: #009688;
      outline: none;
      text-align: center;
      text-transform: uppercase;
      left: 0;
      right: 0;
      -webkit-border-radius: 0px;
      -khtml-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      -webkit-border-radius: 0;
      -khtml-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      font-weight: 500; }
      .fmo-rotating-card__back__btn.fmo-ripple {
        position: absolute; }
      .fmo-rotating-card__back__btn:hover {
        color: #fff;
        text-decoration: none; }
  .fmo-rotating-card:hover .fmo-rotating-card__front,
  .fmo-rotating-card:hover .fmo-rotating-card__back {
    animation-iteration-count: 1;
    transform-origin: 50% 50%; }
  .fmo-rotating-card:hover .fmo-rotating-card__front {
    -webkit-animation: frontSide ease-out 800ms forwards;
    -o-animation: frontSide ease-out 800ms forwards;
    animation: frontSide ease-out 800ms forwards; }
  .fmo-rotating-card:hover .fmo-rotating-card__back {
    -webkit-animation: backSide ease-out 800ms forwards;
    -o-animation: backSide ease-out 800ms forwards;
    animation: backSide ease-out 800ms forwards; }

.fmo-card {
  width: 100%;
  height: 210px;
  position: relative;
  background-color: #fff;
  z-index: 1;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -webkit-border-radius: 0.5rem;
  -khtml-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  font-weight: 500; }
  .fmo-card:hover {
    z-index: 2;
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    transform: -webkit-scale(1.1);
    transform: -khtml-scale(1.1);
    transform: -moz-scale(1.1);
    transform: -ms-scale(1.1);
    transform: -o-scale(1.1);
    transform: scale(1.1); }
  .fmo-card__title {
    position: absolute;
    width: 100%;
    bottom: 0px;
   color: #ff9500 !important;
    text-align: center;
    padding: 8px 16px;
    font-size: 20px;
   /* -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-border-radius: 0.5rem;
    -khtml-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    border-radius: 0.5rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -khtml-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);*/
    font-weight: 100;
    font-weight: 500; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-card__title {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-card__title {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-card__title {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-card__title {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-card__title {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-card__title {
        font-size: 18px;
        line-height: 2; } }
  .fmo-card__svg, .fmo-card__img {
   /* width: 90%;*/
   /* width: 35%;
    height: 35%;*/
    position: absolute;
    top: 40%;
    left: 50%;
    transform: -webkit-translate(-50%, -50%);
    transform: -khtml-translate(-50%, -50%);
    transform: -moz-translate(-50%, -50%);
    transform: -ms-translate(-50%, -50%);
    transform: -o-translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .fmo-card__btn {
    position: relative;
    color: #616161;
    font-size: 18px;
    width: 100%;
    padding: 16px 14px;
    border: none;
    border-top: 1px solid rgba(139, 141, 141, 0.09);
    background: #fdfdfd;
    outline: none;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }

@-webkit-keyframes frontSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-moz-keyframes frontSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-ms-keyframes frontSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-o-keyframes frontSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@keyframes frontSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-webkit-keyframes backSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-moz-keyframes backSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-ms-keyframes backSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-o-keyframes backSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@keyframes backSide {
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  100% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-webkit-keyframes frontSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-moz-keyframes frontSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-ms-keyframes frontSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-o-keyframes frontSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@keyframes frontSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(0deg) scale(1.2);
    transform: translateZ(-200px) rotateY(0deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(0deg) scale(1.3);
    transform: translateZ(-100px) rotateY(0deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-webkit-keyframes backSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-moz-keyframes backSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-ms-keyframes backSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@-o-keyframes backSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

@keyframes backSideBackwards {
  100% {
    transform: -webkit-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(180deg) scale(1.2);
    transform: translateZ(-200px) rotateY(180deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); }
  58% {
    transform: -webkit-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(180deg) scale(1.3);
    transform: translateZ(-100px) rotateY(180deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  27% {
    transform: -webkit-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -khtml-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -moz-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -ms-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: -o-translateZ(-100px) rotateY(360deg) scale(1.3);
    transform: translateZ(-100px) rotateY(360deg) scale(1.3);
    -webkit-box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12); }
  0% {
    transform: -webkit-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -khtml-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -moz-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -ms-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: -o-translateZ(-200px) rotateY(360deg) scale(1.2);
    transform: translateZ(-200px) rotateY(360deg) scale(1.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12); } }

/* 
==========================================================================
 # Gnatta Web Chat CSS - used to make the webchat iframe render correctly
========================================================================== */
.gnatta-inline-webchat-host-fullscreen {
  overflow-y: hidden;
  position: fixed;
  width: 100%; }

.gnatta-webchat-hidden {
  display: none; }

.gnatta-inline-webchat {
  max-width: 400px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0px;
  right: 0px;
  overflow: hidden;
  visibility: visible;
  z-index: 99999;
  border: 0;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6); }

.gnatta-inline-webchat iframe {
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 24px 0; }

.gnatta-inline-webchat-collapse {
  max-width: 400px;
  max-height: 35px;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 9999;
  overflow: hidden; }

.gnatta-inline-webchat.fullscreen {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 0;
  padding: 0;
  margin: 0;
  float: none;
  z-index: 9999;
  border: none; }

/* Web Chat Icon Styling */
.fmo-web-chat {
  position: fixed;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  padding-top: 10px;
  text-align: center;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 999;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }

.chat-available {
  background-color: #009688; }

.chat-busy {
  background-color: #009688; }

.chat-offline {
  background-color: #009688; }

.chat-icon {
  width: 50px;
  height: 50px;
  fill: #fff;
  cursor: pointer; }

/* ==========================================================================
   # Chat Input
   ========================================================================== */
.fmo-chart-container {
  -webkit-transform-origin: 150px 150px;
  -moz-transform-origin: 150px 150px;
  -ms-transform-origin: 150px 150px;
  transform-origin: 150px 150px; }
  .fmo-chart-container__legend__numbers {
    font-family: Montserrat, Verdana;
    margin-top: 0;
    margin-top: -50px;
    color: #4a4f55;
    font-weight: bold; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-chart-container__legend__numbers {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-chart-container__legend__numbers {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-chart-container__legend__numbers {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-chart-container__legend__numbers {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-chart-container__legend__numbers {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-chart-container__legend__numbers {
        font-size: 300%;
        line-height: 1.1; } }
  .fmo-chart-container__legend__text {
    font-family: Source Sans Pro, Calibri, sans;
    margin-top: 0;
    color: #4a4f55;
    margin-bottom: 20px;
    font-weight: 500; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-chart-container__legend__text {
        font-size: 150%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-chart-container__legend__text {
        font-size: 150%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-chart-container__legend__text {
        font-size: 150%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-chart-container__legend__text {
        font-size: 160%;
        line-height: 1.42857; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-chart-container__legend__text {
        font-size: 180%;
        line-height: 1.42857; } }
    @media (min-width: 1920px) {
      .fmo-chart-container__legend__text {
        font-size: 180%;
        line-height: 1.42857; } }

.fmo-gauge__bg {
  stroke-dasharray: 260 9999;
  stroke-dashoffset: 0;
  stroke: #c4cece;
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  transform: -webkit-rotate(-35deg);
  transform: -khtml-rotate(-35deg);
  transform: -moz-rotate(-35deg);
  transform: -ms-rotate(-35deg);
  transform: -o-rotate(-35deg);
  transform: rotate(-35deg); }

.fmo-time-niddle {
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 58% 0;
  -ms-transform-origin: 50% 50% 0;
  transform: -webkit-rotate(0deg);
  transform: -khtml-rotate(0deg);
  transform: -moz-rotate(0deg);
  transform: -ms-rotate(0deg);
  transform: -o-rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: fmo-gauge-nidle-animation 2s ease-in-out forwards 0.5s;
  -o-animation: fmo-gauge-nidle-animation 2s ease-in-out forwards 0.5s;
  animation: fmo-gauge-nidle-animation 2s ease-in-out forwards 0.5s; }

.fmo-gauge__fill {
  stroke-dasharray: 502 9999;
  stroke-dashoffset: 502;
  transform-origin: 50% 50% 0;
  transform: -webkit-rotate(-35deg);
  transform: -khtml-rotate(-35deg);
  transform: -moz-rotate(-35deg);
  transform: -ms-rotate(-35deg);
  transform: -o-rotate(-35deg);
  transform: rotate(-35deg);
  -webkit-animation: fmo-gauge-fill-animation 2s ease-in-out forwards 0.5s;
  -o-animation: fmo-gauge-fill-animation 2s ease-in-out forwards 0.5s;
  animation: fmo-gauge-fill-animation 2s ease-in-out forwards 0.5s; }

@-webkit-keyframes fmo-gauge-fill-animation {
  0% {
    stroke-dashoffset: 500; }
  100% {
    stroke-dashoffset: 290; } }

@-moz-keyframes fmo-gauge-fill-animation {
  0% {
    stroke-dashoffset: 500; }
  100% {
    stroke-dashoffset: 290; } }

@-ms-keyframes fmo-gauge-fill-animation {
  0% {
    stroke-dashoffset: 500; }
  100% {
    stroke-dashoffset: 290; } }

@-o-keyframes fmo-gauge-fill-animation {
  0% {
    stroke-dashoffset: 500; }
  100% {
    stroke-dashoffset: 290; } }

@keyframes fmo-gauge-fill-animation {
  0% {
    stroke-dashoffset: 500; }
  100% {
    stroke-dashoffset: 290; } }

.fmo-gauge-chart {
  x: 0;
  y: 0;
  width: 200px;
  height: 200px;
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0; }
  @media (min-width: 0) and (max-width: 543px) {
    .fmo-gauge-chart {
      width: 160px;
      height: 160px; } }

@-webkit-keyframes fmo-gauge-nidle-animation {
  0% {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: -webkit-rotate(168deg);
    transform: -khtml-rotate(168deg);
    transform: -moz-rotate(168deg);
    transform: -ms-rotate(168deg);
    transform: -o-rotate(168deg);
    transform: rotate(168deg); } }

@-moz-keyframes fmo-gauge-nidle-animation {
  0% {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: -webkit-rotate(168deg);
    transform: -khtml-rotate(168deg);
    transform: -moz-rotate(168deg);
    transform: -ms-rotate(168deg);
    transform: -o-rotate(168deg);
    transform: rotate(168deg); } }

@-ms-keyframes fmo-gauge-nidle-animation {
  0% {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: -webkit-rotate(168deg);
    transform: -khtml-rotate(168deg);
    transform: -moz-rotate(168deg);
    transform: -ms-rotate(168deg);
    transform: -o-rotate(168deg);
    transform: rotate(168deg); } }

@-o-keyframes fmo-gauge-nidle-animation {
  0% {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: -webkit-rotate(168deg);
    transform: -khtml-rotate(168deg);
    transform: -moz-rotate(168deg);
    transform: -ms-rotate(168deg);
    transform: -o-rotate(168deg);
    transform: rotate(168deg); } }

@keyframes fmo-gauge-nidle-animation {
  0% {
    transform: -webkit-rotate(0deg);
    transform: -khtml-rotate(0deg);
    transform: -moz-rotate(0deg);
    transform: -ms-rotate(0deg);
    transform: -o-rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: -webkit-rotate(168deg);
    transform: -khtml-rotate(168deg);
    transform: -moz-rotate(168deg);
    transform: -ms-rotate(168deg);
    transform: -o-rotate(168deg);
    transform: rotate(168deg); } }

.fmo-vertical-bar-chart {
  clear: both;
  padding: 10px 0 0;
  width: 100%;
  height: 200px;
  margin: 50px 0; }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-vertical-bar-chart {
      margin: 0; } }
  @media (min-width: 544px) and (max-width: 991px) {
    .fmo-vertical-bar-chart {
      margin: 20px 0; } }
  .fmo-vertical-bar-chart__bar {
    height: 200px;
    padding: 25px 0;
    position: relative;
    text-align: center;
    vertical-align: bottom;
    display: inline-block;
    margin: 0 1.8% 0 0;
    width: 24px;
    background: transparent;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -khtml-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    -webkit-border-radius: 1.5625rem;
    -khtml-border-radius: 1.5625rem;
    -moz-border-radius: 1.5625rem;
    -ms-border-radius: 1.5625rem;
    -o-border-radius: 1.5625rem;
    border-radius: 1.5625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .fmo-vertical-bar-chart__bar:nth-child(1) {
      height: 12px; }
    .fmo-vertical-bar-chart__bar:nth-child(2) {
      height: 31px; }
    .fmo-vertical-bar-chart__bar:nth-child(3) {
      height: 37px; }
    .fmo-vertical-bar-chart__bar:nth-child(4) {
      height: 43px; }
    .fmo-vertical-bar-chart__bar:nth-child(5) {
      height: 66px; }
    .fmo-vertical-bar-chart__bar:nth-child(6) {
      height: 61px; }
    .fmo-vertical-bar-chart__bar:nth-child(7) {
      height: 82px; }
    .fmo-vertical-bar-chart__bar:nth-child(8) {
      height: 95px; }
    .fmo-vertical-bar-chart__bar:nth-child(9) {
      height: 100px; }
    .fmo-vertical-bar-chart__bar:nth-child(10) {
      height: 119px; }
    .fmo-vertical-bar-chart__bar:nth-child(11) {
      height: 112px; }
    .fmo-vertical-bar-chart__bar:nth-child(12) {
      height: 126px; }
    .fmo-vertical-bar-chart__bar:nth-child(13) {
      height: 146px; }
    .fmo-vertical-bar-chart__bar:nth-child(14) {
      height: 144px; }
    .fmo-vertical-bar-chart__bar:nth-child(15) {
      height: 156px; }
    .fmo-vertical-bar-chart__bar:nth-child(16) {
      height: 167px; }
    .fmo-vertical-bar-chart__bar:nth-child(17) {
      height: 184px; }
    .fmo-vertical-bar-chart__bar:nth-child(18) {
      height: 181px; }
    .fmo-vertical-bar-chart__bar:nth-child(19) {
      height: 202px; }
    .fmo-vertical-bar-chart__bar:nth-child(20) {
      height: 203px; }
    .fmo-vertical-bar-chart__bar:nth-child(1)::after {
      -webkit-animation-delay: 0.08s;
      animation-delay: 0.08s; }
    .fmo-vertical-bar-chart__bar:nth-child(2)::after {
      -webkit-animation-delay: 0.16s;
      animation-delay: 0.16s; }
    .fmo-vertical-bar-chart__bar:nth-child(3)::after {
      -webkit-animation-delay: 0.24s;
      animation-delay: 0.24s; }
    .fmo-vertical-bar-chart__bar:nth-child(4)::after {
      -webkit-animation-delay: 0.32s;
      animation-delay: 0.32s; }
    .fmo-vertical-bar-chart__bar:nth-child(5)::after {
      -webkit-animation-delay: 0.4s;
      animation-delay: 0.4s; }
    .fmo-vertical-bar-chart__bar:nth-child(6)::after {
      -webkit-animation-delay: 0.48s;
      animation-delay: 0.48s; }
    .fmo-vertical-bar-chart__bar:nth-child(7)::after {
      -webkit-animation-delay: 0.56s;
      animation-delay: 0.56s; }
    .fmo-vertical-bar-chart__bar:nth-child(8)::after {
      -webkit-animation-delay: 0.64s;
      animation-delay: 0.64s; }
    .fmo-vertical-bar-chart__bar:nth-child(9)::after {
      -webkit-animation-delay: 0.72s;
      animation-delay: 0.72s; }
    .fmo-vertical-bar-chart__bar:nth-child(10)::after {
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s; }
    .fmo-vertical-bar-chart__bar:nth-child(11)::after {
      -webkit-animation-delay: 0.88s;
      animation-delay: 0.88s; }
    .fmo-vertical-bar-chart__bar:nth-child(12)::after {
      -webkit-animation-delay: 0.96s;
      animation-delay: 0.96s; }
    .fmo-vertical-bar-chart__bar:nth-child(13)::after {
      -webkit-animation-delay: 1.04s;
      animation-delay: 1.04s; }
    .fmo-vertical-bar-chart__bar:nth-child(14)::after {
      -webkit-animation-delay: 1.12s;
      animation-delay: 1.12s; }
    .fmo-vertical-bar-chart__bar:nth-child(15)::after {
      -webkit-animation-delay: 1.2s;
      animation-delay: 1.2s; }
    .fmo-vertical-bar-chart__bar:nth-child(16)::after {
      -webkit-animation-delay: 1.28s;
      animation-delay: 1.28s; }
    .fmo-vertical-bar-chart__bar:nth-child(17)::after {
      -webkit-animation-delay: 1.36s;
      animation-delay: 1.36s; }
    .fmo-vertical-bar-chart__bar:nth-child(18)::after {
      -webkit-animation-delay: 1.44s;
      animation-delay: 1.44s; }
    .fmo-vertical-bar-chart__bar:nth-child(19)::after {
      -webkit-animation-delay: 1.52s;
      animation-delay: 1.52s; }
    .fmo-vertical-bar-chart__bar:nth-child(20)::after {
      -webkit-animation-delay: 1.6s;
      animation-delay: 1.6s; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-vertical-bar-chart__bar {
        width: 8px; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-vertical-bar-chart__bar {
        width: 12px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-vertical-bar-chart__bar {
        width: 18px; } }
    .fmo-vertical-bar-chart__bar::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 0;
      background-color: #ff9800;
      -webkit-animation-duration: 1.5s;
      animation-duration: 1.5s;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
      -webkit-animation-timing-function: ease;
      animation-timing-function: ease;
      -webkit-animation-iteration-count: 1;
      animation-iteration-count: 1;
      -webkit-animation-name: fmo-fill-up;
      animation-name: fmo-fill-up;
      -webkit-border-radius: 25px;
      -khtml-border-radius: 25px;
      -moz-border-radius: 25px;
      -ms-border-radius: 25px;
      -o-border-radius: 25px;
      border-radius: 25px;
      -webkit-border-radius: 1.5625rem;
      -khtml-border-radius: 1.5625rem;
      -moz-border-radius: 1.5625rem;
      -ms-border-radius: 1.5625rem;
      -o-border-radius: 1.5625rem;
      border-radius: 1.5625rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }

@-webkit-keyframes fmo-fill-up {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-moz-keyframes fmo-fill-up {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-ms-keyframes fmo-fill-up {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@-o-keyframes fmo-fill-up {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes fmo-fill-up {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

/* ==========================================================================
   # Chips
   ========================================================================== */
/* ==========================================================================
   # Collection
   ========================================================================== */
.fmo-comments {
  padding: 20px;
  position: relative; }
  .fmo-comments__title {
    text-transform: uppercase;
    font-weight: bold; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-comments__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-comments__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-comments__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-comments__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-comments__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-comments__title {
        font-size: 300%;
        line-height: 1.1; } }
    .fmo-comments__title__number {
      margin-left: 4px;
      font-size: 100%; }
    .fmo-comments__title__bar-block {
      border-top: 8px solid #009688;
      width: 130px;
      position: relative;
      margin: 12px 0 40px; }
  .fmo-comments__list {
    margin: 0;
    padding: 0; }
    .fmo-comments__list__container__single-comment {
      position: relative;
      border-bottom: 1px solid #e6ebed; }
      .fmo-comments__list__container__single-comment:first-of-type {
        border-top: 1px solid #e6ebed; }
      .fmo-comments__list__container__single-comment:last-of-type {
        border-bottom: none; }
      .fmo-comments__list__container__single-comment__avatar {
        border: none;
        max-width: 100%;
        position: absolute;
        display: block;
        width: 80px;
        height: 80px;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -khtml-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }
      .fmo-comments__list__container__single-comment__content {
        margin-top: 5px;
        padding: 30px 0 30px 120px; }
        .fmo-comments__list__container__single-comment__content__author, .fmo-comments__list__container__single-comment__content__date, .fmo-comments__list__container__single-comment__content__text {
          font-family: Georgia, Cambria, "Times New Roman", Times, serif;
          font-style: normal;
          font-size: 21px;
          line-height: 1.58;
          letter-spacing: -0.003em;
          font-size: 18px;
          line-height: 1.58; }
        .fmo-comments__list__container__single-comment__content__author {
          display: inline-block;
          margin-right: 10px;
          font-weight: 600; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-comments__list__container__single-comment__content__author {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-comments__list__container__single-comment__content__author {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-comments__list__container__single-comment__content__author {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-comments__list__container__single-comment__content__author {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-comments__list__container__single-comment__content__author {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-comments__list__container__single-comment__content__author {
              font-size: 18px;
              line-height: 2; } }
        .fmo-comments__list__container__single-comment__content__date {
          font-weight: 400; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-comments__list__container__single-comment__content__date {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-comments__list__container__single-comment__content__date {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-comments__list__container__single-comment__content__date {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-comments__list__container__single-comment__content__date {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-comments__list__container__single-comment__content__date {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-comments__list__container__single-comment__content__date {
              font-size: 18px;
              line-height: 2; } }
        .fmo-comments__list__container__single-comment__content__text {
          font-weight: 100; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-comments__list__container__single-comment__content__text {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-comments__list__container__single-comment__content__text {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-comments__list__container__single-comment__content__text {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-comments__list__container__single-comment__content__text {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-comments__list__container__single-comment__content__text {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-comments__list__container__single-comment__content__text {
              font-size: 18px;
              line-height: 2; } }
          .fmo-comments__list__container__single-comment__content__text:last-of-type {
            margin-bottom: 10px; }
    .fmo-comments__list__container__reply-container {
      padding-left: 10%; }
      .fmo-comments__list__container__reply-container__single-comment {
        border-top: 1px solid #e6ebed;
        padding: 30px 0;
        position: relative; }
        .fmo-comments__list__container__reply-container__single-comment:first-of-type {
          border-top: none; }
        .fmo-comments__list__container__reply-container__single-comment__avatar {
          border: none;
          max-width: 100%;
          position: absolute;
          display: block;
          border-radius: 100px;
          width: 80px;
          height: 80px;
          top: 50%;
          -webkit-transform: translate(0%, -50%);
          -khtml-transform: translate(0%, -50%);
          -moz-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          -o-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
        .fmo-comments__list__container__reply-container__single-comment__content {
          padding-left: 120px;
          margin-top: 5px; }
          .fmo-comments__list__container__reply-container__single-comment__content__author, .fmo-comments__list__container__reply-container__single-comment__content__date, .fmo-comments__list__container__reply-container__single-comment__content__text {
            font-family: Georgia, Cambria, "Times New Roman", Times, serif;
            letter-spacing: 0.01rem;
            font-style: normal;
            font-size: 21px;
            line-height: 1.58;
            letter-spacing: -0.003em;
            line-height: 1.58; }
          .fmo-comments__list__container__reply-container__single-comment__content__author {
            display: inline-block;
            margin-right: 10px;
            font-weight: 600; }
            @media (min-width: 0) and (max-width: 543px) {
              .fmo-comments__list__container__reply-container__single-comment__content__author {
                font-size: 14px;
                line-height: 1.58; } }
            @media (min-width: 544px) and (max-width: 767px) {
              .fmo-comments__list__container__reply-container__single-comment__content__author {
                font-size: 15px;
                line-height: 1.68; } }
            @media (min-width: 768px) and (max-width: 991px) {
              .fmo-comments__list__container__reply-container__single-comment__content__author {
                font-size: 16px;
                line-height: 1.78; } }
            @media (min-width: 992px) and (max-width: 1199px) {
              .fmo-comments__list__container__reply-container__single-comment__content__author {
                font-size: 16px;
                line-height: 1.88; } }
            @media (min-width: 1200px) and (max-width: 1919px) {
              .fmo-comments__list__container__reply-container__single-comment__content__author {
                font-size: 17px;
                line-height: 1.98; } }
            @media (min-width: 1920px) {
              .fmo-comments__list__container__reply-container__single-comment__content__author {
                font-size: 18px;
                line-height: 2; } }
          .fmo-comments__list__container__reply-container__single-comment__content__date {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
            letter-spacing: 0;
            font-weight: 400;
            font-style: normal;
            font-size: 13px;
            line-height: 1.4;
            font-weight: 400; }
            @media (min-width: 0) and (max-width: 543px) {
              .fmo-comments__list__container__reply-container__single-comment__content__date {
                font-size: 14px;
                line-height: 1.58; } }
            @media (min-width: 544px) and (max-width: 767px) {
              .fmo-comments__list__container__reply-container__single-comment__content__date {
                font-size: 15px;
                line-height: 1.68; } }
            @media (min-width: 768px) and (max-width: 991px) {
              .fmo-comments__list__container__reply-container__single-comment__content__date {
                font-size: 16px;
                line-height: 1.78; } }
            @media (min-width: 992px) and (max-width: 1199px) {
              .fmo-comments__list__container__reply-container__single-comment__content__date {
                font-size: 16px;
                line-height: 1.88; } }
            @media (min-width: 1200px) and (max-width: 1919px) {
              .fmo-comments__list__container__reply-container__single-comment__content__date {
                font-size: 17px;
                line-height: 1.98; } }
            @media (min-width: 1920px) {
              .fmo-comments__list__container__reply-container__single-comment__content__date {
                font-size: 18px;
                line-height: 2; } }
          .fmo-comments__list__container__reply-container__single-comment__content__text {
            font-weight: 100; }
            @media (min-width: 0) and (max-width: 543px) {
              .fmo-comments__list__container__reply-container__single-comment__content__text {
                font-size: 14px;
                line-height: 1.58; } }
            @media (min-width: 544px) and (max-width: 767px) {
              .fmo-comments__list__container__reply-container__single-comment__content__text {
                font-size: 15px;
                line-height: 1.68; } }
            @media (min-width: 768px) and (max-width: 991px) {
              .fmo-comments__list__container__reply-container__single-comment__content__text {
                font-size: 16px;
                line-height: 1.78; } }
            @media (min-width: 992px) and (max-width: 1199px) {
              .fmo-comments__list__container__reply-container__single-comment__content__text {
                font-size: 16px;
                line-height: 1.88; } }
            @media (min-width: 1200px) and (max-width: 1919px) {
              .fmo-comments__list__container__reply-container__single-comment__content__text {
                font-size: 17px;
                line-height: 1.98; } }
            @media (min-width: 1920px) {
              .fmo-comments__list__container__reply-container__single-comment__content__text {
                font-size: 18px;
                line-height: 2; } }
            .fmo-comments__list__container__reply-container__single-comment__content__text:last-of-type {
              margin-bottom: 10px; }

@media (max-width: 480px) {
  .entry-comments .comment-avatar,
  .entry-author-box .author-img {
    width: 50px; }
  .entry-comments .comment-content,
  .entry-author-box .author-info {
    padding-left: 70px; } }

.fmo-comment {
  position: relative;
  padding: 20px; }
  .fmo-comment__title {
    text-transform: uppercase;
    font-weight: bold; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-comment__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-comment__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-comment__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-comment__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-comment__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-comment__title {
        font-size: 300%;
        line-height: 1.1; } }
    .fmo-comment__title__bar-block {
      border-top: 8px solid #009688;
      width: 130px;
      position: relative;
      margin: 12px 0 40px; }
  .fmo-comment__desc {
    font-weight: 100; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-comment__desc {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-comment__desc {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-comment__desc {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-comment__desc {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-comment__desc {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-comment__desc {
        font-size: 18px;
        line-height: 2; } }
  .fmo-comment__form__form-group.is-focused .fmo-comment-form__form-group__label.control-label {
    color: rgba(0, 0, 0, 0.55); }
  .fmo-comment__form__form-group.is-focused .fmo-comment-form__form-group__input.form-control,
  .fmo-comment__form__form-group.is-focused .fmo-comment-form__form-group__text-area.form-control {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)); }
  .fmo-comment__form__form-group__label.control-label {
    color: #431070; }
  .fmo-comment__form__form-group__input.form-control {
    color: #431070; }
  .fmo-comment__form__form-group__help {
    color: rgba(0, 0, 0, 0.55); }
  .fmo-comment__form__form-group__help-error {
    color: rgba(255, 0, 0, 0.8); }
  .fmo-comment__form__form-group__text-area {
    color: #431070; }
  .fmo-comment__form__form-group__check-box-container {
    color: #431070; }
    .fmo-comment__form__form-group__check-box-container,
    .fmo-comment__form__form-group__check-box-container .checkbox-material .check {
      border-color: #431070;
      margin-right: 8px; }
    .fmo-comment__form__form-group__check-box-container:checked {
      color: rgba(0, 0, 0, 0.55);
      border-color: rgba(0, 0, 0, 0.55); }
  .fmo-comment__form__form-group__message {
    text-align: center;
    padding: 4px;
    border-radius: 5px;
    margin-top: 36px;
    font-weight: 100; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-comment__form__form-group__message {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-comment__form__form-group__message {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-comment__form__form-group__message {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-comment__form__form-group__message {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-comment__form__form-group__message {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-comment__form__form-group__message {
        font-size: 18px;
        line-height: 2; } }
    .fmo-comment__form__form-group__message.sended {
      background-color: #ceeace;
      color: #096709; }
    .fmo-comment__form__form-group__message.error {
      background-color: #f37d7d;
      color: #f00; }
  .fmo-comment .form-group.is-focused .form-control, .fmo-comment .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .form-control, .fmo-comment .is-focused.fmo-download-dialog__form-group .form-control, .fmo-comment .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .form-control {
    background-image: linear-gradient(#431070, #431070), linear-gradient(#d2d2d2, #d2d2d2); }
  .fmo-comment .form-group.is-focused label, .fmo-comment .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label, .fmo-comment .is-focused.fmo-download-dialog__form-group label, .fmo-comment .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label,
  .fmo-comment .form-group.is-focused label.control-label,
  .fmo-comment .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label,
  .fmo-comment .is-focused.fmo-download-dialog__form-group label.control-label,
  .fmo-comment .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label {
    color: #431070; }
  .fmo-comment .checkbox input[type=checkbox]:checked + .checkbox-material .check,
  .fmo-comment label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check {
    color: #431070;
    border-color: #431070; }
  .fmo-comment .checkbox input[type=checkbox]:checked + .checkbox-material .check::before,
  .fmo-comment label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check::before {
    color: #431070; }
  .fmo-comment .fmo-comment__form__form-group.submit-btn {
    margin: 80px 0 0; }
    .fmo-comment .fmo-comment__form__form-group.submit-btn .fmo-comment__form__send-btn.btn.btn-raised.btn-primary {
      width: 250px;
      margin: auto;
      display: block;
      background-color: rgba(0, 150, 136, 0.9);
      height: 44px;
      line-height: 1.4;
      -webkit-border-radius: 70px;
      -khtml-border-radius: 70px;
      -moz-border-radius: 70px;
      -ms-border-radius: 70px;
      -o-border-radius: 70px;
      border-radius: 70px;
      -webkit-border-radius: 4.375rem;
      -khtml-border-radius: 4.375rem;
      -moz-border-radius: 4.375rem;
      -ms-border-radius: 4.375rem;
      -o-border-radius: 4.375rem;
      border-radius: 4.375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .fmo-comment .fmo-comment__form__form-group.submit-btn .fmo-comment__form__send-btn.btn.btn-raised.btn-primary span {
        line-height: inherit; }
      .fmo-comment .fmo-comment__form__form-group.submit-btn .fmo-comment__form__send-btn.btn.btn-raised.btn-primary:active, .fmo-comment .fmo-comment__form__form-group.submit-btn .fmo-comment__form__send-btn.btn.btn-raised.btn-primary:focus, .fmo-comment .fmo-comment__form__form-group.submit-btn .fmo-comment__form__send-btn.btn.btn-raised.btn-primary:hover {
        background-color: rgba(0, 150, 136, 0.8); }

.fmo-contact-form {
  position: relative;
  min-height: 760px; }
  .fmo-contact-form__details-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 28px calc(50% - -30px) 28px 28px; }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-contact-form__details-container {
        padding: 20px; } }
    .fmo-contact-form__details-container__details {
      text-align: right;
      width: 100%;
      float: right;
      padding: 14px 0; }
      .fmo-contact-form__details-container__details__head-office, .fmo-contact-form__details-container__details__email {
        text-align: right;
        padding-right: 30px;
        border-right: 1px solid #bbbdbf; }
        .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
          font-weight: 500; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
              font-size: 160%;
              line-height: 1.42857; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
              font-size: 180%;
              line-height: 1.42857; } }
          @media (min-width: 1920px) {
            .fmo-contact-form__details-container__details__head-office__title, .fmo-contact-form__details-container__details__email__title {
              font-size: 180%;
              line-height: 1.42857; } }
        .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
          word-wrap: break-word;
          font-weight: 100; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-contact-form__details-container__details__head-office__desc, .fmo-contact-form__details-container__details__email__desc {
              font-size: 18px;
              line-height: 2; } }
      .fmo-contact-form__details-container__details__phone, .fmo-contact-form__details-container__details__email-hr, .fmo-contact-form__details-container__details__find-us {
        text-align: left; }
        .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
          font-weight: 500; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
              font-size: 160%;
              line-height: 1.42857; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
              font-size: 180%;
              line-height: 1.42857; } }
          @media (min-width: 1920px) {
            .fmo-contact-form__details-container__details__phone__title, .fmo-contact-form__details-container__details__email-hr__title, .fmo-contact-form__details-container__details__find-us__title {
              font-size: 180%;
              line-height: 1.42857; } }
        .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
          word-wrap: break-word;
          font-weight: 100; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-contact-form__details-container__details__phone__desc, .fmo-contact-form__details-container__details__email-hr__desc, .fmo-contact-form__details-container__details__find-us__desc {
              font-size: 18px;
              line-height: 2; } }
      .fmo-contact-form__details-container__details__find-us {
        margin-top: 82px; }
        @media (min-width: 0) and (max-width: 991px) {
          .fmo-contact-form__details-container__details__find-us {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px; } }
        .fmo-contact-form__details-container__details__find-us__icons-container__icon-link {
          width: 40px;
          height: 22px;
          margin: 0 4px;
          display: inline-block; }
          .fmo-contact-form__details-container__details__find-us__icons-container__icon-link__svg {
            width: 100%;
            height: 100%;
            fill: #4a4f55;
            pointer-events: none; }
          .fmo-contact-form__details-container__details__find-us__icons-container__icon-link:hover .fmo-contact-form__details-container__details__find-us__icons-container__icon-link__svg {
            fill: #7643a3; }
    .fmo-contact-form__details-container__banner {
      text-align: center; }
      .fmo-contact-form__details-container__banner__svg {
        width: 100%;
        max-width: 360px; }
  .fmo-contact-form__form-container {
    width: 50%;
    position: absolute;
    top: -20px;
    right: 44px;
    padding: 26px 42px;
    background-color: #009688;
    color: #fff;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-border-radius: 0.375rem;
    -khtml-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-contact-form__form-container {
        position: relative;
        display: block;
        width: 94%;
        margin: -40px auto 20px;
        padding: 16px 40px;
        top: inherit;
        left: inherit;
        bottom: inherit;
        right: inherit;
        clear: both; } }
    @media (min-width: 1920px) {
      .fmo-contact-form__form-container {
        width: 35%;
        position: absolute;
        right: 180px; } }
    .fmo-contact-form__form-container__form__form-group.is-focused .fmo-contact-form__form-container__form__form-group__label.control-label {
      color: rgba(0, 0, 0, 0.55); }
    .fmo-contact-form__form-container__form__form-group.is-focused .fmo-contact-form__form-container__form__form-group__input.form-control,
    .fmo-contact-form__form-container__form__form-group.is-focused .fmo-contact-form__form-container__form__form-group__text-area.form-control {
      background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)); }
    @media (min-width: 768px) and (max-width: 1199px) {
      .fmo-contact-form__form-container__form__form-group {
        margin: 0 0 25px 0;
        padding-bottom: 2px; } }
    .fmo-contact-form__form-container__form__form-group__label.control-label {
      color: #fff; }
    .fmo-contact-form__form-container__form__form-group__input.form-control {
      color: #fff; }
    .fmo-contact-form__form-container__form__form-group__help {
      color: rgba(0, 0, 0, 0.55); }
    .fmo-contact-form__form-container__form__form-group__help-error {
      color: rgba(255, 0, 0, 0.8); }
    .fmo-contact-form__form-container__form__form-group__text-area {
      color: #fff; }
    .fmo-contact-form__form-container__form__form-group__check-box-container {
      color: #fff; }
      .fmo-contact-form__form-container__form__form-group__check-box-container,
      .fmo-contact-form__form-container__form__form-group__check-box-container .checkbox-material .check {
        border-color: #fff;
        margin-right: 8px; }
      .fmo-contact-form__form-container__form__form-group__check-box-container:checked {
        color: rgba(0, 0, 0, 0.55);
        border-color: rgba(0, 0, 0, 0.55); }
  .fmo-contact-form__macro-form-container {
    width: 50%;
    position: absolute;
    top: -20px;
    right: 44px;
    padding: 26px 42px;
    background-color: #009688;
    color: #fff;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-border-radius: 0.375rem;
    -khtml-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-contact-form__macro-form-container {
        position: relative;
        display: block;
        width: 94%;
        margin: -40px auto 20px;
        padding: 16px 40px;
        top: inherit;
        left: inherit;
        bottom: inherit;
        right: inherit;
        clear: both; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-contact-form__macro-form-container {
        right: -35px;
        top: -10px;
        width: 55%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-contact-form__macro-form-container {
        right: 5px; } }
    @media (min-width: 1920px) {
      .fmo-contact-form__macro-form-container {
        width: 45%;
        position: absolute;
        top: -10px; } }
    .fmo-contact-form__macro-form-container__form__form-group.is-focused .fmo-contact-form__form-container__form__form-group__label.control-label {
      color: rgba(0, 0, 0, 0.55); }
    .fmo-contact-form__macro-form-container__form__form-group.is-focused .fmo-contact-form__form-container__form__form-group__input.form-control,
    .fmo-contact-form__macro-form-container__form__form-group.is-focused .fmo-contact-form__form-container__form__form-group__text-area.form-control {
      background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)); }
    .fmo-contact-form__macro-form-container__form__form-group__label.control-label {
      color: #fff; }
    .fmo-contact-form__macro-form-container__form__form-group__input.form-control {
      color: #fff; }
    .fmo-contact-form__macro-form-container__form__form-group__help {
      color: rgba(0, 0, 0, 0.55); }
    .fmo-contact-form__macro-form-container__form__form-group__help-error {
      color: rgba(255, 0, 0, 0.8); }
    .fmo-contact-form__macro-form-container__form__form-group__text-area {
      color: #fff; }
    .fmo-contact-form__macro-form-container__form__form-group__check-box-container {
      color: #fff; }
      .fmo-contact-form__macro-form-container__form__form-group__check-box-container,
      .fmo-contact-form__macro-form-container__form__form-group__check-box-container .checkbox-material .check {
        border-color: #fff;
        margin-right: 8px; }
      .fmo-contact-form__macro-form-container__form__form-group__check-box-container:checked {
        color: rgba(0, 0, 0, 0.55);
        border-color: rgba(0, 0, 0, 0.55); }

label.fmo-contact-form__form-container__form__form-group__check-box-container {
  color: #fff; }

.fmo-contact-form__form-container__form__form-group.checkbox input[type=checkbox]:checked + .checkbox-material .check,
label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.55);
  border-radius: 0; }

.fmo-contact-form__form-container__form__form-group.checkbox input[type=checkbox]:checked + .checkbox-material .check::before,
label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check::before {
  color: #00443d; }

.form-group.has-error label.control-label, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .has-error.fmo-download-dialog__form-group label.control-label, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label,
.form-group.has-error .help-block, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .has-error.fmo-download-dialog__form-group .help-block, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
  color: #f0908d; }

.fmo-contact-form__form-container__form__form-group.submit-btn {
  margin-top: 20px; }
  .fmo-contact-form__form-container__form__form-group.submit-btn .fmo-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary {
    width: 90%;
    margin: auto;
    display: block;
    background-color: rgba(0, 0, 0, 0.55);
    height: 44px;
    line-height: 1.7;
    -webkit-border-radius: 70px;
    -khtml-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
    border-radius: 70px;
    -webkit-border-radius: 4.375rem;
    -khtml-border-radius: 4.375rem;
    -moz-border-radius: 4.375rem;
    -ms-border-radius: 4.375rem;
    -o-border-radius: 4.375rem;
    border-radius: 4.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .fmo-contact-form__form-container__form__form-group.submit-btn .fmo-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary:active, .fmo-contact-form__form-container__form__form-group.submit-btn .fmo-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary:focus, .fmo-contact-form__form-container__form__form-group.submit-btn .fmo-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary:hover {
      background-color: rgba(0, 0, 0, 0.5); }

/* ==========================================================================
   # CPC Calculator
   ========================================================================== */
.fmo-cpc-calculator-dialog {
  color: #fff;
  background-color: #009688;
  overflow: visible;
  text-align: center; }
  .fmo-cpc-calculator-dialog__title {
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-cpc-calculator-dialog__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-cpc-calculator-dialog__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-cpc-calculator-dialog__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-cpc-calculator-dialog__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-cpc-calculator-dialog__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-cpc-calculator-dialog__title {
        font-size: 300%;
        line-height: 1.1; } }
  .fmo-cpc-calculator-dialog__text {
    color: #fff;
    margin: 20px 0;
    padding: 0; }
  .fmo-cpc-calculator-dialog .btn-wrapper {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    margin-top: 20px;
    justify-content: space-around; }
    .fmo-cpc-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary {
      margin: 7.5px;
      background-color: rgba(0, 0, 0, 0.55);
      height: 44px;
      width: 100%;
      line-height: 1.7;
      -webkit-border-radius: 70px;
      -khtml-border-radius: 70px;
      -moz-border-radius: 70px;
      -ms-border-radius: 70px;
      -o-border-radius: 70px;
      border-radius: 70px;
      -webkit-border-radius: 4.375rem;
      -khtml-border-radius: 4.375rem;
      -moz-border-radius: 4.375rem;
      -ms-border-radius: 4.375rem;
      -o-border-radius: 4.375rem;
      border-radius: 4.375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .fmo-cpc-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary:active, .fmo-cpc-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary:focus, .fmo-cpc-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary:hover {
        background-color: rgba(0, 0, 0, 0.5); }

.fmo-cpc-calculator {
  padding: 48px 24px;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  @media (min-width: 0) and (max-width: 991px) {
    .fmo-cpc-calculator {
      padding-top: 0;
      padding-bottom: 0; } }
  .fmo-cpc-calculator::before, .fmo-cpc-calculator::after {
    content: " ";
    display: table; }
  .fmo-cpc-calculator::after {
    clear: both; }
  .fmo-cpc-calculator__title {
    text-align: center;
    /*background-color: #f48117;*/
    /*padding: 20px;*/
    margin-top: 37px; 
    z-index: 3; }
    .fmo-cpc-calculator__title__text {
      color: #fff;
      margin: 0;
      padding: 0;
      font-weight: 400; }
    @media (min-width: 0) and (max-width: 543px) {
        .fmo-cpc-calculator__title__text {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-cpc-calculator__title__text {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-cpc-calculator__title__text {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-cpc-calculator__title__text {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-cpc-calculator__title__text {
          font-size: 26px;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-cpc-calculator__title__text {
          font-size: 300%;
          line-height: 1.1; } }









  .fmo-cpc-calculator__container {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -khtml-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-line-pack: space-between;
    -webkit-align-content: space-between;
    -khtml-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -khtml-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }
    .fmo-cpc-calculator__container__sub-title {
      text-align: center;
      color: #fff;
      margin-top: 14px;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-cpc-calculator__container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-cpc-calculator__container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-cpc-calculator__container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-cpc-calculator__container__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-cpc-calculator__container__sub-title {
          font-size: 166%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-cpc-calculator__container__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 0) and (max-width: 991px) {
        .fmo-cpc-calculator__container__sub-title {
          margin-top: 20px; } }
    .fmo-cpc-calculator__container__illustration {
      width: 40%;
      position: relative;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -khtml-order: 1;
      -moz-order: 1;
      -ms-order: 1;
      -o-order: 1;
      order: 2;
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -webkit-flex: 1 0 auto;
      -khtml-flex: 1 0 auto;
      -moz-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
      -o-flex: 1 0 auto;
      flex: 1 0 auto;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto; }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-cpc-calculator__container__illustration {
          width: 100%; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-cpc-calculator__container__illustration {
          width: 100%; } }
      .fmo-cpc-calculator__container__illustration__wrapper {
        text-align: center;
        padding: 40px;
        width: 100%;
        position: absolute;
      /*  border-right: 1px solid #c8c8c8;*/ }
        @media (min-width: 992px) {
          .fmo-cpc-calculator__container__illustration__wrapper {
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -khtml-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-cpc-calculator__container__illustration__wrapper {
            border-right: none;
            padding: 40px 40px 0;
            height: 100%; } }
        @media (min-width: 0) and (max-width: 991px) {
          .fmo-cpc-calculator__container__illustration__wrapper {
            padding: 20px;
            height: 100%;
            position: relative; } }
        .fmo-cpc-calculator__container__illustration__wrapper__text {
          text-align: center;
          margin: 20px;
          font-weight: 600; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-cpc-calculator__container__illustration__wrapper__text {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-cpc-calculator__container__illustration__wrapper__text {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-cpc-calculator__container__illustration__wrapper__text {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-cpc-calculator__container__illustration__wrapper__text {
              font-size: 160%;
              line-height: 1.42857; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-cpc-calculator__container__illustration__wrapper__text {
              font-size: 180%;
              line-height: 1.42857; } }
          @media (min-width: 1920px) {
            .fmo-cpc-calculator__container__illustration__wrapper__text {
              font-size: 180%;
              line-height: 1.42857; } }
        .fmo-cpc-calculator__container__illustration__wrapper__img {
          width: 90%;
          height: 90%; }
          @media (min-width: 0) and (max-width: 991px) {
            .fmo-cpc-calculator__container__illustration__wrapper__img {
              height: initial;
              max-width: 350px; } }
    .fmo-cpc-calculator__container__form {
      width: 60%;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -khtml-order: 2;
      -moz-order: 2;
      -ms-order: 2;
      -o-order: 2;
      order: 1;
      -webkit-box-flex: 2;
      -moz-box-flex: 2;
      -webkit-flex: 2 1 auto;
      -khtml-flex: 2 1 auto;
      -moz-flex: 2 1 auto;
      -ms-flex: 2 1 auto;
      -o-flex: 2 1 auto;
      flex: 2 1 auto;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto; }
      @media (min-width: 0) and (max-width: 991px) {
        .fmo-cpc-calculator__container__form {
          width: 100%; } }
      .fmo-cpc-calculator__container__form__slider {
        transition-property: height;
        transition-duration: 1s;
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 650px; }
        @media (min-width: 544px) and (max-width: 991px) {
          .fmo-cpc-calculator__container__form__slider {
            height: 560px; } }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-cpc-calculator__container__form__slider {
            height: 350px; }
            .fmo-cpc-calculator__con12681tainer__form__slider.slide0 {
              height: 350px; }
            .fmo-cpc-calculator__container__form__slider.slide1 {
              height: 610px; }
            .fmo-cpc-calculator__container__form__slider.slide2 {
              height: 560px; } }
        .fmo-cpc-calculator__container__form__slider__slides {
          position: relative;
          width: 300%;
          height: 100%;
          will-change: transform;
          -webkit-transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1);
          -o-transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1);
          transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1); }
          .fmo-cpc-calculator__container__form__slider__slides__slide {
            float: left;
            width: 33.33333%;
            height: 100%;
            background-color: #fff;
            padding:40px; }
            @media (min-width: 0) and (max-width: 991px) {
              .fmo-cpc-calculator__container__form__slider__slides__slide {
                padding: 20px; } }
            .fmo-cpc-calculator__container__form__slider__slides__slide__title {
              font-weight: 800;
              text-align: center;
              padding: 6px 8px 16px;
              font-weight: bold; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                  font-size: 180%;
                  line-height: 1.3; } }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                  font-size: 220%;
                  line-height: 1.3; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                  font-size: 240%;
                  line-height: 1.3; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                  font-size: 260%;
                  line-height: 1.3; } }
              @media (min-width: 1200px) and (max-width: 1919px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                  font-size: 280%;
                  line-height: 1.2; } }
              @media (min-width: 1920px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                  font-size: 300%;
                  line-height: 1.1; } }
            .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
              text-align: center;
              font-weight: 600;
              margin-left: -10px; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 160%;
                  line-height: 1.42857; } }
              @media (min-width: 1200px) and (max-width: 1919px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 180%;
                  line-height: 1.42857; } }
              @media (min-width: 1920px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 180%;
                  line-height: 1.42857; } }
            .fmo-cpc-calculator__container__form__slider__slides__slide--1 {
              text-align: center;
              position: relative; }
              .fmo-cpc-calculator__container__form__slider__slides__slide--1 .fmo-cpc-calculator__container__form__slider__slides__slide__title {
                top: calc(50% - 40px);
                font-size: 72px;
                letter-spacing: 4px; }
              .fmo-cpc-calculator__container__form__slider__slides__slide--1 .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                top: calc(50% + 20px); }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
              margin-top: 10px;
              margin-bottom: 10px;
              text-align: left;
              font-weight: 400; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 160%;
                  line-height: 1.42857; } }
              @media (min-width: 1200px) and (max-width: 1919px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 180%;
                  line-height: 1.42857; } }
              @media (min-width: 1920px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 180%;
                  line-height: 1.42857; } }
              @media (min-width: 0) and (max-width: 991px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__title {
                  margin-top: 0; } }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.sliders {
              margin:0; padding:0; }
              @media (min-width: 0) and (max-width: 991px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.sliders {
                  margin: 0;
                  padding-bottom: 0px; } }
              .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.sliders .total-label {
                margin-bottom: 20px; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__label.control-label {
              color: #009688; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__input.form-control {
              background-image: linear-gradient(#009688, #009688); }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__input.form-control.error {
              background-image: linear-gradient(#E74683, #E74683); }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__label.control-label {
              color: #431070; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__label.checkbox-label.other-label {
              color: #431070; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__label.checkbox-label.other-label {
              color: #431070; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__input.form-control {
              color: #431070;
              font-weight: 600; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__help {
              color: rgba(0, 0, 0, 0.55); }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__help-error {
              color: rgba(255, 0, 0, 0.8); }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group__range-slider {
              width: 100%; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio input[type=radio]:checked ~ .circle,
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.radio-inline input[type=radio]:checked ~ .circle {
              border-color: #009688; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group .radio input[type=radio]:checked ~ .check,
            .fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.radio-inline input[type=radio]:checked ~ .check {
              background-color: #009688; }
            .fmo-cpc-calculator__container__form__slider__slides__slide__container {
              position: relative;
              display: block;
              width: 100%;
             /* height: 330px;*/
              height: 168px;
              display: flex;
              flex-direction: column;
              flex-wrap: nowrap;
              justify-content: center;
              align-content: stretch;
              align-items: center; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-cpc-calculator__container__form__slider__slides__slide__container {
                  height: 120px; } }
              .fmo-cpc-calculator__container__form__slider__slides__slide__container .fmo-incremental-input,
              .fmo-cpc-calculator__container__form__slider__slides__slide__container .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                order: 0;
                flex: 0 1 auto;
                align-self: auto; }
        .fmo-cpc-calculator__container__form__slider[data-pos="0"] .fmo-cpc-calculator__container__form__slider__slides {
          transform: -webkit-translateX(0%);
          transform: -khtml-translateX(0%);
          transform: -moz-translateX(0%);
          transform: -ms-translateX(0%);
          transform: -o-translateX(0%);
          transform: translateX(0%); }
        .fmo-cpc-calculator__container__form__slider[data-pos="1"] .fmo-cpc-calculator__container__form__slider__slides {
          transform: -webkit-translateX(-33.33333%);
          transform: -khtml-translateX(-33.33333%);
          transform: -moz-translateX(-33.33333%);
          transform: -ms-translateX(-33.33333%);
          transform: -o-translateX(-33.33333%);
          transform: translateX(-33.33333%); }
        .fmo-cpc-calculator__container__form__slider[data-pos="2"] .fmo-cpc-calculator__container__form__slider__slides {
          transform: -webkit-translateX(-66.66667%);
          transform: -khtml-translateX(-66.66667%);
          transform: -moz-translateX(-66.66667%);
          transform: -ms-translateX(-66.66667%);
          transform: -o-translateX(-66.66667%);
          transform: translateX(-66.66667%); }
        .fmo-cpc-calculator__container__form__slider__dots {
          display: flex;
          position: absolute;
          bottom: 90px;
          left: 50%;
          transform: -webkit-translateX(-50%);
          transform: -khtml-translateX(-50%);
          transform: -moz-translateX(-50%);
          transform: -ms-translateX(-50%);
          transform: -o-translateX(-50%);
          transform: translateX(-50%); }
          .fmo-cpc-calculator__container__form__slider__dots__dot, .fmo-cpc-calculator__container__form__slider__dots__indicator {
            display: block;
            margin: 0 0.5em;
            width: 0.5em;
            height: 0.5em;
            background-color: #c8c8c8;
            -webkit-border-radius: 100px;
            -khtml-border-radius: 100px;
            -moz-border-radius: 100px;
            -ms-border-radius: 100px;
            -o-border-radius: 100px;
            border-radius: 100px;
            -webkit-border-radius: 6.25rem;
            -khtml-border-radius: 6.25rem;
            -moz-border-radius: 6.25rem;
            -ms-border-radius: 6.25rem;
            -o-border-radius: 6.25rem;
            border-radius: 6.25rem;
            -webkit-background-clip: padding-box;
            -khtml-background-clip: padding-box;
            -moz-background-clip: padding-box;
            -ms-background-clip: padding-box;
            -o-background-clip: padding-box;
            background-clip: padding-box; }
          .fmo-cpc-calculator__container__form__slider__dots__indicator {
            position: absolute;
            background-color: #787878;
            width: auto; }
            .fmo-cpc-calculator__container__form__slider__dots__indicator--left {
              -webkit-transition: left 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15), right 0.5s 0.16667s cubic-bezier(0.51, 0.92, 0.24, 1.15);
              -o-transition: left 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15), right 0.5s 0.16667s cubic-bezier(0.51, 0.92, 0.24, 1.15);
              transition: left 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15), right 0.5s 0.16667s cubic-bezier(0.51, 0.92, 0.24, 1.15); }
            .fmo-cpc-calculator__container__form__slider__dots__indicator--right {
              -webkit-transition: left 0.5s 0.16667s cubic-bezier(0.51, 0.92, 0.24, 1.15), right 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
              -o-transition: left 0.5s 0.16667s cubic-bezier(0.51, 0.92, 0.24, 1.15), right 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
              transition: left 0.5s 0.16667s cubic-bezier(0.51, 0.92, 0.24, 1.15), right 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15); }
        .fmo-cpc-calculator__container__form__slider[data-pos="0"] .fmo-cpc-calculator__container__form__slider__dots__indicator {
          left: 0em;
          right: 3em; }
        .fmo-cpc-calculator__container__form__slider[data-pos="1"] .fmo-cpc-calculator__container__form__slider__dots__indicator {
          left: 1.5em;
          right: 1.5em; }
        .fmo-cpc-calculator__container__form__slider[data-pos="2"] .fmo-cpc-calculator__container__form__slider__dots__indicator {
          left: 3em;
          right: 0em; }
        .fmo-cpc-calculator__container__form__slider__btns {
          width: 100%;
          position: absolute;
          bottom: 0px;
          left: 50%;
          padding: 20px 20px 30px;
          text-align: center;
          background-color: #fff;
          display: block;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          transform: -webkit-translateX(-50%);
          transform: -khtml-translateX(-50%);
          transform: -moz-translateX(-50%);
          transform: -ms-translateX(-50%);
          transform: -o-translateX(-50%);
          transform: translateX(-50%);
          font-weight: 500; }
          .fmo-cpc-calculator__container__form__slider__btns:before, .fmo-cpc-calculator__container__form__slider__btns:after {
            content: " ";
            display: table; }
          .fmo-cpc-calculator__container__form__slider__btns:after {
            clear: both; }
          .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
            margin: 0 8px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: inherit;
            border: none;
            cursor: pointer;
            text-decoration: none;
            background-color: #f48117;
            color: rgba(255, 255, 255, 0.9);
            font-family: Source Sans Pro, Calibri, sans;
            font-weight: light;
            min-width: 88px;
            -webkit-border-radius: 250px;
            -khtml-border-radius: 250px;
            -moz-border-radius: 250px;
            -ms-border-radius: 250px;
            -o-border-radius: 250px;
            border-radius: 250px;
            -webkit-border-radius: 15.625rem;
            -khtml-border-radius: 15.625rem;
            -moz-border-radius: 15.625rem;
            -ms-border-radius: 15.625rem;
            -o-border-radius: 15.625rem;
            border-radius: 15.625rem;
            -webkit-background-clip: padding-box;
            -khtml-background-clip: padding-box;
            -moz-background-clip: padding-box;
            -ms-background-clip: padding-box;
            -o-background-clip: padding-box;
            background-clip: padding-box;
            -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
            font-weight: 100;
            -webkit-transition: all 0.15s ease-in-out;
            -o-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out; }
            @media (min-width: 0) and (max-width: 543px) {
              .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
                font-size: 150%;
                line-height: 2rem;
                padding: 6px 16px; } }
            @media (min-width: 544px) and (max-width: 767px) {
              .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
                font-size: 150%;
                line-height: 2rem;
                padding: 8px 16px; } }
            @media (min-width: 768px) and (max-width: 991px) {
              .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
                font-size: 150%;
                line-height: 2rem;
                padding: 10px 20px; } }
            @media (min-width: 992px) and (max-width: 1199px) {
              .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
                font-size: 160%;
                line-height: 1.32rem;
                padding: 10px 20px; } }
            @media (min-width: 1200px) and (max-width: 1919px) {
              .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
                font-size: 180%;
                line-height: 1.32rem;
                padding: 12px 20px; } }
            @media (min-width: 1920px) {
              .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next {
                font-size: 180%;
                line-height: 1.32rem;
                padding: 12px 20px; } }
            .fmo-cpc-calculator__container__form__slider__btns__prev:focus, .fmo-cpc-calculator__container__form__slider__btns__prev:active, .fmo-cpc-calculator__container__form__slider__btns__prev.active, .fmo-cpc-calculator__container__form__slider__btns__prev:active:focus, .fmo-cpc-calculator__container__form__slider__btns__prev.active:focus, .fmo-cpc-calculator__container__form__slider__btns__next:focus, .fmo-cpc-calculator__container__form__slider__btns__next:active, .fmo-cpc-calculator__container__form__slider__btns__next.active, .fmo-cpc-calculator__container__form__slider__btns__next:active:focus, .fmo-cpc-calculator__container__form__slider__btns__next.active:focus {
              outline: 0;
              outline-offset: 0;
              text-decoration: none; }
            .fmo-cpc-calculator__container__form__slider__btns__prev:focus, .fmo-cpc-calculator__container__form__slider__btns__prev:hover, .fmo-cpc-calculator__container__form__slider__btns__next:focus, .fmo-cpc-calculator__container__form__slider__btns__next:hover {
              outline: none;
              text-decoration: none;
              -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
              box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
            .fmo-cpc-calculator__container__form__slider__btns__prev:hover, .fmo-cpc-calculator__container__form__slider__btns__next:hover {
              color: rgba(255, 255, 255, 0.7);
              background-color:#f48117; }
            .fmo-cpc-calculator__container__form__slider__btns__prev:focus, .fmo-cpc-calculator__container__form__slider__btns__next:focus {
              color: rgba(255, 255, 255, 0.7); }
            .fmo-cpc-calculator__container__form__slider__btns__prev:focus, .fmo-cpc-calculator__container__form__slider__btns__next:focus {
              color: #fff; }
}
}
}

.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 10px; }

.rangeslider {
  position: relative; }

.rangeslider:after {
  top: 50%;
  left: 0;
  right: 0;
  content: '';
  width: 100%;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 5px;
  position: absolute;
  background: #bbb; }

.rangeslider--horizontal {
  width: 100%;
  height: 28px; }

.rangeslider--vertical {
  width: 5px;
  min-height: 150px;
  max-height: 100%; }

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeslider__fill {
  position: absolute;
  background: #009688; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%; }

.rangeslider__handle {
  top: 50%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-top: -7px;
  background: white;
  position: absolute;
  background: #009688;
  border-radius: 50%;
  display: inline-block; }

.rangeslider__handle:active {
  background: #009688; }

.rangeslider__fill,
.rangeslider__handle {
  z-index: 1; }

.rangeslider--horizontal .rangeslider__fill {
  top: 50%;
  height: 5px;
  margin-top: -2.5px; }

/*$white: #fff;
$black: #000;
$grey: #eee;
$lightBlue: #03a9f4;
$orange: #ff9800;
$amber: #ffc107;
$green: #4caf50;
$teal: #009688;
$cyan: #00bcd4;
$indigo: #3f51b5;
$deepPurple: #673ab7;
$pink: #e91e63;
$red: #f44336;
$yellow: #ffeb3b;
$lime: #cddc39;
$brown: #795548;

.rkmd-slider {
    display: block;
    position: relative;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;

    input[type="range"] {
        overflow: hidden;
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;

        & + .slider {
            display: block;
            position: relative;
            width: 100%;
            height: 4px;
            background-color: #bbb;
            border-radius: 10px;

            .slider-fill {
                display: block;
                position: absolute;
                width: 0%;
                height: 100%;
                user-select: none;
                z-index: 1;
                border-radius: 10px 0 0 10px;
                background-color: $secondary-color;
            }

            .slider-handle {
                cursor: pointer;
                position: absolute;
                top: -5.5px;
                left: 0%;
                width: 15px;
                height: 15px;
                margin-left: -8px;
                border-radius: 50%;
                transition: all 0.2s ease;
                user-select: none;
                z-index: 2;
            }
        }

        &:disabled + .slider {
            background-color: #b0b0b0 !important;

            .slider-fill,
            .slider-handle {
                cursor: default !important;
                background-color: #b0b0b0 !important;

                .slider-label {
                    display: none;
                    background-color: #b0b0b0 !important;
                }

                &.is-active {
                    top: -5.5px;
                    width: 15px;
                    height: 15px;
                    margin-left: -8px;

                    .slider-label {
                        display: none;
                        border-radius: 50%;
                        transform: none;
                    }
                }
            }

            .slider-handle:active {
                box-shadow: none !important;
                transform: scale(1) !important;
            }
        }
    }

    &.slider-light {
        input[type="range"] {
            & + .slider {
                background-color: #e6e6e6;
            }

            &:disabled + .slider {
                background-color: #5c5c5c !important;

                .slider-fill,
                .slider-handle {
                    background-color: #5c5c5c !important;
                }
            }
        }
    }
}

.rkmd-slider {
    &.slider-discrete {
        .slider {
            .slider-handle {
                position: relative;
                z-index: 1;

                .slider-label {
                    position: absolute;
                    top: -17.5px;
                    left: -2px;
                    width: 30px;
                    height: 30px;
                    transform-origin: 50% 100%;
                    background-color: $secondary-color;
                    @include border-radius(50%);
                    @include transform(scale(0.5) rotate(-45deg));
                    @include transition(all 0.2s ease);

                    span {
                        position: absolute;
                        top: 7px;
                        left: 0;
                        width: 100%;
                        color: #fff;
                        font-size: 12px;
                        text-align: center;
                        transform: rotate(45deg);
                        opacity: 0;
                        user-select: none;
                    }
                }

                &.is-active {
                    top: 0;
                    margin-left: -2px;
                    width: 4px;
                    height: 4px;

                    .slider-label {
                        top: -15px;
                        left: -2px;
                        border-radius: 15px 15px 15px 0;
                        transform: rotate(-45deg) translate(23px, -25px);

                        span {
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }
}*/
.holder {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .holder:last-child {
    margin-bottom: 0;
    border-bottom: none; }
  .holder .fmo-slider__wrapper {
    display: block;
    width: 62%;
    margin: 0 auto;
    padding: 10px 0;
    order: 3; }
  .holder .captions {
    font-weight: 500;
    display: block;
    width: 20%;
    min-height: 50px;
    margin-right: 1%;
    line-height: 48px;
    text-align: left;
    order: 0; }
    @media (min-width: 0) and (max-width: 543px) {
      .holder .captions {
        font-size: 150%; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .holder .captions {
        font-size: 150%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .holder .captions {
        font-size: 150%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .holder .captions {
        font-size: 160%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .holder .captions {
        font-size: 180%; } }
    @media (min-width: 1920px) {
      .holder .captions {
        font-size: 180%; } }
  .holder .percentage {
    font-weight: 500;
    display: block;
    width: 8%;
    min-height: 50px;
    margin-right: 1%;
    line-height: 48px;
    text-align: right;
    order: 4; }
    @media (min-width: 0) and (max-width: 543px) {
      .holder .percentage {
        font-size: 150%; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .holder .percentage {
        font-size: 150%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .holder .percentage {
        font-size: 150%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .holder .percentage {
        font-size: 160%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .holder .percentage {
        font-size: 180%; } }
    @media (min-width: 1920px) {
      .holder .percentage {
        font-size: 180%; } }
  .holder .total-label {
    font-weight: 700;
    text-align: right;
    display: block;
    width: 86%;
    min-height: 50px;
    margin-right: 1%;
    line-height: 48px;
    order: 0; }
    @media (min-width: 0) and (max-width: 543px) {
      .holder .total-label {
        font-size: 150%; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .holder .total-label {
        font-size: 150%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .holder .total-label {
        font-size: 150%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .holder .total-label {
        font-size: 160%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .holder .total-label {
        font-size: 180%; } }
    @media (min-width: 1920px) {
      .holder .total-label {
        font-size: 180%; } }
  .holder .total-percentage {
    font-weight: 700;
    display: block;
    width: 12%;
    min-height: 50px;
    margin-right: 1%;
    line-height: 48px;
    text-align: right;
    order: 4; }
    @media (min-width: 0) and (max-width: 543px) {
      .holder .total-percentage {
        font-size: 150%; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .holder .total-percentage {
        font-size: 150%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .holder .total-percentage {
        font-size: 150%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .holder .total-percentage {
        font-size: 160%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .holder .total-percentage {
        font-size: 180%; } }
    @media (min-width: 1920px) {
      .holder .total-percentage {
        font-size: 180%; } }
    .holder .total-percentage.error {
      color: #E74683; }
  @media (min-width: 544px) and (max-width: 991px) {
    .holder .fmo-slider__wrapper {
      min-height: inherit; }
    .holder .captions {
      min-height: 60px;
      line-height: 60px; }
    .holder .percentage {
      min-height: 60px;
      line-height: 60px; } }
  @media (min-width: 0) and (max-width: 543px) {
    .holder .fmo-slider__wrapper {
      flex-basis: 100%;
      order: 5;
      padding: 0 0 10px 0;
      min-height: inherit; }
    .holder .captions {
      left: -5px;
      width: 80px;
      flex-basis: auto;
      min-height: 30px;
      line-height: 30px;
      text-align: left; }
    .holder .percentage {
      min-height: 30px;
      line-height: 30px;
      flex-grow: 1;
      text-align: right;
      margin-right: 0; } }

@media (width: 640) {
  .holder {
    display: block;
    width: 100%; }
    .holder .fmo-slider__wrapper {
      width: 100%; }
    .holder .captions {
      display: block;
      width: 100%;
      min-height: auto;
      margin-right: 0;
      line-height: normal; } }

.ani-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 46px auto;
  display: none;
  transform: -webkit-scale(0.8);
  transform: -khtml-scale(0.8);
  transform: -moz-scale(0.8);
  transform: -ms-scale(0.8);
  transform: -o-scale(0.8);
  transform: scale(0.8); }

.fmo-slide-end-msg {
  text-align: center;
  transform: -webkit-scale(0);
  transform: -khtml-scale(0);
  transform: -moz-scale(0);
  transform: -ms-scale(0);
  transform: -o-scale(0);
  transform: scale(0);
  font-weight: 600; }
  @media (min-width: 0) and (max-width: 543px) {
    .fmo-slide-end-msg {
      font-size: 180%;
      line-height: 1.3; } }
  @media (min-width: 544px) and (max-width: 767px) {
    .fmo-slide-end-msg {
      font-size: 220%;
      line-height: 1.3; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-slide-end-msg {
      font-size: 240%;
      line-height: 1.3; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-slide-end-msg {
      font-size: 260%;
      line-height: 1.3; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-slide-end-msg {
      font-size: 280%;
      line-height: 1.2; } }
  @media (min-width: 1920px) {
    .fmo-slide-end-msg {
      font-size: 300%;
      line-height: 1.1; } }

.fmo-cpc-calculator__container__form__slider .fmo-cpc-calculator__container__form__slider__slides .fmo-cpc-calculator__container__form__slider__slides__slide .ani-container,
.fmo-cpc-calculator__container__form__slider .fmo-cpc-calculator__container__form__slider__slides .fmo-cpc-calculator__container__form__slider__slides__slide .fmo-slide-end-msg {
  display: block; }

.fmo-cpc-calculator__container__form__slider .fmo-cpc-calculator__container__form__slider__slides .fmo-cpc-calculator__container__form__slider__slides__slide .fmo-slide-end-msg {
  -webkit-animation: stretch-bounce 1s 0.8s forwards;
  -o-animation: stretch-bounce 1s 0.8s forwards;
  animation: stretch-bounce 1s 0.8s forwards; }

.star {
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  stroke: rgba(255, 255, 255, 0.9); }

.bar {
  stroke: #8dce7e;
  stroke-width: 8;
  stroke-linecap: round;
  -webkit-animation: complete 1s ease-in-out forwards;
  -o-animation: complete 1s ease-in-out forwards;
  animation: complete 1s ease-in-out forwards; }

.goal-circle {
  stroke: #8dce7e;
  opacity: 0.5;
  filter: alpha(opacity=50); }

.star-container {
  display: block;
  height: 200px;
  width: 200px;
  margin: 2em auto;
  position: relative; }
  .star-container .icon-star {
    position: absolute;
    width: 80px;
    height: 80px;
    top: calc(50% - 38px);
    left: calc(50% - 36px);
    z-index: 10;
    fill: #fff;
    -webkit-animation: colour 1.5s 0.1s ease-in forwards, stretch-bounce 1s 1s forwards;
    -o-animation: colour 1.5s 0.1s ease-in forwards, stretch-bounce 1s 1s forwards;
    animation: colour 1.5s 0.1s ease-in forwards, stretch-bounce 1s 1s forwards; }

.star-container:after {
  position: absolute;
  display: block;
  height: 160px;
  width: 160px;
  left: 50%;
  top: 50%;
  content: '';
  margin-top: -80px;
  margin-left: -80px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

@-webkit-keyframes complete {
  from {
    stroke-dashoffset: 565; }
  to {
    stroke-dashoffset: 0; } }

@-moz-keyframes complete {
  from {
    stroke-dashoffset: 565; }
  to {
    stroke-dashoffset: 0; } }

@-ms-keyframes complete {
  from {
    stroke-dashoffset: 565; }
  to {
    stroke-dashoffset: 0; } }

@-o-keyframes complete {
  from {
    stroke-dashoffset: 565; }
  to {
    stroke-dashoffset: 0; } }

@keyframes complete {
  from {
    stroke-dashoffset: 565; }
  to {
    stroke-dashoffset: 0; } }

@-webkit-keyframes colour {
  from {
    color: #8dce7e; }
  to {
    color: white; } }

@-moz-keyframes colour {
  from {
    color: #8dce7e; }
  to {
    color: white; } }

@-ms-keyframes colour {
  from {
    color: #8dce7e; }
  to {
    color: white; } }

@-o-keyframes colour {
  from {
    color: #8dce7e; }
  to {
    color: white; } }

@keyframes colour {
  from {
    color: #8dce7e; }
  to {
    color: white; } }

@-webkit-keyframes fade {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes fade {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes fade {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes fade {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes fade {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

.medal {
  width: 200px;
  height: 200px;
  background-color: #009688;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-animation: stretch-bounce 1s 1s forwards;
  -o-animation: stretch-bounce 1s 1s forwards;
  animation: stretch-bounce 1s 1s forwards;
  transform: -webkit-scale(0);
  transform: -khtml-scale(0);
  transform: -moz-scale(0);
  transform: -ms-scale(0);
  transform: -o-scale(0);
  transform: scale(0); }

@-webkit-keyframes stretch-bounce {
  0% {
    transform: -webkit-scale(0);
    transform: -khtml-scale(0);
    transform: -moz-scale(0);
    transform: -ms-scale(0);
    transform: -o-scale(0);
    transform: scale(0); }
  50% {
    transform: -webkit-scale(1.2);
    transform: -khtml-scale(1.2);
    transform: -moz-scale(1.2);
    transform: -ms-scale(1.2);
    transform: -o-scale(1.2);
    transform: scale(1.2); }
  100% {
    transform: -webkit-scale(1);
    transform: -khtml-scale(1);
    transform: -moz-scale(1);
    transform: -ms-scale(1);
    transform: -o-scale(1);
    transform: scale(1); } }

@-moz-keyframes stretch-bounce {
  0% {
    transform: -webkit-scale(0);
    transform: -khtml-scale(0);
    transform: -moz-scale(0);
    transform: -ms-scale(0);
    transform: -o-scale(0);
    transform: scale(0); }
  50% {
    transform: -webkit-scale(1.2);
    transform: -khtml-scale(1.2);
    transform: -moz-scale(1.2);
    transform: -ms-scale(1.2);
    transform: -o-scale(1.2);
    transform: scale(1.2); }
  100% {
    transform: -webkit-scale(1);
    transform: -khtml-scale(1);
    transform: -moz-scale(1);
    transform: -ms-scale(1);
    transform: -o-scale(1);
    transform: scale(1); } }

@-ms-keyframes stretch-bounce {
  0% {
    transform: -webkit-scale(0);
    transform: -khtml-scale(0);
    transform: -moz-scale(0);
    transform: -ms-scale(0);
    transform: -o-scale(0);
    transform: scale(0); }
  50% {
    transform: -webkit-scale(1.2);
    transform: -khtml-scale(1.2);
    transform: -moz-scale(1.2);
    transform: -ms-scale(1.2);
    transform: -o-scale(1.2);
    transform: scale(1.2); }
  100% {
    transform: -webkit-scale(1);
    transform: -khtml-scale(1);
    transform: -moz-scale(1);
    transform: -ms-scale(1);
    transform: -o-scale(1);
    transform: scale(1); } }

@-o-keyframes stretch-bounce {
  0% {
    transform: -webkit-scale(0);
    transform: -khtml-scale(0);
    transform: -moz-scale(0);
    transform: -ms-scale(0);
    transform: -o-scale(0);
    transform: scale(0); }
  50% {
    transform: -webkit-scale(1.2);
    transform: -khtml-scale(1.2);
    transform: -moz-scale(1.2);
    transform: -ms-scale(1.2);
    transform: -o-scale(1.2);
    transform: scale(1.2); }
  100% {
    transform: -webkit-scale(1);
    transform: -khtml-scale(1);
    transform: -moz-scale(1);
    transform: -ms-scale(1);
    transform: -o-scale(1);
    transform: scale(1); } }

@keyframes stretch-bounce {
  0% {
    transform: -webkit-scale(0);
    transform: -khtml-scale(0);
    transform: -moz-scale(0);
    transform: -ms-scale(0);
    transform: -o-scale(0);
    transform: scale(0); }
  50% {
    transform: -webkit-scale(1.2);
    transform: -khtml-scale(1.2);
    transform: -moz-scale(1.2);
    transform: -ms-scale(1.2);
    transform: -o-scale(1.2);
    transform: scale(1.2); }
  100% {
    transform: -webkit-scale(1);
    transform: -khtml-scale(1);
    transform: -moz-scale(1);
    transform: -ms-scale(1);
    transform: -o-scale(1);
    transform: scale(1); } }

/* ==========================================================================
   # Download dialog
   ========================================================================== */
.fmo-download-dialog {
  color: #fff;
  background-color: #009688;
  overflow: visible;
  text-align: left; }
  .fmo-download-dialog__title {
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-download-dialog__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-download-dialog__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-download-dialog__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-download-dialog__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-download-dialog__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-download-dialog__title {
        font-size: 300%;
        line-height: 1.1; } }
  .fmo-download-dialog__text {
    color: #fff;
    margin: 20px 0;
    padding: 0; }
  .fmo-download-dialog__form-group.is-focused .fmo-download-dialog__form-group__label.control-label {
    color: rgba(0, 0, 0, 0.55); }
  .fmo-download-dialog__form-group.is-focused .fmo-download-dialog__form-group__input.form-control {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)); }
  .fmo-download-dialog__form-group.is-focused .fmo-download-dialog__form-group__input.form-control.error {
    background-image: linear-gradient(#E74683, #E74683); }
  .fmo-download-dialog__form-group.checkbox {
    margin-top: 0px; }
    .fmo-download-dialog__form-group.checkbox input[type=checkbox] + .checkbox-material .check {
      margin-right: 10px; }
    .fmo-download-dialog__form-group.checkbox input[type=checkbox]:checked + .checkbox-material .check {
      border-color: #00443d;
      color: #00443d; }
      .fmo-download-dialog__form-group.checkbox input[type=checkbox]:checked + .checkbox-material .check:before {
        color: #00443d; }
  .fmo-download-dialog__form-group__label.control-label {
    color: #fff; }
  .fmo-download-dialog__form-group__label.checkbox-label.other-label {
    color: #fff; }
  .fmo-download-dialog__form-group.is-focused .fmo-download-dialog__form-group__label.checkbox-label.other-label {
    color: rgba(0, 0, 0, 0.55); }
  .fmo-download-dialog__form-group__input.form-control {
    color: #fff;
    font-weight: 300; }
  .fmo-download-dialog__form-group__help {
    color: rgba(0, 0, 0, 0.55); }
  .fmo-download-dialog__form-group__help-error {
    color: #E74683; }
  .fmo-download-dialog .btn-wrapper {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    margin-top: 20px;
    justify-content: space-around; }
    .fmo-download-dialog .btn-wrapper .btn.btn-raised.btn-primary {
      margin: 7.5px;
      background-color: rgba(0, 0, 0, 0.55);
      height: 44px;
      width: 100%;
      line-height: 1.7;
      -webkit-border-radius: 70px;
      -khtml-border-radius: 70px;
      -moz-border-radius: 70px;
      -ms-border-radius: 70px;
      -o-border-radius: 70px;
      border-radius: 70px;
      -webkit-border-radius: 4.375rem;
      -khtml-border-radius: 4.375rem;
      -moz-border-radius: 4.375rem;
      -ms-border-radius: 4.375rem;
      -o-border-radius: 4.375rem;
      border-radius: 4.375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .fmo-download-dialog .btn-wrapper .btn.btn-raised.btn-primary:active, .fmo-download-dialog .btn-wrapper .btn.btn-raised.btn-primary:focus, .fmo-download-dialog .btn-wrapper .btn.btn-raised.btn-primary:hover {
        background-color: rgba(0, 0, 0, 0.5); }

.js-flapper.XXL .digit, .js-flapper.XXL .digit div {
  height: 128px;
  width: 96px;
  font-size: inherit;
  line-height: inherit; }

.js-flapper.XL .digit, .js-flapper.XL .digit div {
  height: 96px;
  width: 72px;
  font-size: inherit;
  line-height: inherit; }

.js-flapper.L .digit, .js-flapper.L .digit div {
  height: 72px;
  width: 54px;
  font-size: inherit;
  line-height: inherit; }

.js-flapper .digit div {
  height: 54px;
  width: 40px;
  font-size: inherit;
  line-height: inherit; }

.js-flapper.S .digit, .js-flapper.S .digit div {
  height: 40px;
  width: 30px;
  font-size: inherit;
  line-height: inherit; }

.js-flapper.XS .digit, .js-flapper.XS .digit div {
  height: 30px;
  width: 24px;
  font-size: inherit;
  line-height: inherit; }

.js-flapper {
  font-weight: bold;
  font-family: Montserrat, Verdana;
  color: #4a4f55;
  font-size: 51px;
  line-height: 54px;
  height: 58px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }
  .js-flapper .digit {
    position: relative;
    display: inline-block;
    margin: 0 0 0 4px;
    border: 1px solid #ddd;
    background-color: #f0f0f0;
    height: 54px;
    width: 40px;
    font-size: inherit;
    line-height: inherit;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-border-radius: 0.3125rem;
    -khtml-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    -ms-border-radius: 0.3125rem;
    -o-border-radius: 0.3125rem;
    border-radius: 0.3125rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
    @media (min-width: 0) and (max-width: 543px) {
      .js-flapper .digit {
        height: 40px;
        width: 20px;
        font-size: 32px;
        line-height: 44px; } }
    .js-flapper .digit div {
      position: absolute;
      text-align: center;
      box-sizing: content-box;
      padding: 0;
      color: #4a4f55;
      background-color: #f6f6f6;
      -webkit-border-radius: 3px;
      -khtml-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      -webkit-border-radius: 0.1875rem;
      -khtml-border-radius: 0.1875rem;
      -moz-border-radius: 0.1875rem;
      -ms-border-radius: 0.1875rem;
      -o-border-radius: 0.1875rem;
      border-radius: 0.1875rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      @media (min-width: 0) and (max-width: 543px) {
        .js-flapper .digit div {
          height: 40px;
          width: 20px;
          font-size: 32px;
          line-height: 44px; } }
    .js-flapper .digit .top {
      top: 0;
      left: 0;
      overflow: hidden;
      clip: rect(0, 40px, 26px, 0); }
      @media (min-width: 0) and (max-width: 543px) {
        .js-flapper .digit .top {
          clip: rect(0, 40px, 21px, 0); } }
    .js-flapper .digit .bottom {
      bottom: 0;
      left: 0;
      overflow: hidden;
      clip: rect(27px, 40px, 54px, 0); }
      @media (min-width: 0) and (max-width: 543px) {
        .js-flapper .digit .bottom {
          clip: rect(22px, 40px, 54px, 0); } }
    .js-flapper .digit:first-child {
      margin: 0; }
  .js-flapper.XXL {
    font-size: 116px;
    line-height: 123px;
    height: 132px; }
    .js-flapper.XXL .digit {
      -webkit-border-radius: 8px;
      -khtml-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
      border-radius: 8px;
      -webkit-border-radius: 0.5rem;
      -khtml-border-radius: 0.5rem;
      -moz-border-radius: 0.5rem;
      -ms-border-radius: 0.5rem;
      -o-border-radius: 0.5rem;
      border-radius: 0.5rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .js-flapper.XXL .digit div {
        -webkit-border-radius: 6px;
        -khtml-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
        border-radius: 6px;
        -webkit-border-radius: 0.375rem;
        -khtml-border-radius: 0.375rem;
        -moz-border-radius: 0.375rem;
        -ms-border-radius: 0.375rem;
        -o-border-radius: 0.375rem;
        border-radius: 0.375rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .js-flapper.XXL .digit .top {
        clip: rect(0, 96px, 64px, 0); }
      .js-flapper.XXL .digit .bottom {
        clip: rect(65px, 96px, 128px, 0); }
  .js-flapper.XL {
    font-size: 89px;
    line-height: 92px;
    height: 100px; }
    .js-flapper.XL .digit {
      margin: 0 0 0 4px;
      -webkit-border-radius: 7px;
      -khtml-border-radius: 7px;
      -moz-border-radius: 7px;
      -ms-border-radius: 7px;
      -o-border-radius: 7px;
      border-radius: 7px;
      -webkit-border-radius: 0.4375rem;
      -khtml-border-radius: 0.4375rem;
      -moz-border-radius: 0.4375rem;
      -ms-border-radius: 0.4375rem;
      -o-border-radius: 0.4375rem;
      border-radius: 0.4375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .js-flapper.XL .digit:first-child {
        margin: 0; }
      .js-flapper.XL .digit div {
        -webkit-border-radius: 5px;
        -khtml-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        -webkit-border-radius: 0.3125rem;
        -khtml-border-radius: 0.3125rem;
        -moz-border-radius: 0.3125rem;
        -ms-border-radius: 0.3125rem;
        -o-border-radius: 0.3125rem;
        border-radius: 0.3125rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .js-flapper.XL .digit .top {
        clip: rect(0, 72px, 47px, 0); }
      .js-flapper.XL .digit .bottom {
        clip: rect(48px, 72px, 96px, 0); }
  .js-flapper.L {
    font-size: 66px;
    line-height: 70px;
    height: 76px; }
    .js-flapper.L .digit {
      margin: 0 0 0 4px;
      -webkit-border-radius: 6px;
      -khtml-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      -o-border-radius: 6px;
      border-radius: 6px;
      -webkit-border-radius: 0.375rem;
      -khtml-border-radius: 0.375rem;
      -moz-border-radius: 0.375rem;
      -ms-border-radius: 0.375rem;
      -o-border-radius: 0.375rem;
      border-radius: 0.375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .js-flapper.L .digit:first-child {
        margin: 0; }
      .js-flapper.L .digit div {
        -webkit-border-radius: 4px;
        -khtml-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        -webkit-border-radius: 0.25rem;
        -khtml-border-radius: 0.25rem;
        -moz-border-radius: 0.25rem;
        -ms-border-radius: 0.25rem;
        -o-border-radius: 0.25rem;
        border-radius: 0.25rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .js-flapper.L .digit .top {
        clip: rect(0, 54px, 35px, 0); }
      .js-flapper.L .digit .bottom {
        clip: rect(36px, 54px, 72px, 0); }
  .js-flapper.S {
    font-size: 36px;
    line-height: 39px;
    height: 44px; }
    .js-flapper.S .digit {
      margin: 0 0 0 2px;
      -webkit-border-radius: 4px;
      -khtml-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px;
      -webkit-border-radius: 0.25rem;
      -khtml-border-radius: 0.25rem;
      -moz-border-radius: 0.25rem;
      -ms-border-radius: 0.25rem;
      -o-border-radius: 0.25rem;
      border-radius: 0.25rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .js-flapper.S .digit:first-child {
        margin: 0; }
      .js-flapper.S .digit div {
        -webkit-border-radius: 2px;
        -khtml-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
        -webkit-border-radius: 0.125rem;
        -khtml-border-radius: 0.125rem;
        -moz-border-radius: 0.125rem;
        -ms-border-radius: 0.125rem;
        -o-border-radius: 0.125rem;
        border-radius: 0.125rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .js-flapper.S .digit .top {
        clip: rect(0, 30px, 19px, 0); }
      .js-flapper.S .digit .bottom {
        clip: rect(20px, 30px, 40px, 0); }
  .js-flapper.XS {
    font-size: 28px;
    line-height: 30px;
    height: 34px; }
    .js-flapper.XS .digit {
      margin: 0 0 0 2px;
      -webkit-border-radius: 3px;
      -khtml-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      -webkit-border-radius: 0.1875rem;
      -khtml-border-radius: 0.1875rem;
      -moz-border-radius: 0.1875rem;
      -ms-border-radius: 0.1875rem;
      -o-border-radius: 0.1875rem;
      border-radius: 0.1875rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .js-flapper.XS .digit:first-child {
        margin: 0; }
      .js-flapper.XS .digit div {
        -webkit-border-radius: 1px;
        -khtml-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px;
        -webkit-border-radius: 0.0625rem;
        -khtml-border-radius: 0.0625rem;
        -moz-border-radius: 0.0625rem;
        -ms-border-radius: 0.0625rem;
        -o-border-radius: 0.0625rem;
        border-radius: 0.0625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .js-flapper.XS .digit .top {
        clip: rect(0, 24px, 14px, 0); }
      .js-flapper.XS .digit .bottom {
        clip: rect(15px, 24px, 30px, 0); }
  .js-flapper.light .digit {
    border: 1px solid #ddd;
    background-color: #f0f0f0; }
    .js-flapper.light .digit div {
      color: #4a4f55;
      padding: 0;
      background-color: #f6f6f6; }

/* ==========================================================================
   # Hero Banner Styles
   ========================================================================== */
.fmo-hero-module,
.fmo-hero-module--article-page,
.fmo-hero-module--normal-page {
  border-right: none;
  border-left: none;
  position: relative;
  z-index: 1; }

.fmo-hero-module--article-page {
  height: 200px; }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-hero-module--article-page {
      height: 130px; } }

.fmo-hero-module--normal-page {
  height: 50%; }
  @media only screen and (max-height: 543px) and (orientation: landscape) {
    .fmo-hero-module--normal-page {
      height: 80%; } }

.fmo-hero-module {
  height: 100%; }
  .fmo-hero-module__video-container {
    position: relative;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden; }
    .fmo-hero-module__video-container__title-container {
      z-index: 2;
      position: absolute;
      top: 40%;
      width: 100%;
      text-align: center;
      color: #fff;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -khtml-transform: translate(-50%, 0%);
      -moz-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      -o-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (min-width: 1920px) {
        .fmo-hero-module__video-container__title-container {
          width: 1620px; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-hero-module__video-container__title-container {
          width: 1170px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-hero-module__video-container__title-container {
          width: 920px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-hero-module__video-container__title-container {
          width: 750px; } }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-hero-module__video-container__title-container {
          max-width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px; } }
      @media (min-height: 421px) and (max-height: 639px) and (orientation: portrait) {
        .fmo-hero-module__video-container__title-container {
          top: calc(50% + 20px);
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -khtml-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
      @media (min-height: 640px) and (max-height: 876px) and (orientation: portrait) {
        .fmo-hero-module__video-container__title-container {
          top: 32%; } }
      .fmo-hero-module__video-container__title-container__headline__text {
        color: #fff;
        font-weight: bold; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-hero-module__video-container__title-container__headline__text {
            font-size: 180%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-hero-module__video-container__title-container__headline__text {
            font-size: 220%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-hero-module__video-container__title-container__headline__text {
            font-size: 280%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-hero-module__video-container__title-container__headline__text {
            font-size: 340%;
            line-height: 1.3; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-hero-module__video-container__title-container__headline__text {
            font-size: 390%;
            line-height: 1.2; } }
        @media (min-width: 1920px) {
          .fmo-hero-module__video-container__title-container__headline__text {
            font-size: 440%;
            line-height: 1.1; } }
      .fmo-hero-module__video-container__title-container__description__text {
        margin: 0 auto;
        color: #fff;
        font-weight: 400; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-hero-module__video-container__title-container__description__text {
            font-size: 130%;
            line-height: 1.42857; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-hero-module__video-container__title-container__description__text {
            font-size: 138%;
            line-height: 1.42857; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-hero-module__video-container__title-container__description__text {
            font-size: 170%;
            line-height: 1.42857; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-hero-module__video-container__title-container__description__text {
            font-size: 190%;
            line-height: 1.42857; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-hero-module__video-container__title-container__description__text {
            font-size: 200%;
            line-height: 1.42857; } }
        @media (min-width: 1920px) {
          .fmo-hero-module__video-container__title-container__description__text {
            font-size: 220%;
            line-height: 1.42857; } }
      .fmo-hero-module__video-container__title-container__btn {
        margin-top: 20px;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: Source Sans Pro, Calibri, sans;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-hero-module__video-container__title-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-hero-module__video-container__title-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-hero-module__video-container__title-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-hero-module__video-container__title-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-hero-module__video-container__title-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-hero-module__video-container__title-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-hero-module__video-container__title-container__btn:focus, .fmo-hero-module__video-container__title-container__btn:active, .fmo-hero-module__video-container__title-container__btn.active, .fmo-hero-module__video-container__title-container__btn:active:focus, .fmo-hero-module__video-container__title-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-hero-module__video-container__title-container__btn:focus, .fmo-hero-module__video-container__title-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-hero-module__video-container__title-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #009688; }
        .fmo-hero-module__video-container__title-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
        body .fmo-hero-module__video-container__title-container__btn {
          font-weight: 500; }
    .fmo-hero-module__video-container__overlay {
      z-index: 1;
      position: absolute;
      background: rgba(67, 16, 112, 0.8);
      width: 100%;
      height: 100%;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      background-image: -webkit-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -khtml-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -moz-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -ms-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -o-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%); }
    .fmo-hero-module__video-container__video {
      position: absolute;
      z-index: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }
    .fmo-hero-module__video-container__bg {
      overflow: hidden;
      height: 100%; }
      .fmo-hero-module__video-container__bg__img {
        width: 100%;
        bottom: 0;
        position: absolute; }
  .fmo-hero-module__image-container {
    position: relative;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden; }
    .fmo-hero-module__image-container__title-container {
      z-index: 2;
      position: absolute;
      top: 40%;
      width: 100%;
      text-align: center;
      color: #fff;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -khtml-transform: translate(-50%, 0%);
      -moz-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      -o-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (min-width: 1920px) {
        .fmo-hero-module__image-container__title-container {
          width: 1620px; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-hero-module__image-container__title-container {
          width: 1170px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-hero-module__image-container__title-container {
          width: 920px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-hero-module__image-container__title-container {
          width: 750px; } }
      @media (min-width: 0) and (max-width: 767px) {
        .fmo-hero-module__image-container__title-container {
          max-width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px; } }
      @media (min-height: 421px) and (max-height: 639px) {
        .fmo-hero-module__image-container__title-container {
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -khtml-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
      @media (min-height: 640px) and (max-height: 876px) {
        .fmo-hero-module__image-container__title-container {
          top: 32%; } }
      .fmo-hero-module__image-container__title-container__headline__text {
        color: #fff;
        font-weight: bold; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-hero-module__image-container__title-container__headline__text {
            font-size: 180%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-hero-module__image-container__title-container__headline__text {
            font-size: 220%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-hero-module__image-container__title-container__headline__text {
            font-size: 280%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-hero-module__image-container__title-container__headline__text {
            font-size: 340%;
            line-height: 1.3; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-hero-module__image-container__title-container__headline__text {
            font-size: 390%;
            line-height: 1.2; } }
        @media (min-width: 1920px) {
          .fmo-hero-module__image-container__title-container__headline__text {
            font-size: 440%;
            line-height: 1.1; } }
      .fmo-hero-module__image-container__title-container__description__text {
        margin: 0 auto;
        color: #fff;
        font-weight: 400; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-hero-module__image-container__title-container__description__text {
            font-size: 130%;
            line-height: 1.42857; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-hero-module__image-container__title-container__description__text {
            font-size: 138%;
            line-height: 1.42857; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-hero-module__image-container__title-container__description__text {
            font-size: 170%;
            line-height: 1.42857; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-hero-module__image-container__title-container__description__text {
            font-size: 190%;
            line-height: 1.42857; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-hero-module__image-container__title-container__description__text {
            font-size: 200%;
            line-height: 1.42857; } }
        @media (min-width: 1920px) {
          .fmo-hero-module__image-container__title-container__description__text {
            font-size: 220%;
            line-height: 1.42857; } }
      .fmo-hero-module__image-container__title-container__btn {
        margin-top: 20px;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: inherit;
        border: none;
        cursor: pointer;
        text-decoration: none;
        background-color: #009688;
        color: rgba(255, 255, 255, 0.9);
        font-family: Source Sans Pro, Calibri, sans;
        font-weight: light;
        min-width: 88px;
        -webkit-border-radius: 250px;
        -khtml-border-radius: 250px;
        -moz-border-radius: 250px;
        -ms-border-radius: 250px;
        -o-border-radius: 250px;
        border-radius: 250px;
        -webkit-border-radius: 15.625rem;
        -khtml-border-radius: 15.625rem;
        -moz-border-radius: 15.625rem;
        -ms-border-radius: 15.625rem;
        -o-border-radius: 15.625rem;
        border-radius: 15.625rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        font-weight: 100;
        -webkit-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-hero-module__image-container__title-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 6px 16px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-hero-module__image-container__title-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 8px 16px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-hero-module__image-container__title-container__btn {
            font-size: 150%;
            line-height: 2rem;
            padding: 10px 20px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-hero-module__image-container__title-container__btn {
            font-size: 160%;
            line-height: 1.32rem;
            padding: 10px 20px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-hero-module__image-container__title-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        @media (min-width: 1920px) {
          .fmo-hero-module__image-container__title-container__btn {
            font-size: 180%;
            line-height: 1.32rem;
            padding: 12px 20px; } }
        .fmo-hero-module__image-container__title-container__btn:focus, .fmo-hero-module__image-container__title-container__btn:active, .fmo-hero-module__image-container__title-container__btn.active, .fmo-hero-module__image-container__title-container__btn:active:focus, .fmo-hero-module__image-container__title-container__btn.active:focus {
          outline: 0;
          outline-offset: 0;
          text-decoration: none; }
        .fmo-hero-module__image-container__title-container__btn:focus, .fmo-hero-module__image-container__title-container__btn:hover {
          outline: none;
          text-decoration: none;
          -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
        .fmo-hero-module__image-container__title-container__btn:hover {
          color: rgba(255, 255, 255, 0.7);
          background-color: #009688; }
        .fmo-hero-module__image-container__title-container__btn:focus {
          color: rgba(255, 255, 255, 0.7); }
        body .fmo-hero-module__image-container__title-container__btn {
          font-weight: 500; }
    .fmo-hero-module__image-container__overlay {
      z-index: 1;
      position: absolute;
      background: rgba(67, 16, 112, 0.8);
      width: 100%;
      height: 100%;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      /*@include linear-gradient(bottom, rgba($primary-color, 1) 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);*/
      background-image: -webkit-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -khtml-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -moz-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -ms-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: -o-linear-gradient(bottom, #431070 0%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
      background-image: linear-gradient(to top, #431070 0%, rgba(67, 16, 112, 0) 31%, rgba(67, 16, 112, 0) 100%); }
    .fmo-hero-module__image-container__bg {
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      overflow: hidden;
      height: 100%;
      position: relative;
      bottom: 1px; }
      .fmo-hero-module__image-container__bg__img {
        object-fit: cover;
        object-position: center;
        width: 100%; }

.no-objectfit .fmo-hero-module__image-container__bg {
  height: auto; }

.no-objectfit .fmo-hero-module__image-container__bg__img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  -khtml-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0; }

/* ==========================================================================
   # Incremental input
   ========================================================================== */
.fmo-incremental-input {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: enter;
  -ms-flex-pack: enter;
  -webkit-justify-content: enter;
  -khtml-justify-content: enter;
  -moz-justify-content: enter;
  -ms-justify-content: enter;
  -o-justify-content: enter;
  justify-content: enter;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  -khtml-align-content: stretch;
  -moz-align-content: stretch;
  -ms-align-content: stretch;
  -o-align-content: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -khtml-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch; }
  .fmo-incremental-input__minus, .fmo-incremental-input__field, .fmo-incremental-input__plus {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -khtml-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -o-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: auto;
    -webkit-align-self: auto;
    -khtml-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    -o-align-self: auto;
    align-self: auto; }
  .fmo-incremental-input__minus, .fmo-incremental-input__plus {
    width: 20%; }
    .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
      padding: 16px 14px;
      border: none;
      background: #fdfdfd;
      outline: none;
      text-transform: uppercase;
      text-transform: uppercase;
      letter-spacing: inherit;
      border: none;
      cursor: pointer;
      text-decoration: none;
      background-color:#f48117;
      color: rgba(255, 255, 255, 0.9);
      font-family: Source Sans Pro, Calibri, sans;
      font-weight: light;
      min-width: 88px;
      -webkit-border-radius: 250px;
      -khtml-border-radius: 250px;
      -moz-border-radius: 250px;
      -ms-border-radius: 250px;
      -o-border-radius: 250px;
      border-radius: 250px;
      -webkit-border-radius: 15.625rem;
      -khtml-border-radius: 15.625rem;
      -moz-border-radius: 15.625rem;
      -ms-border-radius: 15.625rem;
      -o-border-radius: 15.625rem;
      border-radius: 15.625rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
      font-weight: 100;
      -webkit-transition: all 0.15s ease-in-out;
      -o-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out;
      -webkit-border-radius: 35px;
      -khtml-border-radius: 35px;
      -moz-border-radius: 35px;
      -ms-border-radius: 35px;
      -o-border-radius: 35px;
      border-radius: 35px;
      -webkit-border-radius: 2.1875rem;
      -khtml-border-radius: 2.1875rem;
      -moz-border-radius: 2.1875rem;
      -ms-border-radius: 2.1875rem;
      -o-border-radius: 2.1875rem;
      border-radius: 2.1875rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          font-size: 150%;
          line-height: 2rem;
          padding: 6px 16px; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          font-size: 150%;
          line-height: 2rem;
          padding: 8px 16px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          font-size: 150%;
          line-height: 2rem;
          padding: 10px 20px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          font-size: 160%;
          line-height: 1.32rem;
          padding: 10px 20px; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          font-size: 180%;
          line-height: 1.32rem;
          padding: 12px 20px; } }
      @media (min-width: 1920px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          font-size: 180%;
          line-height: 1.32rem;
          padding: 12px 20px; } }
      .fmo-incremental-input__minus__btn:focus, .fmo-incremental-input__minus__btn:active, .fmo-incremental-input__minus__btn.active, .fmo-incremental-input__minus__btn:active:focus, .fmo-incremental-input__minus__btn.active:focus, .fmo-incremental-input__plus__btn:focus, .fmo-incremental-input__plus__btn:active, .fmo-incremental-input__plus__btn.active, .fmo-incremental-input__plus__btn:active:focus, .fmo-incremental-input__plus__btn.active:focus {
        outline: 0;
        outline-offset: 0;
        text-decoration: none; }
      .fmo-incremental-input__minus__btn:focus, .fmo-incremental-input__minus__btn:hover, .fmo-incremental-input__plus__btn:focus, .fmo-incremental-input__plus__btn:hover {
        outline: none;
        text-decoration: none;
        -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
        box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
      .fmo-incremental-input__minus__btn:hover, .fmo-incremental-input__plus__btn:hover {
        color: rgba(255, 255, 255, 0.7);
        background-color: #f48117; }
      .fmo-incremental-input__minus__btn:focus, .fmo-incremental-input__plus__btn:focus {
        color: rgba(255, 255, 255, 0.7); }
      @media (min-width: 544px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          min-width: 40px; } }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn {
          min-width: 10px; } }
      .fmo-incremental-input__minus__btn:focus, .fmo-incremental-input__plus__btn:focus {
        color: #fff; }
      .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
        line-height: 0.6;
        font-weight: 600;
        font-size: 100%; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
            font-size: 14px; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
            font-size: 15px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
            font-size: 16px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
            font-size: 16px; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
            font-size: 17px; } }
        @media (min-width: 1920px) {
          .fmo-incremental-input__minus__btn > .glyphicon, .fmo-incremental-input__plus__btn > .glyphicon {
            font-size: 18px; } }
  .fmo-incremental-input___minus {
    padding-left: 12px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -khtml-order: 0;
    -moz-order: 0;
    -ms-order: 0;
    -o-order: 0;
    order: 0; }
  .fmo-incremental-input__field {
    width: 60%;
    padding: 0;
    margin: 0 20px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -khtml-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
    -webkit-box-flex: 4;
    -moz-box-flex: 4;
    -webkit-flex: 4 1 auto;
    -khtml-flex: 4 1 auto;
    -moz-flex: 4 1 auto;
    -ms-flex: 4 1 auto;
    -o-flex: 4 1 auto;
    flex: 4 1 auto; }
    .fmo-incremental-input__field__input {
      text-align: center;
      font-weight: 600; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-incremental-input__field__input {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-incremental-input__field__input {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-incremental-input__field__input {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-incremental-input__field__input {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-incremental-input__field__input {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-incremental-input__field__input {
          font-size: 300%;
          line-height: 1.1; } }
  .fmo-incremental-input__plus {
    padding-right: 12px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -khtml-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    order: 2; }

.lockerbox label,
label.lockerbox-inline {
  cursor: pointer;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.26); }
  .form-group.is-focused .lockerbox label, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .lockerbox label, .is-focused.fmo-download-dialog__form-group .lockerbox label, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .lockerbox label,
  .form-group.is-focused
  label.lockerbox-inline,
  .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
  label.lockerbox-inline,
  .is-focused.fmo-download-dialog__form-group
  label.lockerbox-inline,
  .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
  label.lockerbox-inline {
    color: rgba(0, 0, 0, 0.26); }
    .form-group.is-focused .lockerbox label:hover, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .lockerbox label:hover, .is-focused.fmo-download-dialog__form-group .lockerbox label:hover, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .lockerbox label:hover, .form-group.is-focused .lockerbox label:focus, .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .lockerbox label:focus, .is-focused.fmo-download-dialog__form-group .lockerbox label:focus, .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .lockerbox label:focus,
    .form-group.is-focused
    label.lockerbox-inline:hover,
    .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.lockerbox-inline:hover,
    .is-focused.fmo-download-dialog__form-group
    label.lockerbox-inline:hover,
    .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.lockerbox-inline:hover,
    .form-group.is-focused
    label.lockerbox-inline:focus,
    .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.lockerbox-inline:focus,
    .is-focused.fmo-download-dialog__form-group
    label.lockerbox-inline:focus,
    .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.lockerbox-inline:focus {
      color: rgba(0, 0, 0, 0.54); }
    fieldset[disabled] .form-group.is-focused .lockerbox label, fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .lockerbox label, fieldset[disabled] .is-focused.fmo-download-dialog__form-group .lockerbox label, fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group .lockerbox label,
    fieldset[disabled] .form-group.is-focused
    label.lockerbox-inline,
    fieldset[disabled] .is-focused.fmo-cpc-calculator__container__form__slider__slides__slide__form-group
    label.lockerbox-inline,
    fieldset[disabled] .is-focused.fmo-download-dialog__form-group
    label.lockerbox-inline,
    fieldset[disabled] .is-focused.fmo-macro-calculator__container__form__slider__slides__slide__form-group
    label.lockerbox-inline {
      color: rgba(0, 0, 0, 0.26); }

.lockerbox input[type=checkbox],
label.lockerbox-inline input[type=checkbox] {
  position: absolute;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  left: 0;
  pointer-events: none;
  opacity: 0;
  filter: alpha(opacity=0); }

.lockerbox .lockerbox-material,
label.lockerbox-inline .lockerbox-material {
  vertical-align: middle;
  position: relative;
  top: 3px; }
  .lockerbox .lockerbox-material::before,
  label.lockerbox-inline .lockerbox-material::before {
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.84);
    height: 20px;
    width: 20px;
    z-index: 1;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale3d(2.3, 2.3, 1);
    transform: -khtml-scale3d(2.3, 2.3, 1);
    transform: -moz-scale3d(2.3, 2.3, 1);
    transform: -ms-scale3d(2.3, 2.3, 1);
    transform: -o-scale3d(2.3, 2.3, 1);
    transform: scale3d(2.3, 2.3, 1);
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
  .lockerbox .lockerbox-material .check,
  label.lockerbox-inline .lockerbox-material .check {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #009688;
    overflow: hidden;
    z-index: 1;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-border-radius: 0.25rem;
    -khtml-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    border-radius: 0.25rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
  .lockerbox .lockerbox-material .check::before,
  label.lockerbox-inline .lockerbox-material .check::before {
    position: absolute;
    display: block;
    margin-top: 0px;
    margin-left: 2px;
    width: 0;
    height: 0;
    font-size: 0.75em;
    font-family: 'Glyphicons Halflings';
    color: #cdcdcd;
    background-color: #fff;
    content: "\e033"; }

.lockerbox input[type=checkbox]:focus + .lockerbox-material .check::after,
label.lockerbox-inline input[type=checkbox]:focus + .lockerbox-material .check::after {
  opacity: 0.2;
  filter: alpha(opacity=20); }

.lockerbox input[type=checkbox]:focus:checked + .lockerbox-material::before,
label.lockerbox-inline input[type=checkbox]:focus:checked + .lockerbox-material::before {
  -webkit-animation: rippleOn 500ms;
  -o-animation: rippleOn 500ms;
  animation: rippleOn 500ms; }

.lockerbox input[type=checkbox]:focus:checked + .lockerbox-material .check::after,
label.lockerbox-inline input[type=checkbox]:focus:checked + .lockerbox-material .check::after {
  -webkit-animation: rippleOn 500ms forwards;
  -o-animation: rippleOn 500ms forwards;
  animation: rippleOn 500ms forwards; }

.lockerbox input[type=checkbox]:focus:not(:checked) + .lockerbox-material::before,
label.lockerbox-inline input[type=checkbox]:focus:not(:checked) + .lockerbox-material::before {
  -webkit-animation: rippleOff 500ms;
  -o-animation: rippleOff 500ms;
  animation: rippleOff 500ms; }

.lockerbox input[type=checkbox]:focus:not(:checked) + .lockerbox-material .check::after,
label.lockerbox-inline input[type=checkbox]:focus:not(:checked) + .lockerbox-material .check::after {
  -webkit-animation: rippleOff 500ms forwards;
  -o-animation: rippleOff 500ms forwards;
  animation: rippleOff 500ms forwards; }

.lockerbox input[type=checkbox]:checked + .lockerbox-material .check,
label.lockerbox-inline input[type=checkbox]:checked + .lockerbox-material .check {
  color: #009688;
  border-color: #009688; }
  .lockerbox input[type=checkbox]:checked + .lockerbox-material .check::before,
  label.lockerbox-inline input[type=checkbox]:checked + .lockerbox-material .check::before {
    font-size: 0.75em;
    font-family: 'Glyphicons Halflings';
    color: #009688;
    background-color: dimgrey;
    content: "\e033"; }

fieldset[disabled] .lockerbox,
fieldset[disabled] .lockerbox input[type=checkbox],
.lockerbox input[type=checkbox][disabled]:not(:checked) ~ .lockerbox-material .check::before,
.lockerbox input[type=checkbox][disabled]:not(:checked) ~ .lockerbox-material .check,
.lockerbox input[type=checkbox][disabled] + .circle, fieldset[disabled]
label.lockerbox-inline,
fieldset[disabled]
label.lockerbox-inline input[type=checkbox],
label.lockerbox-inline input[type=checkbox][disabled]:not(:checked) ~ .lockerbox-material .check::before,
label.lockerbox-inline input[type=checkbox][disabled]:not(:checked) ~ .lockerbox-material .check,
label.lockerbox-inline input[type=checkbox][disabled] + .circle {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.lockerbox input[type=checkbox][disabled] + .lockerbox-material .check::after,
label.lockerbox-inline input[type=checkbox][disabled] + .lockerbox-material .check::after {
  background-color: rgba(0, 0, 0, 0.87);
  transform: -webkit-rotate(-45deg);
  transform: -khtml-rotate(-45deg);
  transform: -moz-rotate(-45deg);
  transform: -ms-rotate(-45deg);
  transform: -o-rotate(-45deg);
  transform: rotate(-45deg); }

@-webkit-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes rippleOn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-webkit-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes rippleOff {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }
  50% {
    opacity: 0.2;
    filter: alpha(opacity=20); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

/* ==========================================================================
   # (Macro) CPC Single Page Calculator
   ========================================================================== */
.fmo-macro-calculator-dialog {
  color: #fff;
  background-color: #009688;
  overflow: visible;
  text-align: center; }
  .fmo-macro-calculator-dialog__title {
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-macro-calculator-dialog__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-macro-calculator-dialog__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-macro-calculator-dialog__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-macro-calculator-dialog__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-macro-calculator-dialog__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-macro-calculator-dialog__title {
        font-size: 300%;
        line-height: 1.1; } }
  .fmo-macro-calculator-dialog__text {
    color: #fff;
    margin: 20px 0;
    padding: 0; }
  .fmo-macro-calculator-dialog .btn-wrapper {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    margin-top: 20px;
    justify-content: space-around; }
    .fmo-macro-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary {
      margin: 7.5px;
      background-color: rgba(0, 0, 0, 0.55);
      height: 44px;
      width: 100%;
      line-height: 1.7;
      -webkit-border-radius: 70px;
      -khtml-border-radius: 70px;
      -moz-border-radius: 70px;
      -ms-border-radius: 70px;
      -o-border-radius: 70px;
      border-radius: 70px;
      -webkit-border-radius: 4.375rem;
      -khtml-border-radius: 4.375rem;
      -moz-border-radius: 4.375rem;
      -ms-border-radius: 4.375rem;
      -o-border-radius: 4.375rem;
      border-radius: 4.375rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
      .fmo-macro-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary:active, .fmo-macro-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary:focus, .fmo-macro-calculator-dialog .btn-wrapper .btn.btn-raised.btn-primary:hover {
        background-color: rgba(0, 0, 0, 0.5); }

.fmo-macro-calculator {
  padding: 48px 24px;
  padding: 0;
  background-color: #fff;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  @media (min-width: 0) and (max-width: 991px) {
    .fmo-macro-calculator {
      padding-top: 0;
      padding-bottom: 0; } }
  .fmo-macro-calculator::before, .fmo-macro-calculator::after {
    content: " ";
    display: table; }
  .fmo-macro-calculator::after {
    clear: both; }
  .fmo-macro-calculator__title {
    text-align: center;
    background-color: #009688;
    padding: 20px;
    z-index: 3; }
    .fmo-macro-calculator__title__text {
      color: #fff;
      margin: 0;
      padding: 0;
      font-weight: 400; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-macro-calculator__title__text {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-macro-calculator__title__text {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-macro-calculator__title__text {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-macro-calculator__title__text {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-macro-calculator__title__text {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-macro-calculator__title__text {
          font-size: 300%;
          line-height: 1.1; } }
  .fmo-macro-calculator__container {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -khtml-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-line-pack: space-between;
    -webkit-align-content: space-between;
    -khtml-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -khtml-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }
    .fmo-macro-calculator__container__sub-title {
      text-align: center;
      margin-top: 50px;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-macro-calculator__container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-macro-calculator__container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-macro-calculator__container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-macro-calculator__container__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-macro-calculator__container__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-macro-calculator__container__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 0) and (max-width: 991px) {
        .fmo-macro-calculator__container__sub-title {
          margin-top: 20px; } }
    .fmo-macro-calculator__container__form {
      width: 100%;
      background-color: #431070;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -khtml-order: 2;
      -moz-order: 2;
      -ms-order: 2;
      -o-order: 2;
      order: 2;
      -webkit-box-flex: 2;
      -moz-box-flex: 2;
      -webkit-flex: 2 1 auto;
      -khtml-flex: 2 1 auto;
      -moz-flex: 2 1 auto;
      -ms-flex: 2 1 auto;
      -o-flex: 2 1 auto;
      flex: 2 1 auto;
      -ms-flex-item-align: auto;
      -webkit-align-self: auto;
      -khtml-align-self: auto;
      -moz-align-self: auto;
      -ms-align-self: auto;
      -o-align-self: auto;
      align-self: auto; }
      @media (min-width: 0) and (max-width: 991px) {
        .fmo-macro-calculator__container__form {
          width: 100%; } }
      .fmo-macro-calculator__container__form__slider {
        transition-property: height;
        transition-duration: 1s;
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 650px; }
        @media (min-width: 544px) and (max-width: 991px) {
          .fmo-macro-calculator__container__form__slider {
            height: 560px; } }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-macro-calculator__container__form__slider {
            height: 350px; } }
        .fmo-macro-calculator__container__form__slider__slides {
          position: relative;
          width: 100%;
          height: 100%;
          will-change: transform;
          -webkit-transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1);
          -o-transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1);
          transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1); }
          .fmo-macro-calculator__container__form__slider__slides__slide {
            float: left;
            width: 100%;
            height: 100%;
            background-color: #fff;
            padding: 60px;
            padding-bottom: 0;
            padding-top: 30px; }
            @media (min-width: 0) and (max-width: 991px) {
              .fmo-macro-calculator__container__form__slider__slides__slide {
                padding: 20px; } }
            .fmo-macro-calculator__container__form__slider__slides__slide__title {
              font-weight: 800;
              text-align: center;
              padding: 6px 8px 16px;
              font-weight: bold; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__title {
                  font-size: 180%;
                  line-height: 1.3; } }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__title {
                  font-size: 220%;
                  line-height: 1.3; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__title {
                  font-size: 240%;
                  line-height: 1.3; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__title {
                  font-size: 260%;
                  line-height: 1.3; } }
              @media (min-width: 1200px) and (max-width: 1919px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__title {
                  font-size: 280%;
                  line-height: 1.2; } }
              @media (min-width: 1920px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__title {
                  font-size: 300%;
                  line-height: 1.1; } }
            .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
              text-align: center;
              font-size: 18px;
              font-weight: 600;
              margin-left: -10px; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 160%;
                  line-height: 1.42857; } }
              @media (min-width: 1200px) and (max-width: 1919px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 180%;
                  line-height: 1.42857; } }
              @media (min-width: 1920px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__sub-title {
                  font-size: 180%;
                  line-height: 1.42857; } }
            .fmo-macro-calculator__container__form__slider__slides__slide__small-sub-title {
              font-size: 17px;
              text-align: center; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
              margin-top: 10px;
              margin-bottom: 10px;
              text-align: left;
              font-weight: 400; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 544px) and (max-width: 767px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 768px) and (max-width: 991px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 150%;
                  line-height: 1.3; } }
              @media (min-width: 992px) and (max-width: 1199px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 160%;
                  line-height: 1.42857; } }
              @media (min-width: 1200px) and (max-width: 1919px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 180%;
                  line-height: 1.42857; } }
              @media (min-width: 1920px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  font-size: 180%;
                  line-height: 1.42857; } }
              @media (min-width: 0) and (max-width: 991px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group__title {
                  margin-top: 0; } }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group.sliders {
              margin: 10px 0 0; }
              @media (min-width: 0) and (max-width: 991px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__form-group.sliders {
                  margin: 0;
                  padding-bottom: 0px; } }
              .fmo-macro-calculator__container__form__slider__slides__slide__form-group.sliders .total-label {
                margin-bottom: 20px; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-macro-calculator__container__form__slider__slides__slide__form-group__label.control-label {
              color: #009688; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-macro-calculator__container__form__slider__slides__slide__form-group__input.form-control {
              background-image: linear-gradient(#009688, #009688); }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-macro-calculator__container__form__slider__slides__slide__form-group__input.form-control.error {
              background-image: linear-gradient(#E74683, #E74683); }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__label.control-label {
              color: #431070; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__label.checkbox-label.other-label {
              color: #431070; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group.is-focused .fmo-macro-calculator__container__form__slider__slides__slide__form-group__label.checkbox-label.other-label {
              color: #431070; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__input.form-control {
              color: #431070;
              font-weight: 600; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__help {
              color: rgba(0, 0, 0, 0.55); }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__help-error {
              color: rgba(255, 0, 0, 0.8); }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group__range-slider {
              width: 100%; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio input[type=radio]:checked ~ .circle,
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group label.radio-inline input[type=radio]:checked ~ .circle {
              border-color: #009688; }
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group .radio input[type=radio]:checked ~ .check,
            .fmo-macro-calculator__container__form__slider__slides__slide__form-group label.radio-inline input[type=radio]:checked ~ .check {
              background-color: #009688; }
            .fmo-macro-calculator__container__form__slider__slides__slide__container {
              position: relative;
              display: block;
              width: 100%;
              height: 330px;
              display: flex;
              flex-direction: column;
              flex-wrap: nowrap;
              justify-content: center;
              align-content: stretch;
              align-items: center; }
              @media (min-width: 0) and (max-width: 543px) {
                .fmo-macro-calculator__container__form__slider__slides__slide__container {
                  height: 120px; } }
              .fmo-macro-calculator__container__form__slider__slides__slide__container .fmo-cpc-calculator__container__form__slider__slides__slide__sub-title {
                order: 0;
                flex: 0 1 auto;
                align-self: auto; }

.fmo-container--cpc-macro-page {
  position: relative;
  margin-top: -40px;
  min-height: 20px;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  width: 1620px;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out; }
  @media (min-width: 1920px) {
    .fmo-container--cpc-macro-page {
      width: 1620px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--cpc-macro-page {
      width: 1170px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--cpc-macro-page {
      width: 920px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--cpc-macro-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--cpc-macro-page {
      width: auto;
      margin-left: 10px;
      margin-right: 10px; } }
  .fmo-container--cpc-macro-page__row {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0px 0px 3px 0px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-border-radius: 0.375rem;
    -khtml-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-container--cpc-macro-page__row {
        padding: 0px;
        padding-bottom: 46px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-container--cpc-macro-page__row {
        padding: 0px;
        padding-bottom: 24px; } }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-container--cpc-macro-page__row {
        padding: 0px;
        padding-bottom: 24px; } }
    .fmo-container--cpc-macro-page__row::before, .fmo-container--cpc-macro-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--cpc-macro-page__row::after {
      clear: both; }
    .fmo-container--cpc-macro-page__row:first-child {
      margin-top: 0px; }
    .fmo-container--cpc-macro-page__row:last-child {
      margin-bottom: 20px; }
    .fmo-container--cpc-macro-page__row--no-padding.fmo-container--cpc-macro-page__row {
      padding: 0; }
    .fmo-container--cpc-macro-page__row--no-bg.fmo-container--cpc-macro-page__row {
      background-color: transparent;
      padding: 0; }
    .fmo-container--cpc-macro-page__row__title {
      font-family: Montserrat, Verdana;
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--cpc-macro-page__row__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--cpc-macro-page__row__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--cpc-macro-page__row__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--cpc-macro-page__row__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--cpc-macro-page__row__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-container--cpc-macro-page__row__title {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-container--cpc-macro-page__row__sub-title {
      font-family: Source Sans Pro, Calibri, sans;
      color: #4b4f54;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--cpc-macro-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--cpc-macro-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--cpc-macro-page__row__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--cpc-macro-page__row__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--cpc-macro-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-container--cpc-macro-page__row__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
    .fmo-container--cpc-macro-page__row__content {
      text-align: center;
      font-family: Source Sans Pro, Calibri, sans;
      color: #4b4f54;
      font-weight: 100;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-container--cpc-macro-page__row__content {
          font-size: 14px;
          line-height: 1.58; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-container--cpc-macro-page__row__content {
          font-size: 15px;
          line-height: 1.68; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-container--cpc-macro-page__row__content {
          font-size: 16px;
          line-height: 1.78; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-container--cpc-macro-page__row__content {
          font-size: 16px;
          line-height: 1.88; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-container--cpc-macro-page__row__content {
          font-size: 17px;
          line-height: 1.98; } }
      @media (min-width: 1920px) {
        .fmo-container--cpc-macro-page__row__content {
          font-size: 18px;
          line-height: 2; } }

.fmo-cpc-calculator-spacer {
  width: 100%;
  height: 50px;
  background-color: #431070; }
  .fmo-cpc-calculator-spacer-bottom {
    height: 1px; }

.fmo-container--cpc-macro-contact-page {
  position: relative;
  margin-top: 0;
  margin-bottom: 80px;
  min-height: 20px;
  background-color: #fff;
  z-index: 2;
  width: 1580px;
  overflow: visible;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 0.375rem;
  -khtml-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out; }
  @media (min-width: 1920px) {
    .fmo-container--cpc-macro-contact-page {
      width: 1130px; } }
  @media (min-width: 1200px) and (max-width: 1919px) {
    .fmo-container--cpc-macro-contact-page {
      width: 1125px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fmo-container--cpc-macro-contact-page {
      width: 800px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .fmo-container--cpc-macro-contact-page {
      width: 750px; } }
  @media (min-width: 0) and (max-width: 767px) {
    .fmo-container--cpc-macro-contact-page {
      width: auto; } }
  .fmo-container--cpc-macro-contact-page__row {
    padding: 0; }
    .fmo-container--cpc-macro-contact-page__row::before, .fmo-container--cpc-macro-contact-page__row::after {
      content: " ";
      display: table; }
    .fmo-container--cpc-macro-contact-page__row::after {
      clear: both; }
    .fmo-container--cpc-macro-contact-page__row:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }

@media (min-width: 1920px) {
  .fmo-container--cpc-macro-contact-page {
    width: 1580px; } }

.fmo-cpc-macro-contact-form {
  position: relative;
  min-height: 0px; }
  .fmo-cpc-macro-contact-form__details-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 28px calc(50% - -30px) 28px 28px; }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-cpc-macro-contact-form__details-container {
        padding: 20px; } }
    .fmo-cpc-macro-contact-form__details-container__details {
      text-align: right;
      width: 100%;
      float: right;
      padding: 14px 0; }
      .fmo-cpc-macro-contact-form__details-container__details__head-office, .fmo-cpc-macro-contact-form__details-container__details__email {
        text-align: right;
        padding-right: 30px;
        border-right: 1px solid #bbbdbf; }
        .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
          font-weight: 500; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
              font-size: 160%;
              line-height: 1.42857; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
              font-size: 180%;
              line-height: 1.42857; } }
          @media (min-width: 1920px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__title, .fmo-cpc-macro-contact-form__details-container__details__email__title {
              font-size: 180%;
              line-height: 1.42857; } }
        .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
          word-wrap: break-word;
          font-weight: 100; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-cpc-macro-contact-form__details-container__details__head-office__desc, .fmo-cpc-macro-contact-form__details-container__details__email__desc {
              font-size: 18px;
              line-height: 2; } }
      .fmo-cpc-macro-contact-form__details-container__details__phone, .fmo-cpc-macro-contact-form__details-container__details__email-hr, .fmo-cpc-macro-contact-form__details-container__details__find-us {
        text-align: left; }
        .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
          font-weight: 500; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
              font-size: 150%;
              line-height: 1.3; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
              font-size: 160%;
              line-height: 1.42857; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
              font-size: 180%;
              line-height: 1.42857; } }
          @media (min-width: 1920px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__title, .fmo-cpc-macro-contact-form__details-container__details__email-hr__title, .fmo-cpc-macro-contact-form__details-container__details__find-us__title {
              font-size: 180%;
              line-height: 1.42857; } }
        .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
          word-wrap: break-word;
          font-weight: 100; }
          @media (min-width: 0) and (max-width: 543px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
              font-size: 14px;
              line-height: 1.58; } }
          @media (min-width: 544px) and (max-width: 767px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
              font-size: 15px;
              line-height: 1.68; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
              font-size: 16px;
              line-height: 1.78; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
              font-size: 16px;
              line-height: 1.88; } }
          @media (min-width: 1200px) and (max-width: 1919px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
              font-size: 17px;
              line-height: 1.98; } }
          @media (min-width: 1920px) {
            .fmo-cpc-macro-contact-form__details-container__details__phone__desc, .fmo-cpc-macro-contact-form__details-container__details__email-hr__desc, .fmo-cpc-macro-contact-form__details-container__details__find-us__desc {
              font-size: 18px;
              line-height: 2; } }
      .fmo-cpc-macro-contact-form__details-container__details__find-us {
        margin-top: 82px; }
        @media (min-width: 0) and (max-width: 991px) {
          .fmo-cpc-macro-contact-form__details-container__details__find-us {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px; } }
        .fmo-cpc-macro-contact-form__details-container__details__find-us__icons-container__icon-link {
          width: 40px;
          height: 22px;
          margin: 0 4px;
          display: inline-block; }
          .fmo-cpc-macro-contact-form__details-container__details__find-us__icons-container__icon-link__svg {
            width: 100%;
            height: 100%;
            fill: #4a4f55;
            pointer-events: none; }
          .fmo-cpc-macro-contact-form__details-container__details__find-us__icons-container__icon-link:hover .fmo-cpc-macro-contact-form__details-container__details__find-us__icons-container__icon-link__svg {
            fill: #7643a3; }
    .fmo-cpc-macro-contact-form__details-container__banner {
      text-align: center; }
      @media (min-width: 1920px) {
        .fmo-cpc-macro-contact-form__details-container__banner {
          min-height: 375px; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-cpc-macro-contact-form__details-container__banner {
          min-height: 395px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-cpc-macro-contact-form__details-container__banner {
          min-height: 405px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-cpc-macro-contact-form__details-container__banner {
          min-height: 415px; } }
      @media (min-width: 0) and (max-width: 991px) {
        .fmo-cpc-macro-contact-form__details-container__banner {
          min-height: 370px; } }
      .fmo-cpc-macro-contact-form__details-container__banner__svg {
        width: 100%;
        max-width: 360px; }
  .fmo-cpc-macro-contact-form__form-container {
    width: 50%;
    position: absolute;
    top: -20px;
    right: 44px;
    padding: 26px 42px;
    background-color: #009688;
    color: #fff;
    height: 110%;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-border-radius: 0.375rem;
    -khtml-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
    @media (min-width: 1920px) {
      .fmo-cpc-macro-contact-form__form-container {
        right: -40px;
        height: 115%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-cpc-macro-contact-form__form-container {
        right: -45px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-cpc-macro-contact-form__form-container {
        height: 116%;
        right: -120px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-cpc-macro-contact-form__form-container {
        right: 0; } }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-cpc-macro-contact-form__form-container {
        position: relative;
        display: block;
        width: 94%;
        margin: -40px auto 20px;
        padding: 16px 40px;
        top: inherit;
        left: inherit;
        bottom: inherit;
        right: inherit;
        clear: both; } }
    .fmo-cpc-macro-contact-form__form-container__form__form-group.is-focused .fmo-cpc-macro-contact-form__form-container__form__form-group__label.control-label {
      color: rgba(0, 0, 0, 0.55); }
    .fmo-cpc-macro-contact-form__form-container__form__form-group.is-focused .fmo-cpc-macro-contact-form__form-container__form__form-group__input.form-control,
    .fmo-cpc-macro-contact-form__form-container__form__form-group.is-focused .fmo-cpc-macro-contact-form__form-container__form__form-group__text-area.form-control {
      background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)); }
    .fmo-cpc-macro-contact-form__form-container__form__form-group__label.control-label {
      color: #fff; }
    .fmo-cpc-macro-contact-form__form-container__form__form-group__input.form-control {
      color: #fff; }
    .fmo-cpc-macro-contact-form__form-container__form__form-group__help {
      color: rgba(0, 0, 0, 0.55); }
    .fmo-cpc-macro-contact-form__form-container__form__form-group__help-error {
      color: rgba(255, 0, 0, 0.8); }
    .fmo-cpc-macro-contact-form__form-container__form__form-group__text-area {
      color: #fff; }
    .fmo-cpc-macro-contact-form__form-container__form__form-group__check-box-container {
      color: #fff; }
      .fmo-cpc-macro-contact-form__form-container__form__form-group__check-box-container,
      .fmo-cpc-macro-contact-form__form-container__form__form-group__check-box-container .checkbox-material .check {
        border-color: #fff;
        margin-right: 8px; }
      .fmo-cpc-macro-contact-form__form-container__form__form-group__check-box-container:checked {
        color: rgba(0, 0, 0, 0.55);
        border-color: rgba(0, 0, 0, 0.55); }

label.fmo-cpc-macro-contact-form__form-container__form__form-group__check-box-container {
  color: #fff; }

.fmo-cpc-macro-contact-form__form-container__form__form-group.checkbox input[type=checkbox]:checked + .checkbox-material .check,
label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.55); }

.fmo-cpc-macro-contact-form__form-container__form__form-group.checkbox input[type=checkbox]:checked + .checkbox-material .check::before,
label.checkbox-inline input[type=checkbox]:checked + .checkbox-material .check::before {
  color: #00443d; }

.form-group.has-error label.control-label, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group label.control-label, .has-error.fmo-download-dialog__form-group label.control-label, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group label.control-label,
.form-group.has-error .help-block, .has-error.fmo-cpc-calculator__container__form__slider__slides__slide__form-group .help-block, .has-error.fmo-download-dialog__form-group .help-block, .has-error.fmo-macro-calculator__container__form__slider__slides__slide__form-group .help-block {
  color: #f0908d; }

.fmo-cpc-macro-contact-form__form-container__form__form-group.submit-btn {
  margin-top: 20px; }
  .fmo-cpc-macro-contact-form__form-container__form__form-group.submit-btn .fmo-cpc-macro-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary {
    width: 90%;
    margin: auto;
    display: block;
    background-color: rgba(0, 0, 0, 0.55);
    height: 44px;
    line-height: 1.7;
    -webkit-border-radius: 70px;
    -khtml-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
    border-radius: 70px;
    -webkit-border-radius: 4.375rem;
    -khtml-border-radius: 4.375rem;
    -moz-border-radius: 4.375rem;
    -ms-border-radius: 4.375rem;
    -o-border-radius: 4.375rem;
    border-radius: 4.375rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .fmo-cpc-macro-contact-form__form-container__form__form-group.submit-btn .fmo-cpc-macro-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary:active, .fmo-cpc-macro-contact-form__form-container__form__form-group.submit-btn .fmo-cpc-macro-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary:focus, .fmo-cpc-macro-contact-form__form-container__form__form-group.submit-btn .fmo-cpc-macro-contact-form__form-container__form__send-btn.btn.btn-raised.btn-primary:hover {
      background-color: rgba(0, 0, 0, 0.5); }

input[name=ConversationSlider] {
  -webkit-appearance: none;
  border: 1px solid white; }

input[name=ConversationSlider]::-webkit-slider-runnable-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px; }

input[name=ConversationSlider]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #009688;
  margin-top: -4px; }

input[name=ConversationSlider]:focus {
  outline: none; }

input[name=ConversationSlider]:focus::-webkit-slider-runnable-track {
  background: #ccc; }

input[name=ConversationSlider]::-moz-range-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px; }

input[name=ConversationSlider]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #009688; }

input[name=ConversationSlider]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px; }

input[name=ConversationSlider]::-ms-track {
  height: 5px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent; }

input[name=ConversationSlider]::-ms-fill-lower {
  background: #777;
  border-radius: 10px; }

input[name=ConversationSlider]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px; }

input[name=ConversationSlider]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #009688; }

input[name=ConversationSlider]:focus::-ms-fill-lower {
  background: #888; }

input[name=ConversationSlider]:focus::-ms-fill-upper {
  background: #ccc; }

/* ==========================================================================
   # Modal
   ========================================================================== */
.nanobar.js-top-nanobar {
  width: 100%;
  height: 4px;
  z-index: 9999;
  top: 0; }
  .nanobar.js-top-nanobar > .bar {
    width: 0;
    height: 100%;
    background: #fff !important;
    -webkit-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s; }

/* ==========================================================================
   # News Letter Card
   ========================================================================== */
.fmo-newsletter-card {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); }
  @media (min-width: 0) and (max-width: 991px) {
    .fmo-newsletter-card {
      margin-bottom: 16px; } }
  @media (min-width: 1200px) {
    .fmo-newsletter-card {
      min-height: 376px; } }
  .fmo-newsletter-card__title-container {
    padding: 28px 20px 0; }
    .fmo-newsletter-card__title-container__title {
      color: #4d5156;
      text-align: center;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-newsletter-card__title-container__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-newsletter-card__title-container__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-newsletter-card__title-container__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-newsletter-card__title-container__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-newsletter-card__title-container__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-newsletter-card__title-container__title {
          font-size: 300%;
          line-height: 1.1; } }
  .fmo-newsletter-card__img-container {
    width: 100%;
    height: 174px;
    position: relative;
    padding: 10px 20px 0;
    text-align: center; }
    @media (min-width: 544px) and (max-width: 1199px) {
      .fmo-newsletter-card__img-container {
        height: 150px; } }
    .fmo-newsletter-card__img-container__img {
      position: absolute;
      height: 100%;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -khtml-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .fmo-newsletter-card__sub-title-container {
    padding: 10px;
    display: none; }
    @media (min-width: 544px) and (max-width: 991px) {
      .fmo-newsletter-card__sub-title-container {
        display: block;
        padding: 30px; } }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-newsletter-card__sub-title-container {
        padding-bottom: 100px; } }
    @media (min-width: 1919px) {
      .fmo-newsletter-card__sub-title-container {
        display: block; } }
    .fmo-newsletter-card__sub-title-container__sub-title {
      color: #4d5156;
      text-align: center;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
      overflow: hidden;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-newsletter-card__sub-title-container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-newsletter-card__sub-title-container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-newsletter-card__sub-title-container__sub-title {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-newsletter-card__sub-title-container__sub-title {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-newsletter-card__sub-title-container__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-newsletter-card__sub-title-container__sub-title {
          font-size: 180%;
          line-height: 1.42857; } }
  .fmo-newsletter-card__form {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    -khtml-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    -o-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; }
    .fmo-newsletter-card__form__input {
      background-color: transparent;
      border: none;
      border-top: 1px solid #e0e0e0;
      padding: 20px 25px;
      color: #431070;
      -webkit-box-flex: 2;
      -ms-flex-positive: 2;
      -webkit-flex-grow: 2;
      -khtml-flex-grow: 2;
      -moz-flex-grow: 2;
      -ms-flex-grow: 2;
      -o-flex-grow: 2;
      flex-grow: 2;
      font-weight: 500; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-newsletter-card__form__input {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-newsletter-card__form__input {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-newsletter-card__form__input {
          font-size: 150%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-newsletter-card__form__input {
          font-size: 160%;
          line-height: 1.42857; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-newsletter-card__form__input {
          font-size: 180%;
          line-height: 1.42857; } }
      @media (min-width: 1920px) {
        .fmo-newsletter-card__form__input {
          font-size: 180%;
          line-height: 1.42857; } }
      .fmo-newsletter-card__form__input -webkit- {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input::-webkit-input-placeholder {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input -khtml- {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input::-khtml-input-placeholder {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input -moz- {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input::-moz-input-placeholder {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input -ms- {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input::-ms-input-placeholder {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input -o- {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input::-o-input-placeholder {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input::input-placeholder {
        color: rgba(67, 16, 112, 0.4);
        text-transform: uppercase; }
      .fmo-newsletter-card__form__input:focus {
        outline: none; }
    .fmo-newsletter-card__form__btn-submit {
      background: #fff;
      border: none;
      border-top: 1px solid #e0e0e0;
      border-left: 1px solid #e0e0e0;
      color: rgba(0, 150, 136, 0.6);
      cursor: pointer;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 2px;
      padding: 20px 0;
      min-width: 160px;
      -webkit-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      -webkit-flex-grow: 1;
      -khtml-flex-grow: 1;
      -moz-flex-grow: 1;
      -ms-flex-grow: 1;
      -o-flex-grow: 1;
      flex-grow: 1; }
      .fmo-newsletter-card__form__btn-submit:focus {
        outline: none; }
      .fmo-newsletter-card__form__btn-submit:hover {
        background: rgba(0, 150, 136, 0.9);
        color: #fff;
        -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
        box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
      .fmo-newsletter-card__form__btn-submit span {
        font-weight: 500; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-newsletter-card__form__btn-submit span {
            font-size: 150%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-newsletter-card__form__btn-submit span {
            font-size: 150%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-newsletter-card__form__btn-submit span {
            font-size: 150%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-newsletter-card__form__btn-submit span {
            font-size: 160%;
            line-height: 1.42857; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-newsletter-card__form__btn-submit span {
            font-size: 180%;
            line-height: 1.42857; } }
        @media (min-width: 1920px) {
          .fmo-newsletter-card__form__btn-submit span {
            font-size: 180%;
            line-height: 1.42857; } }

/* ==========================================================================
   # Pagination
   ========================================================================== */
.popup-container {
  position: fixed;
  left: 50%;
  top: 50%;
  display: block;
  -webkit-transform: perspective(1px) translate(-50%, -50%);
  -moz-transform: perspective(1px) translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: perspective(1px) translate(-50%, -50%); }
  @media (min-width: 0) and (max-width: 543px) {
    .popup-container {
      position: fixed;
      left: 5%;
      top: 50%;
      width: 90%;
      transform: translate(0, -50%);
      display: block; } }
  .popup-container .popup-close {
    text-align: center;
    cursor: pointer;
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 3px;
    position: relative;
    top: -10px;
    right: -10px;
    left: auto;
    bottom: auto;
    width: 21px;
    line-height: 15px; }

/* ==========================================================================
   # Preloader
   ========================================================================== */
.fmo-preloader__container {
  display: block;
  position: fixed;
  top: 0;
  min-height: 480px;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #f1f1f1; }
  .fmo-preloader__container__logo, .fmo-preloader__container__loader {
    position: absolute;
    left: 0;
    width: 100%;
    cursor: default;
    pointer-events: none;
    opacity: 0;
    filter: alpha(opacity=0); }
  .fmo-preloader__container__logo {
    top: 0;
    height: 100%;
    text-align: center;
    transform: -webkit-translate3d(0, 25%, 0);
    transform: -khtml-translate3d(0, 25%, 0);
    transform: -moz-translate3d(0, 25%, 0);
    transform: -ms-translate3d(0, 25%, 0);
    transform: -o-translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0); }
    .fmo-preloader__container__logo__svg {
      min-width: 320px;
      max-width: 480px;
      width: 25%;
      height: 200px;
      fill: rgba(67, 16, 112, 0.2); }
  .fmo-preloader__container__loader {
    bottom: 20%; }
    .fmo-preloader__container__loader__inner {
      display: block;
      margin: 0 auto; }
      .fmo-preloader__container__loader__inner__circle-bg, .fmo-preloader__container__loader__inner__circle {
        fill: none;
        stroke-width: 6; }
      .fmo-preloader__container__loader__inner__circle-bg {
        stroke: #ddd; }
      .fmo-preloader__container__loader__inner__circle {
        stroke: #431070;
        -webkit-transition: stroke-dashoffset 0.2s;
        -o-transition: stroke-dashoffset 0.2s;
        transition: stroke-dashoffset 0.2s; }

.fmo-preloader.js-loading .fmo-preloader__container__logo, .fmo-preloader.js-loading .fmo-preloader__container__loader {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-animation: fmo-animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  -o-animation: fmo-animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: fmo-animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both; }

.fmo-preloader.js-loading .fmo-preloader__container__loader {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.fmo-preloader.js-loaded .fmo-preloader__container {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  -o-animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards; }
  .fmo-preloader.js-loaded .fmo-preloader__container__logo, .fmo-preloader.js-loaded .fmo-preloader__container__loader {
    opacity: 1;
    filter: alpha(opacity=100); }
  .fmo-preloader.js-loaded .fmo-preloader__container__logo {
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    -o-animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards; }
  .fmo-preloader.js-loaded .fmo-preloader__container__loader {
    -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    -o-animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards; }
  .fmo-preloader.js-loaded .fmo-preloader__container__loader__inner__circle-bg, .fmo-preloader.js-loaded .fmo-preloader__container__loader__inner__circle {
    fill: #fff;
    -webkit-transition: all 0.5s ease 0.3s;
    -o-transition: all 0.5s ease 0.3s;
    transition: all 0.5s ease 0.3s; }

@-webkit-keyframes fmo-animInitialHeader {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 800px, 0);
    transform: -khtml-translate3d(0, 800px, 0);
    transform: -moz-translate3d(0, 800px, 0);
    transform: -ms-translate3d(0, 800px, 0);
    transform: -o-translate3d(0, 800px, 0);
    transform: translate3d(0, 800px, 0); } }

@-moz-keyframes fmo-animInitialHeader {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 800px, 0);
    transform: -khtml-translate3d(0, 800px, 0);
    transform: -moz-translate3d(0, 800px, 0);
    transform: -ms-translate3d(0, 800px, 0);
    transform: -o-translate3d(0, 800px, 0);
    transform: translate3d(0, 800px, 0); } }

@-ms-keyframes fmo-animInitialHeader {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 800px, 0);
    transform: -khtml-translate3d(0, 800px, 0);
    transform: -moz-translate3d(0, 800px, 0);
    transform: -ms-translate3d(0, 800px, 0);
    transform: -o-translate3d(0, 800px, 0);
    transform: translate3d(0, 800px, 0); } }

@-o-keyframes fmo-animInitialHeader {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 800px, 0);
    transform: -khtml-translate3d(0, 800px, 0);
    transform: -moz-translate3d(0, 800px, 0);
    transform: -ms-translate3d(0, 800px, 0);
    transform: -o-translate3d(0, 800px, 0);
    transform: translate3d(0, 800px, 0); } }

@keyframes fmo-animInitialHeader {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 800px, 0);
    transform: -khtml-translate3d(0, 800px, 0);
    transform: -moz-translate3d(0, 800px, 0);
    transform: -ms-translate3d(0, 800px, 0);
    transform: -o-translate3d(0, 800px, 0);
    transform: translate3d(0, 800px, 0); } }

@-webkit-keyframes animLoadedLogo {
  to {
    transform: -webkit-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -khtml-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -moz-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -ms-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -o-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1); } }

@-moz-keyframes animLoadedLogo {
  to {
    transform: -webkit-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -khtml-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -moz-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -ms-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -o-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1); } }

@-ms-keyframes animLoadedLogo {
  to {
    transform: -webkit-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -khtml-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -moz-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -ms-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -o-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1); } }

@-o-keyframes animLoadedLogo {
  to {
    transform: -webkit-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -khtml-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -moz-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -ms-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -o-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1); } }

@keyframes animLoadedLogo {
  to {
    transform: -webkit-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -khtml-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -moz-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -ms-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: -o-translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1);
    transform: translate3d(0, -10%, 0) scale3d(0.1, 0.1, 1); } }

@-webkit-keyframes animLoadedLoader {
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -khtml-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -moz-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -ms-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -o-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }

@-moz-keyframes animLoadedLoader {
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -khtml-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -moz-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -ms-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -o-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }

@-ms-keyframes animLoadedLoader {
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -khtml-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -moz-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -ms-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -o-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }

@-o-keyframes animLoadedLoader {
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -khtml-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -moz-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -ms-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -o-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }

@keyframes animLoadedLoader {
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -khtml-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -moz-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -ms-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: -o-translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }

@-webkit-keyframes animLoadedHeader {
  to {
    transform: -webkit-translate3d(0, -100%, 0);
    transform: -khtml-translate3d(0, -100%, 0);
    transform: -moz-translate3d(0, -100%, 0);
    transform: -ms-translate3d(0, -100%, 0);
    transform: -o-translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@-moz-keyframes animLoadedHeader {
  to {
    transform: -webkit-translate3d(0, -100%, 0);
    transform: -khtml-translate3d(0, -100%, 0);
    transform: -moz-translate3d(0, -100%, 0);
    transform: -ms-translate3d(0, -100%, 0);
    transform: -o-translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@-ms-keyframes animLoadedHeader {
  to {
    transform: -webkit-translate3d(0, -100%, 0);
    transform: -khtml-translate3d(0, -100%, 0);
    transform: -moz-translate3d(0, -100%, 0);
    transform: -ms-translate3d(0, -100%, 0);
    transform: -o-translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@-o-keyframes animLoadedHeader {
  to {
    transform: -webkit-translate3d(0, -100%, 0);
    transform: -khtml-translate3d(0, -100%, 0);
    transform: -moz-translate3d(0, -100%, 0);
    transform: -ms-translate3d(0, -100%, 0);
    transform: -o-translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes animLoadedHeader {
  to {
    transform: -webkit-translate3d(0, -100%, 0);
    transform: -khtml-translate3d(0, -100%, 0);
    transform: -moz-translate3d(0, -100%, 0);
    transform: -ms-translate3d(0, -100%, 0);
    transform: -o-translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@-webkit-keyframes animLoadedContent {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 200px, 0);
    transform: -khtml-translate3d(0, 200px, 0);
    transform: -moz-translate3d(0, 200px, 0);
    transform: -ms-translate3d(0, 200px, 0);
    transform: -o-translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0); } }

@-moz-keyframes animLoadedContent {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 200px, 0);
    transform: -khtml-translate3d(0, 200px, 0);
    transform: -moz-translate3d(0, 200px, 0);
    transform: -ms-translate3d(0, 200px, 0);
    transform: -o-translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0); } }

@-ms-keyframes animLoadedContent {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 200px, 0);
    transform: -khtml-translate3d(0, 200px, 0);
    transform: -moz-translate3d(0, 200px, 0);
    transform: -ms-translate3d(0, 200px, 0);
    transform: -o-translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0); } }

@-o-keyframes animLoadedContent {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 200px, 0);
    transform: -khtml-translate3d(0, 200px, 0);
    transform: -moz-translate3d(0, 200px, 0);
    transform: -ms-translate3d(0, 200px, 0);
    transform: -o-translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0); } }

@keyframes animLoadedContent {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-translate3d(0, 200px, 0);
    transform: -khtml-translate3d(0, 200px, 0);
    transform: -moz-translate3d(0, 200px, 0);
    transform: -ms-translate3d(0, 200px, 0);
    transform: -o-translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0); } }

/* ==========================================================================
   # Progress Bar
   ========================================================================== */
.fmo-related-posts {
  padding: 20px;
  position: relative; }
  .fmo-related-posts a {
    font-weight: 400;
    color: #431070; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-related-posts a {
        font-size: 14px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-related-posts a {
        font-size: 15px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-related-posts a {
        font-size: 16px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-related-posts a {
        font-size: 16px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-related-posts a {
        font-size: 17px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-related-posts a {
        font-size: 18px;
        line-height: 2; } }
    .fmo-related-posts a:visited {
      color: #2a0057; }
    .fmo-related-posts a:hover {
      color: #a976d6; }
    .fmo-related-posts a:active {
      color: #7643a3; }
    .fmo-related-posts a:visited, .fmo-related-posts a:hover, .fmo-related-posts a:active, .fmo-related-posts a:focus {
      text-decoration: none; }
  .fmo-related-posts__main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: auto;
    vertical-align: middle;
    border: 0 none;
    position: absolute;
    left: -9999px;
    top: -9999px;
    right: -9999px;
    bottom: -9999px; }
    .fmo-related-posts__main-image__container {
      width: 100%;
      height: 216px;
      overflow: hidden;
      position: relative; }
      @media (min-width: 600px) and (max-width: 767px) {
        .fmo-related-posts__main-image__container {
          height: 300px; } }
  .fmo-related-posts__item__link__image {
    border: none;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .fmo-related-posts__title {
    margin-top: 15px;
    margin-bottom: 0;
    letter-spacing: normal;
    text-transform: uppercase;
    font-weight: bold; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-related-posts__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-related-posts__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-related-posts__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-related-posts__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-related-posts__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-related-posts__title {
        font-size: 300%;
        line-height: 1.1; } }
    .fmo-related-posts__title__bar-block {
      border-top: 8px solid #009688;
      width: 130px;
      position: relative;
      margin: 12px 0 40px; }

/* ==========================================================================
   # Progress Bar
   ========================================================================== */
.fmo-ripple,
.fmo-ripple--light {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/*
.ink styles - the elements which will create the ripple effect.
The size and position of these elements will be set by the JS code.
Initially these elements will be scaled down to 0% and later animated to large fading circles on user click.
*/
.fmo-ink,
.fmo-ink--light {
  position: absolute;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  transform: -webkit-scale(0);
  transform: -khtml-scale(0);
  transform: -moz-scale(0);
  transform: -ms-scale(0);
  transform: -o-scale(0);
  transform: scale(0);
  opacity: 0.4;
  filter: alpha(opacity=40); }

.fmo-ink {
  background: rgba(0, 0, 0, 0.4); }

.fmo-ink--light {
  background: rgba(255, 255, 255, 0.4); }

/* animation effect */
.fmo-ink.animate,
.fmo-ink--light.animate {
  -webkit-animation: ripple 0.6s linear;
  -o-animation: ripple 0.6s linear;
  animation: ripple 0.6s linear; }

@-webkit-keyframes ripple {
  100% {
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5);
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes ripple {
  100% {
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5);
    opacity: 0;
    filter: alpha(opacity=0); } }

@-ms-keyframes ripple {
  100% {
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5);
    opacity: 0;
    filter: alpha(opacity=0); } }

@-o-keyframes ripple {
  100% {
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5);
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes ripple {
  100% {
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5);
    opacity: 0;
    filter: alpha(opacity=0); } }

.fmo-news-resources-card {
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); }
  @media (min-width: 1200px) {
    .fmo-news-resources-card {
      min-height: 376px; } }
  .fmo-news-resources-card > .col-md-7,
  .fmo-news-resources-card > .col-md-5 {
    padding-left: 0;
    padding-right: 0; }
  .fmo-news-resources-card__link, .fmo-news-resources-card__link:link, .fmo-news-resources-card__link:hover, .fmo-news-resources-card__link:active, .fmo-news-resources-card__link:visited {
    color: inherit;
    text-decoration: inherit;
    font-size: inherit; }
  .fmo-news-resources-card__title, .fmo-news-resources-card__sub-title {
    color: #4d5156;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -khtml-order: 0;
    -moz-order: 0;
    -ms-order: 0;
    -o-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -khtml-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -o-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    -khtml-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    -o-align-self: center;
    align-self: center; }
  .fmo-news-resources-card__title {
    letter-spacing: 2px;
    font-weight: bold;
    width: 100%; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-news-resources-card__title {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-news-resources-card__title {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-news-resources-card__title {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-news-resources-card__title {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-news-resources-card__title {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-news-resources-card__title {
        font-size: 300%;
        line-height: 1.1; } }
  .fmo-news-resources-card__sub-title {
    letter-spacing: 2px;
    font-weight: 500; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-news-resources-card__sub-title {
        font-size: 150%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-news-resources-card__sub-title {
        font-size: 150%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-news-resources-card__sub-title {
        font-size: 150%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-news-resources-card__sub-title {
        font-size: 160%;
        line-height: 1.42857; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-news-resources-card__sub-title {
        font-size: 180%;
        line-height: 1.42857; } }
    @media (min-width: 1920px) {
      .fmo-news-resources-card__sub-title {
        font-size: 180%;
        line-height: 1.42857; } }
  .fmo-news-resources-card__btn-container__btn {
    letter-spacing: 2px;
    padding: 16px 14px;
    border: none;
    border-top: 1px solid rgba(139, 141, 141, 0.09);
    background-color: #fdfdfd;
    outline: none;
    text-transform: uppercase;
    bottom: 0;
    font-weight: 100;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -khtml-order: 0;
    -moz-order: 0;
    -ms-order: 0;
    -o-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -khtml-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -o-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: auto;
    -webkit-align-self: auto;
    -khtml-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    -o-align-self: auto;
    align-self: auto;
    text-transform: uppercase;
    letter-spacing: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: #009688;
    color: rgba(255, 255, 255, 0.9);
    font-family: Source Sans Pro, Calibri, sans;
    font-weight: light;
    min-width: 88px;
    -webkit-border-radius: 250px;
    -khtml-border-radius: 250px;
    -moz-border-radius: 250px;
    -ms-border-radius: 250px;
    -o-border-radius: 250px;
    border-radius: 250px;
    -webkit-border-radius: 15.625rem;
    -khtml-border-radius: 15.625rem;
    -moz-border-radius: 15.625rem;
    -ms-border-radius: 15.625rem;
    -o-border-radius: 15.625rem;
    border-radius: 15.625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-weight: 100;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-border-radius: 35px;
    -khtml-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    border-radius: 35px;
    -webkit-border-radius: 2.1875rem;
    -khtml-border-radius: 2.1875rem;
    -moz-border-radius: 2.1875rem;
    -ms-border-radius: 2.1875rem;
    -o-border-radius: 2.1875rem;
    border-radius: 2.1875rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    font-weight: 500; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 150%;
        line-height: 2rem;
        padding: 6px 16px; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 150%;
        line-height: 2rem;
        padding: 8px 16px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 150%;
        line-height: 2rem;
        padding: 10px 20px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 160%;
        line-height: 1.32rem;
        padding: 10px 20px; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 180%;
        line-height: 1.32rem;
        padding: 12px 20px; } }
    @media (min-width: 1920px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 180%;
        line-height: 1.32rem;
        padding: 12px 20px; } }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 150%;
        line-height: 2rem;
        padding: 6px 16px; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 150%;
        line-height: 2rem;
        padding: 8px 16px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 150%;
        line-height: 2rem;
        padding: 10px 20px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 160%;
        line-height: 1.32rem;
        padding: 10px 20px; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 180%;
        line-height: 1.32rem;
        padding: 12px 20px; } }
    @media (min-width: 1920px) {
      .fmo-news-resources-card__btn-container__btn {
        font-size: 180%;
        line-height: 1.32rem;
        padding: 12px 20px; } }
    .fmo-news-resources-card__btn-container__btn:focus, .fmo-news-resources-card__btn-container__btn:active, .fmo-news-resources-card__btn-container__btn.active, .fmo-news-resources-card__btn-container__btn:active:focus, .fmo-news-resources-card__btn-container__btn.active:focus {
      outline: 0;
      outline-offset: 0;
      text-decoration: none; }
    .fmo-news-resources-card__btn-container__btn:focus, .fmo-news-resources-card__btn-container__btn:hover {
      outline: none;
      text-decoration: none;
      -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
      box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
    .fmo-news-resources-card__btn-container__btn:hover {
      color: rgba(255, 255, 255, 0.7);
      background-color: #26a69a; }
    .fmo-news-resources-card__btn-container__btn:focus {
      color: rgba(255, 255, 255, 0.7); }
  .fmo-news-resources-card__left {
    height: 376px;
    padding: 46px;
    text-align: center;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    -khtml-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-news-resources-card__left {
        height: inherit;
        padding: 46px 46px 15px 46px; } }
  .fmo-news-resources-card__right {
    height: 376px;
    text-align: center;
    padding: 20px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    -khtml-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-news-resources-card__right {
        height: inherit;
        padding: 5px 20px 20px 20px; } }

/* ==========================================================================
   # Search Bar
   ========================================================================== */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

select,
input[type="search"] {
  border: none; }

input[type="search"] {
  margin-top: 0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.fmo-search-container {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2a0057;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s; }
  .fmo-search-container.js-is-visible {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-animation: fmo-slide-down 0.3s;
    -o-animation: fmo-slide-down 0.3s;
    animation: fmo-slide-down 0.3s; }
    .fmo-search-container.js-is-visible .fmo-search-container__close-btn {
      transform: -webkit-translateY(-50%) scale(1);
      transform: -khtml-translateY(-50%) scale(1);
      transform: -moz-translateY(-50%) scale(1);
      transform: -ms-translateY(-50%) scale(1);
      transform: -o-translateY(-50%) scale(1);
      transform: translateY(-50%) scale(1); }
    .fmo-search-container.js-is-visible .fmo-search-container__dropdown {
      -webkit-transform-origin: center top;
      -moz-transform-origin: center top;
      -ms-transform-origin: center top;
      transform-origin: center top;
      transform: -webkit-translateZ(0);
      transform: -khtml-translateZ(0);
      transform: -moz-translateZ(0);
      transform: -ms-translateZ(0);
      transform: -o-translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-animation: fmo-flip-down 0.5s 0.3s;
      -o-animation: fmo-flip-down 0.5s 0.3s;
      animation: fmo-flip-down 0.5s 0.3s;
      -webkit-animation-fill-mode: backwards;
      animation-fill-mode: backwards; }
  .fmo-search-container__form {
    position: relative;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 1620px; }
    @media (min-width: 1200px) and (max-width: 1720px) {
      .fmo-search-container__form {
        width: 1170px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-search-container__form {
        width: 920px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-search-container__form {
        width: 750px; } }
    @media (min-width: 0) and (max-width: 768px) {
      .fmo-search-container__form {
        width: auto;
        margin-left: 10px;
        margin-right: 10px; } }
    .fmo-search-container__form__input {
      display: none;
      width: calc(100% - 180px);
      color: #fff;
      display: inline-block;
      font-size: 2.4rem;
      height: 100%;
      background-color: transparent; }
      .fmo-search-container__form__input:focus {
        outline: none; }
      .fmo-search-container__form__input -webkit- {
        color: #5c5d6a; }
      .fmo-search-container__form__input::-webkit-input-placeholder {
        color: #5c5d6a; }
      .fmo-search-container__form__input -khtml- {
        color: #5c5d6a; }
      .fmo-search-container__form__input::-khtml-input-placeholder {
        color: #5c5d6a; }
      .fmo-search-container__form__input -moz- {
        color: #5c5d6a; }
      .fmo-search-container__form__input::-moz-input-placeholder {
        color: #5c5d6a; }
      .fmo-search-container__form__input -ms- {
        color: #5c5d6a; }
      .fmo-search-container__form__input::-ms-input-placeholder {
        color: #5c5d6a; }
      .fmo-search-container__form__input -o- {
        color: #5c5d6a; }
      .fmo-search-container__form__input::-o-input-placeholder {
        color: #5c5d6a; }
      .fmo-search-container__form__input::input-placeholder {
        color: #5c5d6a; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-search-container__form__input {
          width: calc(100% - 130px);
          font-size: 1.4rem; } }
    .fmo-search-container__form__dropdown-container {
      display: none;
      display: inline-block;
      color: #5c5d6a;
      font-size: 1.4rem;
      overflow: hidden;
      margin-left: 8px;
      position: relative; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-search-container__form__dropdown-container {
          margin-left: 0;
          line-height: 1.6rem;
          margin-bottom: -3px; } }
      .fmo-search-container__form__dropdown-container__text {
        display: inline-block; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-search-container__form__dropdown-container__text {
            display: none; } }
      .fmo-search-container__form__dropdown-container__select, .fmo-search-container__form__dropdown-container__selected-value {
        padding: 0.5em 1.7em 0.5em 0.3em;
        font-size: 1.4rem;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        -webkit-border-radius: 0.1875rem;
        -khtml-border-radius: 0.1875rem;
        -moz-border-radius: 0.1875rem;
        -ms-border-radius: 0.1875rem;
        -o-border-radius: 0.1875rem;
        border-radius: 0.1875rem;
        -webkit-background-clip: padding-box;
        -khtml-background-clip: padding-box;
        -moz-background-clip: padding-box;
        -ms-background-clip: padding-box;
        -o-background-clip: padding-box;
        background-clip: padding-box; }
      .fmo-search-container__form__dropdown-container__select {
        position: absolute;
        right: 0;
        color: transparent;
        opacity: 0;
        filter: alpha(opacity=0);
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -khtml-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
        .fmo-search-container__form__dropdown-container__select:focus {
          outline: none; }
        .fmo-search-container__form__dropdown-container__select:focus + span.js-selected-value {
          background-color: #3d3f4e; }
        .fmo-search-container__form__dropdown-container__select__option {
          color: #333545;
          background-color: #fff; }
      .fmo-search-container__form__dropdown-container__selected-value {
        color: #fff;
        pointer-events: none;
        -webkit-transition: background-color 0.3s;
        -o-transition: background-color 0.3s;
        transition: background-color 0.3s; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-search-container__form__dropdown-container__selected-value {
            margin: 0 12px;
            padding: 0;
            font-size: 1.4rem; } }
    .fmo-search-container__form__close-btn {
      color: transparent;
      text-indent: 100%;
      overflow: hidden;
      white-space: nowrap;
      display: none;
      display: inline-block;
      position: relative;
      width: 40px;
      margin-left: 8px;
      -webkit-transition: transform 0.3s;
      -o-transition: transform 0.3s;
      transition: transform 0.3s; }
      .fmo-search-container__form__close-btn::before, .fmo-search-container__form__close-btn::after {
        content: '';
        position: absolute;
        height: 20px;
        width: 2px;
        background-color: #fff;
        left: 50%;
        top: 50%;
        transform: -webkit-translateX(-50%) scale(0);
        transform: -khtml-translateX(-50%) scale(0);
        transform: -moz-translateX(-50%) scale(0);
        transform: -ms-translateX(-50%) scale(0);
        transform: -o-translateX(-50%) scale(0);
        transform: translateX(-50%) scale(0); }
      .fmo-search-container__form__close-btn::before {
        transform: -webkit-translateX(-50%) translateY(-50%) rotate(-45deg);
        transform: -khtml-translateX(-50%) translateY(-50%) rotate(-45deg);
        transform: -moz-translateX(-50%) translateY(-50%) rotate(-45deg);
        transform: -ms-translateX(-50%) translateY(-50%) rotate(-45deg);
        transform: -o-translateX(-50%) translateY(-50%) rotate(-45deg);
        transform: translateX(-50%) translateY(-50%) rotate(-45deg); }
      .fmo-search-container__form__close-btn::after {
        transform: -webkit-translateX(-50%) translateY(-50%) rotate(45deg);
        transform: -khtml-translateX(-50%) translateY(-50%) rotate(45deg);
        transform: -moz-translateX(-50%) translateY(-50%) rotate(45deg);
        transform: -ms-translateX(-50%) translateY(-50%) rotate(45deg);
        transform: -o-translateX(-50%) translateY(-50%) rotate(45deg);
        transform: translateX(-50%) translateY(-50%) rotate(45deg); }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-search-container__form__close-btn {
          width: 16px;
          margin-left: 0;
          margin-bottom: -4px; } }
  .fmo-search-container__dropdown {
    display: none;
    display: block;
    position: relative;
    left: 0;
    padding: 2em;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    width: 1620px;
    -webkit-border-radius: 0 0 5px 5px;
    -khtml-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 0.3125rem 0.3125rem;
    -khtml-border-radius: 0 0 0.3125rem 0.3125rem;
    -moz-border-radius: 0 0 0.3125rem 0.3125rem;
    -ms-border-radius: 0 0 0.3125rem 0.3125rem;
    -o-border-radius: 0 0 0.3125rem 0.3125rem;
    border-radius: 0 0 0.3125rem 0.3125rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 4px 40px rgba(0, 0, 0, 0.39);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.39); }
    .fmo-search-container__dropdown:before, .fmo-search-container__dropdown:after {
      content: " ";
      display: table; }
    .fmo-search-container__dropdown:after {
      clear: both; }
    @media (min-width: 1200px) and (max-width: 1720px) {
      .fmo-search-container__dropdown {
        width: 1170px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-search-container__dropdown {
        width: 920px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-search-container__dropdown {
        width: 750px; } }
    @media (min-width: 0) and (max-width: 768px) {
      .fmo-search-container__dropdown {
        width: auto;
        margin-left: 10px;
        margin-right: 10px; } }
    .fmo-search-container__dropdown__news, .fmo-search-container__dropdown__results {
      width: 100%;
      display: block; }
      .fmo-search-container__dropdown__news__title, .fmo-search-container__dropdown__results__title {
        margin-bottom: 1.5em;
        text-transform: uppercase;
        color: #7a7c86;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: 0.1em; }
      .fmo-search-container__dropdown__news__list-container, .fmo-search-container__dropdown__results__list-container {
        list-style-type: none;
        padding: 0 20px; }
        .fmo-search-container__dropdown__news__list-container__item, .fmo-search-container__dropdown__results__list-container__item {
          position: relative;
          padding: 0.625em 0.75em 0.75em 8em;
          margin-bottom: 0.25em; }
          .fmo-search-container__dropdown__news__list-container__item:last-of-type, .fmo-search-container__dropdown__results__list-container__item:last-of-type {
            margin-bottom: 0; }
          .fmo-search-container__dropdown__news__list-container__item__image-wrapper, .fmo-search-container__dropdown__results__list-container__item__image-wrapper {
            position: absolute;
            left: 0;
            width: 50px;
            height: 50px;
            top: 50%;
            -webkit-transform: translate(0%, -50%);
            -khtml-transform: translate(0%, -50%);
            -moz-transform: translate(0%, -50%);
            -ms-transform: translate(0%, -50%);
            -o-transform: translate(0%, -50%);
            transform: translate(0%, -50%); }
            .fmo-search-container__dropdown__news__list-container__item__image-wrapper__img, .fmo-search-container__dropdown__results__list-container__item__image-wrapper__img {
              width: 48px;
              display: block; }
          .fmo-search-container__dropdown__news__list-container__item__title, .fmo-search-container__dropdown__results__list-container__item__title {
            font-weight: bold;
            font-size: 1.4rem;
            margin-bottom: 2px; }
            .fmo-search-container__dropdown__news__list-container__item__title__link, .fmo-search-container__dropdown__results__list-container__item__title__link {
              display: inline-block;
              color: #333545;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
              max-width: 100%;
              padding: 0.2em 0; }
              .no-touch .fmo-search-container__dropdown__news__list-container__item__title__link:hover, .no-touch .fmo-search-container__dropdown__results__list-container__item__title__link:hover {
                opacity: 0.8;
                filter: alpha(opacity=80); }
          .fmo-search-container__dropdown__news__list-container__item__date, .fmo-search-container__dropdown__results__list-container__item__date {
            font-size: 1.2rem;
            color: #70727d; }
    @media (min-width: 0) and (max-width: 991px) {
      .fmo-search-container__dropdown__news {
        display: none; } }

.fmo-search-cover {
  display: none;
  display: block;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s; }
  .fmo-search-cover.js-search-form-visible {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100); }

@-webkit-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-moz-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-ms-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-o-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-webkit-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@-moz-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@-ms-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@-o-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

/* ==========================================================================
   # Slider
   ========================================================================== */
.fmo-testimonials-slider {
  margin: 0; }
  .fmo-testimonials-slider__item {
    background: #fff;
    padding: 1rem;
    height: 170px;
    margin: 16px 12px;
    position: relative;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 0.625rem;
    -khtml-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    -ms-border-radius: 0.625rem;
    -o-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .fmo-testimonials-slider__item::after {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-border-radius: 10px;
      -khtml-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      border-radius: 10px;
      -webkit-border-radius: 0.625rem;
      -khtml-border-radius: 0.625rem;
      -moz-border-radius: 0.625rem;
      -ms-border-radius: 0.625rem;
      -o-border-radius: 0.625rem;
      border-radius: 0.625rem;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box;
      -webkit-box-shadow: 0 2px 32px rgba(0, 0, 0, 0.1);
      box-shadow: 0 2px 32px rgba(0, 0, 0, 0.1);
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .fmo-testimonials-slider__item:hover {
      transform: -webkit-scale(1.15, 1.15);
      transform: -khtml-scale(1.15, 1.15);
      transform: -moz-scale(1.15, 1.15);
      transform: -ms-scale(1.15, 1.15);
      transform: -o-scale(1.15, 1.15);
      transform: scale(1.15, 1.15); }
    .fmo-testimonials-slider__item:hover::after {
      opacity: 1;
      filter: alpha(opacity=100); }
    .fmo-testimonials-slider__item__avatar {
      display: block !important;
      position: absolute;
      top: 12px;
      left: 12px;
      width: 54px !important;
      height: 54px !important;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      -webkit-background-clip: padding-box;
      -khtml-background-clip: padding-box;
      -moz-background-clip: padding-box;
      -ms-background-clip: padding-box;
      -o-background-clip: padding-box;
      background-clip: padding-box; }
    .fmo-testimonials-slider__item__top {
      display: block;
      margin-left: 70px;
      margin-top: 6px; }
      .fmo-testimonials-slider__item__top__name {
        margin: 0;
        text-align: left;
        color: #4a4f55;
        font-weight: bold;
        font-family: Montserrat, Verdana; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-testimonials-slider__item__top__name {
            font-size: 150%;
            line-height: 1.42857; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-testimonials-slider__item__top__name {
            font-size: 150%;
            line-height: 1.42857; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-testimonials-slider__item__top__name {
            font-size: 160%;
            line-height: 1.42857; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-testimonials-slider__item__top__name {
            font-size: 170%;
            line-height: 1.42857; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-testimonials-slider__item__top__name {
            font-size: 180%;
            line-height: 1.42857; } }
        @media (min-width: 1920px) {
          .fmo-testimonials-slider__item__top__name {
            font-size: 180%;
            line-height: 1.42857; } }
      .fmo-testimonials-slider__item__top__star-container {
        text-align: left; }
        .fmo-testimonials-slider__item__top__star-container__star {
          width: 16px;
          height: 16px;
          display: inline-block;
          fill: #e2e2e2; }
          .fmo-testimonials-slider__item__top__star-container__star.active {
            fill: #f2a53b; }
    .fmo-testimonials-slider__item__review-container {
      position: absolute;
      top: 80px;
      left: 0;
      bottom: 0;
      border-top: 1px solid #f8f8f8;
      right: 0; }
      .fmo-testimonials-slider__item__review-container__text {
        color: #4a4f55;
        position: absolute;
        width: 90%;
        font-weight: 100;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -khtml-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-testimonials-slider__item__review-container__text {
            font-size: 14px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-testimonials-slider__item__review-container__text {
            font-size: 15px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-testimonials-slider__item__review-container__text {
            font-size: 16px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-testimonials-slider__item__review-container__text {
            font-size: 16px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-testimonials-slider__item__review-container__text {
            font-size: 17px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-testimonials-slider__item__review-container__text {
            font-size: 18px;
            line-height: 2; } }
  .fmo-testimonials-slider > .owl-stage-outer {
    overflow: visible; }

.fmo-logos-slider {
  margin: 0;
  background-color: transparent; }
  .fmo-logos-slider__logo {
    padding: 1rem;
    position: relative;
    height: 60px;
    margin: 10px 12px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 0.625rem;
    -khtml-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    -ms-border-radius: 0.625rem;
    -o-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
    .fmo-logos-slider__logo:hover {
      opacity: 0.9;
      filter: alpha(opacity=90); }
    .fmo-logos-slider__logo__item {
      width: 100%;
      height: 100%;
      fill: #fff;
      pointer-events: none; }
    .fmo-logos-slider__logo__legend {
      display: none; }
  .fmo-logos-slider__custom-logo {
    padding: 1rem;
    position: relative;
    height: 70px;
    margin: 10px 12px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 0.625rem;
    -khtml-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    -ms-border-radius: 0.625rem;
    -o-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
    .fmo-logos-slider__custom-logo:hover {
      opacity: 0.9;
      filter: alpha(opacity=90); }
    .fmo-logos-slider__custom-logo__item {
      width: 100%;
      height: 100%;
      fill: #fff;
      pointer-events: none; }
    .fmo-logos-slider__custom-logo__legend {
      display: none; }
  .fmo-logos-slider__image {
    max-height: 80px;
    max-width: 70px;
    display: block;
    margin: 0 auto; }

.fmo-testimonials-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0 40px;
  z-index: 1; }

@media only screen and (min-width: 768px) {
  .fmo-testimonials-wrapper {
    padding: 20px 0 60px; }
  .fmo-testimonials__item__content__author img {
    width: 58px;
    height: 58px; }
  .fmo-testimonials__item__content__author .fmo-testimonials__item__content__author__info {
    line-height: 1.4; }
    .fmo-testimonials__item__content__author .fmo-testimonials__item__content__author__info li:first-child {
      font-size: 18px; }
  .testimonial-content p {
    font-size: 20px; } }

.testimonial-content {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto 30px; }
  .testimonial-content p {
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1em;
    padding: 0 14px; }

.fmo-testimonials {
  color: #82848b;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0; }
  .fmo-testimonials > .fmo-testimonials__item {
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0); }
    .fmo-testimonials > .fmo-testimonials__item:first-child {
      position: relative;
      opacity: 1;
      filter: alpha(opacity=100); }

@media only screen and (min-width: 1170px) {
  .testimonial-content p {
    font-size: 24px;
    line-height: 1.6; } }

.fmo-testimonials__item__content__author img {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.fmo-testimonials__item__content__author .fmo-testimonials__item__content__author__info {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  line-height: 1; }
  .fmo-testimonials__item__content__author .fmo-testimonials__item__content__author__info li:first-child {
    font-size: 14px;
    margin-top: 4px; }
  .fmo-testimonials__item__content__author .fmo-testimonials__item__content__author__info li:last-child {
    font-size: 12px;
    color: #6b6b70; }

.flex-direction-nav {
  list-style: none; }
  .flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 50px;
    height: 100%;
    margin: 0;
    position: absolute;
    z-index: 9999;
    top: 0;
    overflow: hidden;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    -webkit-text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -khtml-text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -moz-text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -ms-text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -o-text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .flex-direction-nav a::before {
      font-size: 40px;
      content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMzBweCIgaGVpZ2h0PSI1MHB4IiB2aWV3Qm94PSIwIDAgMzAgNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICAgICAgICA8dGl0bGU+Y2hldnJvbmxlZnQ8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxnIGlkPSJob21lcGFnZS12MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0MS4wMDAwMDAsIC00NzgxLjAwMDAwMCkiIGZpbGw9IiM4Mjg0OEIiPiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJjaGV2cm9ubGVmdCIgcG9pbnRzPSIxNzEgNDc4NiAxNTEuMTU2MjUgNDgwNiAxNzEgNDgyNiAxNjYgNDgzMSAxNDEgNDgwNiAxNjYgNDc4MSI+PC9wb2x5Z29uPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+);
      position: absolute;
      display: block;
      top: 50%;
      padding: 14px 10px;
      transform: -webkit-translateY(-50%);
      transform: -khtml-translateY(-50%);
      transform: -moz-translateY(-50%);
      transform: -ms-translateY(-50%);
      transform: -o-translateY(-50%);
      transform: translateY(-50%); }
    .flex-direction-nav a.flex-next::before {
      content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMzBweCIgaGVpZ2h0PSI1MHB4IiB2aWV3Qm94PSIwIDAgMzAgNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICAgICAgICA8dGl0bGU+Y2hldnJvbnJpZ2h0PC90aXRsZT4gICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+ICAgIDxkZWZzPjwvZGVmcz4gICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iaG9tZXBhZ2UtdjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMjgwLjAwMDAwMCwgLTQ3ODEuMDAwMDAwKSIgZmlsbD0iIzgyODQ4QiI+ICAgICAgICAgICAgPHBvbHlnb24gaWQ9ImNoZXZyb25yaWdodCIgcG9pbnRzPSIxMjgwIDQ3ODYgMTI4NSA0NzgxIDEzMTAgNDgwNiAxMjg1IDQ4MzEgMTI4MCA0ODI2IDEyOTkuODQzNzUgNDgwNiI+PC9wb2x5Z29uPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+);
      padding: 14px 20px 14px 10px; }
  .flex-direction-nav .flex-prev {
    left: 0;
    opacity: 0.2;
    filter: alpha(opacity=20); }
  .flex-direction-nav .flex-next {
    right: 0;
    color: transparent;
    text-align: right;
    opacity: 0.2;
    filter: alpha(opacity=20);
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
  .flex-direction-nav .flex-prev:hover,
  .flex-direction-nav .flex-next:hover {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .flex-direction-nav .flex-disabled {
    cursor: default;
    opacity: 0;
    filter: alpha(opacity=0); }

.flex-control-nav {
  bottom: 10px;
  position: absolute;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%; }
  .flex-control-nav li {
    display: inline-block;
    padding: 0 5px; }

@media screen and (max-width: 767px) {
  .flex-direction-nav {
    visibility: hidden; }
    .flex-direction-nav a {
      width: 30px; }
      .flex-direction-nav a::before {
        visibility: hidden;
        padding: 14px 0 10px; }
    .flex-direction-nav .flex-prev {
      left: 0; }
    .flex-direction-nav .flex-next {
      right: 0;
      text-align: right; }
  .flexslider:hover .flex-direction-nav .flex-prev {
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100); }
    .flexslider:hover .flex-direction-nav .flex-prev:hover {
      opacity: 1;
      filter: alpha(opacity=100); }
  .flexslider:hover .flex-direction-nav .flex-next {
    right: 0;
    opacity: 1;
    filter: alpha(opacity=100); } }

.fmo-testimonials__item__content__author span p {
  display: inline-block;
  font-size: 14px;
  padding-left: 0; }
  .fmo-testimonials__item__content__author span p a {
    color: #82848b; }

.fmo-testimonials__item__content__author__info {
  list-style: none; }
  .fmo-testimonials__item__content__author__info li span {
    font-size: 14px;
    line-height: 24px;
    font-family: Source Sans Pro, Calibri, sans;
    font-style: italic;
    font-weight: 300; }

.flexslider:hover .flex-direction-nav .flex-prev {
  left: 0;
  opacity: 1;
  filter: alpha(opacity=100); }
  .flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
    filter: alpha(opacity=100); }

.flexslider:hover .flex-direction-nav .flex-next {
  right: 0;
  opacity: 1;
  filter: alpha(opacity=100); }
  .flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
    filter: alpha(opacity=100); }

.flex-control-paging li a {
  width: 6px;
  height: 6px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-border-radius: 1.25rem;
  -khtml-border-radius: 1.25rem;
  -moz-border-radius: 1.25rem;
  -ms-border-radius: 1.25rem;
  -o-border-radius: 1.25rem;
  border-radius: 1.25rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }
  .flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, 0.7); }
  .flex-control-paging li a.flex-active {
    background: #000;
    background: #02171f;
    cursor: default; }

/* ==========================================================================
   # SVG Animations
   ========================================================================== */
svg {
  -webkit-transform: translate3d(0, 0, 0); }

/* ==========================================================================
   # Tabs
   ========================================================================== */
/* ==========================================================================
   # Team Members Grid for About Page
   ========================================================================== */
.fmo-team {
  width: 100%;
  padding: 0; }
  .fmo-team__title-container {
    padding: 20px 0 30px; }
    .fmo-team__title-container:before, .fmo-team__title-container:after {
      content: " ";
      display: table; }
    .fmo-team__title-container:after {
      clear: both; }
    .fmo-team__title-container__title {
      font-family: Montserrat, Verdana;
      color: #4b4f54;
      text-align: center;
      margin: 0.67em 0 20px;
      line-height: 1.1;
      font-weight: bold; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-team__title-container__title {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-team__title-container__title {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-team__title-container__title {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-team__title-container__title {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-team__title-container__title {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-team__title-container__title {
          font-size: 300%;
          line-height: 1.1; } }

.fmo-grid {
  background: #FFF;
  border: 1px solid #E2E9ED;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .fmo-grid .fmo-column {
    width: 20%;
    max-width: 20%;
    min-width: 20%;
    -webkit-flex-basis: 20%;
    -khtml-flex-basis: 20%;
    -moz-flex-basis: 20%;
    -ms-flex-basis: 20%;
    -o-flex-basis: 20%;
    flex-basis: 20%;
    -ms-flex-preferred-size: 20%; }

.fmo-column {
  z-index: 0;
  position: relative;
  background: #FFF;
  padding: 10px;
  -webkit-box-shadow: 0 0 0 1px #E2E9ED;
  box-shadow: 0 0 0 1px #E2E9ED;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease;
  -o-transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease; }
  .fmo-column:before {
    content: "";
    display: block;
    padding-top: 100%; }
  .fmo-column:hover {
    z-index: 1;
    -webkit-box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
    transform: -webkit-scale(1.05);
    transform: -khtml-scale(1.05);
    transform: -moz-scale(1.05);
    transform: -ms-scale(1.05);
    transform: -o-scale(1.05);
    transform: scale(1.05);
    -webkit-transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
    -o-transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease; }
    .fmo-column:hover .fmo-social {
      margin: 16px 0 0;
      padding: 0;
      opacity: 1;
      filter: alpha(opacity=100); }
    .fmo-column:hover .fmo-user__avatar {
      width: 48px;
      height: 48px; }
  .fmo-column:hover.vacancy .fmo-user__avatar {
    width: 98px;
    height: 98px; }
  .fmo-column:hover.vacancy .fmo-social {
    display: none; }
  .fmo-column.vacancy .fmo-user__title {
    margin: 10px 0 0; }
  .fmo-column.vacancy .fmo-user__btn {
    padding: 6px 14px;
    border: none;
    outline: none;
    text-transform: uppercase;
    text-transform: uppercase;
    letter-spacing: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: #009688;
    color: rgba(255, 255, 255, 0.9);
    font-family: Source Sans Pro, Calibri, sans;
    font-size: 180%;
    font-weight: light;
    min-width: 88px;
    -webkit-border-radius: 250px;
    -khtml-border-radius: 250px;
    -moz-border-radius: 250px;
    -ms-border-radius: 250px;
    -o-border-radius: 250px;
    border-radius: 250px;
    -webkit-border-radius: 15.625rem;
    -khtml-border-radius: 15.625rem;
    -moz-border-radius: 15.625rem;
    -ms-border-radius: 15.625rem;
    -o-border-radius: 15.625rem;
    border-radius: 15.625rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    font-weight: 400;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    font-weight: 500; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-column.vacancy .fmo-user__btn {
        font-size: 10px;
        line-height: 1.58; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-column.vacancy .fmo-user__btn {
        font-size: 11px;
        line-height: 1.68; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-column.vacancy .fmo-user__btn {
        font-size: 12px;
        line-height: 1.78; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-column.vacancy .fmo-user__btn {
        font-size: 13px;
        line-height: 1.88; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-column.vacancy .fmo-user__btn {
        font-size: 14px;
        line-height: 1.98; } }
    @media (min-width: 1920px) {
      .fmo-column.vacancy .fmo-user__btn {
        font-size: 15px;
        line-height: 2; } }
    .fmo-column.vacancy .fmo-user__btn:focus, .fmo-column.vacancy .fmo-user__btn:active, .fmo-column.vacancy .fmo-user__btn.active, .fmo-column.vacancy .fmo-user__btn:active:focus, .fmo-column.vacancy .fmo-user__btn.active:focus {
      outline: 0;
      outline-offset: 0;
      text-decoration: none; }
    .fmo-column.vacancy .fmo-user__btn:focus, .fmo-column.vacancy .fmo-user__btn:hover {
      outline: none;
      text-decoration: none;
      -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
      box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); }
    .fmo-column.vacancy .fmo-user__btn:hover {
      color: #fff;
      background-color: #26a69a; }
    .fmo-column.vacancy .fmo-user__btn:focus {
      color: #fff; }
  @media (max-width: 1200px) {
    .fmo-column {
      width: 33.333% !important;
      max-width: 33.333% !important;
      min-width: 33.333% !important;
      -webkit-flex-basis: 33.333% !important;
      -khtml-flex-basis: 33.333% !important;
      -moz-flex-basis: 33.333% !important;
      -ms-flex-basis: 33.333% !important;
      -o-flex-basis: 33.333% !important;
      flex-basis: 33.333% !important;
      -ms-flex-preferred-size: 33.333% !important; } }
  @media (max-width: 600px) {
    .fmo-column {
      width: 50% !important;
      max-width: 50% !important;
      min-width: 50% !important;
      -webkit-flex-basis: 50% !important;
      -khtml-flex-basis: 50% !important;
      -moz-flex-basis: 50% !important;
      -ms-flex-basis: 50% !important;
      -o-flex-basis: 50% !important;
      flex-basis: 50% !important;
      -ms-flex-preferred-size: 50% !important; } }
  @media (max-width: 360px) {
    .fmo-column {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      -webkit-flex-basis: 100% !important;
      -khtml-flex-basis: 100% !important;
      -moz-flex-basis: 100% !important;
      -ms-flex-basis: 100% !important;
      -o-flex-basis: 100% !important;
      flex-basis: 100% !important;
      -ms-flex-preferred-size: 100% !important; } }

.fmo-user {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -khtml-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%); }
  .fmo-user__avatar {
    width: 98px;
    height: 98px;
    margin: 0 auto 20px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-out 0.1s;
    -o-transition: all 0.4s ease-out 0.1s;
    transition: all 0.4s ease-out 0.1s;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .fmo-user__avatar img {
      display: block;
      width: 100%;
      max-width: 100%; }
  .fmo-user__vacancies {
    width: 150px;
    height: 150px;
    margin: 0 auto -30px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-out 0.1s;
    -o-transition: all 0.4s ease-out 0.1s;
    transition: all 0.4s ease-out 0.1s;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box; }
    .fmo-user__vacancies img {
      display: block;
      width: 100%;
      max-width: 100%; }
  .fmo-user__name {
    color: #313435;
    font-family: Montserrat, Verdana;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.625rem; }
  .fmo-user__title {
    color: #6F808A;
    font-family: Source Sans Pro, Calibri, sans;
    font-size: 1.5rem;
    line-height: 2.375rem;
    font-weight: 500; }

.fmo-social {
  margin: 0 0 -18px;
  padding: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: margin 0.2s ease, opacity 0.2s ease;
  -o-transition: margin 0.2s ease, opacity 0.2s ease;
  transition: margin 0.2s ease, opacity 0.2s ease; }
  .fmo-social__item {
    display: inline-block;
    margin: 0 10px; }
    .fmo-social__item a {
      display: block; }
    .fmo-social__item__icon {
      fill: #515f65;
      display: block;
      width: 18px;
      height: 18px;
      -webkit-transition: fill 0.2s ease;
      -o-transition: fill 0.2s ease;
      transition: fill 0.2s ease; }
      .fmo-social__item__icon:hover {
        fill: #788d96; }

/* ==========================================================================
   # Toast Notifications
   ========================================================================== */
/* ==========================================================================
   # Quotes Styles
   ========================================================================== */
.fmo-quotes {
  width: 100%;
  position: relative;
  margin: 50px 0 30px; }
  .fmo-quotes__container {
    position: relative;
    padding: 30px;
    background-color: #efefef;
    border-radius: 5px; }
    .fmo-quotes__container__icon-container {
      width: 60px;
      height: 60px;
      position: absolute;
      top: -36px;
      padding: 16px;
      background-color: #efefef;
      border-radius: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -khtml-transform: translate(-50%, 0%);
      -moz-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      -o-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%);
      -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.18); }
      .fmo-quotes__container__icon-container__icon {
        fill: #009688;
        width: 100%;
        height: 100%; }
    .fmo-quotes__container__content__text {
      text-align: center;
      margin-bottom: 0px;
      font-size: 18px; }
    .fmo-quotes__container__content__author {
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -ms-flex-line-pack: stretch;
      -webkit-align-content: stretch;
      -khtml-align-content: stretch;
      -moz-align-content: stretch;
      -ms-align-content: stretch;
      -o-align-content: stretch;
      align-content: stretch;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-quotes__container__content__author__avatar, .fmo-quotes__container__content__author__name {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -khtml-flex: 0 1 auto;
        -moz-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        -o-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-item-align: auto;
        -webkit-align-self: auto;
        -khtml-align-self: auto;
        -moz-align-self: auto;
        -ms-align-self: auto;
        -o-align-self: auto;
        align-self: auto; }
      .fmo-quotes__container__content__author__avatar {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -khtml-order: 0;
        -moz-order: 0;
        -ms-order: 0;
        -o-order: 0;
        order: 0; }
        .fmo-quotes__container__content__author__avatar__img {
          width: 30px;
          height: 30px;
          border-radius: 50%;
          margin: 0 12px 0 0; }
      .fmo-quotes__container__content__author__name {
        font-style: italic;
        text-align: center;
        margin: 0;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -khtml-order: 1;
        -moz-order: 1;
        -ms-order: 1;
        -o-order: 1;
        order: 1;
        font-weight: 100; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-quotes__container__content__author__name {
            font-size: 14px;
            line-height: 1.58; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-quotes__container__content__author__name {
            font-size: 15px;
            line-height: 1.68; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-quotes__container__content__author__name {
            font-size: 16px;
            line-height: 1.78; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-quotes__container__content__author__name {
            font-size: 16px;
            line-height: 1.88; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-quotes__container__content__author__name {
            font-size: 17px;
            line-height: 1.98; } }
        @media (min-width: 1920px) {
          .fmo-quotes__container__content__author__name {
            font-size: 18px;
            line-height: 2; } }

/* ==========================================================================
   # Tooltip
   ========================================================================== */
.fmo-embedded-video, .fmo-uploaded-video {
  width: 80%;
  max-width: 640px;
  margin: 0 auto; }

.fmo-embedded-video_container, .fmo-uploaded-video_container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  border-radius: 1.265rem;
  overflow: hidden; }

.fmo-embedded-video_container iframe, .fmo-embedded-video_container object, .fmo-embedded-video_container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; }

.fmo-uploaded-video_container iframe, .fmo-uploaded-video_container object, .fmo-uploaded-video_container embed {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 440px;
  width: 100%;
  height: 100%;
  border: none; }

/* ==========================================================================
   # Waves Effect / Ripple effect
   ========================================================================== */
.ripple-effect, .fmo-container--landing-page__row__btn-container__btn, .fmo-container--landing-page__row__macro-btn-container__btn, .fmo-container--normal-page__row__btn-container__btn, .fmo-container--article-page__row__btn-container__btn, .fmo-card-news__wrapper__data__content__btn, .fmo-headline-news-card__text-container__btn-container__btn, .fmo-load-more__btn-container__btn, .fmo-article-newsletter__form__btn-container__submit, .fmo-cpc-calculator__container__form__slider__btns__prev, .fmo-cpc-calculator__container__form__slider__btns__next, .fmo-hero-module__video-container__title-container__btn, .fmo-hero-module__image-container__title-container__btn, .fmo-incremental-input__minus__btn, .fmo-incremental-input__plus__btn, .fmo-news-resources-card__btn-container__btn, .fmo-column.vacancy .fmo-user__btn {
  position: relative;
  overflow: hidden;
  transform: -webkit-translate3d(0, 0, 0);
  transform: -khtml-translate3d(0, 0, 0);
  transform: -moz-translate3d(0, 0, 0);
  transform: -ms-translate3d(0, 0, 0);
  transform: -o-translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.ink {
  display: block;
  position: absolute;
  pointer-events: none;
  background: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  transform: -webkit-scale(0);
  transform: -khtml-scale(0);
  transform: -moz-scale(0);
  transform: -ms-scale(0);
  transform: -o-scale(0);
  transform: scale(0); }

.btn-rounded {
  -webkit-border-radius: 58px;
  -khtml-border-radius: 58px;
  -moz-border-radius: 58px;
  -ms-border-radius: 58px;
  -o-border-radius: 58px;
  border-radius: 58px;
  -webkit-border-radius: 3.625rem;
  -khtml-border-radius: 3.625rem;
  -moz-border-radius: 3.625rem;
  -ms-border-radius: 3.625rem;
  -o-border-radius: 3.625rem;
  border-radius: 3.625rem;
  -webkit-background-clip: padding-box;
  -khtml-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box; }

.ink.animate {
  -webkit-animation: ripple 0.5s linear;
  -o-animation: ripple 0.5s linear;
  animation: ripple 0.5s linear; }

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5); } }

@-moz-keyframes ripple {
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5); } }

@-ms-keyframes ripple {
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5); } }

@-o-keyframes ripple {
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5); } }

@keyframes ripple {
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: -webkit-scale(2.5);
    transform: -khtml-scale(2.5);
    transform: -moz-scale(2.5);
    transform: -ms-scale(2.5);
    transform: -o-scale(2.5);
    transform: scale(2.5); } }

/* ==========================================================================
   # Resources Filter Bar
   ========================================================================== */
.fmo-resources--filter-bar {
  overflow: hidden; }
  .fmo-resources--filter-bar__section {
    background-color: #FFFFFF;
    padding: 12.5px 24px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-line-pack: space-between;
    -webkit-align-content: space-between;
    -khtml-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); }
    .fmo-resources--filter-bar__section :nth-child(2) {
      margin-left: 5px; }
  .fmo-resources--filter-bar__no-results {
    display: none !important; }
    .fmo-resources--filter-bar__no-results__all--link {
      cursor: pointer;
      font-weight: 600; }
      .fmo-resources--filter-bar__no-results__all--link:hover {
        text-decoration: underline;
        color: #431070; }
    .fmo-resources--filter-bar__no-results.show {
      display: block !important; }
  .fmo-resources--filter-bar__search-results-terms {
    display: none !important;
    background-color: #FFFFFF;
    padding: 12.5px 24px;
    text-align: center;
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2); }
    .fmo-resources--filter-bar__search-results-terms__container {
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: -webkit-box;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -khtml-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -khtml-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; }
      .fmo-resources--filter-bar__search-results-terms__container p {
        margin: 0;
        font-weight: 700; }
        @media (min-width: 0) and (max-width: 543px) {
          .fmo-resources--filter-bar__search-results-terms__container p {
            font-size: 180%;
            line-height: 1.3; } }
        @media (min-width: 544px) and (max-width: 767px) {
          .fmo-resources--filter-bar__search-results-terms__container p {
            font-size: 220%;
            line-height: 1.3; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .fmo-resources--filter-bar__search-results-terms__container p {
            font-size: 240%;
            line-height: 1.3; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .fmo-resources--filter-bar__search-results-terms__container p {
            font-size: 260%;
            line-height: 1.3; } }
        @media (min-width: 1200px) and (max-width: 1919px) {
          .fmo-resources--filter-bar__search-results-terms__container p {
            font-size: 280%;
            line-height: 1.2; } }
        @media (min-width: 1920px) {
          .fmo-resources--filter-bar__search-results-terms__container p {
            font-size: 300%;
            line-height: 1.1; } }
      .fmo-resources--filter-bar__search-results-terms__container #search-terms {
        margin-left: 10px;
        font-style: italic; }
    .fmo-resources--filter-bar__search-results-terms p {
      margin: 0;
      font-weight: 700; }
      @media (min-width: 0) and (max-width: 543px) {
        .fmo-resources--filter-bar__search-results-terms p {
          font-size: 180%;
          line-height: 1.3; } }
      @media (min-width: 544px) and (max-width: 767px) {
        .fmo-resources--filter-bar__search-results-terms p {
          font-size: 220%;
          line-height: 1.3; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .fmo-resources--filter-bar__search-results-terms p {
          font-size: 240%;
          line-height: 1.3; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .fmo-resources--filter-bar__search-results-terms p {
          font-size: 260%;
          line-height: 1.3; } }
      @media (min-width: 1200px) and (max-width: 1919px) {
        .fmo-resources--filter-bar__search-results-terms p {
          font-size: 280%;
          line-height: 1.2; } }
      @media (min-width: 1920px) {
        .fmo-resources--filter-bar__search-results-terms p {
          font-size: 300%;
          line-height: 1.1; } }
    .fmo-resources--filter-bar__search-results-terms.show {
      display: block !important; }
  .fmo-resources--filter-bar__categories {
    float: left;
    padding-right: 50px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -khtml-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-line-pack: space-between;
    -webkit-align-content: space-between;
    -khtml-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -khtml-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start; }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-resources--filter-bar__categories {
        display: none; } }
  .fmo-resources--filter-bar__categories-mobile {
    display: none; }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-resources--filter-bar__categories-mobile {
        display: block; } }
    .fmo-resources--filter-bar__categories-mobile-radios {
      display: none;
      visibility: hidden;
      margin-left: 6px;
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transition: opacity 0.3s, visibility 0.3s;
      -o-transition: opacity 0.3s, visibility 0.3s;
      transition: opacity 0.3s, visibility 0.3s; }
      .fmo-resources--filter-bar__categories-mobile-radios.visible-radios {
        display: block;
        visibility: visible;
        margin-left: 6px;
        opacity: 1;
        filter: alpha(opacity=100); }
      .fmo-resources--filter-bar__categories-mobile-radios label {
        margin-left: 13.5px !important;
        cursor: pointer; }
      .fmo-resources--filter-bar__categories-mobile-radios input[type='radio']:after {
        width: 20px;
        height: 20px;
        border-radius: 15px;
        top: -2.5px;
        left: -2.5px;
        position: relative;
        background-color: #4B4F54;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2.5px solid #A5A5A5;
        cursor: pointer;
        -webkit-user-select: initial;
        -moz-user-select: initial;
        -ms-user-select: initial;
        user-select: initial; }
      .fmo-resources--filter-bar__categories-mobile-radios input[type='radio']:checked:after {
        width: 20px;
        height: 20px;
        border-radius: 15px;
        top: -2.5px;
        left: -2.5px;
        position: relative;
        background-color: #009688;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2.5px solid #A5A5A5;
        pointer-events: none;
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }
      .fmo-resources--filter-bar__categories-mobile-radios input[type='radio'].checked:after {
        background-color: #009688;
        border: 2.5px solid #A5A5A5;
        pointer-events: none;
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }
  .fmo-resources--filter-bar__categories-headline {
    color: #A5A5A5;
    margin-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding: 5px 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    font-weight: 400; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 180%;
        line-height: 1.3; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 220%;
        line-height: 1.3; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 240%;
        line-height: 1.3; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 260%;
        line-height: 1.3; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 280%;
        line-height: 1.2; } }
    @media (min-width: 1920px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 300%;
        line-height: 1.1; } }
    @media (min-width: 0) and (max-width: 767px) {
      .fmo-resources--filter-bar__categories-headline {
        font-size: 220%;
        display: flex;
        align-items: center;
        align-content: center;
        -webkit-user-select: initial;
        -moz-user-select: initial;
        -ms-user-select: initial;
        user-select: initial;
        cursor: pointer; } }
    .fmo-resources--filter-bar__categories-headline .glyphicon {
      color: #A5A5A5;
      font-size: 80%;
      margin-left: -15px;
      margin-right: 10px; }
  .fmo-resources--filter-bar__button:first-child {
    margin-left: 10px; }
  .fmo-resources--filter-bar__button {
    color: #A5A5A5;
    font-weight: 200;
    text-decoration: none;
    margin-top: 2px;
    margin-bottom: 0px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    padding-left: 10px;
    padding-right: 10px;
    padding: 5px 20px;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-border-radius: 35px;
    -khtml-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    border-radius: 35px;
    -webkit-border-radius: 2.1875rem;
    -khtml-border-radius: 2.1875rem;
    -moz-border-radius: 2.1875rem;
    -ms-border-radius: 2.1875rem;
    -o-border-radius: 2.1875rem;
    border-radius: 2.1875rem;
    -webkit-background-clip: padding-box;
    -khtml-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-resources--filter-bar__button {
        font-size: 150%; } }
    @media (min-width: 544px) and (max-width: 767px) {
      .fmo-resources--filter-bar__button {
        font-size: 170%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .fmo-resources--filter-bar__button {
        font-size: 190%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fmo-resources--filter-bar__button {
        font-size: 210%; } }
    @media (min-width: 1200px) and (max-width: 1919px) {
      .fmo-resources--filter-bar__button {
        font-size: 230%; } }
    @media (min-width: 1920px) {
      .fmo-resources--filter-bar__button {
        font-size: 250%; } }
    .fmo-resources--filter-bar__button:hover {
      text-decoration: none;
      color: #FFFFFF;
      color: rgba(255, 255, 255, 0.9);
      background-color: #009688;
      cursor: pointer; }
    .fmo-resources--filter-bar__button.selected {
      text-decoration: none;
      color: #FFFFFF;
      color: rgba(255, 255, 255, 0.9);
      background-color: #009688;
      cursor: default;
      pointer-events: none; }
  .fmo-resources--filter-bar__search-button {
    position: absolute;
    float: right;
    top: 0px;
    right: 0px;
    margin-bottom: auto;
    margin-top: auto;
    padding: 21px 10px;
    font-size: 210%; }
    .fmo-resources--filter-bar__search-button .glyphicon {
      color: #A5A5A5; }
  .fmo-resources--filter-bar__close-btn {
    cursor: pointer;
    top: 3em;
    right: 2.1em;
    color: transparent;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: none;
    display: inline-block;
    position: absolute;
    width: 40px;
    margin-left: 8px;
    -webkit-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s; }
    .fmo-resources--filter-bar__close-btn::before, .fmo-resources--filter-bar__close-btn::after {
      content: '';
      position: absolute;
      height: 40px;
      width: 2px;
      background-color: #fff;
      left: 50%;
      top: 50%;
      transform: -webkit-translateX(-50%) scale(0);
      transform: -khtml-translateX(-50%) scale(0);
      transform: -moz-translateX(-50%) scale(0);
      transform: -ms-translateX(-50%) scale(0);
      transform: -o-translateX(-50%) scale(0);
      transform: translateX(-50%) scale(0); }
    .fmo-resources--filter-bar__close-btn::before {
      transform: -webkit-translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: -khtml-translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: -moz-translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: -ms-translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: -o-translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: translateX(-50%) translateY(-50%) rotate(-45deg); }
    .fmo-resources--filter-bar__close-btn::after {
      transform: -webkit-translateX(-50%) translateY(-50%) rotate(45deg);
      transform: -khtml-translateX(-50%) translateY(-50%) rotate(45deg);
      transform: -moz-translateX(-50%) translateY(-50%) rotate(45deg);
      transform: -ms-translateX(-50%) translateY(-50%) rotate(45deg);
      transform: -o-translateX(-50%) translateY(-50%) rotate(45deg);
      transform: translateX(-50%) translateY(-50%) rotate(45deg); }
    @media (min-width: 0) and (max-width: 543px) {
      .fmo-resources--filter-bar__close-btn {
        width: 16px;
        margin-left: 0;
        margin-bottom: -4px; } }
  .fmo-resources--filter-bar__search-container {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #431070;
    visibility: hidden;
    border: 3.5em solid #2a0057;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -khtml-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -khtml-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s; }
    .fmo-resources--filter-bar__search-container.article-search-visible {
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-animation: fmo-flip-down 0.3s;
      -o-animation: fmo-flip-down 0.3s;
      animation: fmo-flip-down 0.3s; }
      .fmo-resources--filter-bar__search-container.article-search-visible .fmo-resources--filter-bar__close-btn {
        transform: -webkit-translateY(-50%) scale(1);
        transform: -khtml-translateY(-50%) scale(1);
        transform: -moz-translateY(-50%) scale(1);
        transform: -ms-translateY(-50%) scale(1);
        transform: -o-translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1); }
    .fmo-resources--filter-bar__search-container__input {
      border: 0;
      background: transparent;
      border-radius: 0;
      -webkit-appearance: none;
      font-family: inherit;
      font-size: 7vw;
      line-height: 1;
      display: inline-block;
      box-sizing: border-box;
      width: 75%;
      padding: 0.05em 0;
      color: #FFFFFF;
      border-bottom: 2px solid !important; }
      .fmo-resources--filter-bar__search-container__input::placeholder {
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF; }
      .fmo-resources--filter-bar__search-container__input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF; }
      .fmo-resources--filter-bar__search-container__input::-moz-placeholder {
        /* Firefox 19+ */
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF; }
      .fmo-resources--filter-bar__search-container__input:-ms-input-placeholder {
        /* IE 10+ */
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF; }
      .fmo-resources--filter-bar__search-container__input:-moz-placeholder {
        /* Firefox 18- */
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF; }
    .fmo-resources--filter-bar__search-container__search-info {
      font-size: 1.5em;
      font-weight: 500;
      display: block;
      width: 75%;
      margin: 0 auto;
      padding: 0.85em 0;
      text-align: right;
      color: #fff; }
    .fmo-resources--filter-bar__search-container__search-related {
      display: flex;
      width: 75%;
      pointer-events: none;
      color: #FFFFFF; }
    .fmo-resources--filter-bar__search-container__search-suggestion {
      width: 33.33%;
      text-align: left;
      opacity: 0;
      transform: translate3d(0, -30px, 0);
      transition: opacity 0.5s, transform 0.5s;
      opacity: 1;
      transform: translate3d(0, 0, 0); }

@-webkit-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-moz-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-ms-keyframes fmo-flip-down {
  .fmo-resources--filter-bar 0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  .fmo-resources--filter-bar 100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-o-keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@keyframes fmo-flip-down {
  0% {
    transform: -webkit-perspective(1000px) rotateX(-90deg);
    transform: -khtml-perspective(1000px) rotateX(-90deg);
    transform: -moz-perspective(1000px) rotateX(-90deg);
    transform: -ms-perspective(1000px) rotateX(-90deg);
    transform: -o-perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    transform: -webkit-perspective(1000px) translateY(0);
    transform: -khtml-perspective(1000px) translateY(0);
    transform: -moz-perspective(1000px) translateY(0);
    transform: -ms-perspective(1000px) translateY(0);
    transform: -o-perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@-webkit-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@-moz-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@-ms-keyframes fmo-slide-down {
  .fmo-resources--filter-bar 0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  .fmo-resources--filter-bar 100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@-o-keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

@keyframes fmo-slide-down {
  0% {
    transform: -webkit-translateY(-100%);
    transform: -khtml-translateY(-100%);
    transform: -moz-translateY(-100%);
    transform: -ms-translateY(-100%);
    transform: -o-translateY(-100%);
    transform: translateY(-100%); }
  100% {
    transform: -webkit-translateY(0);
    transform: -khtml-translateY(0);
    transform: -moz-translateY(0);
    transform: -ms-translateY(0);
    transform: -o-translateY(0);
    transform: translateY(0); } }

/* ==========================================================================
   # rte
   ========================================================================== */
.fmo-container--article-page__grid .umb-grid .grid-section .container ul li, .fmo-container--article-page__grid .umb-grid .grid-section .container ol li {
  font-family: source sans pro;
  font-size: 18px;
  color: #565656; }

.fmo-container--article-page__grid .umb-grid .grid-section .container ul li {
  list-style: disc;
  list-style-type: disc; }

.fmo-container--article-page__grid .umb-grid .grid-section .container ol {
  padding-left: 37px; }
  .fmo-container--article-page__grid .umb-grid .grid-section .container ol li {
    list-style: decimal;
    list-style-type: decimal;
    font-weight: 600; }

/*# sourceMappingURL=maps/site.min.css.map */
/* start css */
.site-header {
    position: fixed;
    z-index: 99999;
    background: #fff;
    width: 100%;
}
.kr-headerwrap {
    max-width: 1110px;
    margin: 0 auto;
}
.site-header .logo-wrap {
    float: left;
    width: 25%;
    padding:0;
}
.site-header .nav-before-slider {
    float: right;
}
.site-header .nav-before-slider {
    width: 75%;
}
.site-header .nav-before-slider .nav {
  display: inline-block;
  vertical-align: middle;
}
.nav.top-menu-up {
    float: right;
    margin-right: 0px;
}
.site-header .nav-before-slider .nav .menu-header-nav-container ul li {
    margin-right: 35px;
}
.site-header .nav-before-slider .nav .menu-header-nav-container ul li {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}
.nav.top-menu-up ul li a {
    color: #383838;
    font-size: 14px !important;
    text-transform: uppercase;
    font-family:  'Roboto' !important;
    font-weight: 600;
    padding:20px 20px 10px !important;
}
.site-header .nav-before-slider .nav .menu-header-nav-container ul li a {
    display: block;
    padding: 24px 20px;
}
.site-header .nav-before-slider .nav .menu-header-nav-container ul li:hover a {
    color: #384fcf; 
}
.about-wrapper.bgimgclass {
    padding:20px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-wrapper.bgimgclass {
    background-image: url(../images/bg-top.png);
  /* background: #f48117;*/
    background-size: cover;
    overflow: hidden;
    margin-bottom: 25px;
}
.about-wrapper {
    padding-top: 154px;
}
.bgimgclass {
    position: relative;
}
.ak-container {
    max-width: 1110px;
    margin: 0 auto;
}
.about-content-section.text-center {
    margin-top: 7%;
    position: relative;
    z-index: 9;
}
.Let-Scale {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    padding-bottom: 80px;
}
.our-people-say {
    padding: 45px 0;
    background: #f3f5f9;
    /*margin-top: 3px;*/
}
.ak-container {
    max-width: 1110px;
    margin: 0 auto;
}
.title-home {
    font-size: 34px;
    font-family:  'Roboto', sans-serif;
    font-weight: 300;
    color: #2f2829;
    padding: 0px 10%;
    text-align: center;
    display: block;
}
.sub-title {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #676e71;
    display: block;
    text-align: center;
    font-weight: 300;
}
.height-space {
    height: 50px;
    width: 100%;
}
.service_tab {
    text-align: center;
    transition: .3s ease-in-out;
    padding: 35px 20px 0;
    overflow: hidden;
    display: block;
    box-shadow: 0 0 10px #ddd;
    background: #fff;
    min-height: 450px;
    margin-top: 20px;
    border-radius: 3px;
}
/*.service_tab:hover {
    background: #223a8f;
}*/
.icon-img {
    display: block;
    height: 85px;
    padding: 50px;
    vertical-align: middle;
    width: 100%;
    margin-bottom: 20px !important;
}
.service_tab h3 {
    font-weight: 300px;
    font-size: 17px;
    color: #2f2829;
    margin: 0;
    border-top: 1px solid #ced5e1;
    line-height: 22px;
    min-height: 80px;
}
.service_tab p {
    color: #676e71;
    line-height: 25px;
    font-weight: 300;
    font-size: 15px;
    margin-top: 15px;
    padding: 0 10px;
}
/*i.fas {
    font-size: 83px;
    color: #526099;
}
i.fab {
    font-size: 83px;
    color: #526099;
}*/
.vserve {
    background-image: url(../images/vserve.png);
   /*background: #526099;*/
    padding: 45px 0;
    background-size: cover;
}
@media (min-width: 1200px).container { width: 1170px; }
.vserve h1 {
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
}
.vserve p {
    font-size: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
p {
    color: #676e71;
    font-family: 'Roboto', sans-serif !important;
}
p {
    margin: 0 0 10px;
}
.vserve .btn-CONSULTATION {
    color: #f48117;
    background-color: #ffffff;
    box-shadow: 0 0 8px #444;
    border-color: #ffffff;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 20px;
    float: right;
}
a {
    font-family:'Roboto', sans-serif;
    background-color: transparent;
}
.site-footer {
    background-size: cover;
    background-repeat: no-repeat;
}
.site-footer {
    padding-top: 30px;
    background: #171515;
}
footer{
  display: block;
}
#nav_menu-2, #nav_menu-3 {
    width: 18%;
}
#doko-footer .widget-title {
    color: #fff;
    font-size: 18px;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}
.site-footer .widget-title {
    margin-bottom: 40px;
}
.widget-title {
    font-size: 24px;
    color: #262626;
    line-height: 1.2;
}
#doko-footer ul li {
    padding: 0;
    border: none;
}
#doko-footer ul li a {
    font-size: 14px;
    line-height: 35px;
    font-weight: 300;
    color: #f2f2f2;
}
img {
    max-width: 100%;
    vertical-align: top;
}
.contact {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
    display: block;
    font-weight: 300;
    color: #fff;
    font-size: 15px;
    overflow: hidden;
}
.contact i {
    font-size: 20px;
    color: #f2f2f2;
    width: 30px;
    height: 50px;
    float: left;
}
.site-footer .col-md-3 {
    width: 21%;
}
.site-footer .col-md-3:last-child {
    padding-right: 0;
}
.site-footer .footer-buttom {
    width: 100%;
    border-top: 1px solid #2d2c2c;
    padding: 15px 0;
    background: #171515;
    margin-top: 0px;
    overflow: hidden;
    float: left;
}
a:hover {
    color: #fff;
} 
.socil-un a:hover {
    background: #2d3b7f;
    color: #fff;
    border: 1px solid #2d3b7f;
}
.socil-un a {
    width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    line-height: 38px;
    font-size: 18px;
    margin-right: 10px;
}
/*Price tab styles as on 22nd March 2019*/
.sub-title ul {width:65%;margin:0 auto;}
.sub-title ul li {width:100%;padding: 4px 0;text-align:center;}
.sub-title ul li span {color:#182c90; font-size:15px; font-weight:600;}
.sub-title ul p { }















/*Responsive CSS*/

@media only screen and (max-width : 320px) {
header .nav.top-menu-up ul li a{padding: 0px 24px 10px !important;font-size: 12px !important;}
header.site-header .logo-wrap {width: 100%;text-align: center;}
header.site-header .nav-before-slider {width: 100%;text-align: center;}
header.site-header .nav-before-slider .nav .menu-header-nav-container ul li a {display: block;padding: 0 !important;
}header.site-header {position: relative;}
.fmo-cpc-calculator__title {margin-top: 15px !important;}
#perspective .fmo-container--cpc-page{margin-top:0 !important;}
.checkobx{padding-left:0 !important;margin-top:10px !important;}
.fmo-cpc-calculator__container__form__slider {height: auto !important;}
.title-home{font-size:22px !important;}
.height-space{height:auto;}
.fmo-container--cpc-page__row__cards-container .fmo-card {margin: 20px 0.5px;}
.vserve h1{font-size: 24px;text-align: center;}
.vserve p{text-align: center;}
.vserve .btn-CONSULTATION{margin-right: 25px;}
#doko-footer ul li a {line-height: 28px;}
#nav_menu-2, #nav_menu-3 {width: 100%;}
.site-footer .widget-title {margin-bottom: 10px;}
.site-footer .col-md-3 {width: 100%;padding-left: 43px;}
#doko-footer .widget-title{margin-top: 30px;}
.col-md-8.col-xs-8.xsw { width: 100% !important; }
.col-md-4.col-xs-4.xsw { width: 100% !important; }
}


@media only screen and (min-device-width : 321px) and (max-device-width : 480px) {
header .nav.top-menu-up ul li a{padding: 0px 24px 10px !important;font-size: 12px !important;}
header.site-header .logo-wrap {width: 100%;text-align: center;}
header.site-header .nav-before-slider {width: 100%;text-align: center;}
header.site-header .nav-before-slider .nav .menu-header-nav-container ul li a {display: block;padding: 0 !important;
}header.site-header {position: relative;}
.fmo-cpc-calculator__title__text {
    font-size: 158%;}
.fmo-cpc-calculator__title {margin-top: 15px !important;}
#perspective .fmo-container--cpc-page{margin-top:0 !important;}
.checkobx{padding-left:0 !important;margin-top:10px !important;}
.fmo-cpc-calculator__container__form__slider {height: auto !important;}
.title-home{font-size:22px !important;}
.height-space{height:auto;}
.fmo-container--cpc-page__row__cards-container .fmo-card {margin: 20px 0.5px;}
.vserve h1{font-size: 24px;text-align: center;}
.vserve p{text-align: center;}
.vserve .btn-CONSULTATION{margin-right: 105px;}
#doko-footer ul li a {line-height: 28px;}
#nav_menu-2, #nav_menu-3 {width: 100%;}
.site-footer .widget-title {margin-bottom: 10px;}
.site-footer .col-md-3 {width: 100%;padding-left: 43px;}
#doko-footer .widget-title{margin-top: 30px;}
.our-people-say{padding: 45px 20px;width: 95%}
.our-people-say .Let-Scale{padding: 0 8px;}
.col-md-8.col-xs-8.xsw { width: 100% !important; }
.col-md-4.col-xs-4.xsw { width: 100% !important; }
}


@media only screen and (min-width : 481px) and (max-width: 767px){
.vserve .btn-CONSULTATION{margin-top: 0px;}
.contact i {font-size: 15px;}
.contact{font-size: 10px;}
.contact a{font-size: 10px;}
#doko-footer .widget-title{font-size: 16px;}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)  {
.vserve .btn-CONSULTATION{margin-top: 0px;}
.contact i {font-size: 15px;}
.contact{font-size: 10px;}
.contact a{font-size: 10px;}
}
@media only screen and (min-width : 1025px) and (max-width : 1200px){
  }

@media only screen and (min-width : 1200px) and (max-width : 1400px){

  }









