﻿/*========================================================

	Website Name: HouseMan
	Description: Keeping your own living quarters clean
	Website URI: http://www.houseman.com
	Version: 1.0.0.0
	Year: 2015
	Tags: Tenant Services | Maintenance | Repairs
	Author: IT Engine
	Author URI: http://www.itengine.rs
	License: GNU General Public License
	License URI: http://www.gnu.org/licenses/gpl.html

========================================================



/*	GENERAL
	==================================================	*/

body { font-family: 'Roboto', sans-serif; font-size: 13px; }

a,
body { color: rgba(0, 0, 0, .87); }

a:focus,
a:hover { text-decoration: none; }
a:active { background-color: transparent; }
a:focus { outline: thin dotted transparent; }

.skin { background-color: #ededed; background-image: url('../images/noise40.png'); }



/*	COMPONENTS
	==================================================	*/

/* Accordion */
.st-accordion {  }
	.st-accordion__item { background-color: #373D3D; box-shadow: 0 -1px 0 #ededed inset; }
	.st-accordion__link { color: #d1d1d1; }
	.st-accordion__heading{ font-size: 13px; }
	.st-accordion__content { background-color: #ffffff; border: 1px solid #dfdcd6; opacity: 1 !important; }
	.st-accordion__description:nth-child(odd) { background-color: #f8f8f8; box-shadow: 0 1px 0 #e6e6e6; }
	.st-accordion__link:before { color: #d1d1d1; content: '\f105'; font-family: 'FontAwesome'; line-height: 50px; transition: transform .5s cubic-bezier(.77, 0, .175, 1); transform: rotate(0); }
	.st-accordion__link:focus,
	.st-accordion__link:hover,
	.st-accordion__link:active { color: #fff; }
	.is-open > .st-accordion__link { color: #fff; }
	.is-open > .st-accordion__link:before { transform: rotate(90deg); }
	.st-accordion__subheading,
	.disabled > .st-accordion__link,
	.disabled > .st-accordion__link:before { color: #999; }



/*	BUTTONS
	==================================================	*/
.btn { padding: 5px 15px; transition: all .3s ease; }
	.btn > a { vertical-align: middle; }

.btn-update { display: block; margin: -40px 0 0 75px; position: relative; z-index: 1; }

.btn { border: medium none; position: relative; }
	.btn-flat { padding: 6px 0; }
	.btn-flat,
	.btn-raised { min-width: 88px; padding: 6px 0; }
	.btn-raised { border-radius: 2px; }
	.btn-itoggle,
	.btn-itoggle-alt { overflow: visible; padding: 12px; }
	.btn-md.btn-itoggle { width: 48px; }
	.btn-md.btn-itoggle-alt { width: 36px; }
	.btn-md > .btn-itoggle__icon { height: 24px; line-height: 24px; width: 24px; }

	.btn__text { margin-left: 8px; }
	.btn__inner { border: medium none; cursor: pointer; display: block; line-height: 20px; position: relative; width: 100%; transition: filter .3s cubic-bezier(.165, .840, .440, 1.000), background-color .3s cubic-bezier(.165, .840, .440, 1.000), box-shadow .3s cubic-bezier(.165, .840, .440, 1.000), color .3s ease; }
	.btn-sm > .btn__inner { height: 20px; margin-bottom: 0; margin-top: 0; }
	.btn-flat.btn-md > .btn__inner,
	.btn-raised.btn-md > .btn__inner { height: 36px; padding: 8px 16px; }
	.nav-drawer__list .btn__inner { transition: filter .3s cubic-bezier(.165, .840, .440, 1.000), background-color .3s cubic-bezier(.165, .840, .440, 1.000), box-shadow .3s cubic-bezier(.165, .840, .440, 1.000), color .0001s ease; }

	.mdi-plus-crop > .mdi { left: -8px; position: absolute; top: -8px; }
	.btn__inner > .mdi-plus-crop { height: 8px; overflow: hidden; position: absolute; transform: rotate(.002deg); width: 8px; }

	.btn-md { height: 48px; }
	.btn-flat.btn-sm { height: 32px; }

	.btn-raised:active > .btn__inner { box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .3) !important; }
	.btn-flat.btn-light:hover > .btn__inner { background-color: #d2d2d5; }
	.btn-flat.btn-light:active > .btn__inner { background-color: #c5c5c5; }

	.btn.disabled,
	.btn[disabled] { pointer-events: none; }

	.btn-flat.disabled > .btn__inner,
	.btn-flat[disabled] > .btn__inner { background-color: rgba(0, 0, 0, 0); color: #777777; }

	.btn-raised.disabled > .btn__inner,
	.btn-raised[disabled] > .btn__inner { background-color: #d2d2d5; color: #777777; }

	.btn:focus,
	.btn:active,
	.btn.active,
	.btn:active:focus,
	.btn.active:focus { outline: medium none; } /* overrides framework */

	.btn:hover > .btn__inner.color-light-secondary { color: rgba(247, 247, 247, 1); }

.btn__link { display: inline-block; padding: 2px 0; }
.btn-textarea { border-radius: 0; bottom: 0; position: absolute !important; right: 0; top: 0; width: 48px; }

#edit-btn,
#stop-btn { margin-right: 10px; }

.fixed-btn { margin-top: 20px; position: relative; }
.fixed-btn input { bottom: 0; height: 100%; left: 0; position: absolute; right: 0; top: 0; width: 100%; z-index: 1; }

.btn:active,
.btn.active { box-shadow: none; }







/**
 * CONTENTS
 *
 * #Introduction........Naming conventions used throughout the code.
 *
 * #SETTINGS
 * Variables............Globally-available variables and config.
 *
 * #TOOLS
 * Mixins...............Useful mixins.
 *
 * #GENERIC
 * Demo styles..........Styles for demo only (consider removing these).
 *
 * #BASE
 * Raw styles...........The very basic component wrapper.
 * Modifiers............The basic styles dependant on component placement.
 * Debuggers............The basic styles dependant on component placement.
 *
 * #BUTTONS
 * Base..................Wrapping and constraining every button.
 * Modifiers.............Styles that depends on state and settings.
 * Animations............Main animations of the component.
 * Debuggers.............Styles for development.
 *
 * #LABELS
 * Base..................Wrapping and constraining every label.
 * Modifiers.............Styles that depends on state and settings.
 * Debuggers.............Styles for development.
 *
 * #DEVELOPMENT
 * In development........These styles are in development and not yet finalised
 * Debuggers.............Helper styles and flags for development.
 */
/*------------------------------------*\
	#Introduction
\*------------------------------------*/
/**
 * The code AND the comments use naming conventions to refer to each part of
 * the UI put in place by this component. If you see that somewhere they are
 * not followed please consider a Pull Request. The naming conventions are:
 *
 * "Component" : the widget itself as a whole. This is the last time it will be
 *               called anything different than "component". So, stay away from
 *               "widget", "button" or anything else when referring to the
 *               Component in general.
 *
 * "Main Button" : the button that is always in view. Hovering or clicking on it
 *                 will reveal the child buttons.
 *
 * "Child buttons" : if you've read the previous point you know what they are.
 *                   Did you read the previous point? :)
 *
 * "Label(s)" : the tooltip that fades in when hovering over a button.

/*------------------------------------*\
	#SETTINGS | Variables
\*------------------------------------*/
/**
 * These variables are the default styles that serve as fallback and can be
 * easily customised at compile time.
 * Consider overriding them in your own style sheets rather than editing them
 * here. Refer to the docs for more info.
 */
/* COLORS ----------------------------*/
/* EFFECTS ---------------------------*/
/* SPEEDS ----------------------------*/
/* SIZES -----------------------------*/
/* SPACING ---------------------------*/
/* OTHER VARIABLES -------------------*/
/*------------------------------------*\
	#BASE | Raw styles
\*------------------------------------*/
/**
 * The very core styling of the button.
 * These styles are shared by every instance of the button.
 * Styles placed here should NOT care about placement in the screen,
 * options chosen by the user or state of the button.
 */
.btn-faction--tl,
.btn-faction--tr,
.btn-faction--bl,
.btn-faction--br { box-sizing: border-box; list-style: none; /*margin: 24px;*/ padding-left: 0; position: fixed; white-space: nowrap; z-index: 30; }

.btn-faction--tl *,
.btn-faction--tr *,
.btn-faction--bl *,
.btn-faction--br *,
.btn-faction--tl *:before,
.btn-faction--tr *:before,
.btn-faction--bl *:before,
.btn-faction--br *:before,
.btn-faction--tl *:after,
.btn-faction--tr *:after,
.btn-faction--bl *:after,
.btn-faction--br *:after { box-sizing: inherit; }

/*------------------------------------*\
	#BASE | Modifiers
\*------------------------------------*/

/**
 * These styles depends on the placement of the button.
 * Styles can be:
 * 1. Top-left:  modified by the " --tl " suffix.
 * 2. Top-right: modified by the " --tr " suffix.
 * 3. Bottom-left:  modified by the " --bl " suffix.
 * 4. Bottom-right: modified by the " --br " suffix.
 */

.btn-faction--tl { left: 0; top: 0; }
.btn-faction--bl { bottom: 0; left: 0; }
.btn-faction--tr { right: 32px; top: 90px; }
.btn-faction--br { bottom: 32px; right: 32px; }

/*------------------------------------*\
	#BUTTONS | Base
\*------------------------------------*/

.btn-faction__button--main,
.btn-faction__button--child { -webkit-user-drag: none; background-color: #4CAF50; border: none; border-radius: 50%; box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28); color: #f1f1f1; cursor: pointer; display: inline-block; outline: none; padding: 0; position: relative; position: relative; }

/**
 * This is the unordered list for the list items that contain
 * the child buttons.
 *
 */

.btn-faction__list { list-style: none; margin: 0; padding: 0; }

.btn-faction__list > li { display: block; margin: -10px 0; padding: 10px 0; position: absolute; right: 1px; top: 0; }

/**
 * These are the basic styles for all the icons inside the main button
 */

.btn-faction__icon,
.btn-faction__main-icon--active,
.btn-faction__main-icon--resting,
.btn-faction__child-icon { font-size: 21px; left: 0; line-height: 56px; position: absolute; text-align: center; width: 100%; }

.btn-faction__wrap { margin: 0; padding: 0; }

[data-mfb-toggle="hover"]:hover .btn-faction__icon,
[data-mfb-toggle="hover"]:hover .btn-faction__main-icon--active,
[data-mfb-toggle="hover"]:hover .btn-faction__main-icon--resting,
[data-mfb-toggle="hover"]:hover .btn-faction__child-icon,
[data-mfb-state="open"] .btn-faction__icon,
[data-mfb-state="open"] .btn-faction__main-icon--active,
[data-mfb-state="open"] .btn-faction__main-icon--resting,
[data-mfb-state="open"] .btn-faction__child-icon { transform: scale(1) rotate(0); }

/*------------------------------------*\
	#BUTTONS | Modifiers
\*------------------------------------*/

.btn-faction__button--main { height: 56px; width: 56px; z-index: 20; }
.btn-faction__button--child { height: 56px; width: 56px; }

.btn-faction__main-icon--active,
.btn-faction__main-icon--resting { transform: scale(1) rotate(90.002deg); transition: transform 150ms cubic-bezier(.4, 0, 1, 1); }

.btn-faction__child-icon { font-size: 21px; line-height: 56px; transform: scale(1) rotate(-360.002deg); transition: transform .2s ease; }

.btn-faction__main-icon--active { opacity: 0; }

[data-mfb-toggle="hover"]:hover .btn-faction__main-icon,
[data-mfb-state="open"] .btn-faction__main-icon { transform: scale(1) rotate(0); }

[data-mfb-toggle="hover"]:hover .btn-faction__main-icon--resting,
[data-mfb-state="open"] .btn-faction__main-icon--resting { opacity: 0; position: absolute !important; }

[data-mfb-toggle="hover"]:hover .btn-faction__main-icon--active,
[data-mfb-state="open"] .btn-faction__main-icon--active { opacity: 1; }

.btn-faction__button--main:focus,
.btn-faction__button--main:hover,
.btn-faction__button--child:focus,
.btn-faction__button--child:hover { color: #ffffff; }

.btn-faction__button--main:active,
.btn-faction__button--child:active { background-color: #09aa53; }

/*------------------------------------*\
	#BUTTONS | Animations
\*------------------------------------*/

/**
 * SLIDE IN + FADE
 * When hovering the main button, the child buttons slide out from beneath
 * the main button while transitioning from transparent to opaque.
 *
 */

.btn-faction--tl.mfb-slidein .btn-faction__list li,
.btn-faction--tr.mfb-slidein .btn-faction__list li { opacity: 0; transition: all .5s; }

.btn-faction--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--tl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li,
.btn-faction--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--tr.mfb-slidein[data-mfb-state="open"] .btn-faction__list li { opacity: 1; }

.btn-faction--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(70px); }

.btn-faction--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(140px); }

.btn-faction--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(210px); }

.btn-faction--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(280px); }

.btn-faction--bl.mfb-slidein .btn-faction__list li,
.btn-faction--br.mfb-slidein .btn-faction__list li { opacity: 0; transition: all .5s; }

.btn-faction--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--bl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li,
.btn-faction--br.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--br.mfb-slidein[data-mfb-state="open"] .btn-faction__list li { opacity: 1; }

.btn-faction--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--bl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(-70px); }

.btn-faction--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--bl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(-140px); }

.btn-faction--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--bl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(-210px); }

.btn-faction--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--bl.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-slidein[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-slidein[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(-280px); }

/**
 * SLIDE IN SPRING
 * Same as slide-in but with a springy animation.
 *
 */

.btn-faction--tl.mfb-slidein-spring .btn-faction__list li,
.btn-faction--tr.mfb-slidein-spring .btn-faction__list li { opacity: 0; transition: all .5s; transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55); }

.btn-faction--tl.mfb-slidein-spring .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-slidein-spring .btn-faction__list li:nth-child(1) { transition-delay: .05s; }

.btn-faction--tl.mfb-slidein-spring .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-slidein-spring .btn-faction__list li:nth-child(2) { transition-delay: .1s; }

.btn-faction--tl.mfb-slidein-spring .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-slidein-spring .btn-faction__list li:nth-child(3) { transition-delay: .15s; }

.btn-faction--tl.mfb-slidein-spring .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-slidein-spring .btn-faction__list li:nth-child(4) { transition-delay: .2s; }

.btn-faction--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--tl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li,
.btn-faction--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--tr.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li { opacity: 1; }

.btn-faction--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(70px); transition-delay: .05s; }

.btn-faction--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(140px); transition-delay: .1s; }

.btn-faction--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(210px); transition-delay: .15s; }

.btn-faction--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(280px); transition-delay: .2s; }

.btn-faction--bl.mfb-slidein-spring .btn-faction__list li,
.btn-faction--br.mfb-slidein-spring .btn-faction__list li { opacity: 0; transition: all .5s; transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55); }

.btn-faction--bl.mfb-slidein-spring .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-slidein-spring .btn-faction__list li:nth-child(1) { transition-delay: .05s; }

.btn-faction--bl.mfb-slidein-spring .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-slidein-spring .btn-faction__list li:nth-child(2) { transition-delay: .1s; }

.btn-faction--bl.mfb-slidein-spring .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-slidein-spring .btn-faction__list li:nth-child(3) { transition-delay: .15s; }

.btn-faction--bl.mfb-slidein-spring .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-slidein-spring .btn-faction__list li:nth-child(4) { transition-delay: .2s; }

.btn-faction--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--bl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li,
.btn-faction--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li,
.btn-faction--br.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li { opacity: 1; }

.btn-faction--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--bl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(-70px); transition-delay: .05s; }

.btn-faction--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--bl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(-140px); transition-delay: .1s; }

.btn-faction--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--bl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(-210px); transition-delay: .15s; }

.btn-faction--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--bl.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-slidein-spring[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(-280px); transition-delay: .2s; }

/**
 * ZOOM-IN
 * When hovering the main button, the child buttons grow
 * from zero to normal size.
 *
 */

.btn-faction--tl.mfb-zoomin .btn-faction__list li,
.btn-faction--tr.mfb-zoomin .btn-faction__list li { transform: scale(0); }

.btn-faction--tl.mfb-zoomin .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-zoomin .btn-faction__list li:nth-child(1) { transform: translateY(70px) scale(0); transition: all .5s; transition-delay: .15s; }

.btn-faction--tl.mfb-zoomin .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-zoomin .btn-faction__list li:nth-child(2) { transform: translateY(140px) scale(0); transition: all .5s; transition-delay: .1s; }

.btn-faction--tl.mfb-zoomin .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-zoomin .btn-faction__list li:nth-child(3) { transform: translateY(210px) scale(0); transition: all .5s; transition-delay: .05s; }

.btn-faction--tl.mfb-zoomin .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-zoomin .btn-faction__list li:nth-child(4) { transform: translateY(280px) scale(0); transition: all .5s; transition-delay: 0; }

.btn-faction--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(70px) scale(1); transition-delay: .05s; }

.btn-faction--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(140px) scale(1); transition-delay: .1s; }

.btn-faction--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(210px) scale(1); transition-delay: .15s; }

.btn-faction--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(280px) scale(1); transition-delay: .2s; }

.btn-faction--bl.mfb-zoomin .btn-faction__list li,
.btn-faction--br.mfb-zoomin .btn-faction__list li { transform: scale(0); }

.btn-faction--bl.mfb-zoomin .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-zoomin .btn-faction__list li:nth-child(1) { transform: translateY(-70px) scale(0); transition: all .5s; transition-delay: .15s; }

.btn-faction--bl.mfb-zoomin .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-zoomin .btn-faction__list li:nth-child(2) { transform: translateY(-140px) scale(0); transition: all .5s; transition-delay: .1s; }

.btn-faction--bl.mfb-zoomin .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-zoomin .btn-faction__list li:nth-child(3) { transform: translateY(-210px) scale(0); transition: all .5s; transition-delay: .05s; }

.btn-faction--bl.mfb-zoomin .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-zoomin .btn-faction__list li:nth-child(4) { transform: translateY(-280px) scale(0); transition: all .5s; transition-delay: 0; }

.btn-faction--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--bl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(-70px) scale(1); transition-delay: .05s; }

.btn-faction--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--bl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(-140px) scale(1); transition-delay: .1s; }

.btn-faction--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--bl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(-210px) scale(1); transition-delay: .15s; }

.btn-faction--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--bl.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-zoomin[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(-280px) scale(1); transition-delay: .2s; }

/**
 * FOUNTAIN
 * When hovering the main button the child buttons
 * jump into view from outside the viewport
 */

.btn-faction--tl.mfb-fountain .btn-faction__list li,
.btn-faction--tr.mfb-fountain .btn-faction__list li { transform: scale(0); }

.btn-faction--tl.mfb-fountain .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-fountain .btn-faction__list li:nth-child(1) { transform: translateY(-70px) scale(0); transition: all .5s; transition-delay: .15s; }

.btn-faction--tl.mfb-fountain .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-fountain .btn-faction__list li:nth-child(2) { transform: translateY(-140px) scale(0); transition: all .5s; transition-delay: .1s; }

.btn-faction--tl.mfb-fountain .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-fountain .btn-faction__list li:nth-child(3) { transform: translateY(-210px) scale(0); transition: all .5s; transition-delay: .05s; }

.btn-faction--tl.mfb-fountain .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-fountain .btn-faction__list li:nth-child(4) { transform: translateY(-280px) scale(0); transition: all .5s; transition-delay: 0; }

.btn-faction--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--tr.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(70px) scale(1); transition-delay: .05s; }

.btn-faction--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--tr.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(140px) scale(1); transition-delay: .1s; }

.btn-faction--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--tr.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(210px) scale(1); transition-delay: 0.15s; }

.btn-faction--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--tr.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(280px) scale(1); transition-delay: 0.2s; }

.btn-faction--bl.mfb-fountain .btn-faction__list li,
.btn-faction--br.mfb-fountain .btn-faction__list li { transform: scale(0); }

.btn-faction--bl.mfb-fountain .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-fountain .btn-faction__list li:nth-child(1) { transform: translateY(70px) scale(0); transition: all .5s; transition-delay: .15s; }

.btn-faction--bl.mfb-fountain .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-fountain .btn-faction__list li:nth-child(2) { transform: translateY(140px) scale(0); transition: all .5s; transition-delay: .1s; }

.btn-faction--bl.mfb-fountain .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-fountain .btn-faction__list li:nth-child(3) { transform: translateY(210px) scale(0); transition: all .5s; transition-delay: .05s; }

.btn-faction--bl.mfb-fountain .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-fountain .btn-faction__list li:nth-child(4) { transform: translateY(280px) scale(0); transition: all .5s; transition-delay: 0; }

.btn-faction--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--bl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(1),
.btn-faction--br.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(1) { transform: translateY(-70px) scale(1); transition-delay: .05s; }

.btn-faction--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--bl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(2),
.btn-faction--br.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(2) { transform: translateY(-140px) scale(1); transition-delay: .1s; }

.btn-faction--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--bl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(3),
.btn-faction--br.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(3) { transform: translateY(-210px) scale(1); transition-delay: .15s; }

.btn-faction--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--bl.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-fountain[data-mfb-toggle="hover"]:hover .btn-faction__list li:nth-child(4),
.btn-faction--br.mfb-fountain[data-mfb-state="open"] .btn-faction__list li:nth-child(4) { transform: translateY(-280px) scale(1); transition-delay: .2s; }

/*------------------------------------*\
	#LABELS | base
\*------------------------------------*/

/**
 * These are the labels associated to each button,
 * exposed only when hovering the related button.
 * They are called labels but are in fact data-attributes of
 * each button (an anchor tag).
 */

[data-mfb-label]:after { background-color: rgba(0, 0, 0, .87); border-radius: 2px; box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28); color: rgba(247, 247, 247, 1); content: attr(data-mfb-label); font-size: 11px; font-weight: 500; line-height: 16px; margin-top: -14px; opacity: 0; padding: 4px 12px; pointer-events: none; position: absolute; top: 50%; transition: all .4s; }

[data-mfb-toggle="hover"] [data-mfb-label]:after,
[data-mfb-state="open"] [data-mfb-label]:after { content: attr(data-mfb-label); opacity: 1; transition: all .4s; }

/*------------------------------------*\
	#LABELS | Modifiers
\*------------------------------------*/

.btn-faction--br [data-mfb-label]:after,
.btn-faction--tr [data-mfb-label]:after { content: attr(data-mfb-label); right: 70px; }

.btn-faction--br .btn-faction__list [data-mfb-label]:after,
.btn-faction--tr .btn-faction__list [data-mfb-label]:after { content: attr(data-mfb-label); right: 70px; }

.btn-faction--tl [data-mfb-label]:after,
.btn-faction--bl [data-mfb-label]:after { content: attr(data-mfb-label); left: 70px; }

.btn-faction--tl .btn-faction__list [data-mfb-label]:after,
.btn-faction--bl .btn-faction__list [data-mfb-label]:after { content: attr(data-mfb-label); left: 70px; }

.btn-faction--br > li:only-child [data-mfb-label]:after { display: none; }
.btn-faction--br > li:only-child [data-mfb-label]:hover:after { display: inline-block; }

	/*@media screen and (max-width: 767px) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}*/

/*	GALAXY S3
	==================================================	*/

	/* Portrait and Landscape */
	@media screen
	  and (device-width: 320px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 2) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Portrait */
	@media screen
	  and (device-width: 320px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 2)
	  and (orientation: portrait) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Landscape */
	@media screen
	  and (device-width: 320px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 2)
	  and (orientation: landscape) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

/*	GALAXY S4
	==================================================	*/

	/* Portrait and Landscape */
	@media screen
	  and (device-width: 320px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 3) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Portrait */
	@media screen
	  and (device-width: 320px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 3)
	  and (orientation: portrait) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Landscape */
	@media screen
	  and (device-width: 320px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 3)
	  and (orientation: landscape) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

/*	GALAXY S5
	==================================================	*/

	/* Portrait and Landscape */
	@media screen
	  and (device-width: 360px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 3) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Portrait */
	@media screen
	  and (device-width: 360px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 3)
	  and (orientation: portrait) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Landscape */
	@media screen
	  and (device-width: 360px)
	  and (device-height: 640px)
	  and (-webkit-device-pixel-ratio: 3)
	  and (orientation: landscape) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}


/*	GALAXY TAB 10.1
	==================================================	*/

	/* Portrait and Landscape */
	@media
	  (min-device-width: 800px)
	  and (max-device-width: 1280px) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Portrait */
	@media
	  (max-device-width: 800px)
	  and (orientation: portrait) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}

	/* Landscape */
	@media
	  (max-device-width: 1280px)
	  and (orientation: landscape) {
		.btn-faction--br { transform: scale(.8) translate3d(16px, 24px, 0); }}



/*	TEXT & BACKGROUNDS
	==================================================	*/
.tabs-minimal .tabs__item:last-child > .tabs__link,
.tabs-minimal .tabs__item:not(:last-child) > .tabs__link { border-color: #e4e4e4; border-style: solid; }
.tabs-minimal .tabs__item:last-child > .tabs__link { border-width: 1px 0; }
.tabs-minimal .tabs__item:not(:last-child) > .tabs__link { border-width: 1px 1px 1px 0; }

.tabs-minimal .tabs__item.active:last-child > .tabs__link { border-width: 1px 0 0; }
.tabs-minimal .tabs__item.active:not(:last-child) > .tabs__link { border-width: 1px 1px 0 0; }

.tabs-minimal .tabs__link:focus,
.tabs-minimal .tabs__link:hover,
.tabs-minimal .tabs__item.active > .tabs__link { background-color: transparent; color: rgba(0, 0, 0, .87); }

.tabs__folder { max-width: 192px; position: relative; }
.tabs__folder-item { border-right: 1px solid #eeeeee; border-top: 1px solid #fcfcfc; height: 48px; line-height: 48px; position: relative; text-indent: 24px; width: 100%; z-index: 1; }
.tabs__folder:after { background-color: #eeeeee; border-top: 1px solid #fcfcfc; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .21), 0 1px 3px 0 rgba(0, 0, 0, .3); content: ''; height: 48px; left: 0; position: absolute; top: 0; transform: skew(15deg); width: calc(100% + 24px); }
.tabs__folder.active .tabs__folder-item:before { background-color: #eeeeee; bottom: -4px; content: ''; display: block; height: 7px; left: 0; position: absolute; right: -32px; transform: skew(15deg); z-index: 1; }



/*	TEXT & BACKGROUNDS
	==================================================	*/
::selection      { background-color: #75c120; color: #212121; }
::-moz-selection { background-color: #75c120; color: #212121; }



.text-xxs  { font-size: 10px; }
.text-xxsa { font-size: 11px; }
.text-xxsb { font-size: 12px; }

.text-xs   { font-size: 13px; }
.text-xsa  { font-size: 14px; }
.text-xsb  { font-size: 15px; }

.text-sm   { font-size: 16px; }
.text-sma  { font-size: 17px; }
.text-smb  { font-size: 18px; }

.text-md   { font-size: 19px; }
.text-mda  { font-size: 21px; }
.text-mdb  { font-size: 24px; }

.text-lg   { font-size: 28px; }
.text-lga  { font-size: 36px; }
.text-lgb  { font-size: 48px; }

.text-xl   { font-size: 60px; }
.text-xla  { font-size: 72px; }
.text-xlb  { font-size: 96px; }



/* Colors */
.color-transparent      { color: rgba(0, 0, 0, 0); }

.color-dark-primary     { color: rgba(0, 0, 0, .87); }
.color-dark-secondary2  { color: rgba(0, 0, 0, .70); }
.color-dark-secondary   { color: rgba(0, 0, 0, .54); }
.color-dark-disabled    { color: rgba(0, 0, 0, .38); }
.color-dark-disabled2   { color: rgba(0, 0, 0, .30); }
.color-dark-dividers    { color: rgba(0, 0, 0, .12); }
.color-dark-subtle      { color: rgba(0, 0, 0, .06); }

.color-light-primary    { color: rgba(255, 255, 254,   1); }
.color-light-secondary2 { color: rgba(255, 255, 254, .87); }
.color-light-secondary  { color: rgba(255, 255, 254, .70); }
.color-light-midtone    { color: rgba(255, 255, 254, .54); }
.color-light-disabled2  { color: rgba(255, 255, 254, .38); }
.color-light-disabled   { color: rgba(255, 255, 254, .30); }
.color-light-dividers   { color: rgba(255, 255, 254, .12); }

/* Backgrounds */
.bgr-transparent        { background-color: rgba(0, 0, 0, 0); }

.bgr-dark-primary       { background-color: rgba(0, 0, 0, .87); }
.bgr-dark-secondary2    { background-color: rgba(0, 0, 0, .70); }
.bgr-dark-secondary     { background-color: rgba(0, 0, 0, .54); }
.bgr-dark-disabled      { background-color: rgba(0, 0, 0, .38); }
.bgr-dark-disabled2     { background-color: rgba(0, 0, 0, .30); }
.bgr-dark-dividers      { background-color: rgba(0, 0, 0, .12); }
.bgr-dark-subtle        { background-color: rgba(0, 0, 0, .06); }

.bgr-light-primary      { background-color: rgba(255, 255, 254,   1); }
.bgr-light-secondary2   { background-color: rgba(255, 255, 254, .87); }
.bgr-light-secondary    { background-color: rgba(255, 255, 254, .70); }
.bgr-light-midtone      { background-color: rgba(255, 255, 254, .54); }
.bgr-light-disabled2    { background-color: rgba(255, 255, 254, .38); }
.bgr-light-disabled     { background-color: rgba(255, 255, 254, .30); }
.bgr-light-dividers     { background-color: rgba(255, 255, 254, .12); }

/* Border Colors */
.border-transparent      { border-color: rgba(0, 0, 0, 0); }

.border-dark-primary     { border-color: rgba(0, 0, 0, .87); }
.border-dark-secondary   { border-color: rgba(0, 0, 0, .54); }
.border-dark-disabled    { border-color: rgba(0, 0, 0, .38); }
.border-dark-disabled2   { border-color: rgba(0, 0, 0, .30); }
.border-dark-dividers    { border-color: rgba(0, 0, 0, .12); }
.border-dark-subtle      { border-color: rgba(0, 0, 0, .06); }

.border-light-primary    { border-color: rgba(255, 255, 254,   1); }
.border-light-secondary2 { border-color: rgba(255, 255, 254, .87); }
.border-light-secondary  { border-color: rgba(255, 255, 254, .70); }
.border-light-midtone    { border-color: rgba(255, 255, 254, .54); }
.border-light-disabled2  { border-color: rgba(255, 255, 254, .38); }
.border-light-disabled   { border-color: rgba(255, 255, 254, .30); }
.border-light-dividers   { border-color: rgba(255, 255, 254, .12); }



.color-white           { color: #ffffff; } /* rgba(255, 255, 255, 1) */
.color-ivory-white     { color: #fffffe; } /* rgba(255, 255, 254, 1) */
.color-alabaster       { color: #f7f7f7; } /* rgba(247, 247, 247, 1) */
.color-white-smoke     { color: #eeeeee; } /* rgba(238, 238, 238, 1) */
.color-gainsboro       { color: #e4e4e4; } /* rgba(228, 228, 228, 1) */
.color-ghost           { color: #d2d2d5; } /* rgba(210, 210, 213, 1) */
.color-silver-light    { color: #c5c5c5; } /* rgba(197, 197, 197, 1) */
.color-silver-5        { color: #bbbbbb; } /* rgba(187, 187, 187, 1) */
.color-silver          { color: #ababab; } /* rgba(171, 171, 171, 1) */
.color-suva-grey       { color: #919191; } /* rgba(145, 145, 145, 1) */
.color-boulder         { color: #777777; } /* rgba(119, 119, 119, 1) */
.color-charcoal        { color: #454545; } /* rgba(69, 69, 69, 1) */
.color-mineshaft2      { color: #3b3b3b; } /* rgba(59, 59, 59, 1) */
.color-zeus            { color: #32322F; } /* rgba(50, 50, 47, 1) */
.color-mineshaft       { color: #2b2b2b; } /* rgba(43, 43, 43, 1) */
.color-tuatara         { color: #212120; } /* rgba(33, 33, 32, 1) */
.color-maire           { color: #12110f; } /* rgba(18, 17, 15, 1) */
.color-milano-red      { color: #c40c06; } /* rgba(196, 12, 6, 1) */
.color-alizarin        { color: #de3226; } /* rgba(222, 50, 38, 1) */
.color-scarlet         { color: #fa1c07; } /* rgba(250, 28, 7, 1) */
.color-lipstick        { color: #ad0556; } /* rgba(173, 5, 86, 1) */
.color-razzmatazz      { color: #c70663; } /* rgba(199, 6, 99, 1) */
.color-rose-pink       { color: #fa077d; } /* rgba(250, 7, 125, 1) */
.color-wild-strawberry { color: #fa3996; } /* rgba(250, 57, 150, 1) */
.color-hot-pink        { color: #fa6bb0; } /* rgba(250, 107, 176, 1) */
.color-safety-orange   { color: #fa6c07; } /* rgba(250, 108, 7, 1) */
.color-safety-orange-2 { color: #e96305; } /* rgba(233, 99, 5, 1) */
.color-amber           { color: #fabd07; } /* rgba(250, 189, 7, 1) */
.color-gold-yellow     { color: #fad607; } /* rgba(250, 214, 7, 1) */
.color-electric-lime   { color: #ccff00; } /* rgba(204, 255, 0, 1) */
.color-bahia           { color: #9ed410; } /* rgba(158, 212, 16, 1) */
.color-pistachio       { color: #7fc406; } /* rgba(127, 196, 6, 1) */
.color-green-haze      { color: #4CAF50; } /* rgba(0, 161, 74) */
.color-cyan            { color: #00ccff; } /* rgba(0, 204, 255, 1) */
.color-aqua            { color: #07eefa; } /* rgba(7, 238, 250, 1) */
.color-maya            { color: #4fc3f7; } /* rgba(79, 195, 247, 1) */



.bgr-white             { background-color: #ffffff; }
.bgr-ivory-white       { background-color: #fffffe; }
.bgr-alabaster         { background-color: #f7f7f7; }
.bgr-white-smoke       { background-color: #eeeeee; }
.bgr-silver-2          { background-color: #ededee; }
.bgr-gainsboro         { background-color: #e4e4e4; }
.bgr-ghost             { background-color: #d2d2d5; }
.bgr-silver-light      { background-color: #c5c5c5; }
.bgr-silver-5          { background-color: #bbbbbb; }
.bgr-silver            { background-color: #ababab; }
.bgr-suva-grey         { background-color: #919191; }
.bgr-boulder           { background-color: #777777; }
.bgr-charcoal          { background-color: #454545; }
.bgr-mineshaft2        { background-color: #3b3b3b; }
.bgr-zeus              { background-color: #32322F; }
.bgr-mineshaft         { background-color: #2b2b2b; }
.bgr-tuatara           { background-color: #212120; }
.bgr-bokara            { background-color: #1b1a19; }
.bgr-maire             { background-color: #12110f; }
.bgr-dark-cocoa        { background-color: #070604; }
.bgr-milano-red        { background-color: #c40c06; }
.bgr-scarlet           { background-color: #fa1c07; }
.bgr-safety-orange     { background-color: #fa6c07; }
.bgr-amber             { background-color: #fabd07; }
.bgr-gold-yellow       { background-color: #fad607; }
.bgr-electric-lime     { background-color: #ccff00; }
.bgr-bahia             { background-color: #9ed410; }
.bgr-pistachio         { background-color: #7fc406; }
.bgr-green-haze        { background-color: #4CAF50; }
.bgr-cyan              { background-color: #00ccff; }
.bgr-maya              { background-color: #4fc3f7; }



.bgr-white-trans       { background-color: rgba(255, 255, 254, .9); }
.bgr-white-trans2      { background-color: rgba(255, 255, 254, .8); }
.bgr-white-trans3      { background-color: rgba(255, 255, 254, .4); }
.bgr-suva-grey-trans   { background-color: rgba(145, 145, 145, 0.2); }
.bgr-tuatara-trans     { background-color: rgba(33, 33, 32, .95); }
.bgr-maire-trans-4     { background-color: rgba(18, 17, 15, .4); }
.bgr-black-trans       { background-color: rgba(0, 0, 0, .95); }
.bgr-black-trans-2     { background-color: rgba(0, 0, 0, .8); }
.bgr-cyan-trans        { background-color: rgba(0, 204, 255, .8); }



.gradient-brown { background-color: #454545; }
.radial-scrim-dark-disabled:before { background: radial-gradient(circle closest-corner, rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .87) 100%) no-repeat scroll 0 0; bottom: 0; content: ''; display: block; left: 0; position: absolute; right: 0; top: 0; }



.border-circle { border-radius: 50%; }
.border-rounded { border-radius: 2px; }

.top-rounded { border-radius: 2px 2px 0 0; }
.left-rounded { border-radius: 2px 0 0 2px; }
.right-rounded { border-radius: 0 2px 2px 0; }
.bottom-rounded { border-radius: 0 0 2px 2px; }

.top-left-rounded { border-top-left-radius: 2px; }
.top-right-rounded { border-top-right-radius: 2px; }
.bottom-left-rounded { border-bottom-left-radius: 2px; }
.bottom-right-rounded { border-bottom-right-radius: 2px; }

.top-left-not-rounded { border-radius: 0 2px 2px 2px; }
.top-right-not-rounded { border-radius: 2px 0 2px 2px; }
.bottom-left-not-rounded { border-radius: 2px 2px 2px 0; }
.bottom-right-not-rounded { border-radius: 2px 2px 0 2px; }

.top-left-bottom-right-rounded { border-radius: 2px 0 2px 0; }
.top-right-bottom-left-rounded { border-radius: 0 2px 0 2px; }



.texture-p1                                    { background-image: url(../Images/textures/p1.png); }
.texture-climpek                               { background-image: url(../Images/textures/climpek.png); }
.texture-absurdity                             { background-image: url(../Images/textures/absurdity.png); }
.texture-az-subtle                             { background-image: url(../Images/textures/az-subtle.png); }
.texture-egg-shell                             { background-image: url(../Images/textures/egg-shell.png); }
.texture-pool-table                            { background-image: url(../Images/textures/pool-table.png); }
.texture-rough-cloth                           { background-image: url(../Images/textures/rough-cloth.png); }
.texture-subtle-dots                           { background-image: url(../Images/textures/subtle-dots.png); }
.texture-simple-dashed                         { background-image: url(../Images/textures/simple-dashed.png); }
.texture-transparent-square-tiles              { background-image: url(../Images/textures/transparent-square-tiles.png); }
.texture-noise-pattern-with-subtle-cross-lines { background-image: url(../Images/textures/noise-pattern-with-subtle-cross-lines.png); }



.box-elevation-shadow-z0 { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
.box-elevation-shadow-z1 { box-shadow: 0  1px  2px 0 rgba(0, 0, 0, .21), 0  1px  3px 0 rgba(0, 0, 0, .3); }
.box-elevation-shadow-z2 { box-shadow: 0  2px  2px 0 rgba(0, 0, 0, .21), 0  6px 10px 0 rgba(0, 0, 0, .3); }
.box-elevation-shadow-z3 { box-shadow: 0 11px  7px 0 rgba(0, 0, 0, .19), 0 13px 25px 0 rgba(0, 0, 0, .3); }
.box-elevation-shadow-z4 { box-shadow: 0 14px 12px 0 rgba(0, 0, 0, .17), 0 20px 40px 0 rgba(0, 0, 0, .3); }
.box-elevation-shadow-z5 { box-shadow: 0 17px 17px 0 rgba(0, 0, 0, .15), 0 27px 55px 0 rgba(0, 0, 0, .3); }

.box-elevation-shadow-subtle { box-shadow: 0  1px  2px 0 rgba(0, 0, 0, .12), 0  1px  3px 0 rgba(0, 0, 0, .16); }

.lifted-corners-shadow  { bottom: 28px; left: 0; position: absolute; right: 0; }
.lifted-corners-shadow:after  { left: auto; right: 8px; transform: rotate(3deg); }
.lifted-corners-shadow:before { left: 8px; right: auto; transform: rotate(-3deg); }
.lifted-corners-shadow:after,
.lifted-corners-shadow:before { bottom: -22px; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .21), 0 6px 10px 0 rgba(0, 0, 0, .3); content: ''; height: 16px; position: absolute; width: 48%; z-index: -1; }
