@charset "UTF-8";
/*
▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂

Global stylesheet

	Usage: 
		This stylesheet imports all Sass partials which is compiled to: 'main.css' which 
		is then loaded from the HTML Head. Old IE (IE < 9) imports this stylesheet
		along with all it's partials in order to support CSS within media queries. Using
		IE conditional comments in the HTML Head allows us to only load the one style
		sheet for Old IE: 'old-ie.css' and ignore 'main.css' and vice versa for the main
		stylesheet.
	
	Optimisation:
		Both compiled stylesheets loaded from the HTML Head are minified by the build 
		script for production.
	
	Partial dir structure:
		-	UTILS...................generic utility styles and Sass settings e.g. mixins
			-	PLACEHOLDERS........placeholder selectors to keep things DRY
		-	BASE....................base styles; unclassed HTML elements
		-	LAYOUT..................site structure styles e.g. header/footer
			-	GRID................you guessed it; the grid!
		-	ABSTRACTIONS............very common patterns to be used 'as is' or built upon
		-	MODULES.................discrete components of the page, this is the meat
			-	WIDGETS	............more interactive rich requiring JavaScript/jQuery
		-	FORMS...................everything relating to forms
		-	BUTTONS.................you guessed it; all the buttons!
		-	HELPERS.................a bunch of classes to apply very common styles
		-	PRINT...................global print styles (rest of print styles live inline)
		-	DEBUG...................enable to add visual flags for debugging purposes

▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂
*/
/* [IMPORT ALL PARTIALS]
-------------------------------------------------------*/
/* Utils */
/* ======================================================================================
   @UTILS -> SASS VARIABLES
   ====================================================================================== */
/* [GLOBAL BOOLEANS]
-------------------------------------------------------*/
/* For targetting old IE (IE < 9) */
/* Media query support for old IE (IE < 9) */
/* Debug mode */
/* [BASE TYPOGRAPHY]
-------------------------------------------------------*/
/* Size */
/* Line height */
/* Line height ratio */
/* Family */
/* [MORE TYPOGRAPHY]
-------------------------------------------------------*/
/* --Sizes-- */
/* Small */
/* Extra small */
/* Large */
/* Extra large */
/* Headings */
/* Families */
/* [SPACING]
-------------------------------------------------------*/
/* Base */
/* Half */
/* Third */
/* Quarter */
/* Sixth */
/* Micro */
/* Double */
/* [BREAKPOINTS]
-------------------------------------------------------*/
/*
	Note: 
		-	Not ideal to set fixed breakpoints like this rather better let the design dictate breakpoints however they're usually common breakpoints in every build esp. 'Palm', and they need to be used to define the flexible width classes at specific breakpoints for the grid system (see: 'utils/widths').
		-	The breakdown for the breakpoints uses this chart as a guide: http://static.lukew.com/unified_device_design.png.
			-	Here's the thinking:
				-	Palm: smartphones and featurephones i.e. anything that can fit into the palm of a hand.
				-	Lap: typically tablets, notebooks and laptops i.e. anything that is portable that doesn't include phones.
					-	Lap small: smaller tablets/notebooks and e-readers e.g. Kindle.
					-	Lap large: larger tablets and laptops.
				-	Desk: desktop computers, TV's, etc. i.e. anything that is not portable.
					-	Desk small: smaller desktop computer monitors.
					-	Desk large:	larger desktop computer monitors, TV's, and who knows what else?
			-	Breakpoints:
				-	Palm: 	0 - 640px
				-	Lap:	641px - 1199px
					-	Lap small:	641px - 900px
					-	Lap large:	901px - 1199px
				-	Desk:	1200px +
					-	Desk small:	1200px - 1365px
					-	Desk large:	1366px +
				**	Of course the values for these breakpoints can change per build, it just boils down to the type of design, however 'Palm' would typically always use the same breakpoint as human beings palm's aren't exactly growing :) 
	
	Credit: 
		-	http://www.lukew.com/ff/entry.asp?1679
		-	https://developers.google.com/webmasters/smartphone-sites/details?hl=en
*/
/* --Start and end points-- */
/*
	Note: these vars typically won't appear outside of this partial, they're used as a way to set-up all the breakpoints easily, when declaring breakpoints in media queries througout the build most of the time the 'Readable breakpoints' are used, one exception is when media query min/max ranges are used which 'out of the box' is only for defining the flexible width classes at specific breakpoints for the grid system (see: 'utils/widths').
		
*/
/* Start points */
/* End points */
/* --Readable breakpoints-- */
/* Palm */
/* Non-palm */
/* Lap */
/* Desk */
/* --Arbitrary breakpoints-- */
/* [GRID / LAYOUT]
-------------------------------------------------------*/
/* Page container max width - don't forget to update in 'old-ie.scss' */
/* --grid- */
/* Gutter */
/*
	Note: be sure to set the vars below to 'false' if they're not needed as they generate a lot of CSS.
*/
/* Push */
/* Pull */
/* [COLOR PALETTE]
-------------------------------------------------------*/
/* Brand color */
/* Base text color */
/* Link colors */
/* --Greyscale-- */
/* Light */
/* Lighter */
/* Lightest */
/* Off white */
/* Dark */
/* Darker */
/* --feedback- */
/* Error */
/* Success */
/* Warning */
/* Info */
/* --Misc-- */
/* Attention (red) */
/* [FLEXIBLE WIDTHS]
-------------------------------------------------------*/
/* Whole */
/* Halves */
/* Thirds */
/* Quarters */
/* Fifths */
/* Sixths */
/* Eighths */
/* Tenths */
/* Twelfths */
/* [MISC]
-------------------------------------------------------*/
/* Off-screen px value */
/* `z-index` max value */
/* Border radius */
/* ======================================================================================
   @UTILS -> SASS MIXINS
   ====================================================================================== */
/* [NICELY FORMED TYPE STYLE]
-------------------------------------------------------*/
/* 
	Usage:
		Create a fully formed type style (sizing and vertical rhythm).
	
	Notes:
		-	The line height sets the `line-height` to a multiple of `$line-height` that's not smaller than `$font-size`, this can be overridden.
		-	`$sledgehammer` is an optional argument that allows for the `!important` keyword to be specified, when the optional `$line-height-val` argument does not need to be included then it has to be called using a named argument: `$sledgehammer: !important` so that we can skip over `$line-height-val` avoiding having to redundantly redeclare it.
	
	Credit: 
		-	https://github.com/csswizardry/inuit.css/blob/master/inuit.css/generic/_mixins.scss
		-	twitter.com/redclov3r/status/250301539321798657
	
	Examples:
		@include font-size(18);
		@include font-size(12, 1.5);
		@include font-size(24, 1, !important);
		@include font-size(24, $sledgehammer: !important);
*/
/* [STYLE ALL HEADINGS EASILY]
-------------------------------------------------------*/
/* 
	Usage:
		Style any number of headings in one fell swoop.
	
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/generic/_mixins.scss
	
	Example:
		@include headings(1, 3) {color: red;}
*/
/* [CONVERT PX TO EM/REM]
-------------------------------------------------------*/
/* 
	Usage: 
		To convert `px` to `em`'s or `rem`'s for multiple properties or values or both.
		
	Notes: 
		-	Accepts a list of lists (instead a list of values) for properties that accept multiple lists of values. Only numbers are converted; everything else is passed through.
		-	For the `to-rem` `@mixin` we fallback to `px` value for old IE and this is only compiled to 'old-ie.css'.
		-	For the `to-em` `@mixin` `$context` is an optional argument that allows making measurements relative to the parent font size rather than the current.
		-	`$sledgehammer` is an optional argument that allows for the `!important` keyword to be specified, when used in the `to-em` `@mixin` and the optional `$context` argument does not need to be included then it has to be called using a named argument: `$sledgehammer: !important` so that we can skip over `$context` avoiding having to redundantly redeclare it.
		-	'REM' `@mixin` outputs a `px` fallback for old IE and Opera Mini, when Opera Mini supports `rem` (http://caniuse.com/#feat=rem) change the `@mixin` to an archived version (11-02-2013).
		
	Credit: 
		https://gist.github.com/2237465
	
	Examples:
		@include to-em(line-height, 30)
		@include to-rem(line-height, 30)
		@include to-em(width height, 125);
		@include to-rem(padding, 0 25);
		@include to-em(text-shadow, (#0d6e28 1 1) (#777 0 0 2), 16);
		@include to-rem(box-shadow, (inset 0 0 0 1 #2a9022) (inset 0 0 3 #459966));
		@include to-em(padding margin, $spacing-base, $sledgehammer: !important);
		@include to-rem(margin, $spacing-base, !important);
*/
/* EM */
/* REM */
/* [CSS3]
-------------------------------------------------------*/
/* 
	Property:
		`rgba`
		
	Usage: 
		RGBA background color with an old IE fallback (no alpha transparency).
	
	Example:
		@include rgba-bg(#000, 0.8);
*/
/* 
	Property:
		`linear-gradient`
		
	Usage: 
		Simple CSS3 linear gradients with old IE/Webkit fallbacks.
		
	Notes:
		-	This mixin is very basic in that it only caters for two colour's ('from' and 'to'), no colour stops, only linear (no radial), not repeating, etc. in most cases this is all you need, for more involved gradients then look into Compass: http://compass-style.org/examples/compass/css3/gradient/ however keep an eye on their vendor prefixes as they tend to be dated.
		-	When Webkit supports the new syntax (see: http://caniuse.com/#feat=css-gradients) then the Webkit specific syntax can be removed, in the meantime any direction keywords used need to be reversed (see: http://generatedcontent.org/post/37949105556/updateyourcss3).
		-	There's support for IE 9 using the `-ms-filter` property same as old IE but be mindful that if it's turned on and there's a `border-radius` property being used then the element will not get rounded corners.
		-	In order to skip over optional arguments then named arguments need to be used: `$from: #7a7a7a, $to: #1a1a1a,` so that we avoid having to redundantly redeclare the optional arguments, see: http://stackoverflow.com/questions/14435927/skipping-an-optional-argument-in-sass-mixin.
		-	Handy reminders:
			-	Direction keywords: 'top', 'right', 'bottom', 'left', 'top left', 'top right', 'bottom left' and 'bottom right'.
			-	Degree values: 
				-	0deg is equivalent to to top, 90deg is equivalent to to right, 180deg is equivalent to to bottom, 270deg is equivalent to to left and 360deg brings you back to to top again.
				-	How to support old syntax: "If you use an angle, the starting point of the gradient line has shifted. Previously 0deg started at the East position. Angles increased in an anticlockwise direction, such that 90deg started at the North position. With the unprefixed syntax the gradient line for 0deg starts at the North position and the angle increases clockwise. The formula for switching from the old the new degree value is abs(oldDegValue − 450) mod 360."
	
	Examples:
		@include linear-gradient(#f63, #ff6);
		@include linear-gradient(#f63, #ff6, top left, bottom right);
		@include linear-gradient($from: #f63, $to: #ff6, $old-ie-filter: true, $ie-9-filter: true);
		@include linear-gradient(#f63, #ff6, bottom, top, true, true, true, #000);
		
*/
/* Using 'direction' keywords */
/* Using 'degree' values */
/* Simple light gradient (only a bg color needs to be used) */
/* Simple dark gradient (only a bg color needs to be used) */
/* 
	Property:
		`transform`
		
	Usage: 
		CSS3 Transforms for 'Rotate', 'Scale', 'Translate' and 'Scale'.
	
	Note:
		Keep an eye on browser support: http://caniuse.com/#feat=transforms2d.
	
	Credit: 
		https://github.com/madr/css3-sass-mixins/blob/master/_all.scss
	
	Examples:
		@include rotate(-12.5);
		@include scale(1.5, 2);
		@include translate(40%);
		@include translate3d(10%);
		@include skew(45, 30);
		
		@include transform-origin(200px 400px);
*/
/* Base `@mixin` */
/* Transform origin */
/* --Different transforms-- */
/* Rotate */
/* Scale */
/* --Translate-- */
/* 2D */
/* 3D */
/* Skew */
/* [OPACITY]
-------------------------------------------------------*/
/* 
	Usage: 
		Quick way to declare `opacity` for modern browsers and old IE.
	
	Examples:
		@include opacity(0.2);
		@include opacity(0.9, !important);
*/
/* [VENDOR PREFIXES]
-------------------------------------------------------*/
/* 
	Usage: 
		Specify vendor prefixes for CSS3 properties.
	
	Note: 
		Keep an eye on browser support:
		-	Transition: 	http://caniuse.com/#search=transition
		-	Animation: 		http://caniuse.com/#feat=css-animation
		-	Multi-column: 	http://caniuse.com/#feat=multicolumn
		-	Hyphens: 		http://caniuse.com/#feat=css-hyphens
		-	Box sizing: 	http://caniuse.com/#feat=css3-boxsizing
		-	Border image: 	http://caniuse.com/#feat=border-image
		-	User-select:	http://caniuse.com/#feat=user-select-none
	
	Credit: 
		-	https://github.com/csswizardry/inuit.css/pull/102#issuecomment-12825976
		-	https://gist.github.com/3911033
	
	Examples:
		@include prefix(transition, border 0.2s linear, box-shadow 0.2s linear);
		@include prefix(animation, fade-in 1.5s 0.5s both);
		@include prefix(border-image, url(img/preloader.gif) 3 repeat);
		
		Loose version:
		@include prefix-loose(transition, all .15s, (-webkit-, ""));
*/
/* If you need to prefix something quicky and it's not in the above list, but the above `@mixin` should always be used */
/* 
	Usage: 
		Create CSS keyframe animations for the necessary vendors.
	
	Note: 
		Keep an eye on browser support: http://caniuse.com/#feat=css-animation.
	
	Examples:
		@include prefix(animation, shrink 3s);}
		@include prefix-keyframe(shrink) {
			from {font-size: 5em;}
		}
*/
/* [INPUT PLACEHOLDER]
-------------------------------------------------------*/
/* 
	Usage: 
		Take care of all the different browser vendor prefixes for the form input `placeholder` attr.
	
	Example:
		@include input-placeholder {
			.foo {background: red;}
		}
*/
/* [TARGET BROWSERS]
-------------------------------------------------------*/
/* 
	Usage:
		For targetting specific browsers. 
	
	Notes:
		-	The non-old IE `@mixin`s should be avoided at all costs (last resort). 
		-	Whenever the old IE `@mixin` is called it will only appear in 'old-ie.css'. 
		-	'Mozilla' `@mixin` cannot be nested in a style declaration, has to exist as it's own rule.
	
	Examples: 
		@include target-webkit {
			.foo {background: red;}
		}
		@include target-mozilla {
			.foo {background: red;}
		}
		@include old-ie {
			.foo {background: red;}
		}
*/
/* Webkit */
/* Mozilla */
/* Opera */
/*doesnotexist:-o-prefocus, 
.selector {
	color: red;
}*/
/* Old IE */
/* [MEDIA QUERY STUFF]
-------------------------------------------------------*/
/* 
	Usage: 
		Set-up media queries for min/max widths inc. ranges and handle support for old IE, also include a flag to only target 'screen' media so as to not affect 'print' media.
	
	Credit: 
		http://jakearchibald.github.com/sass-ie/
	
	Examples:
		@include respond-min($lap) {
			.foo {background: red;}
		}
		@include respond-min($lap, $screen-only: true) {
			.foo {background: red;}
		}
		@include respond-max($palm) {
			.foo {background: red;}
		}
		@include respond-range(500, 780) {
			.foo {background: red;}
		}
		@include respond-range-fixed(lap-lrg) {
			.foo {background: red;}
		}
*/
/* Min width */
/* Max width */
/* --Min/max ranges-- */
/* Accepts any range */
/* Fixed ranges using the pre-defined breakpoints in 'utils/vars' */
/* 
	Usage: 
		For targetting iOS devices.
	
	Example: 
		@include target-iOS {
			.foo {background: red;}
		}
*/
/*
	Usage: 
		For targetting high resolution displays (retina).
	
	Note:
		On retina, use image that's scaled by 2.
		
	Credit: 
		http://37signals.com/svn/posts/3271-easy-retina-ready-images-using-scss
	
	Example:
		.logo {
			background: url("logo.png") no-repeat;
			@include img-2x("logo@2x.png", 100px, 25px);
		}
*/
/* [ARROWS]
-------------------------------------------------------*/
/*
	Usage: 
		Creates a CSS arrow on a given element, they're 12 locations the arrow can be placed. For full details see the 'Credit' URL.
		
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/inuit.css/generic/_mixins.scss
	
	Examples:
		@include arrow(top, left, red);
		@include arrow(bottom, center, red, black);
*/
/* [PLACEHOLDER SELECTOR MEDIA QUERY FIX]
-------------------------------------------------------*/
/* 
	Usage:
		Placeholder selectors cannot be extended within media queries therefore to keep things DRY we use a `@mixin` to contain it's styles and when a selector is in a media query the `@mixin` needs to be called not the placeholder selector.
*/
/* Disguised link */
/* Clear fix */
/* [Placing items in a circle]
-------------------------------------------------------*/
/* ======================================================================================
   @UTILS -> SASS FUNCTIONS
   ====================================================================================== */
/* [CONVERT PX TO EM/REM]
-------------------------------------------------------*/
/* 
	Usage:
		To convert `px` to `em`s or `rem`s.
	
	Note:
		'REM' `@function` outputs a `px` fallback for old IE and Opera Mini, when Opera Mini supports `rem` (http://caniuse.com/#feat=rem) change the `@function` to an archived version (11-02-2013).
	
	Credit:
		https://gist.github.com/2237465
	
	Example:
		.foo {margin-left: to-em(8, 20);}
		.foo {padding: to-rem(8) 0;}
*/
/* EM */
/* REM */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 11, ../sass/partials/utils/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 30, ../sass/partials/utils/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 41, ../sass/partials/utils/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 50, ../sass/partials/utils/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 64, ../sass/partials/utils/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 74, ../sass/partials/utils/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 86, ../sass/partials/utils/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 94, ../sass/partials/utils/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 107, ../sass/partials/utils/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 115, ../sass/partials/utils/_normalize.scss */
b,
strong {
  font-weight: 700;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 124, ../sass/partials/utils/_normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 132, ../sass/partials/utils/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 142, ../sass/partials/utils/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 151, ../sass/partials/utils/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 163, ../sass/partials/utils/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 171, ../sass/partials/utils/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 179, ../sass/partials/utils/_normalize.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 187, ../sass/partials/utils/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 195, ../sass/partials/utils/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 199, ../sass/partials/utils/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 211, ../sass/partials/utils/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 219, ../sass/partials/utils/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 231, ../sass/partials/utils/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 244, ../sass/partials/utils/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 255, ../sass/partials/utils/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 269, ../sass/partials/utils/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 281, ../sass/partials/utils/_normalize.scss */
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.
 */
/* line 294, ../sass/partials/utils/_normalize.scss */
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.
 */
/* line 306, ../sass/partials/utils/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
/* line 316, ../sass/partials/utils/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 328, ../sass/partials/utils/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/*input[type="search"]::-webkit-search-cancel-button,*/
/* line 341, ../sass/partials/utils/_normalize.scss */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 349, ../sass/partials/utils/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 360, ../sass/partials/utils/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 373, ../sass/partials/utils/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ======================================================================================
   @UTILS -> RESET
   ====================================================================================== */
/* 
	http://meyerweb.com/eric/tools/css/reset/ 
   	v2.0 | 20110126
   	License: none (public domain)
*/
/* line 11, ../sass/partials/utils/_reset.scss */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
time,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
main {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Reset `box-sizing` to the nice `border-box` */
/* line 89, ../sass/partials/utils/_reset.scss */
*, *:before, *:after {
  /* Transition */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Lists */
/* line 98, ../sass/partials/utils/_reset.scss */
ul {
  list-style: none;
}

/* endif */
@font-face {
  font-family: 'Azo Sans Bold';
  src: url("/css/fonts/AzoSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* line 9, ../sass/partials/utils/_helpers.scss */
:root {
  /* Fonts */
  --font-header: rift;
  --font-body: calibri;
  /* COLOURS */
  --black: #202124;
  --black-opacity-50: #05193780;
  --grey-900: #323A41;
  --burgandy-100: #ebe7ed;
  --burgundy-400: #972868;
  --blue-400: #004D7A;
  --blue-800: #051937;
  --grey-900: #242C31;
  --grey-800: #42536e;
  --grey-500: #B2BECB;
  --grey-400: #DDE3EA;
  --grey-300: #cbccce;
  --grey-200: #ecedf0;
  --grey-100: #F7F6FB;
  --green-400: #74C54B;
  --green-500: #39acb4;
  --green-600: #239098;
  --green-700: #15666c;
  --color-primary: #4bc2ca;
  --color-cta: #BCC932;
  --red-400: #f44336;
  --red-300: #ff4d4d;
  --yellow-400: #ffc96c;
  --white: white;
  --purple-dark: #4C2953;
  --purple: #722A82;
  --purple-light: #D1CCDE;
  --purple-lightest: #F1EEF9;
  --gradient: linear-gradient(74.49deg, #051937 1.99%, #004D7A 25.93%, #008793 51.9%, #00BF72 77.36%, #74C54B 93.66%, #BCC932 103.84%);
  /* SPACING */
  --spacing-base: 0.25rem;
  --spacing-0-5: calc(var(--spacing-base) / 2);
  --spacing-1: calc(var(--spacing-base) * 1);
  --spacing-2: calc(var(--spacing-base) * 2);
  --spacing-3: calc(var(--spacing-base) * 3);
  --spacing-4: calc(var(--spacing-base) * 4);
  /* 1rem */
  --spacing-5: calc(var(--spacing-base) * 5);
  --spacing-6: calc(var(--spacing-base) * 6);
  --spacing-7: calc(var(--spacing-base) * 7);
  --spacing-8: calc(var(--spacing-base) * 8);
  /* 2rem */
  --spacing-9: calc(var(--spacing-base) * 9);
  --spacing-10: calc(var(--spacing-base) * 10);
  --spacing-11: calc(var(--spacing-base) * 11);
  --spacing-12: calc(var(--spacing-base) * 12);
  /* 3rem */
  --spacing-13: calc(var(--spacing-base) * 13);
  --spacing-14: calc(var(--spacing-base) * 14);
  --spacing-15: calc(var(--spacing-base) * 15);
  --spacing-16: calc(var(--spacing-base) * 16);
  /* 4rem */
  --spacing-17: calc(var(--spacing-base) * 17);
  --spacing-18: calc(var(--spacing-base) * 18);
  --spacing-19: calc(var(--spacing-base) * 19);
  --spacing-20: calc(var(--spacing-base) * 20);
  /* 5rem */
  --spacing-24: calc(var(--spacing-base) * 24);
  /* 6rem */
  --spacing-28: calc(var(--spacing-base) * 28);
  /* 7rem */
  --spacing-32: calc(var(--spacing-base) * 32);
  /* 8rem */
  --spacing-36: calc(var(--spacing-base) * 36);
  /* 9rem */
  --spacing-40: calc(var(--spacing-base) * 40);
  /* 10rem */
  --spacing-48: calc(var(--spacing-base) * 48);
  /* 11rem */
  --spacing-52: calc(var(--spacing-base) * 52);
  /* 13rem */
  --spacing-60: calc(var(--spacing-base) * 60);
  /* 15rem */
  --spacing-72: calc(var(--spacing-base) * 72);
  /* 18rem */
  --spacing-80: calc(var(--spacing-base) * 80);
  /* 20rem */
  --spacing-88: calc(var(--spacing-base) * 88);
  /* 22rem */
}

/* line 83, ../sass/partials/utils/_helpers.scss */
.w-100 {
  width: 100%;
}

/* line 87, ../sass/partials/utils/_helpers.scss */
.bg-white {
  background-color: var(--white);
}

/* line 91, ../sass/partials/utils/_helpers.scss */
.bg-black {
  background-color: var(--black);
}

/* line 95, ../sass/partials/utils/_helpers.scss */
.bg-black-opacity-50 {
  background: var(--black-opacity-50);
}

/* line 99, ../sass/partials/utils/_helpers.scss */
.bg-blue-400 {
  background-color: var(--blue-400);
}

/* line 103, ../sass/partials/utils/_helpers.scss */
.bg-blue-800 {
  background-color: var(--blue-800);
}

/* line 107, ../sass/partials/utils/_helpers.scss */
.bg-purple {
  background-color: #722A82;
}

/* line 111, ../sass/partials/utils/_helpers.scss */
.bg-purple-lightest {
  background-color: var(--purple-lightest);
}

/* line 115, ../sass/partials/utils/_helpers.scss */
.bg-gradient {
  background: var(--gradient);
}

/* line 119, ../sass/partials/utils/_helpers.scss */
.bg-transparent {
  background-color: transparent;
}

/* line 123, ../sass/partials/utils/_helpers.scss */
.hover\:bg-purple-opacity:hover .bg-purple {
  background-color: rgba(114, 42, 130, 0.6);
}

/* line 127, ../sass/partials/utils/_helpers.scss */
.bg-grey-100, .slats {
  background-color: var(--grey-100);
}

/* line 131, ../sass/partials/utils/_helpers.scss */
.bg-grey-400 {
  background-color: var(--grey-400);
}

/* line 135, ../sass/partials/utils/_helpers.scss */
.bg-grey-500 {
  background-color: var(--grey-500);
}

/* line 139, ../sass/partials/utils/_helpers.scss */
.bg-grey-900 {
  background-color: var(--grey-900);
}

/* line 143, ../sass/partials/utils/_helpers.scss */
.bg-green-400 {
  background-color: var(--green-400);
}

/* line 147, ../sass/partials/utils/_helpers.scss */
.bg-purple-gradient {
  /*background-color: transparent radial-gradient(closest-side at 4% 0%, #834091 0%, #5B207D 100%);*/
  background-image: url("/img/tile-opacity.svg"), linear-gradient(to right, #834091, #5B207D);
}

/* line 152, ../sass/partials/utils/_helpers.scss */
.bg-purple-lighter-gradient {
  /*background-color: transparent radial-gradient(closest-side at 4% 0%, #834091 0%, #5B207D 100%);*/
  background-color: #E2DDEA;
  background-image: url("/img/tile-light-opacity.svg");
}

/* line 158, ../sass/partials/utils/_helpers.scss */
.bg-tri-gradient {
  background: transparent linear-gradient(47deg, #722A82 0%, #F7890D 58%, #FFD300 100%) 0% 0% no-repeat padding-box;
}

/* line 162, ../sass/partials/utils/_helpers.scss */
.bg-no-repeat {
  background-repeat: no-repeat;
}

/* line 166, ../sass/partials/utils/_helpers.scss */
.bg-size-contain {
  background-size: contain;
}

/* line 170, ../sass/partials/utils/_helpers.scss */
.bg-position-center {
  background-position: center;
}

/* line 174, ../sass/partials/utils/_helpers.scss */
.color-white {
  color: var(--white);
}

/* line 178, ../sass/partials/utils/_helpers.scss */
.color-black {
  color: var(--black);
}

/* line 182, ../sass/partials/utils/_helpers.scss */
.color-purple {
  color: #722A82;
}

/* line 186, ../sass/partials/utils/_helpers.scss */
.color-grey-900, .slats {
  color: var(--grey-900);
}

/* line 190, ../sass/partials/utils/_helpers.scss */
.color-cta {
  color: var(--color-cta);
}

/* line 194, ../sass/partials/utils/_helpers.scss */
.\!color-white {
  color: var(--white) !important;
}

/* line 198, ../sass/partials/utils/_helpers.scss */
.flex, .slats {
  display: flex;
}

/* line 202, ../sass/partials/utils/_helpers.scss */
.inline-flex {
  display: inline-flex;
}

/* line 206, ../sass/partials/utils/_helpers.scss */
.flex-col {
  flex-direction: column;
}

/* line 210, ../sass/partials/utils/_helpers.scss */
.flex-wrap {
  flex-wrap: wrap;
}

/* line 214, ../sass/partials/utils/_helpers.scss */
.flex-1 {
  flex: 1;
}

/* line 218, ../sass/partials/utils/_helpers.scss */
.items-center {
  align-items: center;
}

/* line 222, ../sass/partials/utils/_helpers.scss */
.items-start {
  align-items: flex-start;
}

/* line 226, ../sass/partials/utils/_helpers.scss */
.items-stretch {
  align-items: stretch;
}

/* line 230, ../sass/partials/utils/_helpers.scss */
.items-end {
  align-items: flex-end;
}

/* line 234, ../sass/partials/utils/_helpers.scss */
.justify-between {
  justify-content: space-between;
}

/* line 238, ../sass/partials/utils/_helpers.scss */
.justify-center {
  justify-content: center;
}

/* line 242, ../sass/partials/utils/_helpers.scss */
.justify-end {
  justify-content: flex-end;
}

/* line 246, ../sass/partials/utils/_helpers.scss */
.justify-even {
  justify-content: space-evenly;
}

/* line 250, ../sass/partials/utils/_helpers.scss */
.shrink-0 {
  flex-shrink: 0;
}

/* line 254, ../sass/partials/utils/_helpers.scss */
.block {
  display: block;
}

/* line 258, ../sass/partials/utils/_helpers.scss */
.table {
  display: table;
}

/* line 262, ../sass/partials/utils/_helpers.scss */
.none {
  display: none;
}

/* line 266, ../sass/partials/utils/_helpers.scss */
.relative {
  position: relative;
}

/* line 270, ../sass/partials/utils/_helpers.scss */
.absolute {
  position: absolute;
}

/* line 274, ../sass/partials/utils/_helpers.scss */
.fixed {
  position: fixed;
}

/* line 278, ../sass/partials/utils/_helpers.scss */
.bottom-0 {
  bottom: 0;
}

/* line 282, ../sass/partials/utils/_helpers.scss */
.right-0 {
  right: 0;
}

/* line 286, ../sass/partials/utils/_helpers.scss */
.top-0 {
  top: 0;
}

/* line 290, ../sass/partials/utils/_helpers.scss */
.text-center {
  text-align: center;
}

/* line 294, ../sass/partials/utils/_helpers.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 298, ../sass/partials/utils/_helpers.scss */
.p-2 {
  padding: var(--spacing-2);
}

/* line 302, ../sass/partials/utils/_helpers.scss */
.p-3 {
  padding: var(--spacing-3);
}

/* line 306, ../sass/partials/utils/_helpers.scss */
.p-4 {
  padding: var(--spacing-4);
}

/* line 310, ../sass/partials/utils/_helpers.scss */
.p-6 {
  padding: var(--spacing-6);
}

/* line 314, ../sass/partials/utils/_helpers.scss */
.p-8 {
  padding: var(--spacing-8);
}

/* line 318, ../sass/partials/utils/_helpers.scss */
.p-0 {
  padding: 0;
}

/* line 323, ../sass/partials/utils/_helpers.scss */
.px-4 {
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
}

/* line 328, ../sass/partials/utils/_helpers.scss */
.px-8 {
  padding-left: var(--spacing-8);
  padding-right: var(--spacing-8);
}

/* line 333, ../sass/partials/utils/_helpers.scss */
.py-4 {
  padding-bottom: var(--spacing-4);
  padding-top: var(--spacing-4);
}

/* line 338, ../sass/partials/utils/_helpers.scss */
.py-6 {
  padding-bottom: var(--spacing-6);
  padding-top: var(--spacing-6);
}

/* line 343, ../sass/partials/utils/_helpers.scss */
.py-8 {
  padding-bottom: var(--spacing-8);
  padding-top: var(--spacing-8);
}

/* line 348, ../sass/partials/utils/_helpers.scss */
.py-10 {
  padding-bottom: var(--spacing-10);
  padding-top: var(--spacing-10);
}

/* line 353, ../sass/partials/utils/_helpers.scss */
.py-12 {
  padding-bottom: var(--spacing-12);
  padding-top: var(--spacing-12);
}

/* line 358, ../sass/partials/utils/_helpers.scss */
.py-16 {
  padding-bottom: var(--spacing-16);
  padding-top: var(--spacing-16);
}

/* line 363, ../sass/partials/utils/_helpers.scss */
.py-18 {
  padding-bottom: var(--spacing-18);
  padding-top: var(--spacing-18);
}

/* line 368, ../sass/partials/utils/_helpers.scss */
.py-24 {
  padding-bottom: var(--spacing-24);
  padding-top: var(--spacing-24);
}

/* line 373, ../sass/partials/utils/_helpers.scss */
.\!py-0 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

/* line 378, ../sass/partials/utils/_helpers.scss */
.\!px-4 {
  padding-left: var(--spacing-4) !important;
  padding-right: var(--spacing-4) !important;
}

/* line 383, ../sass/partials/utils/_helpers.scss */
.pb-0 {
  padding-bottom: 0;
}

/* line 387, ../sass/partials/utils/_helpers.scss */
.\!pb-0 {
  padding-bottom: 0 !important;
}

/* line 391, ../sass/partials/utils/_helpers.scss */
.m-4 {
  margin: var(--spacing-4);
}

/* line 395, ../sass/partials/utils/_helpers.scss */
.mb-2 {
  margin-bottom: var(--spacing-2);
}

/* line 399, ../sass/partials/utils/_helpers.scss */
.mb-4 {
  margin-bottom: var(--spacing-4);
}

/* line 403, ../sass/partials/utils/_helpers.scss */
.mb-6 {
  margin-bottom: var(--spacing-6);
}

/* line 407, ../sass/partials/utils/_helpers.scss */
.mb-8 {
  margin-bottom: var(--spacing-8);
}

/* line 411, ../sass/partials/utils/_helpers.scss */
.mb-0 {
  margin-bottom: 0;
}

/* line 415, ../sass/partials/utils/_helpers.scss */
.mb-4-important {
  margin-bottom: var(--spacing-4) !important;
}

/* line 419, ../sass/partials/utils/_helpers.scss */
.mb-8-important {
  margin-bottom: var(--spacing-8) !important;
}

/* line 423, ../sass/partials/utils/_helpers.scss */
.mb-0-important {
  margin-bottom: 0 !important;
}

/* line 427, ../sass/partials/utils/_helpers.scss */
.ml-2 {
  margin-left: var(--spacing-2);
}

/* line 431, ../sass/partials/utils/_helpers.scss */
.ml-4 {
  margin-left: var(--spacing-4);
}

/* line 435, ../sass/partials/utils/_helpers.scss */
.ml-auto {
  margin-left: auto;
}

/* line 439, ../sass/partials/utils/_helpers.scss */
.ml-0 {
  margin-left: 0;
}

/* line 443, ../sass/partials/utils/_helpers.scss */
.ml-\.25-rem {
  margin-left: .25rem;
}

/* line 447, ../sass/partials/utils/_helpers.scss */
.mr-2 {
  margin-right: var(--spacing-2);
}

/* line 451, ../sass/partials/utils/_helpers.scss */
.mr-4 {
  margin-right: var(--spacing-4);
}

/* line 455, ../sass/partials/utils/_helpers.scss */
.mt-4 {
  margin-top: var(--spacing-4);
}

/* line 459, ../sass/partials/utils/_helpers.scss */
.mr-0 {
  margin-right: var(--spacing-0);
}

/* line 463, ../sass/partials/utils/_helpers.scss */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* line 468, ../sass/partials/utils/_helpers.scss */
.mx-3 {
  margin-left: var(--spacing-3);
  margin-right: var(--spacing-3);
}

/* line 473, ../sass/partials/utils/_helpers.scss */
.mx-6 {
  margin-left: var(--spacing-6);
  margin-right: var(--spacing-6);
}

/* line 478, ../sass/partials/utils/_helpers.scss */
.-mx-2 {
  margin-left: calc(-1 * var(--spacing-2));
  margin-right: calc(-1 * var(--spacing-2));
}

/* line 483, ../sass/partials/utils/_helpers.scss */
.-mx-4 {
  margin-left: calc(-1 * var(--spacing-4));
  margin-right: calc(-1 * var(--spacing-4));
}

/* line 488, ../sass/partials/utils/_helpers.scss */
.-mx-8 {
  margin-left: calc(-1 * var(--spacing-8));
  margin-right: calc(-1 * var(--spacing-8));
}

/* line 493, ../sass/partials/utils/_helpers.scss */
.-mx-12 {
  margin-left: calc(-1 * var(--spacing-12));
  margin-right: calc(-1 * var(--spacing-12));
}

/* line 498, ../sass/partials/utils/_helpers.scss */
.gap-2 {
  gap: .5rem;
}

/* line 502, ../sass/partials/utils/_helpers.scss */
.gap-4 {
  gap: 1rem;
}

/* line 506, ../sass/partials/utils/_helpers.scss */
.gap-6 {
  gap: var(--spacing-6);
}

/* line 510, ../sass/partials/utils/_helpers.scss */
.w-8 {
  width: var(--spacing-8);
}

/* line 514, ../sass/partials/utils/_helpers.scss */
.w-10 {
  width: var(--spacing-10);
}

/* line 518, ../sass/partials/utils/_helpers.scss */
.w-12 {
  width: var(--spacing-12);
}

/* line 522, ../sass/partials/utils/_helpers.scss */
.w-24 {
  width: var(--spacing-24);
}

/* line 526, ../sass/partials/utils/_helpers.scss */
.w-full {
  width: 100%;
}

/* line 530, ../sass/partials/utils/_helpers.scss */
.w-11\/12 {
  width: 91.666667%;
}

/* line 534, ../sass/partials/utils/_helpers.scss */
.w-1\/2 {
  width: 50%;
}

/* line 538, ../sass/partials/utils/_helpers.scss */
.w-2\/3 {
  width: 66.6666%;
}

/* line 542, ../sass/partials/utils/_helpers.scss */
.w-auto {
  width: auto;
}

/* line 546, ../sass/partials/utils/_helpers.scss */
.h-full {
  height: 100%;
}

/* line 550, ../sass/partials/utils/_helpers.scss */
.h-32 {
  height: var(--spacing-32);
}

/* line 554, ../sass/partials/utils/_helpers.scss */
.h-36 {
  height: var(--spacing-36);
}

/* line 559, ../sass/partials/utils/_helpers.scss */
.h-60 {
  height: var(--spacing-60);
}

/* line 563, ../sass/partials/utils/_helpers.scss */
.h-72 {
  height: var(--spacing-72);
}

/* line 567, ../sass/partials/utils/_helpers.scss */
.h-9\/10 {
  height: 90%;
}

/* line 571, ../sass/partials/utils/_helpers.scss */
.max-h-full {
  max-height: 100%;
}

/* line 575, ../sass/partials/utils/_helpers.scss */
.text-sm {
  font-size: var(--spacing-3);
}

/* line 579, ../sass/partials/utils/_helpers.scss */
.rounded {
  border-radius: 20px;
}

/* line 583, ../sass/partials/utils/_helpers.scss */
.rounded-sm, .slats {
  border-radius: 10px;
}

/* line 587, ../sass/partials/utils/_helpers.scss */
.rounded-full {
  border-radius: 50%;
}

/* line 591, ../sass/partials/utils/_helpers.scss */
.rounded-top-right {
  border-top-right-radius: 20px;
}

/* line 595, ../sass/partials/utils/_helpers.scss */
.rounded-bottom-left {
  border-bottom-left-radius: 20px;
}

/* line 599, ../sass/partials/utils/_helpers.scss */
.rounded-bottom-right {
  border-bottom-right-radius: 20px;
}

/* line 603, ../sass/partials/utils/_helpers.scss */
.overflow-hidden {
  overflow: hidden;
}

/* line 607, ../sass/partials/utils/_helpers.scss */
.shadow {
  box-shadow: 0px 8px 28px #722A8226;
}

/* line 611, ../sass/partials/utils/_helpers.scss */
.translate-x-0 {
  transform: translateX(0);
}

/* line 615, ../sass/partials/utils/_helpers.scss */
.translate-x-100 {
  transform: translateX(100%);
}

/* line 619, ../sass/partials/utils/_helpers.scss */
.no-wrap {
  white-space: nowrap;
}

/* line 623, ../sass/partials/utils/_helpers.scss */
.index-99 {
  z-index: 99;
}

/* line 627, ../sass/partials/utils/_helpers.scss */
.border-3 {
  border: 3px solid !important;
}

/* line 631, ../sass/partials/utils/_helpers.scss */
.border-none {
  border: none;
}

/* line 635, ../sass/partials/utils/_helpers.scss */
.border-purple-light {
  border-color: #F1EEF9 !important;
}

/* line 639, ../sass/partials/utils/_helpers.scss */
.text-left {
  text-align: left;
}

/* line 643, ../sass/partials/utils/_helpers.scss */
.no-underline {
  text-decoration-line: none;
}

/* line 647, ../sass/partials/utils/_helpers.scss */
.hover\:no-underline:hover {
  text-decoration-line: none;
}

/* line 651, ../sass/partials/utils/_helpers.scss */
.sr-only {
  border-width: 0;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Medium */
@media (min-width: 769px) {
  /* line 665, ../sass/partials/utils/_helpers.scss */
  .md\:block {
    display: block;
  }

  /* line 669, ../sass/partials/utils/_helpers.scss */
  .md\:inline-block {
    display: inline-block;
  }

  /* line 673, ../sass/partials/utils/_helpers.scss */
  .md\:none {
    display: none;
  }

  /* line 677, ../sass/partials/utils/_helpers.scss */
  .md\:flex {
    display: flex;
  }

  /* line 681, ../sass/partials/utils/_helpers.scss */
  .md\:flex-col {
    flex-direction: column;
  }

  /* line 685, ../sass/partials/utils/_helpers.scss */
  .md\:flex-row {
    flex-direction: row;
  }

  /* line 689, ../sass/partials/utils/_helpers.scss */
  .md\:row-reverse {
    flex-direction: row-reverse;
  }

  /* line 693, ../sass/partials/utils/_helpers.scss */
  .md\:items-center {
    align-items: center;
  }

  /* line 697, ../sass/partials/utils/_helpers.scss */
  .md\:items-start {
    align-items: flex-start;
  }

  /* line 701, ../sass/partials/utils/_helpers.scss */
  .md\:justify-end {
    justify-content: flex-end;
  }

  /* line 705, ../sass/partials/utils/_helpers.scss */
  .md\:w-88 {
    width: var(--spacing-88);
  }

  /* line 709, ../sass/partials/utils/_helpers.scss */
  .md\:w-3\/5 {
    width: 60%;
  }

  /* line 713, ../sass/partials/utils/_helpers.scss */
  .md\:w-1\/2 {
    width: 50%;
  }

  /* line 717, ../sass/partials/utils/_helpers.scss */
  .md\:w-2\/5 {
    width: 40%;
  }

  /* line 721, ../sass/partials/utils/_helpers.scss */
  .md\:w-1\/5 {
    width: 20%;
  }

  /* line 725, ../sass/partials/utils/_helpers.scss */
  .md\:w-1\/4 {
    width: 25%;
  }

  /* line 729, ../sass/partials/utils/_helpers.scss */
  .md\:w-1\/3 {
    width: 33.333333%;
  }

  /* line 733, ../sass/partials/utils/_helpers.scss */
  .md\:w-2\/3 {
    width: 66.666666%;
  }

  /* line 737, ../sass/partials/utils/_helpers.scss */
  .md\:max-w-full {
    max-width: 100%;
  }

  /* line 741, ../sass/partials/utils/_helpers.scss */
  .md\:max-w-18 {
    max-width: var(--spacing-18);
  }

  /* line 745, ../sass/partials/utils/_helpers.scss */
  .md\:max-w-20 {
    max-width: var(--spacing-20);
  }

  /* line 749, ../sass/partials/utils/_helpers.scss */
  .md\:max-w-24 {
    max-width: var(--spacing-24);
  }

  /* line 753, ../sass/partials/utils/_helpers.scss */
  .md\:max-w-xl {
    max-width: 36rem;
  }

  /* line 757, ../sass/partials/utils/_helpers.scss */
  .md\:max-w-2xl {
    max-width: 42rem;
  }

  /* line 761, ../sass/partials/utils/_helpers.scss */
  .md\:mb-0 {
    margin-bottom: 0;
  }

  /* line 765, ../sass/partials/utils/_helpers.scss */
  .md\:mb-12 {
    margin-bottom: var(--spacing-12);
  }

  /* line 769, ../sass/partials/utils/_helpers.scss */
  .md\:mt-12 {
    margin-top: var(--spacing-12);
  }

  /* line 773, ../sass/partials/utils/_helpers.scss */
  .md\:my-auto {
    margin-bottom: auto;
    margin-top: auto;
  }

  /* line 778, ../sass/partials/utils/_helpers.scss */
  .md\:mr-2 {
    margin-right: var(--spacing-2);
  }

  /* line 782, ../sass/partials/utils/_helpers.scss */
  .md\:mr-24 {
    margin-right: var(--spacing-24);
  }

  /* line 786, ../sass/partials/utils/_helpers.scss */
  .md\:ml-8 {
    margin-left: var(--spacing-8);
  }

  /* line 790, ../sass/partials/utils/_helpers.scss */
  .md\:ml-12 {
    margin-left: var(--spacing-12);
  }

  /* line 794, ../sass/partials/utils/_helpers.scss */
  .md\:p-12 {
    padding: var(--spacing-12);
  }

  /* line 798, ../sass/partials/utils/_helpers.scss */
  .md\:px-8 {
    padding-left: var(--spacing-8);
    padding-right: var(--spacing-8);
  }

  /* line 803, ../sass/partials/utils/_helpers.scss */
  .md\:py-12 {
    padding-bottom: var(--spacing-12);
    padding-top: var(--spacing-12);
  }

  /* line 809, ../sass/partials/utils/_helpers.scss */
  .md\:py-16 {
    padding-bottom: var(--spacing-16);
    padding-top: var(--spacing-16);
  }

  /* line 814, ../sass/partials/utils/_helpers.scss */
  .md\:py-24 {
    padding-bottom: var(--spacing-24);
    padding-top: var(--spacing-24);
  }

  /* line 819, ../sass/partials/utils/_helpers.scss */
  .md\:py-32 {
    padding-bottom: var(--spacing-32);
    padding-top: var(--spacing-32);
  }

  /* line 824, ../sass/partials/utils/_helpers.scss */
  .md\:text-left {
    text-align: left;
  }

  /* line 828, ../sass/partials/utils/_helpers.scss */
  .md\:text-right {
    text-align: right;
  }
}
/* Large */
@media (min-width: 1024px) {
  /* line 836, ../sass/partials/utils/_helpers.scss */
  .lg\:none {
    display: none;
  }

  /* line 840, ../sass/partials/utils/_helpers.scss */
  .lg\:flex {
    display: flex;
  }

  /* line 844, ../sass/partials/utils/_helpers.scss */
  .lg\:flex-row {
    flex-direction: row;
  }

  /* line 848, ../sass/partials/utils/_helpers.scss */
  .lg\:m-0 {
    margin: 0;
  }

  /* line 852, ../sass/partials/utils/_helpers.scss */
  .lg\:mb-24 {
    margin-bottom: var(--spacing-24);
  }

  /* line 856, ../sass/partials/utils/_helpers.scss */
  .lg\:mr-24 {
    margin-right: var(--spacing-24);
  }

  /* line 860, ../sass/partials/utils/_helpers.scss */
  .lg\:mt-12 {
    margin-top: var(--spacing-12);
  }

  /* line 864, ../sass/partials/utils/_helpers.scss */
  .lg\:py-28 {
    padding-bottom: var(--spacing-28);
    padding-top: var(--spacing-28);
  }

  /* line 869, ../sass/partials/utils/_helpers.scss */
  .lg\:py-32 {
    padding-bottom: var(--spacing-32);
    padding-top: var(--spacing-32);
  }

  /* line 874, ../sass/partials/utils/_helpers.scss */
  .lg\:w-1\/2 {
    width: 50%;
  }

  /* line 878, ../sass/partials/utils/_helpers.scss */
  .lg\:w-1\/4 {
    width: 25%;
  }

  /* line 882, ../sass/partials/utils/_helpers.scss */
  .lg\:max-w-full {
    max-width: 100%;
  }

  /* line 886, ../sass/partials/utils/_helpers.scss */
  .lg\:mt-12 {
    margin-top: var(--spacing-12);
  }

  /* line 890, ../sass/partials/utils/_helpers.scss */
  .lg\:items-center {
    align-items: center;
  }
}
/* Utils -> Placeholders */
/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> BOTTOM SPACING
   ====================================================================================== */
/*
	Usage:
		Applies the default bottom margin in order to try to keep a consistent vertical rhythm.
	
	Demo:
		Style Guide -> Utilities -> Bottom Spacing
*/
/* line 13, ../sass/partials/utils/placeholders/_bottom-spacing.scss */
ul,
ol, dl, p, table, .quote, .quote blockquote, pre, .grid,
.grid-item, .island,
.islet, .slats, .slats-img,
.slats-img--rev, .divider, .feedback-block, .form-main-field, .pull-left,
.pull-right,
.pull-center {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  /* Turn off bottom margin for the last element */
}
/* line 17, ../sass/partials/utils/placeholders/_bottom-spacing.scss */
ul:last-child,
ol:last-child, dl:last-child, p:last-child, table:last-child, .quote:last-child, .quote blockquote:last-child, pre:last-child, .grid:last-child,
.grid-item:last-child, .island:last-child,
.islet:last-child, .slats:last-child, .slats-img:last-child,
.slats-img--rev:last-child, .divider:last-child, .feedback-block:last-child, .form-main-field:last-child, .pull-left:last-child,
.pull-right:last-child,
.pull-center:last-child {
  margin-bottom: 0;
}

/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> CLEAR FIX
   ====================================================================================== */
/*
	Usage:
		So parent containers can contain their floated children.
	
	Demo:
		Style Guide -> Utilities -> Clear Fix
	
	Credit:
		http://nicolasgallagher.com/micro-clearfix-hack
*/
/* line 869, ../sass/partials/utils/_mixins.scss */
.training .content-box .heading:after,
.guidelines .content-box .heading:after, .training .content-box .subheading:after,
.guidelines .content-box .subheading:after, .footer-copy:after, .island:after,
.islet:after, .slats:after, .venn .venn-diagram:after, .modal-footer:after, .tab-content:after, .tab-heading-simple:after, .tab-heading:after, .form-main-field:after {
  content: "";
  display: table;
  clear: both;
}

/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> DISGUISED LINK
   ====================================================================================== */
/*
	Usage:
		Make a link not look like a link.
	
	Note:
		Have to declare the styles in a `@mixin`, see the 'PLACEHOLDER SELECTOR MEDIA QUERY FIX' section in 'utils/mixins' for the explanation.
	
	Demo:
		Style Guide -> Utilities -> Disguised Link
*/
/* line 16, ../sass/partials/utils/placeholders/_disguised-link.scss */
.complex-link, .vcard .url {
  color: inherit;
  text-decoration: inherit;
  cursor: text;
  /* Pseudo classes */
}
/* line 862, ../sass/partials/utils/_mixins.scss */
.complex-link:visited, .vcard .url:visited, .complex-link:hover, .vcard .url:hover, .complex-link:focus, .vcard .url:focus {
  color: inherit;
}

/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> IMAGE REPLACEMENT
   ====================================================================================== */
/*
	Usage:
		For replacing a text element with an image.
		
	Note:
		Still undecided whether to go with the latest H5BP technique? Will decide after a few builds. If revert back to the prior technique then make sure to update all `em` values to `px`.
	
	Demo:
		Style Guide -> Utilities -> Image Replacement
	
	Credit:
		http://html5boilerplate.com/
*/
/*%img-replacement {
	font: 0/0 a;
    text-shadow: none;
    color: transparent;
}*/
/* line 25, ../sass/partials/utils/placeholders/_image-replacement.scss */
.sprite {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* Pseudo element */
}
/* line 31, ../sass/partials/utils/placeholders/_image-replacement.scss */
.sprite:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/* Alternate version */
/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> SPRITE BG
   ====================================================================================== */
/*
	Usage:
		Declare the main sprite background image.
	
	Demo:
		Style Guide -> Utilities -> Sprite BG
*/
/* line 13, ../sass/partials/utils/placeholders/_sprite-bg.scss */
.sprite {
  background-image: url("img/sprite.png");
  background-repeat: no-repeat;
}

/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> SPRITE / ICON
   ====================================================================================== */
/*
	Usage:
		Common styles for sprited elements and icon fonts.
	
	Demo:
		Style Guide -> Utilities -> Sprite / Icon
*/
/* line 13, ../sass/partials/utils/placeholders/_sprite-icon.scss */
.sprite, .icon:before {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 0.625em;
  top: -1px;
}

/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> TRANSITIONS
   ====================================================================================== */
/*
	Usage:
		Common CSS3 transition styles.
	
	Demo:
		Style Guide -> Utilities -> Transitions
*/
/* Subtle */
/* line 14, ../sass/partials/utils/placeholders/_transitions.scss */
a, .complex-link__target, .accordion__header, .btn, .btn:before, .btn:after {
  /* Transition */
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* Off */
/* line 17, ../sass/partials/utils/placeholders/_transitions.scss */
.hide-visually.skip-link:active, .hide-visually.skip-link:focus {
  /* Transition */
  -webkit-transition: none;
  transition: none;
}

/* Positioning transitions*/
/* line 20, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container {
  position: relative;
  width: 28em;
  height: 28em;
  margin: 0 auto;
}

/* line 21, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container .disc {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4.5em;
  margin-top: -4.5em;
}

/* line 22, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container .center {
  margin-left: -7em;
  margin-top: -7em;
}

/* line 23, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container .center.big {
  margin-left: -6.5em;
  margin-top: -6.5em;
}

/* line 25, ../sass/partials/utils/placeholders/_transitions.scss */
.deg0 {
  transform: translate(14em);
}

/* 12em = half the width of the wrapper */
/* line 26, ../sass/partials/utils/placeholders/_transitions.scss */
.deg30 {
  transform: rotate(30deg) translate(14em) rotate(-30deg);
}

/* line 27, ../sass/partials/utils/placeholders/_transitions.scss */
.deg45 {
  transform: rotate(45deg) translate(14em) rotate(-45deg);
}

/* line 28, ../sass/partials/utils/placeholders/_transitions.scss */
.deg90 {
  transform: rotate(90deg) translate(14em) rotate(-90deg);
}

/* line 29, ../sass/partials/utils/placeholders/_transitions.scss */
.deg135 {
  transform: rotate(135deg) translate(14em) rotate(-135deg);
}

/* line 30, ../sass/partials/utils/placeholders/_transitions.scss */
.deg150 {
  transform: rotate(150deg) translate(14em) rotate(-150deg);
}

/* line 31, ../sass/partials/utils/placeholders/_transitions.scss */
.deg180 {
  transform: translate(-14em);
}

/* line 32, ../sass/partials/utils/placeholders/_transitions.scss */
.deg205 {
  transform: rotate(205deg) translate(14em) rotate(-205deg);
}

/* line 33, ../sass/partials/utils/placeholders/_transitions.scss */
.deg225 {
  transform: rotate(225deg) translate(14em) rotate(-225deg);
}

/* line 34, ../sass/partials/utils/placeholders/_transitions.scss */
.deg270 {
  transform: rotate(270deg) translate(14em) rotate(-270deg);
}

/* line 35, ../sass/partials/utils/placeholders/_transitions.scss */
.deg315 {
  transform: rotate(315deg) translate(14em) rotate(-315deg);
}

/* line 36, ../sass/partials/utils/placeholders/_transitions.scss */
.deg330 {
  transform: rotate(330deg) translate(14em) rotate(-330deg);
}

/* line 39, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big {
  width: 34em;
  height: 34em;
}
/* line 41, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .disc {
  margin-left: -7em;
  margin-top: -6em;
}
/* line 42, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .deg30 {
  transform: rotate(30deg) translate(15em) rotate(-30deg);
}
/* line 43, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .deg90 {
  transform: rotate(90deg) translate(15em) rotate(-90deg);
}
/* line 44, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .deg150 {
  transform: rotate(150deg) translate(15em) rotate(-150deg);
}
/* line 45, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .deg210 {
  transform: rotate(210deg) translate(15em) rotate(-210deg);
}
/* line 46, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .deg270 {
  transform: rotate(270deg) translate(15em) rotate(-270deg);
}
/* line 47, ../sass/partials/utils/placeholders/_transitions.scss */
.circle-container.big .deg330 {
  transform: rotate(330deg) translate(15em) rotate(-330deg);
}

/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> ARROWS
   ====================================================================================== */
/*
	Usage: 
		Creates a CSS arrow on a given element, they're 12 locations the arrow can be placed. For full details see the 'Credit' URL.
	
	Demo:
		Style Guide -> Utilities -> Arrows
	
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/inuit.css/objects/_arrows.scss
*/
/* Set variables */
/* --Start abstraction-- */
/* Forms the basis for any/all CSS arrows */
/* --Define individual edges so we can combine what we need, when we need-- */
/* Top */
/* Upper */
/* Middle */
/* Lower */
/* Bottom */
/* Near */
/* Left */
/* Center */
/* Right */
/* Far */
/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> BOX SHADOWS
   ====================================================================================== */
/*
	Usage:
		Handy CSS3 box shadow styles.
	
	Demo:
		Style Guide -> Utilities -> Box Shadows
*/
/* --Simple directional box shadows-- */
/* Set variables */
/* Top */
/* Bottom */
/* line 30, ../sass/partials/utils/placeholders/_box-shadows.scss */
.js .drop-down {
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
}

/* Right */
/* Left */
/* ======================================================================================
   @UTILS -> PLACEHOLDERS -> RESET LISTS
   ====================================================================================== */
/*
	Usage: 
		Simply strips away default styles for unordered and ordered lists i.e. 'reset'.
	
	Demo:
		Style Guide -> Utilities -> Reset Lists
*/
/* line 13, ../sass/partials/utils/placeholders/_reset-lists.scss */
.horiz-list {
  /* Parent + any child lists */
}
/* line 15, ../sass/partials/utils/placeholders/_reset-lists.scss */
.horiz-list,
.horiz-list ul,
.horiz-list ol {
  margin: 0;
  list-style: none;
}

/* Base */
/* ======================================================================================
   @BASE -> FONTS
   ====================================================================================== */
/* 
	Note: all `@font-face` declarations here.
*/
/* [Icons]
-------------------------------------------------------*/
@font-face {
  font-family: 'icons';
  src: url("fonts/icons/icons.eot");
  src: url("fonts/icons/icons.eot?#iefix") format("embedded-opentype"), url("fonts/icons/icons.svg#icomoon") format("svg"), url("fonts/icons/icons.woff") format("woff"), url("fonts/icons/icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*Unique Fonts go here*/
/* ======================================================================================
   @BASE -> MAIN
   ====================================================================================== */
/* line 5, ../sass/partials/base/_main.scss */
html {
  /*font-size: ($font-size/16)+em;*/
  font-size: 1.14286em;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* line 12, ../sass/partials/base/_main.scss */
body {
  background-color: #fff;
  /* Transition */
  -webkit-animation: fade-in 1.5s 0.5s both;
  animation: fade-in 1.5s 0.5s both;
}

/* line 17, ../sass/partials/base/_main.scss */
html, body {
  overflow-x: hidden;
}

/* Animation: fade in the `body` */
@-webkit-keyframes $animation-name {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes $animation-name {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Set `font-family` and `color` */
/* line 28, ../sass/partials/base/_main.scss */
html,
button,
input,
select,
textarea {
  font-family: "Noto Sans", sans-serif;
  color: #444;
}

/* line 37, ../sass/partials/base/_main.scss */
article {
  background-color: #fff;
  padding: 3rem 0;
  position: relative;
  /*@include respond-min($non-palm) {
  	padding-bottom: 7em;
  }*/
}
/* line 47, ../sass/partials/base/_main.scss */
article.grey-fill {
  background-color: var(--grey-100);
}

/* ======================================================================================
   @BASE -> VIEWPORT
   ====================================================================================== */
/* 
	Note: add @viewport rule to future proof (remove if site isn't responsive), leave out `-ms-` prefix, see here: http://nostrongbeliefs.com/why-i-think-we-shouldnt-use-css-viewport-in-ie10-for-now/. 
*/
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/* ======================================================================================
   @BASE -> LINKS
   ====================================================================================== */
/* line 5, ../sass/partials/base/_links.scss */
a {
  color: #004D7A;
  text-decoration: none;
  /* Visited */
  /* Hover/Focus */
  /* Make `tel` links not look like links for non-phone devices at this breakpoint */
}
/* line 11, ../sass/partials/base/_links.scss */
a:visited {
  color: #006dad;
}
/* line 14, ../sass/partials/base/_links.scss */
a:hover, a:focus {
  color: #007dc7;
  text-decoration: underline;
}
@media all and (min-width: 40.0625em) {
  /* line 22, ../sass/partials/base/_links.scss */
  a[href^="tel:"] {
    color: inherit;
    text-decoration: inherit;
    cursor: text;
    /* Pseudo classes */
  }
  /* line 862, ../sass/partials/utils/_mixins.scss */
  a[href^="tel:"]:visited, a[href^="tel:"]:hover, a[href^="tel:"]:focus {
    color: inherit;
  }
  /* line 25, ../sass/partials/base/_links.scss */
  a[href^="tel:"]:focus {
    outline: none;
  }
}

/* line 31, ../sass/partials/base/_links.scss */
.dashboard a {
  text-decoration: none;
}

/* Print */
@media print {
  /* line 36, ../sass/partials/base/_links.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* Note: this may be redundant? */
  /* Show the `href` and `title` attr values after the element */
  /* line 40, ../sass/partials/base/_links.scss */
  a[href]:after,
  abbr[title]:after {
    font-size: 80%;
    color: gray !important;
  }

  /* line 46, ../sass/partials/base/_links.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 48, ../sass/partials/base/_links.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Don't show the `href` attr value for the following */
  /* line 51, ../sass/partials/base/_links.scss */
  .header a[href]:after,
  .url[href]:after,
  a[href^="tel:"]:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
}
/*Break long links in tables*/
/* line 60, ../sass/partials/base/_links.scss */
.content-box a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /*-ms-word-break: break-all;
   This is the dangerous one in WebKit, as it breaks things wherever 
  word-break: break-all;*/
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  /*  -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;*/
}

/* line 79, ../sass/partials/base/_links.scss */
.content-box .slats-body a .h5 {
  hyphens: none;
}

/* line 83, ../sass/partials/base/_links.scss */
.content-box .grid.toc a {
  align-items: center;
  display: flex;
  min-height: 4.5rem;
  padding: 0.5rem;
  overflow-wrap: normal;
  word-wrap: normal;
  -ms-word-break: normal;
  word-break: normal;
}

/* ======================================================================================
   @BASE -> LISTS
   ====================================================================================== */
/* [UNORDERED / ORDERED]
-------------------------------------------------------*/
/* line 7, ../sass/partials/base/_lists.scss */
ul,
ol {
  /* Left indent */
}
/* line 12, ../sass/partials/base/_lists.scss */
ul,
ul ul,
ul ol,
ol,
ol ul,
ol ol {
  margin-left: 24px;
  margin-left: 1.5rem;
}

/* [LISTS]
-------------------------------------------------------*/
/* Unordered and Ordered lists via the 'list' class */
/* line 22, ../sass/partials/base/_lists.scss */
.list,
.list ul,
.list ol {
  margin-left: 1rem;
}

/* half indent */
/* line 29, ../sass/partials/base/_lists.scss */
.list-indent-half {
  margin-left: 24px;
  margin-left: 1.5rem;
}

/* unordered bullets */
/* line 34, ../sass/partials/base/_lists.scss */
ul.list {
  list-style: disc;
}

/* line 36, ../sass/partials/base/_lists.scss */
.list ul {
  list-style: circle;
}

/* line 38, ../sass/partials/base/_lists.scss */
.list ul ul {
  list-style: square;
}

/* ordered bullets */
/* line 41, ../sass/partials/base/_lists.scss */
ol.list {
  list-style: decimal;
}

/* line 43, ../sass/partials/base/_lists.scss */
.list ol {
  list-style: lower-alpha;
}

/* line 45, ../sass/partials/base/_lists.scss */
.list ol ol {
  list-style: lower-roman;
}

/*Tick and cross*/
/* line 50, ../sass/partials/base/_lists.scss */
.list-tick li:before, .list-cross li:before {
  font-family: 'icons';
  position: absolute;
  margin-left: -1.5em;
  margin-top: 0.1em;
}

/* line 54, ../sass/partials/base/_lists.scss */
.list-tick li:before {
  content: "\ea10";
}

/* line 60, ../sass/partials/base/_lists.scss */
.list-cross li:before {
  content: "\e902";
}

/* line 63, ../sass/partials/base/_lists.scss */
.quiz {
  list-style: none !important;
  margin-left: 0 !important;
}
/* line 66, ../sass/partials/base/_lists.scss */
.quiz li {
  padding: 0.5em;
}
/* line 69, ../sass/partials/base/_lists.scss */
.quiz li li {
  margin-bottom: 0;
}
/* line 71, ../sass/partials/base/_lists.scss */
.quiz > li:nth-child(even) {
  background-color: rgba(142, 142, 142, 0.1);
}

/* line 76, ../sass/partials/base/_lists.scss */
ol.survey {
  list-style: none;
  margin-left: 0;
}

/*Quiz*/
/* line 79, ../sass/partials/base/_lists.scss */
.mix-match {
  display: table;
  margin-top: 0.5em;
  width: 100%;
  /*max-width:to-em(1024);*/
}
/* line 84, ../sass/partials/base/_lists.scss */
.mix-match li {
  font-size: 85%;
  min-height: 6.25em;
}
/* line 85, ../sass/partials/base/_lists.scss */
.mix-match .connectedSortable {
  display: table-cell;
  list-style: none;
  vertical-align: top;
}
/* line 90, ../sass/partials/base/_lists.scss */
.mix-match .connectedSortable:first-child {
  padding-right: 1em;
}
/* line 92, ../sass/partials/base/_lists.scss */
.mix-match .question, .mix-match .answer {
  width: 50%;
}
/* line 94, ../sass/partials/base/_lists.scss */
.mix-match .question li, .mix-match .answer li {
  padding: 0 0.5em;
  border: 1px solid #d4d4d4;
  margin-bottom: 1em;
  position: relative;
}
/* line 97, ../sass/partials/base/_lists.scss */
.mix-match .question li span, .mix-match .answer li span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
/* line 105, ../sass/partials/base/_lists.scss */
.mix-match .answer li {
  /*padding:0 0.5em 0.1em 0;*/
  background-color: rgba(89, 89, 89, 0.1);
}
/* line 106, ../sass/partials/base/_lists.scss */
.mix-match .answer .btn-main, .mix-match .answer .btn-blue, .mix-match .answer .btn-green, .mix-match .answer .btn-white, .mix-match .answer .btn-black {
  display: inline-block;
  float: left;
  height: 6.125em;
  /*margin-right:1em;*/
  color: #fff;
  position: relative;
  left: -0.7em;
  padding-left: 0.7em;
}
/* line 114, ../sass/partials/base/_lists.scss */
.mix-match .answer .btn-main .icon-bars, .mix-match .answer .btn-blue .icon-bars, .mix-match .answer .btn-green .icon-bars, .mix-match .answer .btn-white .icon-bars, .mix-match .answer .btn-black .icon-bars {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (min-width: 81.25em) and (max-width: 93.6875em) {
  /* line 123, ../sass/partials/base/_lists.scss */
  .mix-match .connectedSortable li {
    height: 4.6875em;
  }
  /* line 125, ../sass/partials/base/_lists.scss */
  .mix-match .connectedSortable .btn-main .icon-lrg:before, .mix-match .connectedSortable .btn-blue .icon-lrg:before, .mix-match .connectedSortable .btn-green .icon-lrg:before, .mix-match .connectedSortable .btn-white .icon-lrg:before, .mix-match .connectedSortable .btn-black .icon-lrg:before {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 81.1875em) {
  /* line 130, ../sass/partials/base/_lists.scss */
  .mix-match ul {
    margin-left: 0 !important;
    padding-right: 0 !important;
  }
  /* line 132, ../sass/partials/base/_lists.scss */
  .mix-match .question li {
    width: 100%;
  }
  /* line 134, ../sass/partials/base/_lists.scss */
  .mix-match li {
    font-size: 80%;
    min-height: 4.6875em;
  }
  /* line 135, ../sass/partials/base/_lists.scss */
  .mix-match .connectedSortable {
    width: 100%;
    display: block;
  }
  /* line 138, ../sass/partials/base/_lists.scss */
  .mix-match .connectedSortable .btn-main, .mix-match .connectedSortable .btn-blue, .mix-match .connectedSortable .btn-green, .mix-match .connectedSortable .btn-white, .mix-match .connectedSortable .btn-black {
    height: 4.5625em;
  }
}
@media all and (max-width: 40em) {
  /* line 144, ../sass/partials/base/_lists.scss */
  .mix-match li {
    min-height: 6.25em;
    font-size: 65%;
  }
  /* line 146, ../sass/partials/base/_lists.scss */
  .mix-match .connectedSortable .btn-main, .mix-match .connectedSortable .btn-blue, .mix-match .connectedSortable .btn-green, .mix-match .connectedSortable .btn-white, .mix-match .connectedSortable .btn-black {
    height: 6.125em;
  }
}

/* line 154, ../sass/partials/base/_lists.scss */
.results li {
  padding-left: 2.5em;
}
/* line 156, ../sass/partials/base/_lists.scss */
.results li.result-correct {
  background: transparent no-repeat url(/img/icon/icon-correct.png) 0.5em 0.6em;
}
/* line 159, ../sass/partials/base/_lists.scss */
.results li.result-wrong {
  background: transparent no-repeat url(/img/icon/icon-wrong.png) 0.5em 0.6em;
}
/* line 162, ../sass/partials/base/_lists.scss */
.results li.result-wrong .right {
  color: #22971f;
}
/* line 163, ../sass/partials/base/_lists.scss */
.results li.result-wrong .wrong {
  color: #e94d23;
}
/* line 166, ../sass/partials/base/_lists.scss */
.results li.result-correct ul, .results li.result-wrong ul {
  list-style: none;
  margin-left: 0;
}
/* line 167, ../sass/partials/base/_lists.scss */
.results li.result-correct ul li, .results li.result-wrong ul li {
  padding-left: 0;
}
/* line 171, ../sass/partials/base/_lists.scss */
.results li .result-footer {
  text-align: right;
  background-color: #ebefbf;
}
/* line 174, ../sass/partials/base/_lists.scss */
.results li .result-footer .btn {
  display: inline-block;
  padding: 0.7em 2em;
  background-color: #BCC932;
  color: #000;
  font-weight: bold;
}
/* line 177, ../sass/partials/base/_lists.scss */
.results > li:nth-child(even) {
  background-color: rgba(142, 142, 142, 0.08);
}
/* line 180, ../sass/partials/base/_lists.scss */
.results .result {
  padding: 0.5em 1em 0.5em 2.5em;
}

/* [DEFINITION]
-------------------------------------------------------*/
/* line 187, ../sass/partials/base/_lists.scss */
dt {
  font-weight: 700;
}

/*Download PDF*/
/* line 190, ../sass/partials/base/_lists.scss */
.dhtmlgoodies_listMenu {
  max-width: 800px;
}
/* line 192, ../sass/partials/base/_lists.scss */
.dhtmlgoodies_listMenu a {
  font-weight: bold;
  color: #623764;
}
/* line 194, ../sass/partials/base/_lists.scss */
.dhtmlgoodies_listMenu li > ul {
  margin-left: 0 !important;
}
/* line 196, ../sass/partials/base/_lists.scss */
.dhtmlgoodies_listMenu li > ul ul {
  margin-top: 1em;
}
/* line 199, ../sass/partials/base/_lists.scss */
.dhtmlgoodies_listMenu li .form-main-inputs input[type="checkbox"] + label:before {
  padding: 0;
}
/* line 200, ../sass/partials/base/_lists.scss */
.dhtmlgoodies_listMenu li .form-main-inputs input[type="checkbox"]:checked + label {
  font-weight: bold;
}

/* line 204, ../sass/partials/base/_lists.scss */
.breadcrumbs a {
  color: #fff;
}

/* ======================================================================================
   @BASE -> EMBEDDED CONTENT
   ====================================================================================== */
/* 
	1.	Remove the gap between images and the bottom of their containers.
 	2.	Make responsive.
	3.	So that `alt` text is visually offset if images don't load.
*/
/* line 10, ../sass/partials/base/_embedded-content.scss */
img {
  vertical-align: middle;
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 2 */
  font-style: italic;
  /* 3 */
}

/* Images in `figure` elements */
/* line 18, ../sass/partials/base/_embedded-content.scss */
figure > img {
  display: block;
}

/* ======================================================================================
   @BASE -> PARAGRAPHS
   ====================================================================================== */
/* ======================================================================================
   @BASE -> HEADINGS
   ====================================================================================== */
/* 
	Note: to target any heading of any level use this generic heading class: `.hn`.
*/
/* Shared */
/* line 10, ../sass/partials/base/_headings.scss */
h1, .h1,
h2, .h2,
h3, .h3, .nav-list .h4, .nav-list .island-button h2, .island-button .nav-list h2,
h4, .h4, .island-button h2,
h5, .h5,
h6, .h6 {
  /*@extend %mrg-base;*/
  margin-bottom: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
}

/* H1 */
/* line 23, ../sass/partials/base/_headings.scss */
h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.2;
}

/* H2 */
/* line 29, ../sass/partials/base/_headings.scss */
h2, .h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6;
  line-height: 1.3;
}

/* H3 */
/* line 35, ../sass/partials/base/_headings.scss */
h3, .h3, .nav-list .h4, .nav-list .island-button h2, .island-button .nav-list h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  line-height: 1.3;
}

/* H4 */
/* line 41, ../sass/partials/base/_headings.scss */
h4, .h4, .island-button h2 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* H5 */
/* line 46, ../sass/partials/base/_headings.scss */
h5, .h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

/* H6 */
/* line 51, ../sass/partials/base/_headings.scss */
h6, .h6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

/* line 55, ../sass/partials/base/_headings.scss */
h5, h6 {
  text-transform: initial !important;
}

/* line 59, ../sass/partials/base/_headings.scss */
h6 {
  font-style: italic;
}

/*Heading attribute targeting*/
/* line 64, ../sass/partials/base/_headings.scss */
h2[itemprop="headline"] {
  /*padding-left:1.2em;*/
}

@media (min-width: 64em) {
  /* line 70, ../sass/partials/base/_headings.scss */
  h1, .h1 {
    font-size: 3.5rem;
  }

  /* line 74, ../sass/partials/base/_headings.scss */
  h2, .h2 {
    font-size: 2.25rem;
  }
}
/* ======================================================================================
   @BASE -> TABLES
   ====================================================================================== */
/* line 5, ../sass/partials/base/_tables.scss */
table {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

/* line 12, ../sass/partials/base/_tables.scss */
caption,
th {
  text-align: left;
}

/* line 17, ../sass/partials/base/_tables.scss */
th,
td {
  vertical-align: middle;
}

/* Striped */
/* line 23, ../sass/partials/base/_tables.scss */
.table-striped tbody tr:nth-of-type(even) {
  background-color: var(--purple-lightest);
}

/* Print */
@media print {
  /* line 29, ../sass/partials/base/_tables.scss */
  thead {
    display: table-header-group;
  }
}
/*CSS tables*/
@media all and (min-width: 40.0625em) {
  /* line 35, ../sass/partials/base/_tables.scss */
  .grid-table {
    display: table;
    width: 100%;
  }
  /* line 40, ../sass/partials/base/_tables.scss */
  .grid-table .grid-table-row {
    display: table-row;
  }
  /* line 43, ../sass/partials/base/_tables.scss */
  .grid-table .grid-table-row .grid-item-cell {
    display: table-cell;
    vertical-align: top;
  }
}

/*Table content*/
/* line 53, ../sass/partials/base/_tables.scss */
.table-content th {
  background-color: #BCC932;
}
/* line 57, ../sass/partials/base/_tables.scss */
.table-content th, .table-content td {
  padding: .85rem;
  vertical-align: top;
}
/* line 63, ../sass/partials/base/_tables.scss */
.table-content tbody tr {
  background-color: var(--white);
}
/* line 67, ../sass/partials/base/_tables.scss */
.table-content tbody tr:nth-child(even) {
  background-color: var(--purple-lightest);
}
@media all and (max-width: 28.125em) {
  /* line 52, ../sass/partials/base/_tables.scss */
  .table-content {
    font-size: 0.7em;
  }
}

/*Training module table*/
/* line 79, ../sass/partials/base/_tables.scss */
.training-table th {
  background-color: #BCC932;
}
/* line 83, ../sass/partials/base/_tables.scss */
.training-table th, .training-table td {
  border: 1px solid #fff;
  padding: 0.2em 0.5em;
}
/* line 88, ../sass/partials/base/_tables.scss */
.training-table td {
  background-color: rgba(255, 216, 121, 0.1);
}

/*Table Admin*/
/* line 95, ../sass/partials/base/_tables.scss */
.table-admin tr {
  /* Zebra striping */
}
/* line 97, ../sass/partials/base/_tables.scss */
.table-admin tr:nth-of-type(odd) {
  background: var(--grey-100);
}
/* line 101, ../sass/partials/base/_tables.scss */
.table-admin tr th {
  padding: 0.5em;
  color: #fff;
  background-color: #30393F;
}
/* line 106, ../sass/partials/base/_tables.scss */
.table-admin tr th.sort-handle-heading {
  width: 0.5em;
}
/* line 111, ../sass/partials/base/_tables.scss */
.table-admin tr td {
  text-align: left;
  padding: 0.5em;
}
/* line 115, ../sass/partials/base/_tables.scss */
.table-admin tr td h6 {
  color: #000;
  font-weight: bold;
  margin-bottom: 0;
}
/* line 120, ../sass/partials/base/_tables.scss */
.table-admin tr td h6.is-child {
  font-weight: normal;
}
/* line 123, ../sass/partials/base/_tables.scss */
.table-admin tr td h6.is-child .icon-caret-down:before {
  margin-right: 0;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}
/* line 133, ../sass/partials/base/_tables.scss */
.table-admin tr td.sort-handle span {
  text-align: left;
}
/* line 140, ../sass/partials/base/_tables.scss */
.table-admin .form-main-inputs {
  margin-left: 0;
}
@media all and (max-width: 47.5em) {
  /* line 94, ../sass/partials/base/_tables.scss */
  .table-admin {
    display: block;
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*Label the data*/
  }
  /* line 147, ../sass/partials/base/_tables.scss */
  .table-admin thead, .table-admin tbody, .table-admin th, .table-admin td, .table-admin tr {
    display: block;
  }
  /* line 151, ../sass/partials/base/_tables.scss */
  .table-admin thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  /* line 157, ../sass/partials/base/_tables.scss */
  .table-admin td {
    /* Behave  like a "row" */
    border: none;
    position: relative;
    padding: 0.3em !important;
    clear: both;
    /*min-height: 40px;*/
  }
  /* line 164, ../sass/partials/base/_tables.scss */
  .table-admin td.sort-handle {
    display: none;
  }
  /* line 168, ../sass/partials/base/_tables.scss */
  .table-admin td:before {
    /* Now like a table header 
    position: absolute;
    top: 9px;
    left: 6px;
    width: 45%;*/
    font-weight: bold;
    padding-right: 10px;
    white-space: nowrap;
  }
  /* line 180, ../sass/partials/base/_tables.scss */
  .table-admin td[data-hr]:before {
    content: attr(data-hr) ": ";
    display: inline-block;
  }
  /* line 185, ../sass/partials/base/_tables.scss */
  .table-admin td.title:before {
    content: "Title:";
  }
  /* line 189, ../sass/partials/base/_tables.scss */
  .table-admin td.description:before {
    content: "Description:";
  }
  /* line 193, ../sass/partials/base/_tables.scss */
  .table-admin td.date:before {
    content: "Date Created:";
  }
  /* line 197, ../sass/partials/base/_tables.scss */
  .table-admin td.toolbar:before {
    content: "Option:";
  }
  /* line 202, ../sass/partials/base/_tables.scss */
  .table-admin.page-level thead tr {
    position: unset;
  }
  /* line 205, ../sass/partials/base/_tables.scss */
  .table-admin.page-level thead tr .sort-handle-heading, .table-admin.page-level thead tr .toolbar-4-items {
    display: none;
  }
}
@media all and (min-width: 47.5625em) {
  /* line 213, ../sass/partials/base/_tables.scss */
  .table-admin .toolbar-6-items {
    width: 11.875em;
  }
  /* line 217, ../sass/partials/base/_tables.scss */
  .table-admin .toolbar-5-items {
    width: 9.6875em;
  }
  /* line 221, ../sass/partials/base/_tables.scss */
  .table-admin .toolbar-4-items {
    width: 8.4375em;
  }
  /* line 225, ../sass/partials/base/_tables.scss */
  .table-admin .toolbar-3-items {
    width: 6.25em;
  }
  /* line 229, ../sass/partials/base/_tables.scss */
  .table-admin .toolbar-2-items, .table-admin .toolbar-1-items {
    width: 5em;
  }
}

/* line 235, ../sass/partials/base/_tables.scss */
.toolbar {
  min-width: 4.5em;
  float: left;
}
/* line 238, ../sass/partials/base/_tables.scss */
.toolbar a .icon-success {
  margin-right: 0.2em;
}
/* line 239, ../sass/partials/base/_tables.scss */
.toolbar .btn-delete {
  margin-left: 0.2em;
}
/* line 240, ../sass/partials/base/_tables.scss */
.toolbar a + .btn-delete {
  margin-left: 0;
}

/*Table Message*/
/* line 245, ../sass/partials/base/_tables.scss */
.table-message tr {
  cursor: pointer;
}

/*Table Responsive*/
@media all and (max-width: 40em) {
  /* line 254, ../sass/partials/base/_tables.scss */
  .table-responsive tr.list-row:nth-child(odd) td {
    background-color: var(--purple-lightest);
  }
  /* line 259, ../sass/partials/base/_tables.scss */
  .table-responsive th {
    display: none;
  }
  /* line 263, ../sass/partials/base/_tables.scss */
  .table-responsive td {
    display: block;
  }
  /* line 266, ../sass/partials/base/_tables.scss */
  .table-responsive td:first-child {
    padding-top: .5em;
  }
  /* line 270, ../sass/partials/base/_tables.scss */
  .table-responsive td:last-child {
    padding-bottom: .5em;
  }
  /* line 274, ../sass/partials/base/_tables.scss */
  .table-responsive td:before {
    content: attr(data-hr) ": ";
    font-weight: bold;
    width: 35%;
    display: inline-block;
  }
}
/* line 285, ../sass/partials/base/_tables.scss */
.table-responsive.table-no-header td:before {
  content: attr(data-hr) " ";
  width: 0;
}

/* figure 17 */
/* line 295, ../sass/partials/base/_tables.scss */
.figure17 {
  margin: auto;
  border-spacing: 2em;
  border-collapse: separate;
}

/* line 296, ../sass/partials/base/_tables.scss */
.burnout {
  height: 6em;
  text-align: center;
  background: #8C3B92;
  color: white;
}

/* line 297, ../sass/partials/base/_tables.scss */
.subheading1 {
  width: 25em;
  height: 6em;
  text-align: center;
  background: #5489c0;
  color: white;
}

/* line 298, ../sass/partials/base/_tables.scss */
.subheading2 {
  width: 25em;
  height: 6em;
  text-align: center;
  background: #d65948;
  color: white;
}

/* line 299, ../sass/partials/base/_tables.scss */
.inforow1 {
  height: 6em;
  text-align: center;
  background: #bcdbfb;
}

/* line 300, ../sass/partials/base/_tables.scss */
.inforow2 {
  height: 6em;
  text-align: center;
  background: #f9a195;
}

/* Table Templates */
@media all and (min-width: 40.0625em) {
  /* line 305, ../sass/partials/base/_tables.scss */
  .template_table-2-col .left {
    padding-right: 2em;
  }
  /* line 308, ../sass/partials/base/_tables.scss */
  .template_table-2-col .grid-item-cell {
    padding-bottom: 2em;
  }
}

/*Sticky header on tables scroll */
/* line 316, ../sass/partials/base/_tables.scss */
.table-response {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  z-index: 999;
  width: 85%;
  max-width: 89.65rem;
}
@media all and (max-width: 93.75em) {
  /* line 316, ../sass/partials/base/_tables.scss */
  .table-response {
    font-size: 0.8em;
  }
}
@media all and (min-width: 80em) and (max-width: 93.75em) {
  /* line 316, ../sass/partials/base/_tables.scss */
  .table-response {
    width: 84%;
  }
}
@media all and (min-width: 64.0625em) and (max-width: 79.9375em) {
  /* line 316, ../sass/partials/base/_tables.scss */
  .table-response {
    width: 83%;
  }
}
@media all and (max-width: 64em) {
  /* line 316, ../sass/partials/base/_tables.scss */
  .table-response {
    display: none !important;
  }
}

/* line 337, ../sass/partials/base/_tables.scss */
.c-table-icon {
  border-radius: 50%;
  height: 2rem;
  padding: 0.25rem;
  stroke: #fff;
  width: 2rem;
}

/* line 345, ../sass/partials/base/_tables.scss */
.c-table-icon--tick {
  background-color: green;
}

/* line 349, ../sass/partials/base/_tables.scss */
.c-table-icon--cross {
  background-color: #D33737;
}

/* ======================================================================================
   @BASE -> QUOTES
   ====================================================================================== */
/* [INLINE]
-------------------------------------------------------*/
/* line 7, ../sass/partials/base/_quotes.scss */
q {
  quotes: "\2018" "\2019" "\201C" "\201D";
  /* Pseudo elements */
  /* Nested */
}
/* line 11, ../sass/partials/base/_quotes.scss */
q:before {
  content: "\2018";
  /* Left single quotation mark */
  content: open-quote;
}
/* line 16, ../sass/partials/base/_quotes.scss */
q:after {
  content: "\2019";
  /* Right single quotation mark */
  content: close-quote;
}
/* line 23, ../sass/partials/base/_quotes.scss */
q q:before {
  content: "\201C";
  /* Left double quotation mark */
  content: open-quote;
}
/* line 28, ../sass/partials/base/_quotes.scss */
q q:after {
  content: "\201D";
  /* Right double quotation mark */
  content: close-quote;
}

/* [BLOCK]
-------------------------------------------------------*/
/* line 37, ../sass/partials/base/_quotes.scss */
.quote {
  margin-left: 2.875em;
  padding: 1.5em 0;
  /* Reduce the width and center align at this breakpoint */
  /* Source */
}
@media all and (min-width: 48em) {
  /* line 37, ../sass/partials/base/_quotes.scss */
  .quote {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 49, ../sass/partials/base/_quotes.scss */
.quote blockquote {
  font-family: Baskerville, "Hoefler Text", Garamond, "Times New Roman", serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
  font-style: italic;
  color: #262626;
  position: relative;
  quotes: none;
  /* Increase the font size at this breakpoint */
  /* Pseudo element - left double quotation mark  */
  /* Nested paragraphs */
}
@media all and (min-width: 48em) {
  /* line 49, ../sass/partials/base/_quotes.scss */
  .quote blockquote {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.33333;
  }
}
/* line 64, ../sass/partials/base/_quotes.scss */
.quote blockquote:before {
  content: "\201C";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  speak: none;
  position: absolute;
  top: -0.28em;
  left: -0.56em;
  /* Increase the font size and offsets at this breakpoint */
}
@media all and (min-width: 48em) {
  /* line 64, ../sass/partials/base/_quotes.scss */
  .quote blockquote:before {
    font-size: 130px;
    font-size: 8.125rem;
    line-height: 1.10769;
    top: -0.23077em;
    left: -0.53846em;
  }
}
/* line 84, ../sass/partials/base/_quotes.scss */
.quote blockquote p {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
/* line 88, ../sass/partials/base/_quotes.scss */
.quote figcaption {
  color: gray;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  /* Pseudo element - em dash */
}
/* line 93, ../sass/partials/base/_quotes.scss */
.quote figcaption:before {
  content: "\2014";
}

/* line 98, ../sass/partials/base/_quotes.scss */
.quote-double blockquote {
  /* Pseudo element - right double quotation mark  */
}
/* line 100, ../sass/partials/base/_quotes.scss */
.quote-double blockquote:after {
  content: "\201D";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  speak: none;
  position: absolute;
  bottom: -0.5em;
  left: 100%;
  /* Increase the font size and offsets at this breakpoint */
}
@media all and (min-width: 48em) {
  /* line 100, ../sass/partials/base/_quotes.scss */
  .quote-double blockquote:after {
    font-size: 130px;
    font-size: 8.125rem;
    line-height: 1.10769;
    bottom: -0.5em;
  }
}

/*Case Study*/
/* line 121, ../sass/partials/base/_quotes.scss */
.case-study {
  background-color: #f6eefb;
}

/* ======================================================================================
   @BASE -> TEXT SELECTION
   ====================================================================================== */
/* Firefox */
/* line 6, ../sass/partials/base/_text-selection.scss */
::-moz-selection {
  background: #30393F;
  text-shadow: none;
  color: #fff;
}

/* Everyone else */
/* line 13, ../sass/partials/base/_text-selection.scss */
::selection {
  background: #30393F;
  text-shadow: none;
  color: #fff;
}

/* ======================================================================================
   @BASE -> MISCELLANEOUS
   ====================================================================================== */
/* [HORIZONTAL RULE]
-------------------------------------------------------*/
/* line 7, ../sass/partials/base/_misc.scss */
hr {
  /*@extend %mrg-base;*/
  display: block;
  height: 1px;
  border: 0;
  border-top: 0.0625em solid gray;
  padding: 0;
  position: relative;
  	/* Pesudo element for a more stylised `hr` 
  	&:after {
          content: "\2767";
          position: absolute;
          top: 0;
          right: 0;
          left: 0;
          line-height: 0;
          text-align: center;
  		color: $color-grey-light;
      }*/
}

/* [ABBREVIATION]
-------------------------------------------------------*/
/* line 31, ../sass/partials/base/_misc.scss */
abbr[title] {
  cursor: help;
}

/* [INSERT]
-------------------------------------------------------*/
/* line 35, ../sass/partials/base/_misc.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* [PRE]
-------------------------------------------------------*/
/* [ADDRESS/EM]
-------------------------------------------------------*/
/* line 47, ../sass/partials/base/_misc.scss */
address {
  font-style: normal;
}

/* [SMALL]
-------------------------------------------------------*/
/* line 51, ../sass/partials/base/_misc.scss */
small {
  font-size: 100%;
}

/* [CANVAS]
-------------------------------------------------------*/
/* Set the default behavior for touch-based browsing in IE 10 on devices running Windows 8 */
/* line 56, ../sass/partials/base/_misc.scss */
canvas {
  -ms-touch-action: double-tap-zoom;
}

/* line 58, ../sass/partials/base/_misc.scss */
.icon-edit {
  color: #BCC932;
}

/* line 62, ../sass/partials/base/_misc.scss */
.curve-inset {
  padding-bottom: 5rem;
  position: relative;
}
/* line 66, ../sass/partials/base/_misc.scss */
.curve-inset::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 34px;
  background-color: white;
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
  pointer-events: none;
}

/* ======================================================================================
   @BASE -> SKIP LINK
   ====================================================================================== */
/*
	Usage: 
		An accessibility feature to allow assistive technology users e.g. screen readers to easily skip to the main content, also assists keyboard users.
	
	Demo:
		Insert cursor in the browser address bar then start tabbing, it's the first tab stop in the site.
*/
/* line 13, ../sass/partials/base/_skip-link.scss */
.hide-visually.skip-link {
  /* Pseudo classes */
}
/* line 15, ../sass/partials/base/_skip-link.scss */
.hide-visually.skip-link:active, .hide-visually.skip-link:focus {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2147483647;
  width: 100%;
  padding: 0.5em 0;
  background-color: rgba(48, 57, 63, 0.9);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  text-align: center;
  font-weight: 700;
  height: auto;
  overflow: visible;
  clip: auto;
  margin: 0;
}

/* Layout */
/* ======================================================================================
   @LAYOUT -> ALTERNATING FLOATED ELEMENTS 
   ====================================================================================== 
   
   This allows for a two column page with multiple rows, where one column has an image and the other has text. Can be typically used for services info page.
   In the HTML, the image and text remain the same structure for each row, but the float will be different for each row, to create alternating floated divs.
   */
@media all and (min-width: 40.0625em) {
  /* line 10, ../sass/partials/layout/_alternate-float.scss */
  .img_left-text_right .img {
    float: left;
  }
}
@media all and (min-width: 40.0625em) {
  /* line 16, ../sass/partials/layout/_alternate-float.scss */
  .img_left-text_right .text {
    float: right;
  }
}

@media all and (min-width: 40.0625em) {
  /* line 25, ../sass/partials/layout/_alternate-float.scss */
  .img_right-text_left .img {
    float: right;
    text-align: right;
  }
}
@media all and (min-width: 40.0625em) {
  /* line 32, ../sass/partials/layout/_alternate-float.scss */
  .img_right-text_left .text {
    float: left;
  }
}

/* ======================================================================================
   @LAYOUT -> CONTAINERS
   ====================================================================================== */
/* line 4, ../sass/partials/layout/_containers.scss */
.tile {
  background-color: #000;
  color: #fff;
  margin: 1em;
  padding: 4em 2em 4em 2em;
  text-decoration: none;
  text-align: center;
}

/* line 13, ../sass/partials/layout/_containers.scss */
.container, .container--sm {
  width: 90%;
  /*@include to-rem(min-width, 280);*/
  max-width: 1300px;
  max-width: 81.25rem;
  margin: 0 auto;
  /* Print */
}
@media print {
  /* line 13, ../sass/partials/layout/_containers.scss */
  .container, .container--sm {
    width: auto;
  }
}

/* line 24, ../sass/partials/layout/_containers.scss */
.container--sm {
  max-width: 1000px;
  max-width: 62.5rem;
}

/* line 29, ../sass/partials/layout/_containers.scss */
.container-full {
  max-width: 100%;
  width: 100%;
}

/* line 36, ../sass/partials/layout/_containers.scss */
.container-content ul {
  list-style: disc;
}

/* Tiles */
/* line 44, ../sass/partials/layout/_containers.scss */
.grid.icon-menu {
  display: flex;
  flex-wrap: wrap;
}
/* line 50, ../sass/partials/layout/_containers.scss */
.grid.icon-menu .grid-item a {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  display: block;
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  /*&:hover {
      div {
          background-color: rgba(114, 42, 130, 0.6);
      }
  }*/
}
/* line 62, ../sass/partials/layout/_containers.scss */
.grid.icon-menu .grid-item a img {
  margin-bottom: 1.5rem;
}
/* line 66, ../sass/partials/layout/_containers.scss */
.grid.icon-menu .grid-item a div {
  width: 100%;
  color: #000;
  font-weight: bold;
  padding: 0;
}
@media all and (min-width: 40.0625em) {
  /* line 81, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu .grid-item {
    margin-bottom: 1em;
    width: 50%;
  }
}
@media all and (min-width: 64em) {
  /* line 88, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu .grid-item {
    width: 25%;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 74.9375em) {
  /* line 44, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu {
    margin-left: -3rem;
  }
  /* line 96, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu .grid-item {
    padding-left: 3rem;
  }
}

/* line 102, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-quarter {
  margin-left: -1rem;
}
/* line 105, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-quarter .grid-item {
  padding-left: 1rem;
}
/* line 108, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-quarter .grid-item a {
  position: relative;
  display: block;
  width: 100%;
}
/* line 113, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-quarter .grid-item a div {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #5B207D;
  bottom: -2px;
}
/* line 124, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-quarter .grid-item a:hover div {
  background-color: rgba(98, 55, 100, 0.5);
}
@media all and (min-width: 40.0625em) {
  /* line 132, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-quarter .grid-item {
    margin-bottom: 1em;
    width: 50%;
  }
}
@media all and (min-width: 96.875em) {
  /* line 139, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-quarter .grid-item {
    width: 25%;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 96.875em) {
  /* line 102, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-quarter {
    margin-left: -1rem;
  }
  /* line 147, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-quarter .grid-item {
    padding-left: 1rem;
  }
  /* line 151, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-quarter img {
    width: 100%;
  }
}

/* line 157, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-third {
  margin-left: -3rem;
}
/* line 162, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-third .grid-item a {
  position: relative;
  display: block;
  width: 100%;
}
/* line 167, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-third .grid-item a div {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #5B207D;
  bottom: -2px;
}
/* line 178, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-third .grid-item a:hover div {
  background-color: rgba(98, 55, 100, 0.5);
}
@media all and (min-width: 40.0625em) {
  /* line 186, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-third .grid-item {
    margin-bottom: 1em;
    width: 25%;
  }
}
@media all and (min-width: 96.875em) {
  /* line 193, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-third .grid-item {
    width: 25%;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 96.875em) {
  /* line 157, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-third {
    margin-left: -1rem;
  }
  /* line 201, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-third .grid-item {
    padding-left: 1rem;
  }
  /* line 205, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-third img {
    width: 100%;
  }
}

/* line 211, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-half {
  width: 60%;
}
/* line 214, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-half .grid-item {
  padding-left: 1rem;
}
/* line 217, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-half .grid-item a {
  position: relative;
  display: block;
  width: 100%;
}
/* line 222, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-half .grid-item a div {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #5B207D;
  bottom: -2px;
}
/* line 233, ../sass/partials/layout/_containers.scss */
.grid.icon-menu-half .grid-item a:hover div {
  background-color: rgba(98, 55, 100, 0.5);
}
@media all and (min-width: 40.0625em) {
  /* line 211, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half {
    width: 100%;
  }
  /* line 243, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half .grid-item {
    margin-bottom: 1em;
    width: 50%;
  }
}
@media all and (min-width: 96.875em) {
  /* line 211, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half {
    width: 60%;
  }
  /* line 252, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half .grid-item {
    width: 50%;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 96.875em) {
  /* line 211, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half {
    margin-left: -1rem;
  }
  /* line 260, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half .grid-item {
    padding-left: 1rem;
  }
  /* line 264, ../sass/partials/layout/_containers.scss */
  .grid.icon-menu-half img {
    width: 100%;
  }
}

/*Guidelines section*/
/* line 272, ../sass/partials/layout/_containers.scss */
.guidelines .content-box, .training .content-box {
  display: flex;
  flex-direction: column;
  /*overflow: hidden;*/
}
/* line 277, ../sass/partials/layout/_containers.scss */
.guidelines .content-box h1, .guidelines .content-box h2, .guidelines .content-box h3, .training .content-box h1, .training .content-box h2, .training .content-box h3 {
  display: flex;
}
@media all and (max-width: 63.9375em) {
  /* line 271, ../sass/partials/layout/_containers.scss */
  .guidelines, .training {
    margin-top: 0.5em;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 63.9375em) {
  /* line 287, ../sass/partials/layout/_containers.scss */
  .guidelines .nav-list, .training .nav-list {
    width: 65%;
  }
}
@media all and (min-width: 64em) and (max-width: 81.1875em) {
  /* line 293, ../sass/partials/layout/_containers.scss */
  .guidelines .nav-list, .training .nav-list {
    width: 33%;
  }
  /* line 297, ../sass/partials/layout/_containers.scss */
  .guidelines .content-box, .training .content-box {
    width: 67%;
  }
  /* line 301, ../sass/partials/layout/_containers.scss */
  .guidelines .content-box.non-palm-one-whole, .training .content-box.non-palm-one-whole {
    width: 100%;
  }
}
@media (min-width: 1023px) {
  /* line 307, ../sass/partials/layout/_containers.scss */
  .guidelines .content-box, .training .content-box {
    border-top-left-radius: 0;
  }
}

@media all and (max-width: 40em) {
  /* line 316, ../sass/partials/layout/_containers.scss */
  .guidelines .content-box .h4, .guidelines .content-box .island-button h2, .island-button .guidelines .content-box h2 {
    font-size: 1rem;
  }
}

/*Left hand nav*/
/* line 323, ../sass/partials/layout/_containers.scss */
.nav .expand > a {
  background-color: #BCC932;
  color: #051937;
  /*background: transparent url(img/icon/arrow-list-down.png) no-repeat 0.5em 1.1em;*/
}

/* line 331, ../sass/partials/layout/_containers.scss */
.nav-list {
  background-color: #051937;
  font-size: 0.875em;
  overflow: hidden;
}
/* line 336, ../sass/partials/layout/_containers.scss */
.nav-list .subnav {
  border-radius: 10px;
}
/* line 339, ../sass/partials/layout/_containers.scss */
.nav-list .subnav .subnav {
  background-color: #8E549B;
}
/* line 342, ../sass/partials/layout/_containers.scss */
.nav-list .subnav .subnav .subnav {
  background-color: #AA7FB4;
}
/* line 349, ../sass/partials/layout/_containers.scss */
.nav-list nav {
  min-height: 33.625em;
}
/* line 353, ../sass/partials/layout/_containers.scss */
.nav-list a {
  background-color: #004D7A;
  color: var(--white);
  margin: 0 0.5rem 0.45rem 0.5rem;
}
/* line 358, ../sass/partials/layout/_containers.scss */
.nav-list a[title^="Part"] {
  color: var(--white);
}
/* line 363, ../sass/partials/layout/_containers.scss */
.nav-list ul {
  /*Level 1*/
}
/* line 365, ../sass/partials/layout/_containers.scss */
.nav-list ul li a {
  display: block;
  padding: .75rem;
  border-bottom: 1px solid rgba(209, 204, 222, 0.3);
}
/* line 370, ../sass/partials/layout/_containers.scss */
.nav-list ul li a:hover {
  text-decoration: none;
}
/* line 375, ../sass/partials/layout/_containers.scss */
.nav-list ul li:last-child a {
  border-bottom: 0;
}
/* line 379, ../sass/partials/layout/_containers.scss */
.nav-list ul li:hover, .nav-list ul li.is-active {
  background: transparent url(img/icon/arrow-list.png) no-repeat 10px 50%;
}
/* line 382, ../sass/partials/layout/_containers.scss */
.nav-list ul li:hover li, .nav-list ul li.is-active li {
  font-weight: normal;
}
/* line 385, ../sass/partials/layout/_containers.scss */
.nav-list ul li:hover li:hover, .nav-list ul li.is-active li:hover {
  font-weight: bold;
}
/* line 391, ../sass/partials/layout/_containers.scss */
.nav-list ul li.expand {
  background-image: none;
}
/* line 397, ../sass/partials/layout/_containers.scss */
.nav-list ul .expand ul {
  border-bottom: none;
  /*
  li {
      border-bottom: 1px solid rgba(209, 204, 222, 0.3);
  }*/
}
/* line 406, ../sass/partials/layout/_containers.scss */
.nav-list ul ul {
  /*Level 2*/
  margin-left: 0;
  border-bottom: 1px solid rgba(209, 204, 222, 0.3);
}
/* line 410, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li {
  padding-left: 1em;
  padding-right: 0;
}
/* line 414, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li:hover {
  background-position-x: 1.6em;
}
/* line 418, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li.is-active {
  background-position-x: 0;
  background-position-y: 0.85em;
}
/* line 422, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li.is-active ul {
  /*Level 3*/
}
/* line 423, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li.is-active ul li {
  font-weight: normal;
}
/* line 426, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li.is-active ul li:hover {
  font-weight: bold;
}
/* line 433, ../sass/partials/layout/_containers.scss */
.nav-list ul ul li a {
  border-bottom: 0;
}
/* line 438, ../sass/partials/layout/_containers.scss */
.nav-list ul ul ul {
  /*Level 3*/
  /*background-color:lighten($color-purple,50%);*/
  /*background-color: $color-off-white;*/
  margin-left: -1em;
  font-size: 0.9em;
}
/* line 444, ../sass/partials/layout/_containers.scss */
.nav-list ul ul ul ul {
  /*Level 4*/
  padding-left: 1em;
  /*background-color: #fff;*/
}
/* line 452, ../sass/partials/layout/_containers.scss */
.nav-list .h4, .nav-list .island-button h2, .island-button .nav-list h2 {
  margin-bottom: 0;
  padding: 1.5rem;
  color: var(--white);
}
/* line 460, ../sass/partials/layout/_containers.scss */
.nav-list .h4.h5-back .icon-play:before, .nav-list .island-button h2.h5-back .icon-play:before, .island-button .nav-list h2.h5-back .icon-play:before {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  top: -2px;
}
/* line 472, ../sass/partials/layout/_containers.scss */
.nav-list .nav {
  margin-left: 0;
  margin-bottom: 2em;
}
/* line 477, ../sass/partials/layout/_containers.scss */
.nav-list .island {
  padding-top: 0;
}
/* line 481, ../sass/partials/layout/_containers.scss */
.nav-list .download {
  padding: 1rem;
  text-align: center;
}
/* line 487, ../sass/partials/layout/_containers.scss */
.nav-list .download a .icon {
  font-size: 1.625em;
}
/* line 493, ../sass/partials/layout/_containers.scss */
.nav-list .order {
  background-color: #8c3b92;
  padding: 0.8em 0 0.85em 0;
  text-align: center;
}
/* line 498, ../sass/partials/layout/_containers.scss */
.nav-list .order img {
  margin-right: 0.5em;
}
/* line 502, ../sass/partials/layout/_containers.scss */
.nav-list .order a {
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  text-transform: uppercase;
}

/* line 511, ../sass/partials/layout/_containers.scss */
.content-box {
  /*background: #DDE3EA;*/
  background-size: 30%;
  /* &.pdf-download, &.worksheets {
      .btn-main, .btn-sml {
          border: 0;
          color: #fff !important;
          background-image: none;
          background-color: $color-purple !important;
      }
  }*/
}
/* line 515, ../sass/partials/layout/_containers.scss */
.content-box p {
  margin-bottom: 1em;
}
/* line 519, ../sass/partials/layout/_containers.scss */
.content-box ul {
  list-style: disc;
  margin-left: 1.1rem;
}
/* line 524, ../sass/partials/layout/_containers.scss */
.content-box li {
  margin-bottom: 1em;
}
/* line 528, ../sass/partials/layout/_containers.scss */
.content-box .heading {
  padding: 1.25em 1.4em 1.15em 1.4em;
  min-height: 3.9375em;
}
/* line 532, ../sass/partials/layout/_containers.scss */
.content-box .heading .h4, .content-box .heading .island-button h2, .island-button .content-box .heading h2 {
  margin-bottom: 0;
  display: inline-block;
}
/* line 540, ../sass/partials/layout/_containers.scss */
.content-box .heading a:hover {
  text-decoration: underline;
}
/* line 544, ../sass/partials/layout/_containers.scss */
.content-box .heading a.btn-transparent {
  margin-top: 1em;
  display: block;
}
/* line 551, ../sass/partials/layout/_containers.scss */
.content-box .toc .h5, .content-box .footer {
  background-color: #B2BECB;
  padding: 1rem;
}
/* line 556, ../sass/partials/layout/_containers.scss */
.content-box .key-points-heading {
  padding: 1em 1em 1em 1.5em;
  background-color: rgba(98, 55, 100, 0.4);
  color: #262626;
}
/* line 562, ../sass/partials/layout/_containers.scss */
.content-box .key-points {
  background-color: var(--grey-100);
}
/* line 565, ../sass/partials/layout/_containers.scss */
.content-box .key-points ul {
  margin-left: 1.6em;
}
/* line 569, ../sass/partials/layout/_containers.scss */
.content-box .key-points + h2 {
  margin-top: 1.5em;
}
/* line 575, ../sass/partials/layout/_containers.scss */
.content-box .toc a:hover {
  text-decoration: none;
}
/* line 579, ../sass/partials/layout/_containers.scss */
.content-box .toc .h5 {
  padding: 0 0.5em;
  color: #262626;
  text-transform: none;
  font-size: 0.8em;
  display: table-cell;
  vertical-align: middle;
}
/* line 587, ../sass/partials/layout/_containers.scss */
.content-box .toc .h5:hover {
  background-color: #581f79;
  color: #fff;
}
/* line 593, ../sass/partials/layout/_containers.scss */
.content-box .toc .icon {
  background-color: #004D7A;
  border-radius: 10px;
  color: #fff;
  margin-right: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  vertical-align: middle;
  text-align: center;
}
/* line 606, ../sass/partials/layout/_containers.scss */
.content-box .toc .icon:before {
  margin-right: 0;
}
/* line 612, ../sass/partials/layout/_containers.scss */
.content-box .footer {
  text-align: right;
  min-height: 2.8125em;
}
/* line 616, ../sass/partials/layout/_containers.scss */
.content-box .footer .btn {
  /* padding: 1em 1em;
  background-color: $color-purple;
  text-transform: uppercase;
  color: white;*/
            /* &:first-child {
                background-color: rgba(98,55,100,.4);
                color: #000;

                @include respond-max(389) {
                    .icon-download:before {
                        margin-right: 0;
                    }
                }

                @include respond-min(390) {
                    &:after {
                        content: "Download Section";
                    }
                }
            }

            &:hover {
                text-decoration: underline;
                color: white;
            }*/
}
@media all and (max-width: 40em) {
  /* line 654, ../sass/partials/layout/_containers.scss */
  .content-box .footer .btn {
    font-size: 0.7em !important;
  }
}
@media all and (min-width: 81.25em) {
  /* line 661, ../sass/partials/layout/_containers.scss */
  .content-box .heading h1 {
    width: 70%;
  }
  /* line 665, ../sass/partials/layout/_containers.scss */
  .content-box .heading a.btn-transparent {
    float: right;
    text-transform: uppercase;
    margin-top: 0;
  }
}

/*Training*/
/* line 674, ../sass/partials/layout/_containers.scss */
.training,
.guidelines {
  /*Left hand nav*/
  /*Right hand content*/
}
/* line 678, ../sass/partials/layout/_containers.scss */
.training .nav-list .icon,
.guidelines .nav-list .icon {
  color: #bfbfbf;
}
/* line 682, ../sass/partials/layout/_containers.scss */
.training .nav-list .icon-success,
.guidelines .nav-list .icon-success {
  color: #BCC932;
}
/* line 687, ../sass/partials/layout/_containers.scss */
.training .nav-list .download .icon,
.guidelines .nav-list .download .icon {
  color: #000;
}
/* line 694, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav .expand a,
.guidelines .nav-list .nav .expand a {
  background-image: none;
}
/* line 698, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav .expand:hover,
.guidelines .nav-list .nav .expand:hover {
  font-weight: normal;
}
/* line 704, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav ul li,
.guidelines .nav-list .nav ul li {
  position: relative;
  padding-left: 1.8rem;
}
/* line 708, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav ul li:hover,
.guidelines .nav-list .nav ul li:hover {
  background-image: none;
  font-weight: bold;
}
/* line 712, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav ul li:hover .icon,
.guidelines .nav-list .nav ul li:hover .icon {
  color: #BCC932;
}
/* line 717, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav ul li .icon,
.guidelines .nav-list .nav ul li .icon {
  position: absolute;
  left: 2.3rem;
}
/* line 722, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav ul li.active,
.guidelines .nav-list .nav ul li.active {
  font-weight: bold;
}
/* line 723, ../sass/partials/layout/_containers.scss */
.training .nav-list .nav ul li.active .icon,
.guidelines .nav-list .nav ul li.active .icon {
  color: #BCC932;
}
/* line 735, ../sass/partials/layout/_containers.scss */
.training .content-box .heading,
.guidelines .content-box .heading {
  padding-bottom: 0.95em;
}
/* line 739, ../sass/partials/layout/_containers.scss */
.training .content-box .heading .progress,
.guidelines .content-box .heading .progress {
  background-color: #262626;
  color: #BCC932;
  padding: 0.1em 0.5em 0.2em 0.5em;
}
@media all and (min-width: 40.0625em) {
  /* line 746, ../sass/partials/layout/_containers.scss */
  .training .content-box .heading h1,
  .guidelines .content-box .heading h1 {
    float: left;
  }
  /* line 750, ../sass/partials/layout/_containers.scss */
  .training .content-box .heading .progress,
  .guidelines .content-box .heading .progress {
    float: right;
    position: relative;
    top: -0.2em;
  }
}
/* line 758, ../sass/partials/layout/_containers.scss */
.training .content-box .subheading,
.guidelines .content-box .subheading {
  background-color: #eddef6;
  padding: 0 0 0 1.4em;
}
/* line 763, ../sass/partials/layout/_containers.scss */
.training .content-box .subheading h2,
.guidelines .content-box .subheading h2 {
  float: left;
  margin-top: 1em;
  text-transform: none;
}
/* line 769, ../sass/partials/layout/_containers.scss */
.training .content-box .subheading .jplayer,
.guidelines .content-box .subheading .jplayer {
  float: right;
}
@media all and (max-width: 25.875em) {
  /* line 758, ../sass/partials/layout/_containers.scss */
  .training .content-box .subheading,
  .guidelines .content-box .subheading {
    padding-left: 0;
  }
  /* line 776, ../sass/partials/layout/_containers.scss */
  .training .content-box .subheading h2,
  .guidelines .content-box .subheading h2 {
    padding-left: 1.5em;
  }
  /* line 780, ../sass/partials/layout/_containers.scss */
  .training .content-box .subheading .jplayer,
  .guidelines .content-box .subheading .jplayer {
    float: none;
    display: table;
    width: 100%;
  }
  /* line 785, ../sass/partials/layout/_containers.scss */
  .training .content-box .subheading .jplayer .jp-controls-holder,
  .guidelines .content-box .subheading .jplayer .jp-controls-holder {
    width: auto;
  }
}
/* line 793, ../sass/partials/layout/_containers.scss */
.training .content-box .footer .btn,
.guidelines .content-box .footer .btn {
  font-weight: bold;
  margin-left: 0.2em;
}

/* line 801, ../sass/partials/layout/_containers.scss */
.training-content {
  min-height: 28.1875em;
  /*The right hand status badge*/
}
/* line 807, ../sass/partials/layout/_containers.scss */
.training-content .slats {
  margin-bottom: 3em;
}
/* line 810, ../sass/partials/layout/_containers.scss */
.training-content .slats .slats-img {
  max-width: 4.375em;
}
/* line 814, ../sass/partials/layout/_containers.scss */
.training-content .slats .h5 {
  position: relative;
}
/* line 817, ../sass/partials/layout/_containers.scss */
.training-content .slats .h5 .icon-play {
  position: absolute;
  right: 0;
}
/* line 821, ../sass/partials/layout/_containers.scss */
.training-content .slats .h5 .icon-play:before {
  margin-right: 0;
}
/* line 828, ../sass/partials/layout/_containers.scss */
.training-content .slats.complete .h5 {
  border-bottom: 1px solid #BCC932;
}
/* line 834, ../sass/partials/layout/_containers.scss */
.training-content .slats.incomplete a {
  color: #4d4d4d;
  text-decoration: none;
}
/* line 839, ../sass/partials/layout/_containers.scss */
.training-content .slats.incomplete .h5 {
  border-bottom: 1px solid #bfbfbf;
  color: #4d4d4d;
  text-decoration: none;
}
/* line 846, ../sass/partials/layout/_containers.scss */
.training-content .slats.incomplete:hover img {
  -webkit-filter: brightness(50%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
/* line 860, ../sass/partials/layout/_containers.scss */
.training-content .media .btn .icon:before {
  margin-right: 0;
  top: -3px;
  margin-left: 0.5em;
}
/* line 868, ../sass/partials/layout/_containers.scss */
.training-content .media div:last-child .btn {
  background-color: #944019;
  background-image: -webkit-linear-gradient(top, #944019, #682d12);
  background-image: linear-gradient(to bottom, #944019, #682d12);
}
/* line 871, ../sass/partials/layout/_containers.scss */
.training-content .media div:last-child .btn:hover {
  background-color: #944019;
  background-image: -webkit-linear-gradient(top, #944019, #271107);
  background-image: linear-gradient(to bottom, #944019, #271107);
}
/* line 878, ../sass/partials/layout/_containers.scss */
.training-content .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
/* line 885, ../sass/partials/layout/_containers.scss */
.training-content .embed-container iframe, .training-content .embed-container object, .training-content .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 894, ../sass/partials/layout/_containers.scss */
.training-content .grid-table.diagram {
  display: table;
  width: 100%;
  position: relative;
}
/* line 899, ../sass/partials/layout/_containers.scss */
.training-content .grid-table.diagram .arrow-wrapper {
  width: 29%;
}
@media all and (max-width: 40em) {
  /* line 905, ../sass/partials/layout/_containers.scss */
  .training-content .slats {
    margin-bottom: 0;
  }
  /* line 908, ../sass/partials/layout/_containers.scss */
  .training-content .slats .slats-img {
    margin-right: 0.5em;
    width: 3em;
  }
  /* line 913, ../sass/partials/layout/_containers.scss */
  .training-content .slats .slats-body {
    padding-left: 4em;
  }
  /* line 914, ../sass/partials/layout/_containers.scss */
  .training-content .slats .slats-body .h5 {
    font-size: 90%;
  }
}
@media (min-width: 63em) {
  /* line 924, ../sass/partials/layout/_containers.scss */
  .training-content .grid-item {
    min-height: 11rem;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 87.4375em) {
  /* line 930, ../sass/partials/layout/_containers.scss */
  .training-content .media, .training-content .text {
    float: none;
    width: 100%;
  }
  /* line 935, ../sass/partials/layout/_containers.scss */
  .training-content .text {
    clear: both;
  }
  /* line 939, ../sass/partials/layout/_containers.scss */
  .training-content .media {
    margin-bottom: 2em;
  }
  /* line 944, ../sass/partials/layout/_containers.scss */
  .training-content .grid-table.diagram .arrow-wrapper {
    width: 40%;
  }
  /* line 950, ../sass/partials/layout/_containers.scss */
  .training-content .slats .slats-img {
    margin-right: 0.5em;
  }
  /* line 955, ../sass/partials/layout/_containers.scss */
  .training-content .slats .slats-body .h5 {
    font-size: 90%;
  }
}
@media all and (min-width: 87.5em) {
  /* line 963, ../sass/partials/layout/_containers.scss */
  .training-content .text {
    float: left;
  }
}

/* line 969, ../sass/partials/layout/_containers.scss */
.training-badge {
  /*Landing page*/
  text-align: center;
  position: relative;
}
/* line 973, ../sass/partials/layout/_containers.scss */
.training-badge img {
  max-width: 12.5em;
}
/* line 977, ../sass/partials/layout/_containers.scss */
.training-badge .training-count {
  position: absolute;
  bottom: 1.5em;
  width: 100%;
  color: #fff;
  text-decoration: underline;
}

/*Messages*/
/* line 987, ../sass/partials/layout/_containers.scss */
.message-body.island-body {
  padding: 1.5rem;
}
/* line 992, ../sass/partials/layout/_containers.scss */
.message-body .message-toolbar .btn {
  margin-right: 0.35em;
}

/*Diagrams*/
/* line 998, ../sass/partials/layout/_containers.scss */
.mobile-diagram {
  display: none;
}
@media all and (max-width: 51.8125em) {
  /* line 998, ../sass/partials/layout/_containers.scss */
  .mobile-diagram {
    display: block;
    padding-left: 0 !important;
  }
}

/* line 1007, ../sass/partials/layout/_containers.scss */
.media.desktop-diagram {
  display: block;
}
@media all and (max-width: 51.8125em) {
  /* line 1007, ../sass/partials/layout/_containers.scss */
  .media.desktop-diagram {
    display: none;
  }
}

/* line 1015, ../sass/partials/layout/_containers.scss */
.circle-container-7 {
  position: relative;
  width: 33em;
  height: 33em;
  padding: 0;
  border-radius: 50%;
  list-style: none;
  margin: 5em auto;
}
/* line 892, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20em;
  height: 20em;
  margin: -10em;
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(1) {
  transform: rotate(0deg) translate(16.5em) rotate(0deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(2) {
  transform: rotate(51.42857deg) translate(16.5em) rotate(-51.42857deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(3) {
  transform: rotate(102.85714deg) translate(16.5em) rotate(-102.85714deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(4) {
  transform: rotate(154.28571deg) translate(16.5em) rotate(-154.28571deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(5) {
  transform: rotate(205.71429deg) translate(16.5em) rotate(-205.71429deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(6) {
  transform: rotate(257.14286deg) translate(16.5em) rotate(-257.14286deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-7 > *:nth-of-type(7) {
  transform: rotate(308.57143deg) translate(16.5em) rotate(-308.57143deg);
}

/* line 1020, ../sass/partials/layout/_containers.scss */
.circle-container-11 {
  position: relative;
  width: 30em;
  height: 30em;
  padding: 0;
  border-radius: 50%;
  list-style: none;
  margin: 5em auto;
  margin-left: auto !important;
}
/* line 892, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10em;
  height: 10em;
  margin: -5em;
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(1) {
  transform: rotate(0deg) translate(15em) rotate(0deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(2) {
  transform: rotate(32.72727deg) translate(15em) rotate(-32.72727deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(3) {
  transform: rotate(65.45455deg) translate(15em) rotate(-65.45455deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(4) {
  transform: rotate(98.18182deg) translate(15em) rotate(-98.18182deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(5) {
  transform: rotate(130.90909deg) translate(15em) rotate(-130.90909deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(6) {
  transform: rotate(163.63636deg) translate(15em) rotate(-163.63636deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(7) {
  transform: rotate(196.36364deg) translate(15em) rotate(-196.36364deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(8) {
  transform: rotate(229.09091deg) translate(15em) rotate(-229.09091deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(9) {
  transform: rotate(261.81818deg) translate(15em) rotate(-261.81818deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(10) {
  transform: rotate(294.54545deg) translate(15em) rotate(-294.54545deg);
}
/* line 905, ../sass/partials/utils/_mixins.scss */
.circle-container-11 > *:nth-of-type(11) {
  transform: rotate(327.27273deg) translate(15em) rotate(-327.27273deg);
}

/*Arrow Box*/
/* line 1026, ../sass/partials/layout/_containers.scss */
.arrow-box {
  position: relative;
  padding: 1em;
  font-size: 80%;
  /*Position of arrow*/
}
/* line 1031, ../sass/partials/layout/_containers.scss */
.arrow-box:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 30px;
}
/* line 1042, ../sass/partials/layout/_containers.scss */
.arrow-box.right:after {
  margin-top: -30px;
  top: 50%;
  left: 100%;
}
/* line 1050, ../sass/partials/layout/_containers.scss */
.arrow-box.down:after {
  margin-left: -30px;
  top: 100%;
  left: 50%;
}
/* line 1057, ../sass/partials/layout/_containers.scss */
.arrow-box.light {
  background-color: #ffd879;
}
/* line 1060, ../sass/partials/layout/_containers.scss */
.arrow-box.light.right:after {
  border-left-color: #ffd879;
}
/* line 1064, ../sass/partials/layout/_containers.scss */
.arrow-box.light.down:after {
  border-top-color: #ffd879;
}
/* line 1069, ../sass/partials/layout/_containers.scss */
.arrow-box.dark {
  background-color: #944019;
}
/* line 1072, ../sass/partials/layout/_containers.scss */
.arrow-box.dark.right:after {
  border-left-color: #944019;
}
/* line 1076, ../sass/partials/layout/_containers.scss */
.arrow-box.dark.down:after {
  border-top-color: #944019;
}

/* line 1083, ../sass/partials/layout/_containers.scss */
.figure-15 .arrow-box {
  margin-top: 3.2em;
  margin-left: 2em;
}

/*Step horizontal bars*/
/* line 1089, ../sass/partials/layout/_containers.scss */
.bar {
  float: left;
  height: 50px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

/*Table, column, shape*/
/* line 1098, ../sass/partials/layout/_containers.scss */
.areagraph {
  position: relative;
  height: 20em;
}
/* line 1102, ../sass/partials/layout/_containers.scss */
.areagraph table {
  border: 1px solid #000;
  height: 20em;
  width: 100%;
  max-width: 40em;
}
/* line 1108, ../sass/partials/layout/_containers.scss */
.areagraph table td {
  border-right: 1px solid #000;
  width: 20%;
  vertical-align: top;
  margin-top: 1em;
  text-align: center;
}
/* line 1117, ../sass/partials/layout/_containers.scss */
.areagraph div {
  position: absolute;
  bottom: 0;
}

/* line 1123, ../sass/partials/layout/_containers.scss */
.c-snippet {
  position: relative;
  z-index: 2;
}

/* line 1128, ../sass/partials/layout/_containers.scss */
.c-snippet--full-stretch {
  background-color: #fff;
}
/* line 1131, ../sass/partials/layout/_containers.scss */
.c-snippet--full-stretch::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}

/* line 1144, ../sass/partials/layout/_containers.scss */
.c-snippet--full-stretch-grey {
  background-color: var(--grey-400);
}
/* line 1147, ../sass/partials/layout/_containers.scss */
.c-snippet--full-stretch-grey::before {
  background-color: var(--grey-400);
}

/*trainingles*/
/* line 3, ../sass/partials/layout/_custom.scss */
.c-key-outcome {
  border-radius: 10px;
  font-family: "azo-sans-web", sans-serif;
  margin-bottom: .5rem;
}

/* line 10, ../sass/partials/layout/_custom.scss */
.triangle-down {
  background-color: #242C31;
  border-radius: 50%;
  height: 2rem;
  margin: 0.5rem auto;
  position: relative;
  width: 2rem;
}
/* line 18, ../sass/partials/layout/_custom.scss */
.triangle-down:before {
  position: absolute;
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

/* line 30, ../sass/partials/layout/_custom.scss */
.wrapper {
  width: 400px;
  height: 400px;
  margin: 100px auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  -webkit-transform: rotate(50.4deg);
  transform: rotate(50.4deg);
}
/* line 40, ../sass/partials/layout/_custom.scss */
.wrapper .d1, .wrapper .d2, .wrapper .d3, .wrapper .d4, .wrapper .d5 {
  width: 800px;
  height: 800px;
  position: absolute;
  top: -200px;
  left: -200px;
}
/* line 47, ../sass/partials/layout/_custom.scss */
.wrapper .d1 div, .wrapper .d2 div, .wrapper .d3 div, .wrapper .d4 div, .wrapper .d5 div {
  width: 800px;
  height: 800px;
}
/* line 50, ../sass/partials/layout/_custom.scss */
.wrapper .d1 div:after, .wrapper .d2 div:after, .wrapper .d3 div:after, .wrapper .d4 div:after, .wrapper .d5 div:after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border: solid transparent;
  border-width: 400px;
  position: relative;
}
/* line 59, ../sass/partials/layout/_custom.scss */
.wrapper .d1 div span, .wrapper .d2 div span, .wrapper .d3 div span, .wrapper .d4 div span, .wrapper .d5 div span {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  font-size: 12px;
  text-align: center;
  z-index: 100;
  color: #fff;
}
/* line 72, ../sass/partials/layout/_custom.scss */
.wrapper .d1 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 77, ../sass/partials/layout/_custom.scss */
.wrapper .d1 div:after {
  border-top-color: #FC5B3F;
  -webkit-transform: scaleX(1.20879);
  transform: scaleX(1.20879);
}
/* line 83, ../sass/partials/layout/_custom.scss */
.wrapper .d1 div span {
  top: 35%;
  -webkit-transform: rotate(-50.4deg);
  transform: rotate(-50.4deg);
}
/* line 91, ../sass/partials/layout/_custom.scss */
.wrapper .d2 {
  -webkit-transform: rotate(68.4deg);
  transform: rotate(68.4deg);
}
/* line 96, ../sass/partials/layout/_custom.scss */
.wrapper .d2 div:after {
  border-top-color: #FCB03C;
  -webkit-transform: scaleX(0.32492);
  transform: scaleX(0.32492);
}
/* line 102, ../sass/partials/layout/_custom.scss */
.wrapper .d2 div span {
  top: 34%;
  -webkit-transform: rotate(-118.8deg);
  transform: rotate(-118.8deg);
}
/* line 110, ../sass/partials/layout/_custom.scss */
.wrapper .d3 {
  -webkit-transform: rotate(108deg);
  transform: rotate(108deg);
}
/* line 115, ../sass/partials/layout/_custom.scss */
.wrapper .d3 div:after {
  border-top-color: #6FB07F;
  -webkit-transform: scaleX(0.39593);
  transform: scaleX(0.39593);
}
/* line 121, ../sass/partials/layout/_custom.scss */
.wrapper .d3 div span {
  top: 31%;
  -webkit-transform: rotate(-158.4deg);
  transform: rotate(-158.4deg);
}
/* line 129, ../sass/partials/layout/_custom.scss */
.wrapper .d4 {
  -webkit-transform: rotate(156.6deg);
  transform: rotate(156.6deg);
}
/* line 134, ../sass/partials/layout/_custom.scss */
.wrapper .d4 div:after {
  border-top-color: #068587;
  -webkit-transform: scaleX(0.50953);
  transform: scaleX(0.50953);
}
/* line 140, ../sass/partials/layout/_custom.scss */
.wrapper .d4 div span {
  top: 28%;
  -webkit-transform: rotate(-207deg);
  transform: rotate(-207deg);
}
/* line 148, ../sass/partials/layout/_custom.scss */
.wrapper .d5 {
  -webkit-transform: rotate(246.6deg);
  transform: rotate(246.6deg);
}
/* line 153, ../sass/partials/layout/_custom.scss */
.wrapper .d5 div:after {
  border-top-color: #1A4F63;
  -webkit-transform: scaleX(1.96261);
  transform: scaleX(1.96261);
}
/* line 159, ../sass/partials/layout/_custom.scss */
.wrapper .d5 div span {
  top: 33%;
  -webkit-transform: rotate(-297deg);
  transform: rotate(-297deg);
}

/* ======================================================================================
   @LAYOUT -> HEADER
   ====================================================================================== */
/* line 5, ../sass/partials/layout/_header.scss */
.header {
  text-align: center;
  background: var(--gradient);
}
/* line 10, ../sass/partials/layout/_header.scss */
.header .container, .header .container--sm {
  text-align: left;
  /*padding: 0;*/
  display: flex;
  align-items: center;
  position: relative;
}
/* line 18, ../sass/partials/layout/_header.scss */
.header .user-area {
  text-align: right;
  /* Faux table layout at this breakpoint */
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  margin-left: auto;
}
/* line 27, ../sass/partials/layout/_header.scss */
.header .user-area .header-search .txt-input {
  /*margin-right: -0.3em;*/
}
/* line 31, ../sass/partials/layout/_header.scss */
.header .user-area .header-search .btn {
  /*background: $color-yellow url('img/icon/btn-search.png') no-repeat 50% 50%;*/
  /*padding: .5rem 1rem;*/
  position: relative;
  top: 0;
}
/* line 39, ../sass/partials/layout/_header.scss */
.header .user-area .user-notifications {
  margin-bottom: .5rem;
}
@media all and (max-width: 40em) {
  /* line 5, ../sass/partials/layout/_header.scss */
  .header {
    background-size: cover;
  }
  /* line 47, ../sass/partials/layout/_header.scss */
  .header .user-area {
    top: 1em;
    right: 0;
  }
  /* line 51, ../sass/partials/layout/_header.scss */
  .header .user-area .btn {
    padding: 0.9em 1em;
    padding-top: 1.05em;
    top: 0;
  }
  /* line 57, ../sass/partials/layout/_header.scss */
  .header .user-area .user-notifications {
    margin-bottom: 0.5em;
    font-size: 0.8em;
  }
  /* line 62, ../sass/partials/layout/_header.scss */
  .header .user-area .user-notifications + nav {
    clear: both;
  }
}
@media (min-width: 64em) {
  /* line 5, ../sass/partials/layout/_header.scss */
  .header {
    /*background: var(--grey-900) url(/img/pattern-opacity.svg) no-repeat 85% 100%;*/
  }
}

/* Logo */
/* line 74, ../sass/partials/layout/_header.scss */
.logo {
  text-align: left;
  display: table-cell;
  width: 12.5em;
}
/* line 79, ../sass/partials/layout/_header.scss */
.logo img {
  padding: 1em 0;
}
/* line 83, ../sass/partials/layout/_header.scss */
.logo .logo-big {
  display: block;
}
/* line 87, ../sass/partials/layout/_header.scss */
.logo .logo-small {
  display: none;
}
@media all and (max-width: 40em) {
  /* line 74, ../sass/partials/layout/_header.scss */
  .logo {
    width: 5em;
  }
  /* line 94, ../sass/partials/layout/_header.scss */
  .logo .logo-big {
    display: none;
  }
  /* line 98, ../sass/partials/layout/_header.scss */
  .logo .logo-small {
    display: block;
    padding: 0.5em 0;
    max-width: 3rem;
    margin: 0 auto;
  }
}

/* --Main navigation-- */
/* Toggle the menu via jQuery */
/* line 109, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle {
  /* Hide */
  max-height: 0;
  overflow: hidden;
  /* Transition */
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  /* Show when expanded */
  /* Always show at this breakpoint */
}
/* line 115, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle.is-expanded {
  max-height: 15.625rem;
  /* Note: adjust this to roughly match the height of the menu */
  overflow: visible;
}
@media (max-width: 850px) {
  /* line 109, ../sass/partials/layout/_header.scss */
  .js .js-menu-toggle {
    clear: both;
  }
  /* line 123, ../sass/partials/layout/_header.scss */
  .js .js-menu-toggle li {
    /*display: block;*/
    text-align: left;
    background-color: #30393F;
    border-top: 1px solid #46535c;
    border-bottom: 1px solid #040505;
  }
  /* line 130, ../sass/partials/layout/_header.scss */
  .js .js-menu-toggle li a {
    display: block;
    padding: 0.5em;
  }
  /* line 134, ../sass/partials/layout/_header.scss */
  .js .js-menu-toggle li a:hover {
    background-color: #252c31;
  }
}
@media (min-width: 850px) {
  /* line 109, ../sass/partials/layout/_header.scss */
  .js .js-menu-toggle {
    max-height: none;
    overflow: visible;
  }
}

/*Main Nav*/
/* line 148, ../sass/partials/layout/_header.scss */
.nav-group {
  flex: 1;
  padding: 1.5rem 0;
}
/* line 152, ../sass/partials/layout/_header.scss */
.nav-group .container, .nav-group .container--sm {
  position: relative;
}
/* line 157, ../sass/partials/layout/_header.scss */
.nav-group .login .btn-login, .nav-group .logout .btn-login, .nav-group .register .btn-login {
  color: #262626;
  font-family: "Noto Sans", sans-serif !important;
  font-weight: bold;
}
/* line 165, ../sass/partials/layout/_header.scss */
.nav-group .login .btn-login, .nav-group .logout .btn-login {
  /*position: absolute;
  right: 0;
  top: -0.45em;*/
  white-space: nowrap;
}
/* line 174, ../sass/partials/layout/_header.scss */
.nav-group .register .btn-login {
  /*  position: absolute;
    right: to-em(110);
    top: -0.45em;*/
  white-space: nowrap;
}
@media (max-width: 850px) {
  /* line 148, ../sass/partials/layout/_header.scss */
  .nav-group {
    padding: 0.5em 0;
    /*
            .register {
                .btn-login {
                    position: absolute;
                    right: to-em(85);
                    top: 0;
                    padding: 0.38em 0.75em;
                }
            }
    
            .login {
                .btn-login {
                    top: 0;
                    padding: 0.38em 0.75em;
    
                    span {
                        display: none;
                    }
    
                    width: 4.8em;
                }
            }
    
            .logout {
                .btn-login {
                    top: 0;
                    padding: 0.38em 0.75em;
                }
            }*/
  }
  /* line 215, ../sass/partials/layout/_header.scss */
  .nav-group .nav-main {
    width: 100%;
    margin-top: 0.5em;
  }
  /* line 219, ../sass/partials/layout/_header.scss */
  .nav-group .nav-main li {
    padding-left: 0;
  }
  /* line 222, ../sass/partials/layout/_header.scss */
  .nav-group .nav-main li a {
    padding-left: 2em;
  }
}

@media (max-width: 1300px) {
  /* line 231, ../sass/partials/layout/_header.scss */
  .nav-main li {
    padding-left: .4em !important;
  }
}
/* line 237, ../sass/partials/layout/_header.scss */
.nav-main {
  /*text-align: center;*/
  text-transform: capitalize;
  width: 100%;
  /* --Conditional links (drop down) at lap viewport range-- */
  /* Hide the conditional links at these breakpoints */
  /* Hide/show of certain links at this breakpoint range */
  /*@include respond-range-fixed(lap) {*/
  /* Hide links in main nav we have no room for */
  /*.nav-main__hide-show {
      display: none;
  }*/
  /* Show the conditional links (drop down) */
    /*.nav-main__conditional-links {
        display: inline-block;
    }
}*/
}
/* line 242, ../sass/partials/layout/_header.scss */
.nav-main li {
  padding-left: 1.5em;
}
/* line 245, ../sass/partials/layout/_header.scss */
.nav-main li:first-child {
  padding-left: 0;
}
@media all and (min-width: 75em) and (max-width: 78.0625em) {
  /* line 242, ../sass/partials/layout/_header.scss */
  .nav-main li {
    padding-left: 1em;
  }
}
/* line 254, ../sass/partials/layout/_header.scss */
.nav-main ul {
  margin-left: 2em;
  background-color: #fff;
  border-radius: 10px;
}
/* line 259, ../sass/partials/layout/_header.scss */
.nav-main ul li {
  padding: 0;
}
/* line 262, ../sass/partials/layout/_header.scss */
.nav-main ul li a {
  padding: 0.5em 1em 0.5em 0.5em;
  display: inline-block;
  color: #4d4d4d;
}
/* line 270, ../sass/partials/layout/_header.scss */
.nav-main a, .nav-main .btn {
  color: #fff;
}
/* line 274, ../sass/partials/layout/_header.scss */
.nav-main .btn {
  margin-top: -4px;
}
/* line 279, ../sass/partials/layout/_header.scss */
.nav-main .nav-main__conditional-links {
  display: none;
}
@media (max-width: 86em) {
  /* line 237, ../sass/partials/layout/_header.scss */
  .nav-main {
    /* Hide links in main nav we have no room for */
    /* Show the conditional links (drop down) */
  }
  /* line 296, ../sass/partials/layout/_header.scss */
  .nav-main .nav-main__hide-show {
    display: none;
  }
  /* line 300, ../sass/partials/layout/_header.scss */
  .nav-main .nav-main__conditional-links {
    display: inline-block;
  }
}
@media all and (min-width: 40.0625em) and (max-width: 43.6875em) {
  /* line 306, ../sass/partials/layout/_header.scss */
  .nav-main li {
    padding-left: 1em;
  }
}

/* Admin Navigation */
/* line 313, ../sass/partials/layout/_header.scss */
.header_nav {
  padding: 0.5em 0;
}
/* line 316, ../sass/partials/layout/_header.scss */
.header_nav a {
  color: #fff;
}
/* line 320, ../sass/partials/layout/_header.scss */
.header_nav .search-mini {
  position: relative;
}
/* line 323, ../sass/partials/layout/_header.scss */
.header_nav .search-mini button {
  position: absolute;
  right: 0;
  top: 0;
  background: #BCC932 url("img/icon/btn-search.png") no-repeat 50% 50%;
  padding: 0.97em 1em;
}
/* line 331, ../sass/partials/layout/_header.scss */
.header_nav .search-mini .txt-input {
  max-width: 18.75em;
  float: right;
}
@media all and (max-width: 63.9375em) {
  /* line 339, ../sass/partials/layout/_header.scss */
  .header_nav .search-mini .txt-input {
    width: 100%;
  }
}
@media all and (max-width: 40em) {
  /* line 313, ../sass/partials/layout/_header.scss */
  .header_nav {
    padding-bottom: 1.1em;
  }
  /* line 346, ../sass/partials/layout/_header.scss */
  .header_nav .search-mini {
    position: absolute !important;
    right: 0;
    top: 0;
  }
  /* line 347, ../sass/partials/layout/_header.scss */
  .header_nav .search-mini .txt-input {
    padding: 0.5em;
  }
}
@media all and (min-width: 40.0625em) {
  /* line 360, ../sass/partials/layout/_header.scss */
  .header_nav nav, .header_nav .search-mini {
    display: table-cell;
    vertical-align: middle;
  }
  /* line 366, ../sass/partials/layout/_header.scss */
  .header_nav .nav-main-home .icon-website:after {
    content: "Go to console";
  }
}

/* line 373, ../sass/partials/layout/_header.scss */
.console-menu {
  display: table;
  width: 100%;
}
/* line 379, ../sass/partials/layout/_header.scss */
.console-menu a {
  font-size: .875rem;
}
/* line 382, ../sass/partials/layout/_header.scss */
.console-menu a.nav-main-home {
  background-color: #BCC932;
  padding: 0.5em 0.5em 0.5em 0.8em;
}
/* line 388, ../sass/partials/layout/_header.scss */
.console-menu .search-mini {
  position: relative;
}
/* line 391, ../sass/partials/layout/_header.scss */
.console-menu .search-mini button {
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (min-width: 40.0625em) {
  /* line 399, ../sass/partials/layout/_header.scss */
  .console-menu nav, .console-menu .search-mini {
    display: table-cell;
  }
  /* line 403, ../sass/partials/layout/_header.scss */
  .console-menu .search-mini {
    text-align: right;
  }
  /* line 406, ../sass/partials/layout/_header.scss */
  .console-menu .search-mini input {
    width: 25.9375em;
  }
}

/* line 413, ../sass/partials/layout/_header.scss */
.header__brand-user {
  color: #fff;
}
/* line 416, ../sass/partials/layout/_header.scss */
.header__brand-user a {
  color: #fff;
}
/* line 420, ../sass/partials/layout/_header.scss */
.header__brand-user .nav-user > li {
  display: inline-block;
}
@media all and (min-width: 40.0625em) {
  /* line 426, ../sass/partials/layout/_header.scss */
  .header__brand-user .nav-user li {
    margin-right: 1em;
  }
  /* line 429, ../sass/partials/layout/_header.scss */
  .header__brand-user .nav-user li:last-child {
    margin-right: 0;
  }
  /* line 434, ../sass/partials/layout/_header.scss */
  .header__brand-user .nav-user .icon-website:after {
    content: "Console";
  }
  /* line 438, ../sass/partials/layout/_header.scss */
  .header__brand-user .nav-user .icon-help:after {
    content: "Help";
  }
  /* line 442, ../sass/partials/layout/_header.scss */
  .header__brand-user .nav-user .icon-logout:after {
    content: "Logout";
  }
}

/*Breadcrumb Navigation*/
/* line 450, ../sass/partials/layout/_header.scss */
.navigation {
  font-size: 0.875em;
  color: #262626;
  padding: 1rem 0;
  background-color: var(--white);
}
/* line 456, ../sass/partials/layout/_header.scss */
.navigation a {
  color: #262626;
}
/* line 460, ../sass/partials/layout/_header.scss */
.navigation .page-heading {
  margin-bottom: 0;
}
@media all and (min-width: 40.0625em) {
  /* line 450, ../sass/partials/layout/_header.scss */
  .navigation {
    text-align: right;
  }
  /* line 467, ../sass/partials/layout/_header.scss */
  .navigation .page-heading {
    text-align: left;
  }
}

/*@media (max-width: 768px) {
    .nav-group .register .btn-login {
        position: absolute;
        right: 0;
        top: 3.5em;
        padding: 0.38em 0.75em;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-group .login .btn-login {
        top: 6.5em;
        padding: 0.38em 0.75em;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .nav-group .login .btn-login {
        top: 7.5em;
        padding: 0.38em 0.75em;
        width: 100%;
        text-align: center;
    }
}*/
@media (max-width: 850px) {
  /* line 508, ../sass/partials/layout/_header.scss */
  .js-menu-toggle .nav-main {
    display: none;
  }
}

/* line 516, ../sass/partials/layout/_header.scss */
.js-menu-toggle.is-expanded .nav-main {
  width: 100%;
  margin-top: 0.5em;
  position: absolute;
  z-index: 99999;
  display: block !important;
}

/* line 526, ../sass/partials/layout/_header.scss */
.nav-main__hide-show {
  display: none;
}

@media (min-width: 850px) {
  /* line 530, ../sass/partials/layout/_header.scss */
  .js-mobile-menu-trigger {
    display: none !important;
  }
}

/* ======================================================================================
   @LAYOUT -> FOOTER
   ====================================================================================== */
/* line 5, ../sass/partials/layout/_footer.scss */
.footer {
  clear: both;
  color: #fff;
  /* Base rules */
  /*
      a {
          color: #fff;
      }*/
}
/* line 10, ../sass/partials/layout/_footer.scss */
.footer div.non-palm-one-half {
  text-align: center;
}
/* line 15, ../sass/partials/layout/_footer.scss */
.footer p {
  margin-bottom: 0;
}
/* line 23, ../sass/partials/layout/_footer.scss */
.footer ul {
  margin-left: 0;
}
/* line 27, ../sass/partials/layout/_footer.scss */
.footer img {
  max-width: 13.75em;
  margin-top: 2em;
}
@media all and (max-width: 40em) {
  /* line 33, ../sass/partials/layout/_footer.scss */
  .footer img {
    margin-top: 0;
  }
}
/* line 38, ../sass/partials/layout/_footer.scss */
.footer .logo-row {
  display: flex;
  flex-flow: row wrap;
  font-weight: 300;
  justify-content: center;
}
/* line 45, ../sass/partials/layout/_footer.scss */
.footer .logo-column-doh {
  border-right: 1px solid white;
  width: 45%;
}
/* line 51, ../sass/partials/layout/_footer.scss */
.footer .logo-column-usyd {
  width: 45%;
}
/* line 56, ../sass/partials/layout/_footer.scss */
.footer .doh-logo {
  width: 65%;
  max-width: 180px;
  margin-top: .5rem;
}
/* line 62, ../sass/partials/layout/_footer.scss */
.footer .usyd-logo {
  width: 65%;
  max-width: 180px;
  margin-top: 1.4rem;
}
@media (min-width: 641px) and (max-width: 946px) {
  /* line 69, ../sass/partials/layout/_footer.scss */
  .footer .logo-row {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
  /* line 75, ../sass/partials/layout/_footer.scss */
  .footer .logo-column-doh {
    border-right: 0;
    margin-bottom: .5em;
  }
  /* line 80, ../sass/partials/layout/_footer.scss */
  .footer .logo-column-usyd {
    border-top: 1px solid white;
    padding-top: .5em;
  }
  /* line 85, ../sass/partials/layout/_footer.scss */
  .footer .doh-logo {
    width: 80%;
    margin-top: .5rem;
  }
  /* line 90, ../sass/partials/layout/_footer.scss */
  .footer .usyd-logo {
    width: 80%;
    margin-top: .8rem;
  }
}
@media (max-width: 414px) {
  /* line 97, ../sass/partials/layout/_footer.scss */
  .footer .logo-row {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
  /* line 103, ../sass/partials/layout/_footer.scss */
  .footer .logo-column-doh {
    border-right: 0;
    margin-bottom: .5em;
  }
  /* line 108, ../sass/partials/layout/_footer.scss */
  .footer .logo-column-usyd {
    border-top: 1px solid white;
    padding-top: .5em;
  }
  /* line 113, ../sass/partials/layout/_footer.scss */
  .footer .doh-logo {
    width: 100%;
    margin-top: .5rem;
  }
  /* line 118, ../sass/partials/layout/_footer.scss */
  .footer .usyd-logo {
    width: 100%;
    margin-top: .8rem;
  }
}

/* line 125, ../sass/partials/layout/_footer.scss */
.footer-copy {
  padding: 1.5rem 0;
}
/* line 129, ../sass/partials/layout/_footer.scss */
.footer-copy span {
  display: inline-block;
}

/* line 135, ../sass/partials/layout/_footer.scss */
.nav-footer {
  padding: 5rem 0;
  background-color: var(--grey-900);
  color: #fff;
}
/* line 140, ../sass/partials/layout/_footer.scss */
.nav-footer a {
  color: #fff;
}
@media all and (max-width: 40em) {
  /* line 135, ../sass/partials/layout/_footer.scss */
  .nav-footer {
    text-align: center;
  }
}

/* Back to top */
/* line 149, ../sass/partials/layout/_footer.scss */
.back-to-top {
  background-color: var(--blue-800);
  color: var(--white);
  display: block;
  text-align: center;
  padding: 1em 0;
  text-decoration: none;
  /* Note: this may be redundant? */
  /* Pseudo element - up arrow */
  /* Hide at this breakpoint and for print */
}
/* line 157, ../sass/partials/layout/_footer.scss */
.back-to-top:before {
  content: "\2191";
  display: block;
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 0.8;
  font-family: "Courier New", Courier, monospace;
}
@media all and (min-width: 64em) {
  /* line 149, ../sass/partials/layout/_footer.scss */
  .back-to-top {
    display: none;
  }
}
@media print {
  /* line 149, ../sass/partials/layout/_footer.scss */
  .back-to-top {
    display: none;
  }
}

/* Layout -> Grid */
/* ======================================================================================
   @LAYOUT -> GRID
   ====================================================================================== */
/* 
	Usage:
		Fluid and nestable grid system.
	
	Note:
		-	Grid is built 'mobile first'.
		-	Grid does not work in IE 7 as it does not support: `box-sizing: border-box;`, if you need to support IE 7 then use `margin` instead of `padding` for the grid gutters and use `:first-child` to remove the `margin` from the first grid cell child instead of the negative left margin on `.grid`.
	
	Demo:
		Style Guide -> Grid
		
	Credit: 
		https://github.com/csswizardry/csswizardry-grids/blob/master/csswizardry-grids.scss
*/
/* Grid container */
/* line 21, ../sass/partials/layout/grid/_grid.scss */
.grid {
  /* Negative `margin-left` to negate the columns' gutters */
  margin-left: -24px;
  margin-left: -1.5rem;
  /* Clear fix */
  /* Very infrequently occuring grid rows as children of grid rows */
}
/* line 869, ../sass/partials/utils/_mixins.scss */
.grid:after {
  content: "";
  display: table;
  clear: both;
}
/* line 27, ../sass/partials/layout/grid/_grid.scss */
.grid > .grid {
  margin-left: 0;
}

/* Grid item */
/* line 33, ../sass/partials/layout/grid/_grid.scss */
.grid-item {
  width: 100%;
  float: left;
  padding-left: 24px;
  padding-left: 1.5rem;
  /* Print - have to re-linearise as all browsers except Chrome will honor any width classes above the `$non-palm` breakpoint */
}
@media print {
  /* line 33, ../sass/partials/layout/grid/_grid.scss */
  .grid-item {
    width: 100% !important;
  }
}

/* Apply bottom margins between the grid elements for linearised version */
/* line 44, ../sass/partials/layout/grid/_grid.scss */
.grid,
.grid-item {
  /* Turn off bottom margin at this breakpoint (non-linearised) and only for 'screen' media so as not to affect 'print' media */
}
@media only screen and (min-width: 40.0625em) {
  /* line 44, ../sass/partials/layout/grid/_grid.scss */
  .grid,
  .grid-item {
    margin-bottom: 0;
  }
}

/* --Extenders-- */
/* 'Gutterless' and 'Center align' */
/* line 56, ../sass/partials/layout/grid/_grid.scss */
.grid-gutterless,
.grid-center {
  margin-left: 0;
}

/* Gutterless */
/* line 62, ../sass/partials/layout/grid/_grid.scss */
.grid-gutterless > .grid-item, .grid-gutterless .grid-item.content-box {
  padding-left: 0;
}

/* Center align */
/* line 67, ../sass/partials/layout/grid/_grid.scss */
.grid-center > .grid-item {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  float: none;
}

/* Reversed */
/* line 75, ../sass/partials/layout/grid/_grid.scss */
.grid-rev > .grid-item {
  float: right;
}

/* Lists */
/* line 80, ../sass/partials/layout/grid/_grid.scss */
.grid-list {
  /* This is for applying bottom spacing between the `li`s which you may or may not need? */
  margin-bottom: -24px;
  margin-bottom: -1.5rem;
  /* This is for applying bottom spacing between the `li`s which you may or may not need? */
  /* If all the `li`s aren't the same height when the grid is used on lists then we have to clear the 1st `li` in the row by using this class, not the most attractive way to handle it but it will have to do for now */
}
/* line 84, ../sass/partials/layout/grid/_grid.scss */
.grid-list .grid-item {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
/* line 88, ../sass/partials/layout/grid/_grid.scss */
.grid-list .grid-item--clear {
  clear: left;
}

/* Dashboard */
@media all and (min-width: 40.0625em) and (max-width: 49.9375em) {
  /* line 96, ../sass/partials/layout/grid/_grid.scss */
  .dashboard .non-palm-one-third {
    width: 50%;
  }
}

/*Table of contents*/
/* line 103, ../sass/partials/layout/grid/_grid.scss */
.grid.toc {
  padding: 1.5em;
}
/* line 105, ../sass/partials/layout/grid/_grid.scss */
.grid.toc a {
  display: table;
  width: 100%;
}
/* line 106, ../sass/partials/layout/grid/_grid.scss */
.grid.toc .grid-item {
  margin-bottom: 1em;
}
@media all and (max-width: 81.1875em) {
  /* line 108, ../sass/partials/layout/grid/_grid.scss */
  .grid.toc .grid-item {
    width: 100%;
  }
}

/* ======================================================================================
   @LAYOUT -> GRID -> WIDTHS
   ====================================================================================== */
/*
	Usage: 
		Set-up flexible widths via classes which are mostly used for the grid system, the mixin allows you to define widths at specific breakpoints.
	
	Note:
		All the width values come from: 'utils/vars -> FLEXIBLE WIDTHS' so they can be used outside of this `@mixin`.
		
	Credit: 
		https://github.com/csswizardry/csswizardry-grids/blob/master/csswizardry-grids.scss
*/
/* Output all the flexible width classes */
/* 
	Note: these may not be required esp. if the width classes are only being used for the grid.
*/
/* Whole */
/* line 19, ../sass/partials/layout/grid/_widths.scss */
.one-whole {
  width: 100%;
}

/* Halves */
/* line 22, ../sass/partials/layout/grid/_widths.scss */
.one-half {
  width: 50%;
}

/* Thirds */
/* line 25, ../sass/partials/layout/grid/_widths.scss */
.one-third {
  width: 33.333%;
}

/* line 26, ../sass/partials/layout/grid/_widths.scss */
.two-thirds {
  width: 66.666%;
}

/* Quarters */
/* line 29, ../sass/partials/layout/grid/_widths.scss */
.one-quarter {
  width: 25%;
}

/* line 30, ../sass/partials/layout/grid/_widths.scss */
.two-quarters {
  width: 50%;
}

/* line 31, ../sass/partials/layout/grid/_widths.scss */
.three-quarters {
  width: 75%;
}

/* Fifths */
/* line 34, ../sass/partials/layout/grid/_widths.scss */
.one-fifth {
  width: 20%;
}

/* line 35, ../sass/partials/layout/grid/_widths.scss */
.two-fifths {
  width: 40%;
}

/* line 36, ../sass/partials/layout/grid/_widths.scss */
.three-fifths {
  width: 60%;
}

/* line 37, ../sass/partials/layout/grid/_widths.scss */
.four-fifths {
  width: 80%;
}

/* Sixths */
/* line 40, ../sass/partials/layout/grid/_widths.scss */
.one-sixth {
  width: 16.666%;
}

/* line 41, ../sass/partials/layout/grid/_widths.scss */
.two-sixths {
  width: 33.333%;
}

/* line 42, ../sass/partials/layout/grid/_widths.scss */
.three-sixths {
  width: 50%;
}

/* line 43, ../sass/partials/layout/grid/_widths.scss */
.four-sixths {
  width: 66.666%;
}

/* line 44, ../sass/partials/layout/grid/_widths.scss */
.five-sixths {
  width: 83.333%;
}

/* Eighths */
/* line 47, ../sass/partials/layout/grid/_widths.scss */
.one-eighth {
  width: 12.5%;
}

/* line 48, ../sass/partials/layout/grid/_widths.scss */
.two-eighths {
  width: 25%;
}

/* line 49, ../sass/partials/layout/grid/_widths.scss */
.three-eighths {
  width: 37.5%;
}

/* line 50, ../sass/partials/layout/grid/_widths.scss */
.four-eighths {
  width: 50%;
}

/* line 51, ../sass/partials/layout/grid/_widths.scss */
.five-eighths {
  width: 62.5%;
}

/* line 52, ../sass/partials/layout/grid/_widths.scss */
.six-eighths {
  width: 75%;
}

/* line 53, ../sass/partials/layout/grid/_widths.scss */
.seven-eighths {
  width: 87.5%;
}

/* Tenths */
/* line 56, ../sass/partials/layout/grid/_widths.scss */
.one-tenth {
  width: 10%;
}

/* line 57, ../sass/partials/layout/grid/_widths.scss */
.two-tenths {
  width: 20%;
}

/* line 58, ../sass/partials/layout/grid/_widths.scss */
.three-tenths {
  width: 30%;
}

/* line 59, ../sass/partials/layout/grid/_widths.scss */
.four-tenths {
  width: 40%;
}

/* line 60, ../sass/partials/layout/grid/_widths.scss */
.five-tenths {
  width: 50%;
}

/* line 61, ../sass/partials/layout/grid/_widths.scss */
.six-tenths {
  width: 60%;
}

/* line 62, ../sass/partials/layout/grid/_widths.scss */
.seven-tenths {
  width: 70%;
}

/* line 63, ../sass/partials/layout/grid/_widths.scss */
.eight-tenths {
  width: 80%;
}

/* line 64, ../sass/partials/layout/grid/_widths.scss */
.nine-tenths {
  width: 90%;
}

/* Twelfths */
/* line 67, ../sass/partials/layout/grid/_widths.scss */
.one-twelfth {
  width: 8.333%;
}

/* line 68, ../sass/partials/layout/grid/_widths.scss */
.two-twelfths {
  width: 16.666%;
}

/* line 69, ../sass/partials/layout/grid/_widths.scss */
.three-twelfths {
  width: 25%;
}

/* line 70, ../sass/partials/layout/grid/_widths.scss */
.four-twelfths {
  width: 33.333%;
}

/* line 71, ../sass/partials/layout/grid/_widths.scss */
.five-twelfths {
  width: 41.666%;
}

/* line 72, ../sass/partials/layout/grid/_widths.scss */
.six-twelfths {
  width: 50%;
}

/* line 73, ../sass/partials/layout/grid/_widths.scss */
.seven-twelfths {
  width: 58.333%;
}

/* line 74, ../sass/partials/layout/grid/_widths.scss */
.eight-twelfths {
  width: 66.666%;
}

/* line 75, ../sass/partials/layout/grid/_widths.scss */
.nine-twelfths {
  width: 75%;
}

/* line 76, ../sass/partials/layout/grid/_widths.scss */
.ten-twelfths {
  width: 83.333%;
}

/* line 77, ../sass/partials/layout/grid/_widths.scss */
.eleven-twelfths {
  width: 91.666%;
}

/* --Output all the flexible width classes under specific breakpoints applied via specific classes (namespaced) e.g. `.lap-one-half` (all pre-defined breakpoints)-- */
/* 
	Note: be sure to comment out what you don't use as a lot of CSS is generated from all of this.
*/
/* Non-palm */
@media all and (min-width: 40.0625em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .non-palm-eleven-twelfths {
    width: 91.666%;
  }
}
/* Lap */
/* Lap */
@media all and (min-width: 40.0625em) and (max-width: 74.9375em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .lap-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .lap-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .lap-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .lap-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .lap-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .lap-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .lap-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .lap-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .lap-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .lap-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .lap-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .lap-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .lap-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .lap-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .lap-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .lap-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .lap-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .lap-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .lap-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .lap-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .lap-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .lap-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .lap-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .lap-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .lap-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .lap-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .lap-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .lap-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .lap-eleven-twelfths {
    width: 91.666%;
  }
}
/* Lap small */
/* Lap large */
/* Desk small */
/* Lap small */
/* Lap */
/* Lap small */
@media all and (min-width: 40.0625em) and (max-width: 56.25em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .lap-sml-eleven-twelfths {
    width: 91.666%;
  }
}
/* Lap large */
/* Desk small */
/* Lap large */
/* Lap */
/* Lap small */
/* Lap large */
@media all and (min-width: 56.3125em) and (max-width: 74.9375em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .lap-lrg-eleven-twelfths {
    width: 91.666%;
  }
}
/* Desk small */
/* Portable */
@media all and (max-width: 74.9375em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .portable-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .portable-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .portable-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .portable-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .portable-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .portable-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .portable-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .portable-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .portable-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .portable-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .portable-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .portable-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .portable-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .portable-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .portable-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .portable-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .portable-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .portable-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .portable-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .portable-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .portable-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .portable-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .portable-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .portable-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .portable-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .portable-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .portable-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .portable-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .portable-eleven-twelfths {
    width: 91.666%;
  }
}
/* Desk */
@media all and (min-width: 75em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .desk-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .desk-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .desk-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .desk-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .desk-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .desk-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .desk-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .desk-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .desk-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .desk-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .desk-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .desk-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .desk-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .desk-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .desk-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .desk-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .desk-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .desk-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .desk-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .desk-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .desk-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .desk-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .desk-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .desk-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .desk-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .desk-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .desk-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .desk-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .desk-eleven-twelfths {
    width: 91.666%;
  }
}
/* Desk small */
/* Lap */
/* Lap small */
/* Lap large */
/* Desk small */
@media all and (min-width: 75em) and (max-width: 85.3125em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .desk-sml-eleven-twelfths {
    width: 91.666%;
  }
}
/* Desk large */
@media all and (min-width: 85.375em) {
  /* Whole */
  /* line 19, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-whole {
    width: 100%;
  }

  /* Halves */
  /* line 22, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-half {
    width: 50%;
  }

  /* Thirds */
  /* line 25, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-third {
    width: 33.333%;
  }

  /* line 26, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-thirds {
    width: 66.666%;
  }

  /* Quarters */
  /* line 29, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-quarter {
    width: 25%;
  }

  /* line 30, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-quarters {
    width: 50%;
  }

  /* line 31, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-three-quarters {
    width: 75%;
  }

  /* Fifths */
  /* line 34, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-fifth {
    width: 20%;
  }

  /* line 35, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-fifths {
    width: 40%;
  }

  /* line 36, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-three-fifths {
    width: 60%;
  }

  /* line 37, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-four-fifths {
    width: 80%;
  }

  /* Sixths */
  /* line 40, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-sixth {
    width: 16.666%;
  }

  /* line 41, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-sixths {
    width: 33.333%;
  }

  /* line 42, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-three-sixths {
    width: 50%;
  }

  /* line 43, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-four-sixths {
    width: 66.666%;
  }

  /* line 44, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-five-sixths {
    width: 83.333%;
  }

  /* Eighths */
  /* line 47, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-eighth {
    width: 12.5%;
  }

  /* line 48, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-eighths {
    width: 25%;
  }

  /* line 49, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-three-eighths {
    width: 37.5%;
  }

  /* line 50, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-four-eighths {
    width: 50%;
  }

  /* line 51, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-five-eighths {
    width: 62.5%;
  }

  /* line 52, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-six-eighths {
    width: 75%;
  }

  /* line 53, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  /* line 56, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-tenth {
    width: 10%;
  }

  /* line 57, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-tenths {
    width: 20%;
  }

  /* line 58, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-three-tenths {
    width: 30%;
  }

  /* line 59, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-four-tenths {
    width: 40%;
  }

  /* line 60, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-five-tenths {
    width: 50%;
  }

  /* line 61, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-six-tenths {
    width: 60%;
  }

  /* line 62, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-seven-tenths {
    width: 70%;
  }

  /* line 63, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-eight-tenths {
    width: 80%;
  }

  /* line 64, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  /* line 67, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-one-twelfth {
    width: 8.333%;
  }

  /* line 68, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-two-twelfths {
    width: 16.666%;
  }

  /* line 69, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-three-twelfths {
    width: 25%;
  }

  /* line 70, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-four-twelfths {
    width: 33.333%;
  }

  /* line 71, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-five-twelfths {
    width: 41.666%;
  }

  /* line 72, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-six-twelfths {
    width: 50%;
  }

  /* line 73, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-seven-twelfths {
    width: 58.333%;
  }

  /* line 74, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-eight-twelfths {
    width: 66.666%;
  }

  /* line 75, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-nine-twelfths {
    width: 75%;
  }

  /* line 76, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-ten-twelfths {
    width: 83.333%;
  }

  /* line 77, ../sass/partials/layout/grid/_widths.scss */
  .desk-lrg-eleven-twelfths {
    width: 91.666%;
  }
}
/* ======================================================================================
   @LAYOUT -> GRID -> PULL
   ====================================================================================== */
/*
	Usage: 
		Pull classes, to move grid items over to the right by certain amounts.
		
	Credit: 
		https://github.com/csswizardry/csswizardry-grids/blob/master/csswizardry-grids.scss
*/
/* endif */
/* ======================================================================================
   @LAYOUT -> GRID -> PUSH
   ====================================================================================== */
/*
	Usage: 
		Push classes, to move grid items over to the left by certain amounts.
		
	Credit: 
		https://github.com/csswizardry/csswizardry-grids/blob/master/csswizardry-grids.scss
*/
/* endif */
/* Abstractions */
/* ======================================================================================
   @ABSTRACTIONS - > HORIZONTAL LIST
   ====================================================================================== */
/* 
	Usage: 
		Make list items for `ul` and `ol` elements render horizontally.
	
	Note:
		Most only kick in at a certain breakpoint, still undecided on this. Will be able to make a firm decision after using the abstraction in a few builds.
	
	Demo:
		Style Guide -> Abstractions -> Horizontal List
	
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/inuit.css/objects/_nav.scss
*/
/* Remove base styles */
@media (min-width: 850px) {
  /* line 23, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list {
    /* List items */
  }
  /* line 25, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list > li {
    /* List items + links */
  }
  /* line 27, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list > li,
  .horiz-list > li > a {
    display: inline-block;
  }

  /* --Extenders-- */
  /* With dividers */
  /* line 37, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--dividers > li {
    border-left: 1px solid #bfbfbf;
    padding-left: 0.75em;
    margin-left: 0.75em;
    /* Kill rules for the first item */
  }
  /* line 42, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--dividers > li:first-child {
    padding: 0;
    margin: 0;
    border: 0;
  }

  /* Center align */
  /* line 50, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--center {
    text-align: center;
  }

  /* Fit (force the items to occupy 100% of the available width of its parent) */
  /* line 55, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--fit {
    display: table;
    width: 100%;
    /* List items */
    /* When combined with the `.horiz-list--dividers` extender */
  }
  /* line 59, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--fit > li {
    display: table-cell;
    /* Links */
  }
  /* line 62, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--fit > li > a {
    display: block;
  }
  /* line 67, ../sass/partials/abstractions/_horizontal-list.scss */
  .horiz-list--fit.horiz-list--dividers > li {
    margin-left: 0;
    padding-right: 0.75em;
  }
}
/* Comma/slash seperated */
/* line 78, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list--comma > li,
.horiz-list--slash > li {
  /* List items + links */
  /* Note: if the breakpoint above isn't used then this can be removed. */
  /* Pseudo element 
  &:after {margin-right: to-em($spacing-quarter);}*/
  /* Remove pseudo element on last child */
}
/* line 81, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list--comma > li,
.horiz-list--comma > li > a,
.horiz-list--slash > li,
.horiz-list--slash > li > a {
  display: inline-block;
}
/* line 88, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list--comma > li:last-child:after,
.horiz-list--slash > li:last-child:after {
  display: none;
}

/* line 92, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list--slash > li:after {
  content: "/";
  margin-left: 0.375em;
}

/* line 97, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list--comma > li:after {
  content: ",";
}

/* ======================================================================================
   @ABSTRACTIONS -> DEFINITION LIST
   ====================================================================================== */
/*
	Usage: 
		Make the `dt` and `dd` elements of a definition list render side-by-side.

	Demo:
		Style Guide -> Abstractions -> Definition List
*/
/* Definiton title */
/* line 14, ../sass/partials/abstractions/_definition-list.scss */
.def-list-title {
  float: left;
  clear: left;
  margin-right: 0.375em;
  /* Left indent at this breakpoint */
  /* Pseudo element - colon */
}
@media all and (min-width: 48em) {
  /* line 14, ../sass/partials/abstractions/_definition-list.scss */
  .def-list-title {
    margin-right: 0;
  }
}
/* line 25, ../sass/partials/abstractions/_definition-list.scss */
.def-list-title:after {
  content: ":";
}

/* Definiton description - left indent at this breakpoint */
@media all and (min-width: 40.0625em) {
  /* line 30, ../sass/partials/abstractions/_definition-list.scss */
  .def-list-desc {
    margin-left: 6.25em;
  }
}
/* ======================================================================================
   @ABSTRACTIONS -> BLOCK LIST
   ====================================================================================== */
/*
	Usage: 
		Create big blocky lists of content.
	
	Demo:
		Style Guide -> Abstractions -> Block List
	
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/inuit.css/partials/objects/_list-block.scss
*/
/* Shared */
/* line 18, ../sass/partials/abstractions/_block-list.scss */
.block-list,
.block-list > li {
  border: 0 solid #d4d4d4;
}

/* line 22, ../sass/partials/abstractions/_block-list.scss */
.block-list {
  border-top-width: 1px;
  /* List items */
}
/* line 26, ../sass/partials/abstractions/_block-list.scss */
.block-list > li {
  border-bottom-width: 1px;
  padding: 0.75em;
}

/* Links */
/* line 33, ../sass/partials/abstractions/_block-list.scss */
.block-list__link {
  display: block;
  padding: 0.75em;
  margin: -0.75em;
}

/* ======================================================================================
   @ABSTRACTIONS -> COMPLEX LINK
   ====================================================================================== */
/*
	Usage: 
		Add link styles to only selected items within links.

	Note: 
		The base link styles are repeated here so not very DRY (need to look into this).
	
	Demo:
		Style Guide -> Abstractions -> Complex Link
	
	Credit: 
		http://github.com/necolas/suit-utils/blob/master/link.css#L18
*/
/* line 19, ../sass/partials/abstractions/_complex-link.scss */
.complex-link {
  /* Pseudo classes for link target */
}
/* line 23, ../sass/partials/abstractions/_complex-link.scss */
.complex-link:visited .complex-link__target {
  color: #006dad;
}
/* line 25, ../sass/partials/abstractions/_complex-link.scss */
.complex-link:hover .complex-link__target, .complex-link:focus .complex-link__target {
  color: #7a2d00;
  text-decoration: none;
  /* Note: this may be redundant? */
}

/* Link target */
/* line 33, ../sass/partials/abstractions/_complex-link.scss */
.complex-link__target {
  color: #004D7A;
  text-decoration: underline;
  /* Note: this may be redundant? */
  cursor: pointer;
}

/* ======================================================================================
   @ABSTRACTIONS -> SPLIT
   ====================================================================================== */
/*
	Usage: 
		Simple split item for creating two elements floated away from one another.

	Demo:
		Style Guide -> Abstractions -> Split
	
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/inuit.css/objects/_split.scss
*/
/* Right align at this breakpoint */
@media all and (min-width: 40.0625em) {
  /* line 18, ../sass/partials/abstractions/_split.scss */
  .split {
    text-align: right;
  }
}
/* Title */
/* line 22, ../sass/partials/abstractions/_split.scss */
.split__title {
  float: left;
  margin-right: 0.375em;
  /* Float away at this breakpoint */
  /* Pseudo element - colon */
}
@media all and (min-width: 40.0625em) {
  /* line 22, ../sass/partials/abstractions/_split.scss */
  .split__title {
    text-align: left;
    clear: left;
  }
}
/* line 33, ../sass/partials/abstractions/_split.scss */
.split__title:after {
  content: ":";
}

/* ======================================================================================
   @ABSTRACTIONS -> FRAME
   ====================================================================================== */
/*
	Usage: 
		Apply a nice framed effect typically to the `img` and `figure` elements.
	
	Demo:
		Style Guide -> Abstractions -> Frame
*/
/* line 13, ../sass/partials/abstractions/_frame.scss */
.frame {
  background-color: #fff;
  padding: 0.375em;
  border-radius: 4px;
  border-bottom: 1px solid #bfbfbf;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  display: block;
  /* Old IE */
}

/* Extend: change to `inline-block` */
/* line 29, ../sass/partials/abstractions/_frame.scss */
.frame--inline {
  display: inline-block;
}

/* Caption */
/* line 32, ../sass/partials/abstractions/_frame.scss */
.frame__caption {
  padding: 0.375em;
  font-family: Baskerville, "Hoefler Text", Garamond, "Times New Roman", serif;
  font-style: italic;
  color: gray;
  text-align: center;
}

/* ======================================================================================
   @ABSTRACTIONS -> ISLAND
   ====================================================================================== */
/*
	Usage: 
		Simple, boxed off content.

	Demo:
		Style Guide -> Abstractions -> Island
	
	Credit: 
		http://csswizardry.com/2011/10/the-island-object
*/
/* Shared */
/* line 17, ../sass/partials/abstractions/_island.scss */
.island,
.islet {
  display: block;
}

/* Island - full padding */
/* line 25, ../sass/partials/abstractions/_island.scss */
.island {
  padding: 24px;
  padding: 1.5rem;
}
@media all and (max-width: 24.375em) {
  /* line 25, ../sass/partials/abstractions/_island.scss */
  .island {
    padding: 0.5em !important;
  }
}

/* Island - body */
/* line 33, ../sass/partials/abstractions/_island.scss */
.island-body {
  background-color: #fff;
  padding: 2em;
  border-radius: 2px;
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  /*box-shadow: inset 0 0 2px 1px rgba(255, 255, 255, 0.4), 0 0 5px 2px rgba(200, 200, 200, 0.55);*/
}
@media all and (max-width: 40em) {
  /* line 33, ../sass/partials/abstractions/_island.scss */
  .island-body {
    padding: 0.5em;
  }
}

/* line 47, ../sass/partials/abstractions/_island.scss */
.island-button {
  color: var(--black);
  box-shadow: none !important;
  border-radius: 0;
}
@media all and (min-width: 40.0625em) {
  /* line 47, ../sass/partials/abstractions/_island.scss */
  .island-button {
    margin-bottom: 1.5em !important;
  }
}
/* line 56, ../sass/partials/abstractions/_island.scss */
.island-button h2 {
  color: #004D7A;
  margin-bottom: 1rem !important;
}

/* Islet - half the padding */
/* line 64, ../sass/partials/abstractions/_island.scss */
.islet {
  padding: 12px;
  padding: 0.75rem;
}

/* line 68, ../sass/partials/abstractions/_island.scss */
a {
  text-decoration: none;
}
/* line 72, ../sass/partials/abstractions/_island.scss */
a:hover .island-body {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(128, 128, 128, 0.5);
  -moz-box-shadow: 0px 0px 15px 5px rgba(128, 128, 128, 0.5);
  box-shadow: 0px 0px 15px 5px rgba(128, 128, 128, 0.5);
}

/*Training*/
/* line 82, ../sass/partials/abstractions/_island.scss */
.training .island {
  box-shadow: none;
  border: 0;
}
@media all and (max-width: 40em) {
  /* line 82, ../sass/partials/abstractions/_island.scss */
  .training .island {
    padding: 0.5em;
  }
}

/* ======================================================================================
   @ABSTRACTIONS -> SLATS
   ====================================================================================== */
/*
	Usage: 
		Place any image- and text-like content side-by-side.

	Demo:
		Style Guide -> Abstractions -> Slats
	
	Credit: 
		http://stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
*/
/* line 16, ../sass/partials/abstractions/_slats.scss */
.slats {
  overflow: hidden;
  margin-bottom: 1rem !important;
}
/* line 26, ../sass/partials/abstractions/_slats.scss */
.slats .slats-body {
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
/* line 32, ../sass/partials/abstractions/_slats.scss */
.slats .slats-body p {
  margin-bottom: 0;
}

/* Image container */
/* line 39, ../sass/partials/abstractions/_slats.scss */
.slats-img,
.slats-img--rev {
  /* Remove bottom margin at this breakpoint */
  /* Images in `.islets`s need an appropriately sized margin */
}
@media all and (min-width: 40.0625em) {
  /* line 39, ../sass/partials/abstractions/_slats.scss */
  .slats-img,
  .slats-img--rev {
    margin-bottom: 0;
  }
}
/* line 49, ../sass/partials/abstractions/_slats.scss */
.islet .slats-img, .islet
.slats-img--rev {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  /* Remove bottom margin at this breakpoint */
}
@media all and (min-width: 40.0625em) {
  /* line 49, ../sass/partials/abstractions/_slats.scss */
  .islet .slats-img, .islet
  .slats-img--rev {
    margin-bottom: 0;
  }
}

/* line 59, ../sass/partials/abstractions/_slats.scss */
.slats-img {
  float: left;
  margin-right: 24px;
  margin-right: 1.5rem;
  /* Images in `.islets`s need an appropriately sized margin */
}
/* line 64, ../sass/partials/abstractions/_slats.scss */
.islet .slats-img {
  margin-right: 12px;
  margin-right: 0.75rem;
}

/* Extend: reverse the image location (right instead of left) */
/* line 68, ../sass/partials/abstractions/_slats.scss */
.slats-img--rev {
  float: right;
  margin-left: 24px;
  margin-left: 1.5rem;
  /* Images in `.islets`s need an appropriately sized margin */
}
/* line 73, ../sass/partials/abstractions/_slats.scss */
.islet .slats-img--rev {
  margin-left: 12px;
  margin-left: 0.75rem;
}

/* Images */
/* line 77, ../sass/partials/abstractions/_slats.scss */
.slats-img img,
.slats-img--rev img {
  display: block;
}

/* Body container columnised at this breakpoint */
@media all and (min-width: 40.0625em) {
  /* line 82, ../sass/partials/abstractions/_slats.scss */
  .slats-body {
    overflow: hidden;
  }
}
/* line 85, ../sass/partials/abstractions/_slats.scss */
img.slats-img {
  max-width: 6.25em;
}

/* line 89, ../sass/partials/abstractions/_slats.scss */
.slats-img.icon {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: #004D7A;
  color: #fff;
}
/* line 97, ../sass/partials/abstractions/_slats.scss */
.slats-img.icon:before {
  margin-right: 0;
}

/* ======================================================================================
   @ABSTRACTIONS -> COLUMNS
   ====================================================================================== */
/*
	Usage: 
		Easily create columns of text using CSS3.
	
	Demo:
		Style Guide -> Abstractions -> Columns
	
	Credit: 
		https://github.com/csswizardry/inuit.css/blob/master/inuit.css/objects/_columns.scss
*/
/* Cols only kick in at this breakpoint */
@media only screen and (min-width: 40.0625em) {
  /* Output all the col classes */
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }

  /* Base rules */
  /* line 40, ../sass/partials/abstractions/_columns.scss */
  .txt-cols {
    /* Transition */
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    /* Column rule, if used then increase `column-gap` to `$spacing-dbl` */
    /*@include prefix(column-rule, 1px dotted black);*/
  }
}
/* --Output all the col classes under specific breakpoints applied via specific classes (namespaced) e.g. `.lap-txt-cols--2` (all pre-defined breakpoints)-- */
/* 
	Note: be sure to comment out what you don't use as a lot of CSS is generated from all of this.
*/
/* Lap */
/* Lap */
@media all and (min-width: 40.0625em) and (max-width: 74.9375em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .lap-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .lap-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .lap-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .lap-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .lap-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Lap small */
/* Lap large */
/* Desk small */
/* Lap small */
/* Lap */
/* Lap small */
@media all and (min-width: 40.0625em) and (max-width: 56.25em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .lap-sml-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .lap-sml-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .lap-sml-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .lap-sml-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .lap-sml-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Lap large */
/* Desk small */
/* Lap large */
/* Lap */
/* Lap small */
/* Lap large */
@media all and (min-width: 56.3125em) and (max-width: 74.9375em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .lap-lrg-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .lap-lrg-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .lap-lrg-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .lap-lrg-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .lap-lrg-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desk small */
/* Portable */
@media all and (max-width: 74.9375em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .portable-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .portable-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .portable-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .portable-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .portable-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desk */
@media all and (min-width: 75em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .desk-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .desk-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .desk-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .desk-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .desk-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desk small */
/* Lap */
/* Lap small */
/* Lap large */
/* Desk small */
@media all and (min-width: 75em) and (max-width: 85.3125em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .desk-sml-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .desk-sml-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .desk-sml-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .desk-sml-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .desk-sml-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desk large */
@media all and (min-width: 85.375em) {
  /* 2 cols */
  /* line 19, ../sass/partials/abstractions/_columns.scss */
  .desk-lrg-txt-cols--2 {
    /* Transition */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* 3 cols */
  /* line 22, ../sass/partials/abstractions/_columns.scss */
  .desk-lrg-txt-cols--3 {
    /* Transition */
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* 4 cols */
  /* line 25, ../sass/partials/abstractions/_columns.scss */
  .desk-lrg-txt-cols--4 {
    /* Transition */
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* 5 cols */
  /* line 28, ../sass/partials/abstractions/_columns.scss */
  .desk-lrg-txt-cols--5 {
    /* Transition */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }

  /* 6 cols */
  /* line 31, ../sass/partials/abstractions/_columns.scss */
  .desk-lrg-txt-cols--6 {
    /* Transition */
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* ======================================================================================
   @ABSTRACTIONS -> ARROWS
   ====================================================================================== */
/*
	Usage: 
		Creates CSS arrows.
	
	Note:
		Same as: 'utils/placeholders/arrows' except this version doesn't apply to an existing element rather it's an independent element which is more flexible.
	
	Demo:
		Style Guide -> Abstractions -> Arrows
*/
/* Set variables */
/* Start abstraction */
/* line 22, ../sass/partials/abstractions/_arrows.scss */
.arrow {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  display: inline-block;
  vertical-align: middle;
}

/* Down */
/* line 31, ../sass/partials/abstractions/_arrows.scss */
.arrow--down {
  border-top-color: #262626;
  margin-bottom: -10px;
}

/* Up */
/* line 37, ../sass/partials/abstractions/_arrows.scss */
.arrow--up {
  border-bottom-color: #262626;
  margin-top: -10px;
}

/* Left */
/* line 43, ../sass/partials/abstractions/_arrows.scss */
.arrow--left {
  border-right-color: #262626;
}

/* Right */
/* line 48, ../sass/partials/abstractions/_arrows.scss */
.arrow--right {
  border-left-color: #262626;
}

/*Arrows with stems*/
/* line 53, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper {
  margin-left: 1.5em;
  margin-right: 0.5em;
  margin-top: 2em;
  position: relative;
}
/* line 59, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper .arrow-stem {
  background: transparent;
  width: 95%;
  margin-top: 0.2em;
  border-bottom: 0.15em solid gray;
  text-align: center;
}
/* line 67, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper .arrow-head {
  border-top: 0.3em solid transparent;
  border-left: 0.5em solid gray;
  border-bottom: 0.3em solid transparent;
  height: 0.5em;
  position: absolute;
  right: 0;
  top: 1.48em;
}
/* line 77, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper.reverse {
  position: absolute;
  margin-top: 3.5em;
  left: 7.1em;
}
/* line 81, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper.reverse .arrow-head {
  top: 0;
  left: -0.5em;
  right: initial;
  border-top: 0.3em solid transparent;
  border-right: 0.5em solid gray;
  border-left: 0;
  border-bottom: 0.3em solid transparent;
}

/* line 93, ../sass/partials/abstractions/_arrows.scss */
.arrow-label {
  position: absolute;
  bottom: 3.5em;
  left: 17%;
}

/* line 95, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper.reverse + .arrow-wrapper {
  margin-top: 3.5em;
}
/* line 97, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper.reverse + .arrow-wrapper .arrow-head {
  top: 0;
}

/* line 100, ../sass/partials/abstractions/_arrows.scss */
.arrow-wrapper, .arrow-stem, .arrow-head {
  float: left;
}

/* ======================================================================================
   @ABSTRACTIONS -> DIVIDER
   ====================================================================================== */
/*
	Usage: 
		Apply a dividing line between two elements.
	
	Demo:
		Style Guide -> Abstractions -> Divider
*/
/* line 13, ../sass/partials/abstractions/_divider.scss */
.divider {
  border-bottom: 1px solid gray;
  box-shadow: 0 1px 0 #e3e3e3;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

/* --Extenders-- */
/* Larger spacing */
/* line 23, ../sass/partials/abstractions/_divider.scss */
.divider--lrg {
  padding-bottom: 48px;
  padding-bottom: 3rem;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

/* Smaller spacing */
/* line 29, ../sass/partials/abstractions/_divider.scss */
.divider--sml {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

/* ======================================================================================
   @ABSTRACTIONS -> VERTICAL ALIGNMENT
   ====================================================================================== */
/*
	Usage: 
		Vertically align an element within it's parent via CSS `display: table`.
	
	Demo:
		Style Guide -> Abstractions -> Vertical Alignment
*/
/* line 13, ../sass/partials/abstractions/_vertical-alignment.scss */
.vert-align {
  display: table;
  width: 100%;
  height: 100%;
}

/* line 19, ../sass/partials/abstractions/_vertical-alignment.scss */
.vert-align__inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

/* ======================================================================================
   @MODULES -> ABSTRACTIONS -> DROP DOWN
   ====================================================================================== */
/*
	Usage: 
		A generic drop down powered by the 'Twitter Bootstrap Drop down' plugin. Individual drop down's that require custom styles will become a 'module'.
	
	Demo:
		Style Guide -> Abstractions -> Drop Down
*/
/* Container for the drop down and drop down trigger */
/* line 14, ../sass/partials/abstractions/_drop-down.scss */
.drop-down-container {
  position: relative;
}

/* The drop down */
/* line 17, ../sass/partials/abstractions/_drop-down.scss */
.js .drop-down {
  display: none;
  position: absolute;
  z-index: 2147483647;
  top: 100%;
  left: 0;
}

/* The drop down opened */
/* line 27, ../sass/partials/abstractions/_drop-down.scss */
.drop-down-container.is-active > .drop-down {
  display: block;
}

/* Modules */
/* ======================================================================================
   @MODULES -> FEEDBACK
   ====================================================================================== */
/*
	Usage: 
		Provides appropriately designed UI feedback messages for users to acknowledge their actions and to orient users to their location in the site. Most common use case is for errors e.g. form validation errors. Read more here: http://styleguide.yahoo.com/writing/write-clear-user-interface-text/feedback-messages-and-error-messages.
	
	Demo:
		Style Guide -> Modules -> Feedback
*/
/* line 13, ../sass/partials/modules/_feedback.scss */
.feedback {
  padding: 0.375em 0.75em;
  /* Links */
}
/* line 17, ../sass/partials/modules/_feedback.scss */
.feedback a {
  text-decoration: underline;
  /* Note: this may be redundant? */
  /* Pseudo classes */
  /* Note: this may be redundant? */
}
/* line 21, ../sass/partials/modules/_feedback.scss */
.feedback a:hover, .feedback a:focus {
  text-decoration: none;
}

/* Block */
/* line 27, ../sass/partials/modules/_feedback.scss */
.feedback-block {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  /* Shared */
  /* Paragraphs and lists */
}
/* line 32, ../sass/partials/modules/_feedback.scss */
.feedback-block .hn,
.feedback-block p,
.feedback-block .list {
  margin-bottom: 0;
}
/* line 37, ../sass/partials/modules/_feedback.scss */
.feedback-block p,
.feedback-block .list {
  margin-top: 0.375em;
}

/* Error */
/* line 42, ../sass/partials/modules/_feedback.scss */
.feedback-error {
  background-color: #f7c2c2;
  border-color: #f39797;
  /* Parent, links + headings */
}
/* line 47, ../sass/partials/modules/_feedback.scss */
.feedback-error,
.feedback-error a,
.feedback-error .hn {
  color: #6f0f0f;
}

/* Warning */
/* line 53, ../sass/partials/modules/_feedback.scss */
.feedback-warning {
  background-color: #faf2c9;
  border-color: #f3de7c;
  /* Parent, links + headings */
}
/* line 58, ../sass/partials/modules/_feedback.scss */
.feedback-warning,
.feedback-warning a,
.feedback-warning .hn {
  color: #4e4207;
}

/* Success */
/* line 64, ../sass/partials/modules/_feedback.scss */
.feedback-success {
  background-color: #cfe9c5;
  border-color: #a5cf83;
  /* Parent, links + headings */
}
/* line 69, ../sass/partials/modules/_feedback.scss */
.feedback-success,
.feedback-success a,
.feedback-success .hn {
  color: #2b4119;
}

/* Info */
/* line 75, ../sass/partials/modules/_feedback.scss */
.feedback-info {
  background-color: #c7e4f3;
  border-color: #86c5e6;
  /* Parent, links + headings */
}
/* line 80, ../sass/partials/modules/_feedback.scss */
.feedback-info,
.feedback-info a,
.feedback-info .hn {
  color: #154c69;
}

/* ======================================================================================
   @MODULES -> MICROFORMAT - hCard
   ====================================================================================== */
/*
	Usage: 
		The Microformat hCard: http://microformats.org/wiki/hcard.
	
	Demo:
		Style Guide -> Modules -> Microformat (hCard)
*/
/* Base rules */
/* line 14, ../sass/partials/modules/_microformat(hCard).scss */
.vcard {
  /* `.org` heading */
  /* Make the `.url` link not look like a link */
  /* Nested `.adr` elements */
}
/* line 15, ../sass/partials/modules/_microformat(hCard).scss */
.vcard p {
  margin-bottom: 0;
}
/* line 18, ../sass/partials/modules/_microformat(hCard).scss */
.vcard .org {
  font-size: 100%;
}
/* line 25, ../sass/partials/modules/_microformat(hCard).scss */
.vcard .adr span {
  display: block;
}
/* line 27, ../sass/partials/modules/_microformat(hCard).scss */
.vcard .adr .region,
.vcard .adr .postal-code {
  display: inline;
}

/* ======================================================================================
   @MODULES -> SPRITE
   ====================================================================================== */
/* 
	Usage: 
		Applies a background image and nothing else, usually from a sprite. 
		
	Demo:
		Style Guide -> Modules -> Sprite
*/
/* line 13, ../sass/partials/modules/_sprite.scss */
.sprite {
  /* Typical size of a background image */
  width: 16px;
  height: 16px;
  /* Print */
}
@media print {
  /* line 13, ../sass/partials/modules/_sprite.scss */
  .sprite {
    display: none;
  }
}

/* --Set sprites-- */
/* PAW */
/* small - white */
/* line 30, ../sass/partials/modules/_sprite.scss */
.paw-sml-white {
  width: 25px;
  height: 28px;
  background-position: -462px 0;
  margin-right: 0.375em;
}

/* Arrows */
/* right */
/* line 39, ../sass/partials/modules/_sprite.scss */
.s-arrow-r {
  width: 17px;
  height: 18px;
  background-position: -514px 0;
}

/* up */
/* line 46, ../sass/partials/modules/_sprite.scss */
.s-arrow-u {
  width: 18px;
  height: 17px;
  background-position: -531px 0;
}

/* alt */
/* line 53, ../sass/partials/modules/_sprite.scss */
.s-arrow-alt-l,
.s-arrow-alt-r,
.flex-direction-nav a {
  width: 26px;
  height: 26px;
}

/* left */
/* line 61, ../sass/partials/modules/_sprite.scss */
.s-arrow-alt-l,
.flex-prev {
  background-position: -549px 0;
}

/* right */
/* line 67, ../sass/partials/modules/_sprite.scss */
.s-arrow-alt-r,
.flex-next {
  background-position: -575px 0;
}

/* Icons */
/* shared */
/* line 74, ../sass/partials/modules/_sprite.scss */
.s-icon-ghost,
.s-icon-pdf {
  margin-right: 0;
  height: 16px;
}

/* pdf */
/* line 81, ../sass/partials/modules/_sprite.scss */
.s-icon-pdf {
  width: 16px;
  background-position: -625px 0;
}

/* ghost - renders no icon, is used to create the space of an icon */
/* line 87, ../sass/partials/modules/_sprite.scss */
.s-icon-ghost {
  width: 0;
}

/* --Extenders-- */
/* Apply some spacing between the sprite element and adjacent text */
/* line 96, ../sass/partials/modules/_sprite.scss */
.sprite--spacing {
  margin-right: 0.25em;
}

/*CSS Shapes*/
/* line 101, ../sass/partials/modules/_sprite.scss */
.disc {
  border-radius: 50%;
  padding: 0.5em;
  height: 9em;
  width: 9em;
  display: table;
  text-align: center;
  font-size: 80%;
  float: left;
}
/* line 111, ../sass/partials/modules/_sprite.scss */
.disc span {
  display: table-cell;
  vertical-align: middle;
}
/* line 115, ../sass/partials/modules/_sprite.scss */
.disc span span.glossary {
  display: inline;
}
/* line 118, ../sass/partials/modules/_sprite.scss */
.disc.huge {
  height: 20em;
  width: 20em;
}
/* line 123, ../sass/partials/modules/_sprite.scss */
.disc.big {
  height: 14em;
  width: 14em;
}
/* line 128, ../sass/partials/modules/_sprite.scss */
.disc.med {
  height: 10em;
  width: 10em;
}
/* line 133, ../sass/partials/modules/_sprite.scss */
.disc.sml {
  height: 6em;
  width: 6em;
}
/* line 138, ../sass/partials/modules/_sprite.scss */
.disc.light {
  background-color: #ffd879;
}
/* line 142, ../sass/partials/modules/_sprite.scss */
.disc.dark {
  background-color: #944019;
}

/* line 147, ../sass/partials/modules/_sprite.scss */
.backcircle {
  background-color: blanchedalmond;
  padding: 2em;
  border-radius: 50%;
  height: 29em;
  width: 30.7em;
  vertical-align: middle;
  margin: 0 auto;
}
/* line 155, ../sass/partials/modules/_sprite.scss */
.backcircle .arrow-wrapper {
  margin-left: 0.5em;
  margin-top: 4.5em;
}
/* line 159, ../sass/partials/modules/_sprite.scss */
.backcircle .circlehold {
  padding-top: 3em;
}

/*Venn Diagrams*/
/* line 164, ../sass/partials/modules/_sprite.scss */
.venn .venn-heading {
  text-align: center;
  margin-bottom: 0;
}
/* line 165, ../sass/partials/modules/_sprite.scss */
.venn .venn-heading.light {
  background-color: #BCC932;
}
/* line 169, ../sass/partials/modules/_sprite.scss */
.venn .venn-heading.dark {
  background-color: #e97e24;
  color: #fff;
}
/* line 178, ../sass/partials/modules/_sprite.scss */
.venn .venn-diagram {
  background-color: rgba(102, 102, 102, 0.1);
  margin-bottom: 1em;
  padding: 1em;
  position: relative;
}
/* line 185, ../sass/partials/modules/_sprite.scss */
.venn .venn-diagram .disc {
  position: relative;
}
/* line 188, ../sass/partials/modules/_sprite.scss */
.venn .venn-diagram .disc.light {
  background-color: rgba(255, 216, 121, 0.4);
}
/* line 192, ../sass/partials/modules/_sprite.scss */
.venn .venn-diagram .disc.dark {
  background-color: rgba(233, 126, 36, 0.4);
}
/* line 196, ../sass/partials/modules/_sprite.scss */
.venn .venn-diagram .disc.sml {
  position: absolute;
}
@media all and (max-width: 30.625em) {
  /* line 201, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.med {
    top: -3em;
  }
  /* line 205, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.sml {
    bottom: 30%;
    left: 9em;
  }
}
@media all and (min-width: 30.6875em) {
  /* line 213, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.big {
    left: 5%;
  }
  /* line 217, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.med {
    right: 5%;
  }
  /* line 221, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.sml {
    bottom: 20%;
    left: 13em;
  }
}
@media all and (min-width: 100em) {
  /* line 228, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.big {
    margin-left: 10%;
  }
  /* line 232, ../sass/partials/modules/_sprite.scss */
  .venn .venn-diagram .disc.sml {
    left: 45%;
  }
}
@media all and (min-width: 75em) and (max-width: 87.4375em) {
  /* line 163, ../sass/partials/modules/_sprite.scss */
  .venn {
    float: left;
    width: 50%;
  }
}

/* line 245, ../sass/partials/modules/_sprite.scss */
.bar {
  float: left;
  height: 50px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}
/* line 253, ../sass/partials/modules/_sprite.scss */
.bar .inner {
  background-color: #772D8F;
  text-align: center;
  color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  padding-top: .6em;
}
/* line 264, ../sass/partials/modules/_sprite.scss */
.bar.pct-25 .inner {
  left: 75%;
}
/* line 267, ../sass/partials/modules/_sprite.scss */
.bar.pct-45 .inner {
  left: 55%;
}
/* line 270, ../sass/partials/modules/_sprite.scss */
.bar.pct-70 .inner {
  left: 30%;
}
/* line 273, ../sass/partials/modules/_sprite.scss */
.bar.pct-85 .inner {
  left: 15%;
}

/* line 277, ../sass/partials/modules/_sprite.scss */
.bar.pct-25 .inner {
  -webkit-animation-duration: 2s;
  -webkit-animation-name: grow-25;
}

/* line 283, ../sass/partials/modules/_sprite.scss */
.bar.pct-45 .inner {
  -webkit-animation-duration: 3s;
  -webkit-animation-name: grow-45;
}

/* line 288, ../sass/partials/modules/_sprite.scss */
.bar.pct-70 .inner {
  -webkit-animation-duration: 5s;
  -webkit-animation-name: grow-70;
}

/* line 293, ../sass/partials/modules/_sprite.scss */
.bar.pct-85 .inner {
  -webkit-animation-duration: 6s;
  -webkit-animation-name: grow-85;
}

/* ======================================================================================
   @MODULES -> ICON
   ====================================================================================== */
/*
	Usage: 
		Applies an icon font and nothing else (similar to the sprite module).
	
	Demo:
		Style Guide -> Modules -> Icon
*/
/* line 13, ../sass/partials/modules/_icon.scss */
.icon:before {
  speak: none;
  font-family: 'icons';
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

/* --Set icons-- */
/* Settings */
/* line 26, ../sass/partials/modules/_icon.scss */
.icon-settings:before {
  content: "\e000";
}

/* Products */
/* line 29, ../sass/partials/modules/_icon.scss */
.icon-products:before {
  content: "\e001";
}

/* Users */
/* line 32, ../sass/partials/modules/_icon.scss */
.icon-admin:before {
  content: "\e002";
}

/* Orders */
/* line 35, ../sass/partials/modules/_icon.scss */
.icon-orders:before {
  content: "\e003";
}

/* Logout */
/* line 38, ../sass/partials/modules/_icon.scss */
.icon-logout:before {
  content: "\e004";
}

/* News */
/* line 41, ../sass/partials/modules/_icon.scss */
.icon-news:before {
  content: "\e005";
}

/* Content */
/* line 44, ../sass/partials/modules/_icon.scss */
.icon-content:before {
  content: "\e006";
}

/* Media */
/* line 47, ../sass/partials/modules/_icon.scss */
.icon-media:before {
  content: "\e007";
}

/* Info */
/* line 50, ../sass/partials/modules/_icon.scss */
.icon-info:before {
  content: "\e008";
}

/* Success */
/* line 53, ../sass/partials/modules/_icon.scss */
.icon-success:before {
  content: "\e009";
}

/* Error */
/* line 56, ../sass/partials/modules/_icon.scss */
.icon-error:before {
  content: "\e00a";
}

/* Warning */
/* line 59, ../sass/partials/modules/_icon.scss */
.icon-warning:before {
  content: "\e00b";
}

/* Search */
/* line 62, ../sass/partials/modules/_icon.scss */
.icon-search:before {
  content: "\e00c";
}

/* Email Campaigns */
/* line 65, ../sass/partials/modules/_icon.scss */
.icon-email-campaigns:before {
  content: "\e00d";
}

/* Home */
/* line 68, ../sass/partials/modules/_icon.scss */
.icon-home:before {
  content: "\e00e";
}

/* Partners */
/* line 71, ../sass/partials/modules/_icon.scss */
.icon-partners:before {
  content: "\e00f";
}

/* Help */
/* line 74, ../sass/partials/modules/_icon.scss */
.icon-help:before {
  content: "\e010";
}

/* Website */
/* line 77, ../sass/partials/modules/_icon.scss */
.icon-website:before {
  content: "\e011";
}

/* Analytics */
/* line 80, ../sass/partials/modules/_icon.scss */
.icon-analytics:before {
  content: "\e012";
}

/* Menu */
/* line 83, ../sass/partials/modules/_icon.scss */
.icon-caret-down:before {
  content: "\e013";
}

/* --Social-- */
/* Facebook Box */
/* line 87, ../sass/partials/modules/_icon.scss */
.icon-facebook-box:before {
  content: "\e025";
}

/* Twitter Box */
/* line 90, ../sass/partials/modules/_icon.scss */
.icon-twitter-box:before {
  content: "\e026";
}

/* Google + */
/* line 93, ../sass/partials/modules/_icon.scss */
.icon-google-plus:before {
  content: "\e02a";
}

/* Youtube dark */
/* line 96, ../sass/partials/modules/_icon.scss */
.icon-youtube-dark:before {
  content: "\e602";
}

/* Youtube clear */
/* line 99, ../sass/partials/modules/_icon.scss */
.icon-youtube-clear:before {
  content: "\e603";
}

/* Facebook Disc */
/* line 102, ../sass/partials/modules/_icon.scss */
.icon-facebook-disc:before {
  content: "\e627";
}

/* Instagram */
/* line 105, ../sass/partials/modules/_icon.scss */
.icon-instagram:before {
  content: "\e628";
}

/* Twitter Disc */
/* line 108, ../sass/partials/modules/_icon.scss */
.icon-twitter-disc:before {
  content: "\e629";
}

/* Facebook plain */
/* line 111, ../sass/partials/modules/_icon.scss */
.icon-facebook:before {
  content: "\e62f";
}

/* Twitter */
/* line 114, ../sass/partials/modules/_icon.scss */
.icon-twitter:before {
  content: "\e630";
}

/*Edit*/
/* line 117, ../sass/partials/modules/_icon.scss */
.icon-edit:before {
  content: "\e900";
}

/*Download*/
/* line 120, ../sass/partials/modules/_icon.scss */
.icon-download:before {
  content: "\e901";
}

/*Cross*/
/* line 123, ../sass/partials/modules/_icon.scss */
.icon-cross:before {
  content: "\e902";
}

/*List*/
/* line 126, ../sass/partials/modules/_icon.scss */
.icon-list:before {
  content: "\e903";
}

/*Logout*/
/* line 129, ../sass/partials/modules/_icon.scss */
.icon-logout:before {
  content: "\e904";
}

/*Blocked*/
/* line 132, ../sass/partials/modules/_icon.scss */
.icon-blocked:before {
  content: "\e905";
}

/*stack*/
/* line 135, ../sass/partials/modules/_icon.scss */
.icon-stack:before {
  content: "\e906";
}

/*Help*/
/* line 138, ../sass/partials/modules/_icon.scss */
.icon-help:before {
  content: "\e90d";
}

/* Checked clear */
/* line 141, ../sass/partials/modules/_icon.scss */
.icon-successed:before {
  content: "\ea10";
}

/*Play arrow*/
/* line 144, ../sass/partials/modules/_icon.scss */
.icon-play:before {
  content: "\f04b";
}

/*Star*/
/* line 147, ../sass/partials/modules/_icon.scss */
.icon-star:before {
  content: "\f005";
}

/*Plus circle*/
/* line 150, ../sass/partials/modules/_icon.scss */
.icon-plus-circle:before {
  content: "\f055";
}

/*Users*/
/* line 153, ../sass/partials/modules/_icon.scss */
.icon-users:before {
  content: "\f0c0";
}

/*Ellipses vertical*/
/* line 156, ../sass/partials/modules/_icon.scss */
.icon-sort:before {
  content: "\f142";
}

/*Circle*/
/* line 159, ../sass/partials/modules/_icon.scss */
.icon-unchecked:before {
  content: "\f10c";
}

/*Calendar*/
/* line 162, ../sass/partials/modules/_icon.scss */
.icon-calendar:before {
  content: "\f073";
}

/*Bars*/
/* line 165, ../sass/partials/modules/_icon.scss */
.icon-bars:before {
  content: "\f0c9";
}

/* Lock */
/* line 168, ../sass/partials/modules/_icon.scss */
.icon-lock:before {
  content: "\e907";
}

/* Lock */
/* line 171, ../sass/partials/modules/_icon.scss */
.icon-clipboard:before {
  content: "\e90a";
}

/* Star Empty */
/* line 174, ../sass/partials/modules/_icon.scss */
.icon-star-empty:before {
  content: "\e908";
}

/* Notification */
/* line 177, ../sass/partials/modules/_icon.scss */
.icon-notification:before {
  content: "\e909";
}

/* Play 2 */
/* line 180, ../sass/partials/modules/_icon.scss */
.icon-play2:before {
  content: "\e91d";
}

/* --Extenders-- */
/* Apply some spacing between the icon element and adjacent text */
/* line 185, ../sass/partials/modules/_icon.scss */
.icon-spacing:before {
  margin-right: 0.25em;
}

/* line 187, ../sass/partials/modules/_icon.scss */
.icon-spacing-none:before {
  margin-right: 0;
}

/* Remove the negative 1px top positiong */
/* line 190, ../sass/partials/modules/_icon.scss */
.icon-flush-top:before {
  position: static;
}

/* Fixed width */
/* line 193, ../sass/partials/modules/_icon.scss */
.icon-fixed-width:before {
  width: 1em;
  text-align: center;
}

/* -Alternate sizes- */
/* Small */
/* line 201, ../sass/partials/modules/_icon.scss */
.icon-sml:before {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}

/* Large */
/* line 204, ../sass/partials/modules/_icon.scss */
.icon-lrg:before {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
}

/* Huge */
/* line 207, ../sass/partials/modules/_icon.scss */
.icon-huge:before {
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
}

/* Default */
/* line 210, ../sass/partials/modules/_icon.scss */
.icon-default:before {
  font-size: inherit;
}

/* ======================================================================================
   @MODULES -> PRELOADER
   ====================================================================================== */
/*
	Usage: 
		Provides feedback to the user letting them know that their action is being processed e.g. a form submission. It renders an animating spinner (light) but can also include a message with the spinner e.g. "Loading, please wait..." (full).
	
	Demo:
		Style Guide -> Modules -> Preloader
*/
/* line 15, ../sass/partials/modules/_preloader.scss */
.preloader, .preloader * {
  display: inline-block;
}
/* line 18, ../sass/partials/modules/_preloader.scss */
.preloader * {
  vertical-align: middle;
}
/* line 20, ../sass/partials/modules/_preloader.scss */
.preloader em {
  font-style: italic;
}

/* Spinner animation */
/* line 24, ../sass/partials/modules/_preloader.scss */
.preloader--light,
.preloader__spinner {
  width: 16px;
  height: 16px;
  overflow: hidden;
  background: url("img/preloader.gif") no-repeat 0 0;
}

/* Create some space between the spinner and the message */
/* line 33, ../sass/partials/modules/_preloader.scss */
.preloader__spinner {
  margin-right: 0.375em;
}

/* Remove the spinner as it's parent has hijacked it's styles */
/* line 36, ../sass/partials/modules/_preloader.scss */
.preloader--light .preloader__spinner {
  display: none;
}

/* [UPDATE PANEL]
-------------------------------------------------------*/
/* line 41, ../sass/partials/modules/_preloader.scss */
.update-overlay {
  position: fixed;
  z-index: 99;
  top: 0px;
  left: 0px;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  filter: Alpha(Opacity=70);
  opacity: 0.70;
  -moz-opacity: 0.70;
}

/* line 43, ../sass/partials/modules/_preloader.scss */
* html .update-overlay {
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  width: expression(document.body.scrollWidth > document.body.offsetWidth ? document.body.scrollWidth : document.body.offsetWidth + 'px');
}

/* line 47, ../sass/partials/modules/_preloader.scss */
.update-loader {
  z-index: 100;
  position: fixed;
  width: 120px;
  margin-left: -60px;
  top: 50%;
  left: 50%;
}

/* line 49, ../sass/partials/modules/_preloader.scss */
* html .update-loader {
  position: absolute;
  margin-top: expression((document.body.scrollHeight / 4) + (0 - parseInt(this.offsetParent.clientHeight / 2) + (document.documentElement && document.documentElement.scrollTop || document.body.scrollTop)) + 'px');
}

/* ======================================================================================
   @MODULES -> PAGINATION
   ====================================================================================== */
/*
	Usage: 
		For paginating between many sets of pages e.g. search results. There's a lighter version (pager) which just renders the 'Prev' and 'Next' links.
	
	Demo:
		-	Style Guide -> Modules -> Pagination
		-	Style Guide -> Modules -> Pager
*/
/* line 14, ../sass/partials/modules/_pagination.scss */
.pagination {
  border-radius: 4px;
  padding: 1.5em;
  text-align: center;
  /* Shared */
  /* Pagination items */
  /* Links & Buttons */
  /* Pseudo elements - 'Previous' and 'Next' links */
  /* Previous - single left-pointing angle quotation mark */
  /* Next - single right-pointing angle quotation mark */
}
/* line 20, ../sass/partials/modules/_pagination.scss */
.pagination li,
.pagination a,
.pagination .pagination__skip:before {
  display: inline-block;
}
/* line 25, ../sass/partials/modules/_pagination.scss */
.pagination li {
  margin: 0.25em 0em 0.25em 0.125em;
  /* Adjust margin at this breakpoint */
  /* Turn off margin for first child */
}
@media all and (min-width: 48em) {
  /* line 25, ../sass/partials/modules/_pagination.scss */
  .pagination li {
    margin: 0em 0em 0em 0.125em;
  }
}
/* line 34, ../sass/partials/modules/_pagination.scss */
.pagination li:first-child {
  margin-left: 0;
}
/* line 38, ../sass/partials/modules/_pagination.scss */
.pagination a, .pagination button,
.pagination html input[type="button"],
.pagination input[type="reset"],
.pagination input[type="submit"] {
  padding: 0.125em 0.5em;
  background-color: #e3e3e3;
  text-decoration: none;
  /* Note: this may be redundant? */
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  /* Pseudo classes + active state */
}
/* line 49, ../sass/partials/modules/_pagination.scss */
.pagination a:hover, .pagination a:focus, .pagination a.is-active, .pagination button:hover, .pagination button:focus, .pagination button.is-active,
.pagination html input[type="button"]:hover,
.pagination html input[type="button"]:focus,
.pagination html input[type="button"].is-active,
.pagination input[type="reset"]:hover,
.pagination input[type="reset"]:focus,
.pagination input[type="reset"].is-active,
.pagination input[type="submit"]:hover,
.pagination input[type="submit"]:focus,
.pagination input[type="submit"].is-active {
  background-color: #4d4d4d;
  border-color: #262626;
  color: #fff;
}
/* line 58, ../sass/partials/modules/_pagination.scss */
.pagination button,
.pagination html input[type="button"],
.pagination input[type="reset"],
.pagination input[type="submit"] {
  padding: 0.375em 0.5em;
  color: #30393F;
}
/* line 67, ../sass/partials/modules/_pagination.scss */
.pagination a[rel="prev"]:before,
.pagination a[rel="next"]:after {
  speak: none;
  vertical-align: top;
}
/* line 74, ../sass/partials/modules/_pagination.scss */
.pagination a[rel="prev"]:before {
  content: "\2039";
  margin-right: 0.375em;
}
/* line 80, ../sass/partials/modules/_pagination.scss */
.pagination a[rel="next"]:after {
  content: "\203a";
  margin-left: 0.375em;
}

/* Page count */
/* line 87, ../sass/partials/modules/_pagination.scss */
.pagination__count {
  padding-right: 0.25em;
  /* Change the display at this breakpoint */
}
@media all and (max-width: 40em) {
  /* line 92, ../sass/partials/modules/_pagination.scss */
  .pagination .pagination__count {
    display: block;
  }
}

/* Page jump - pseudo element - horizontal ellipsis glyph */
/* line 97, ../sass/partials/modules/_pagination.scss */
.pagination__skip:before {
  content: "\2026";
  speak: none;
  margin-right: 0.375em;
  color: gray;
  vertical-align: bottom;
}

/*Training*/
@media all and (max-width: 40em) {
  /* line 107, ../sass/partials/modules/_pagination.scss */
  .pagination {
    padding: 0;
  }
}
/* ======================================================================================
   @MODULES -> THUMBNAIL GRID
   ====================================================================================== */
/* 
	Usage: 
		Renders thumbnail images in a grid, typically used for photo galleries.
	
	Note: 
		This module uses the grid, adjust the `li` grid width classes accordingly.
		
	Demo:
		Style Guide -> Modules -> Thumbnail Grid
*/
/* line 16, ../sass/partials/modules/_thumbnail-grid.scss */
.thumbnail-grid {
  margin-bottom: -24px;
  margin-bottom: -1.5rem;
  /* Note: this may be redundant if spacing is already being applied for lists using the grid? */
  /* Items */
  /* Note: this may be redundant if spacing is already being applied for lists using the grid? */
  /* Images */
  /* Pseudo classes */
}
/* line 20, ../sass/partials/modules/_thumbnail-grid.scss */
.thumbnail-grid li {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
/* line 23, ../sass/partials/modules/_thumbnail-grid.scss */
.thumbnail-grid img {
  /* Transition */
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
/* line 26, ../sass/partials/modules/_thumbnail-grid.scss */
.thumbnail-grid a:hover img,
.thumbnail-grid a:focus img {
  opacity: 0.7;
  box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.6);
  /* Note: consider using the `%box-shadow-btm` placeholder */
}

/* Modules -> Widgets */
/* ======================================================================================
   @MODULES -> WIDGETS -> ACCORDION
   ====================================================================================== */
/*
	Usage: 
		Typically for preserving screen real estate e.g. a complex menu as each item can be 'expanded' to reveal the content associated with that item and it can also be 'collapsed' to hide its associated content. There can be zero or more items expanded at a time, depending on the jQuery plugin configuration.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Accordion
*/
/* line 13, ../sass/partials/modules/widgets/_accordion.scss */
.accordion {
  border: 1px solid #bfbfbf;
  /* Accordion items */
}
/* line 17, ../sass/partials/modules/widgets/_accordion.scss */
.accordion > li {
  border-top: 1px solid #bfbfbf;
  /* Turn off border for first child */
}
/* line 21, ../sass/partials/modules/widgets/_accordion.scss */
.accordion > li:first-child {
  border-top: 0;
}

/* Shared */
/* line 26, ../sass/partials/modules/widgets/_accordion.scss */
.accordion__header,
.accordion__content {
  width: 100%;
}

/* Note: have to set a width otherwise animation jumps. */
/* Heading */
/* line 30, ../sass/partials/modules/widgets/_accordion.scss */
.accordion__header {
  padding: 0.375em 0.75em;
  background-color: #e3e3e3;
  font-size: 100%;
  margin: 0;
  /* JS on */
  /* Pseudo element - plus glyph */
  /* Expanded state */
  /* Print */
}
/* line 38, ../sass/partials/modules/widgets/_accordion.scss */
.js .accordion__header {
  cursor: pointer;
  /* Pseudo classes */
}
/* line 42, ../sass/partials/modules/widgets/_accordion.scss */
.js .accordion__header:hover, .js .accordion__header:focus {
  background: #4d4d4d;
  color: #fff;
}
/* line 50, ../sass/partials/modules/widgets/_accordion.scss */
.js .accordion__header:before {
  content: "\002B";
  display: inline-block;
  speak: none;
  margin-right: 0.375em;
  vertical-align: top;
  /* Print */
}
@media print {
  /* line 50, ../sass/partials/modules/widgets/_accordion.scss */
  .js .accordion__header:before {
    display: none;
  }
}
/* line 64, ../sass/partials/modules/widgets/_accordion.scss */
.js .is-expanded .accordion__header {
  background: #30393F;
  color: #fff;
  /* Pseudo element - minus glyph */
}
/* line 69, ../sass/partials/modules/widgets/_accordion.scss */
.js .is-expanded .accordion__header:before {
  content: "\2212";
}
@media print {
  /* line 30, ../sass/partials/modules/widgets/_accordion.scss */
  .accordion__header {
    border-bottom: 1px solid;
  }
}

/* Content */
/* line 79, ../sass/partials/modules/widgets/_accordion.scss */
.accordion__content {
  padding: 0.75em;
  display: none;
  /* Double the padding at this breakpoint */
  /* JS off */
  /* Print */
}
@media all and (min-width: 40.0625em) {
  /* line 79, ../sass/partials/modules/widgets/_accordion.scss */
  .accordion__content {
    padding: 1.5em;
  }
}
/* line 89, ../sass/partials/modules/widgets/_accordion.scss */
.no-js .accordion__content {
  display: block;
}
@media print {
  /* line 79, ../sass/partials/modules/widgets/_accordion.scss */
  .accordion__content {
    display: block !important;
    /* Note: need to use `!important` in order to override the inline display rule applied by the jQuery plugin. */
  }
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
/* line 15, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

/* line 19, ../sass/partials/modules/widgets/_flexslider.scss */
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider/flexslider-icon.eot");
  src: url("fonts/flexslider/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider/flexslider-icon.woff") format("woff"), url("fonts/flexslider/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
/* line 39, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider {
  margin: 0;
  padding: 0;
}

/* line 40, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
/* line 41, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider .slides img {
  width: 100%;
  display: block;
}

/* line 42, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
/* line 45, ../sass/partials/modules/widgets/_flexslider.scss */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 46, ../sass/partials/modules/widgets/_flexslider.scss */
html[xmlns] .slides {
  display: block;
}

/* line 47, ../sass/partials/modules/widgets/_flexslider.scss */
* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
/* line 52, ../sass/partials/modules/widgets/_flexslider.scss */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
/* line 56, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

/* line 57, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

/* line 58, ../sass/partials/modules/widgets/_flexslider.scss */
.loading .flex-viewport {
  max-height: 300px;
}

/* line 59, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider .slides {
  zoom: 1;
}

/* line 60, ../sass/partials/modules/widgets/_flexslider.scss */
.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
/* line 63, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav {
  *height: 0;
}

/* line 64, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a {
  display: block;
  width: 40px;
  height: 50px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 65, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav .flex-prev {
  left: -50px;
}

/* line 66, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

/* line 67, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}

/* line 68, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}

/* line 69, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

/* line 70, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

/* line 71, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
}

/* line 72, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

/* Pause/Play */
/* line 75, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

/* line 76, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

/* line 77, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-pauseplay a:hover {
  opacity: 1;
}

/* line 78, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

/* Control Nav */
/* line 81, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

/* line 82, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 83, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

/* line 84, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

/* line 85, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

/* line 87, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

/* line 88, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

/* line 89, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

/* line 90, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-thumbs img:hover {
  opacity: 1;
}

/* line 91, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  /* line 94, ../sass/partials/modules/widgets/_flexslider.scss */
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  /* line 95, ../sass/partials/modules/widgets/_flexslider.scss */
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/* ======================================================================================
   @MODULES -> WIDGETS -> ADAPTIVE GOOGLE MAP
   ====================================================================================== */
/*
	Usage: 
		Adaptive Google map.
	
	Note: 
		Loads in a static Google map image for palm sized viewports and a dynamic Google map (full API) for non-palm sized viewports.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Adaptive Google Map
	
	Credit:
		http://codepen.io/bradfrost/full/tLxAs
*/
/* line 19, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map {
  position: relative;
  /* Have this so the preloader is contained within it's parent */
  min-height: 50px;
  /* Preloader */
}
/* line 25, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map .preloader {
  display: none;
  /* Show at this breakpoint */
}
@media all and (min-width: 40.0625em) {
  /* line 25, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map .preloader {
    /* JS on */
  }
  /* line 31, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .js .map .preloader {
    display: block;
    position: absolute;
    top: 1.5em;
    left: 1.5em;
  }
}

/* Static */
/* line 42, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map__static {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  background: url("http://maps.google.com/maps/api/staticmap?center=-33.867487,151.20699&zoom=15&markers=-33.867487,151.20699&size=640x400&sensor=false") no-repeat 50% 50%;
  /* Retina */
  /* Hide at this breakpoint */
  /* Print */
  /* Hide image so we can use a bg img instead to maintain scale, see: http://webdesigntutsplus.s3.amazonaws.com/tuts/365_google_maps/demo/index.html */
}
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* line 42, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map__static {
    background-image: url("http://maps.google.com/maps/api/staticmap?center=-33.867487,151.20699&zoom=15&markers=-33.867487,151.20699&size=640x400&sensor=false&scale=2");
    background-size: 640px 400px;
  }
}
@media all and (min-width: 40.0625em) {
  /* line 42, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map__static {
    display: none;
  }
}
@media print {
  /* line 42, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map__static {
    display: block !important;
  }
}
/* line 59, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map__static img {
  opacity: 0;
  /* Print */
}
@media print {
  /* line 59, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map__static img {
    opacity: 1;
  }
}

/* Dynamic */
/* line 70, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map__dynamic {
  /* Preserve aspect ratio: 16:9 */
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  /* Print */
  /* Turn off responsive images */
  /* Preloader */
  /* Map canvas */
}
@media print {
  /* line 70, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map__dynamic {
    display: none;
  }
}
/* line 83, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map__dynamic img {
  max-width: none;
}
/* line 86, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map__dynamic .preloader {
  margin-left: 1.5em;
}
/* line 89, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
.map__dynamic > div {
  /* Preserve aspect ratio: 16:9 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Map link - hide at this breakpoint only when JS is on */
@media all and (min-width: 40.0625em) {
  /* line 101, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .js .map__link {
    display: none;
  }
}
/* Print */
@media print {
  /* line 106, ../sass/partials/modules/widgets/_adaptive-google-map.scss */
  .map__link {
    display: none;
  }
}
/* ======================================================================================
   @MODULES -> WIDGETS -> MODAL
   ====================================================================================== */
/*
	Usage: 
		Typically for dialog prompts e.g. warning/error messages in the form of an overlay (child window). Depending on the jQuery plugin configuration the parent window (page the dialog is overlaying) can either be interacted with again i.e. closing the dialog by clicking anywhere outside the dialog or by only clicking the 'Close' button within the dialog (the latter is true modal behaviour).
	
	Note: 
		`.is-modal-active` class gets appended to the `body` element when the modal is open.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Modal
		
	Credit: 
		http://twitter.github.com/bootstrap/javascript.html#modals
*/
/* Shared fade state */
/* line 20, ../sass/partials/modules/widgets/_modal.scss */
.modal.is-fade,
.modal-backdrop.is-fade {
  opacity: 0;
  /* Transition */
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

/* Modal backdrop */
/* line 27, ../sass/partials/modules/widgets/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483646;
  background-color: #000;
}
/* line 36, ../sass/partials/modules/widgets/_modal.scss */
.modal-backdrop, .modal-backdrop.is-fade.is-active {
  opacity: 0.8;
}

/* Modal */
/* line 41, ../sass/partials/modules/widgets/_modal.scss */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2147483647;
  width: 90%;
  margin: -60px 0 0 -45%;
  background-color: #fff;
  border-radius: 6px;
  outline: none;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  max-height: 90%;
  /* Fix the width and adjust offsets at this breakpoint */
  /* Fade state */
}
@media all and (min-width: 48em) {
  /* line 41, ../sass/partials/modules/widgets/_modal.scss */
  .modal {
    width: 100%;
    max-width: 40rem;
    margin-top: -250px;
    margin-left: -280px;
  }
}
/* line 62, ../sass/partials/modules/widgets/_modal.scss */
.modal.is-fade {
  top: -25%;
  /* Transition */
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
  /* Active state */
}
/* line 66, ../sass/partials/modules/widgets/_modal.scss */
.modal.is-fade.is-active {
  top: 5rem;
  opacity: 1;
}
@media (min-width: 64em) {
  /* line 72, ../sass/partials/modules/widgets/_modal.scss */
  .modal.is-fade.is-active {
    top: 40%;
  }
}

/* Modal header */
/* line 80, ../sass/partials/modules/widgets/_modal.scss */
.modal-header {
  padding: 1.5rem 1rem 1rem 1rem;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  /* Modal title */
  /* Close button */
}
/* line 86, ../sass/partials/modules/widgets/_modal.scss */
.modal-header .hn {
  margin: 0;
  line-height: 1.4;
  font-size: 1.5rem;
}
/* line 94, ../sass/partials/modules/widgets/_modal.scss */
.modal-header .btn-close {
  position: absolute;
  right: 0.625em;
  top: 50%;
  margin-top: -0.6875em;
}

/* Modal body */
/* line 103, ../sass/partials/modules/widgets/_modal.scss */
.modal-body {
  max-height: 50vh;
  padding: 1em;
  overflow-y: auto;
  /* Increase the max height at this breakpoint */
}
@media all and (min-width: 48em) {
  /* line 103, ../sass/partials/modules/widgets/_modal.scss */
  .modal-body {
    max-height: 25em;
  }
}

/* Modal footer */
/* line 114, ../sass/partials/modules/widgets/_modal.scss */
.modal-footer {
  padding: 1em;
  text-align: right;
  background-color: #f2f2f2;
  border-top: 1px solid #d4d4d4;
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 0 #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 64em) {
  /* line 114, ../sass/partials/modules/widgets/_modal.scss */
  .modal-footer {
    flex-direction: row;
  }
}

/* ======================================================================================
   @MODULES -> WIDGETS -> SOCIAL MEDIA SHARE
   ====================================================================================== */
/*
	Usage: 
		Embedding all or whatever is required of the Social Media share buttons.
	
	Note: 
		Eventually they'll be 3 versions of this widget: 
		-	'Full API' (done).
		-	'Medium' (http://filamentgroup.com/lab/socialcount/).
		-	'Light'.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Social Media Share
*/
/* Print */
@media print {
  /* line 21, ../sass/partials/modules/widgets/_social-media-share.scss */
  .social-share-full {
    display: none;
  }
}
/* Used to create a space between each button */
/* line 25, ../sass/partials/modules/widgets/_social-media-share.scss */
.social-share-full__spacer {
  display: inline-block;
  width: 0.375em;
  height: 4px;
}

/* Break the buttons onto 2 lines */
/* line 32, ../sass/partials/modules/widgets/_social-media-share.scss */
.social-share-full__spacer--middle {
  display: block;
  /* Bring buttons back onto 1 line at this breakpoint */
}
@media all and (min-width: 26.25em) {
  /* line 32, ../sass/partials/modules/widgets/_social-media-share.scss */
  .social-share-full__spacer--middle {
    display: inline-block;
  }
}

/* Facebook */
/* line 42, ../sass/partials/modules/widgets/_social-media-share.scss */
.fb-like {
  vertical-align: top;
}

/* ======================================================================================
   @MODULES -> WIDGETS -> TABS
   ====================================================================================== */
/*
	Usage: 
		Similar to the accordion in terms of preserving screen real estate but a tabbed interface is typically rendered horizontally not vertically and rather than 'expanding' and 'collapsing' each item the item simply appears and you can only ever see one item at a time.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Tabs
*/
/* Tab nav */
/* line 14, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav {
    /* Apply a subtle bg color at this breakpoint
	@include respond-min($non-palm) {
		background-color: $color-off-white;
	} */
  /* Items */
  /* Links */
  /* Pseudo classes + active state */
  /* JS off */
  /* Print */
}
/* line 19, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav h2 {
  margin: 0.5em 0;
}
/* line 23, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav li {
  background-color: var(--grey-400);
  /*border-bottom: 4px solid transparent;*/
  position: relative;
  /* Items go into horizontal mode therefore require some spacing between them at this breakpoint */
  /* IE 7 support if you need it? */
  /*@include old-ie {*margin-bottom: -1px;}*/
}
/* line 28, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav li.is-active {
  background-color: #fff;
}
/* line 32, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav li .user-notifications-count {
  background-color: #701010 !important;
  color: #fff;
  height: 1.5rem;
  width: 1.5rem;
  font-size: .75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0.5em;
  top: 0;
  transform: translateY(-80%);
}
@media all and (min-width: 40.0625em) {
  /* line 23, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav li {
    /*border-bottom: 0;*/
  }
}
/* line 56, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav a {
  padding: 0.75em;
  text-decoration: none;
  /* Note: this may be redundant? */
  color: gray;
  /*border: 1px solid $color-off-white;*/
  /*border-radius: $border-radius $border-radius 0 0;*/
  margin-bottom: -1px;
  display: block;
  border: 1px solid #d4d4d4;
  /* Change the border color at this breakpoint */
}
@media all and (min-width: 40.0625em) {
  /* line 56, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav a {
    border-color: transparent;
    padding: .35rem 1rem;
  }
}
/* line 72, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav a:hover,
.tab-nav a:focus,
.tab-nav .is-active a {
  background-color: #fff;
  border-color: #d4d4d4;
  color: #004D7A;
  /* Change the border color at this breakpoint */
}
@media all and (min-width: 40.0625em) {
  /* line 72, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav a:hover,
  .tab-nav a:focus,
  .tab-nav .is-active a {
    border-bottom-color: #fff;
  }
}
/* line 84, ../sass/partials/modules/widgets/_tabs.scss */
.no-js .tab-nav {
  display: none;
}
@media all and (max-width: 63.9375em) {
  /* line 89, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav h2 {
    margin: 0;
    font-size: 80%;
  }
  /* line 94, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav li a {
    padding: 0.5em;
  }
}
@media print {
  /* line 14, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav {
    display: none;
  }
}

/* Tab Content */
/* line 105, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content {
  display: none;
  padding: 0.75rem;
  /*border: 1px solid $color-grey-lighter;*/
  background-color: #fff;
  /* Active tab */
  /* Double the padding at this breakpoint */
  /* JS off */
  /* Print */
}
/* line 113, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content.is-active {
  display: block;
}
@media all and (min-width: 40.0625em) {
  /* line 105, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-content {
    padding: 1.5rem;
  }
}
/* line 121, ../sass/partials/modules/widgets/_tabs.scss */
.no-js .tab-content {
  display: block;
  margin-bottom: 1.5rem;
}
@media print {
  /* line 105, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-content {
    display: block;
    margin-bottom: 1.5rem;
  }
}

/* Tab Heading */
@media all and (min-width: 40.0625em) {
  /* line 137, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-heading-simple h2, .tab-heading-simple p {
    float: left;
  }
  /* line 138, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-heading-simple div {
    float: right;
  }
}

/* line 144, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading select {
  padding: 0.45em;
}
@media all and (min-width: 40.0625em) {
  /* line 146, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-heading div:first-child, .tab-heading .filter {
    float: right;
  }
}
/* line 151, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter {
  position: relative;
}
/* line 153, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter button {
  position: absolute;
  right: 0;
  top: 0.5em;
}
@media all and (max-width: 40em) {
  /* line 155, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-heading .filter div {
    margin-bottom: 0.5em;
  }
}

/* line 161, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div {
  position: relative;
}
/* line 163, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div .onoffswitch {
  position: absolute;
  right: 0;
}
@media all and (max-width: 40em) {
  /* line 169, ../sass/partials/modules/widgets/_tabs.scss */
  .profile-heading h2 {
    font-size: 1.3em;
  }
  /* line 170, ../sass/partials/modules/widgets/_tabs.scss */
  .profile-heading div .onoffswitch {
    position: relative;
    margin-bottom: 1em;
  }
}

@media all and (min-width: 40.0625em) {
  /* line 177, ../sass/partials/modules/widgets/_tabs.scss */
  .tabs-heading-export {
    display: none;
  }
}

/* ======================================================================================
   @MODULES -> WIDGETS -> TOOLTIP
   ====================================================================================== */
/*
	Usage: 
		A small overlay that is displayed when the mouse hovers over an element that requires it. Typically the tooltip's job is to describe the element it's being used on e.g. a menu only uses icons, when a mouse hovers over an icon the overlay will appear describing what the icon is.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Tooltip
	
	Credit:
		http://stevenbenner.github.com/jquery-powertip/
*/
/* Set variables */
/* Start module */
/* line 32, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip {
  cursor: default;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  padding: 0.5em;
  display: none;
  position: absolute;
  /*white-space: nowrap;*/
  z-index: 2147483647;
  max-width: 18.75em;
  /* Pseudo element - arrows */
  /* --Positioning-- */
  /* North / South */
  /* East / West */
  /* North / North East / North West */
  /* East */
  /* South / South East / South West */
  /* West */
  /* North East / South East */
  /* North West / South West */
}
/* line 45, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip:before {
  content: "";
  position: absolute;
}
/* line 53, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.n:before, #tooltip.s:before {
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin-left: -5px;
  left: 50%;
}
/* line 62, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.e:before, #tooltip.w:before {
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  margin-top: -5px;
  top: 50%;
}
/* line 71, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.n:before, #tooltip.ne:before, #tooltip.nw:before {
  border-top: 10px solid rgba(0, 0, 0, 0.8);
  bottom: -10px;
}
/* line 79, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.e:before {
  border-right: 10px solid rgba(0, 0, 0, 0.8);
  left: -10px;
}
/* line 85, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.s:before, #tooltip.se:before, #tooltip.sw:before {
  border-bottom: 10px solid rgba(0, 0, 0, 0.8);
  top: -10px;
}
/* line 93, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.w:before {
  border-left: 10px solid rgba(0, 0, 0, 0.8);
  right: -10px;
}
/* line 99, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.ne:before, #tooltip.se:before {
  border-right: 10px solid transparent;
  border-left: 0;
  left: 10px;
}
/* line 107, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.nw:before, #tooltip.sw:before {
  border-left: 10px solid transparent;
  border-right: 0;
  right: 10px;
}

/* ======================================================================================
   @MODULES -> WIDGETS -> ANIMATE
   ====================================================================================== */
/*
	Usage: 
        https://daneden.github.io/animate.css/	
*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 19, ../sass/partials/modules/widgets/_animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 26, ../sass/partials/modules/widgets/_animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 31, ../sass/partials/modules/widgets/_animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 36, ../sass/partials/modules/widgets/_animate.scss */
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

/* line 44, ../sass/partials/modules/widgets/_animate.scss */
.animated {
  /*Other duration delays*/
}
/* line 45, ../sass/partials/modules/widgets/_animate.scss */
.animated.duration-short {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
/* line 50, ../sass/partials/modules/widgets/_animate.scss */
.animated.duration-med {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
/* line 55, ../sass/partials/modules/widgets/_animate.scss */
.animated.duration-long {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}
/* line 60, ../sass/partials/modules/widgets/_animate.scss */
.animated.duration-delay-short {
  -webkit-animation-delay: 1s;
  /* Chrome, Safari, Opera */
  animation-delay: 1s;
}
/* line 65, ../sass/partials/modules/widgets/_animate.scss */
.animated.duration-delay-med {
  -webkit-animation-delay: 3s;
  /* Chrome, Safari, Opera */
  animation-delay: 3s;
}
/* line 70, ../sass/partials/modules/widgets/_animate.scss */
.animated.duration-delay-long {
  -webkit-animation-delay: 5s;
  /* Chrome, Safari, Opera */
  animation-delay: 5s;
}
/* line 75, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
/* line 80, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
/* line 85, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-3 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
/* line 90, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-4 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
/* line 95, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-5 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
/* line 100, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-6 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
/* line 105, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-7 {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
/* line 110, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-8 {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
/* line 114, ../sass/partials/modules/widgets/_animate.scss */
.animated.delay-9 {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 176, ../sass/partials/modules/widgets/_animate.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 203, ../sass/partials/modules/widgets/_animate.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 244, ../sass/partials/modules/widgets/_animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 323, ../sass/partials/modules/widgets/_animate.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 362, ../sass/partials/modules/widgets/_animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 431, ../sass/partials/modules/widgets/_animate.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 492, ../sass/partials/modules/widgets/_animate.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 553, ../sass/partials/modules/widgets/_animate.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 634, ../sass/partials/modules/widgets/_animate.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
/* line 723, ../sass/partials/modules/widgets/_animate.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 810, ../sass/partials/modules/widgets/_animate.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 883, ../sass/partials/modules/widgets/_animate.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 956, ../sass/partials/modules/widgets/_animate.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1029, ../sass/partials/modules/widgets/_animate.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 1102, ../sass/partials/modules/widgets/_animate.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 1145, ../sass/partials/modules/widgets/_animate.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1188, ../sass/partials/modules/widgets/_animate.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1221, ../sass/partials/modules/widgets/_animate.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1254, ../sass/partials/modules/widgets/_animate.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1297, ../sass/partials/modules/widgets/_animate.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 1322, ../sass/partials/modules/widgets/_animate.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1355, ../sass/partials/modules/widgets/_animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1388, ../sass/partials/modules/widgets/_animate.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1421, ../sass/partials/modules/widgets/_animate.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1454, ../sass/partials/modules/widgets/_animate.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1487, ../sass/partials/modules/widgets/_animate.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1520, ../sass/partials/modules/widgets/_animate.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1553, ../sass/partials/modules/widgets/_animate.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1586, ../sass/partials/modules/widgets/_animate.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* line 1611, ../sass/partials/modules/widgets/_animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 1640, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1669, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 1698, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1727, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 1756, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1785, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 1814, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1843, ../sass/partials/modules/widgets/_animate.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 1922, ../sass/partials/modules/widgets/_animate.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1995, ../sass/partials/modules/widgets/_animate.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 2068, ../sass/partials/modules/widgets/_animate.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 2113, ../sass/partials/modules/widgets/_animate.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 2158, ../sass/partials/modules/widgets/_animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2217, ../sass/partials/modules/widgets/_animate.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 2248, ../sass/partials/modules/widgets/_animate.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2291, ../sass/partials/modules/widgets/_animate.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2332, ../sass/partials/modules/widgets/_animate.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2373, ../sass/partials/modules/widgets/_animate.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2414, ../sass/partials/modules/widgets/_animate.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2455, ../sass/partials/modules/widgets/_animate.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 2492, ../sass/partials/modules/widgets/_animate.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 2529, ../sass/partials/modules/widgets/_animate.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2566, ../sass/partials/modules/widgets/_animate.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2603, ../sass/partials/modules/widgets/_animate.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 2640, ../sass/partials/modules/widgets/_animate.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 2713, ../sass/partials/modules/widgets/_animate.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2748, ../sass/partials/modules/widgets/_animate.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/* line 2779, ../sass/partials/modules/widgets/_animate.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 2808, ../sass/partials/modules/widgets/_animate.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2849, ../sass/partials/modules/widgets/_animate.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2890, ../sass/partials/modules/widgets/_animate.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2931, ../sass/partials/modules/widgets/_animate.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2972, ../sass/partials/modules/widgets/_animate.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
/* line 3009, ../sass/partials/modules/widgets/_animate.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 3054, ../sass/partials/modules/widgets/_animate.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 3091, ../sass/partials/modules/widgets/_animate.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 3128, ../sass/partials/modules/widgets/_animate.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 3173, ../sass/partials/modules/widgets/_animate.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3204, ../sass/partials/modules/widgets/_animate.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3235, ../sass/partials/modules/widgets/_animate.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3266, ../sass/partials/modules/widgets/_animate.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3297, ../sass/partials/modules/widgets/_animate.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 3328, ../sass/partials/modules/widgets/_animate.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 3359, ../sass/partials/modules/widgets/_animate.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 3390, ../sass/partials/modules/widgets/_animate.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 3421, ../sass/partials/modules/widgets/_animate.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*step animation*/
@-keyframes grow-25 {
  /* line 3429, ../sass/partials/modules/widgets/_animate.scss */
  from {
    left: 100%;
  }

  /* line 3430, ../sass/partials/modules/widgets/_animate.scss */
  to {
    left: 75%;
  }
}
@-webkit-keyframes grow-25 {
  from {
    left: 100%;
  }
  to {
    left: 75%;
  }
}
@-keyframes grow-45 {
  /* line 3439, ../sass/partials/modules/widgets/_animate.scss */
  from {
    left: 100%;
  }

  /* line 3440, ../sass/partials/modules/widgets/_animate.scss */
  to {
    left: 55%;
  }
}
@-webkit-keyframes grow-45 {
  from {
    left: 100%;
  }
  to {
    left: 55%;
  }
}
@-keyframes grow-70 {
  /* line 3449, ../sass/partials/modules/widgets/_animate.scss */
  from {
    left: 100%;
  }

  /* line 3450, ../sass/partials/modules/widgets/_animate.scss */
  to {
    left: 30%;
  }
}
@-webkit-keyframes grow-70 {
  from {
    left: 100%;
  }
  to {
    left: 30%;
  }
}
@-keyframes grow-85 {
  /* line 3459, ../sass/partials/modules/widgets/_animate.scss */
  from {
    left: 100%;
  }

  /* line 3460, ../sass/partials/modules/widgets/_animate.scss */
  to {
    left: 15%;
  }
}
@-webkit-keyframes grow-85 {
  from {
    left: 100%;
  }
  to {
    left: 15%;
  }
}
/*Step animation*/
/* line 3470, ../sass/partials/modules/widgets/_animate.scss */
.bar.pct-25 .inner {
  -webkit-animation-duration: 2s;
  -webkit-animation-name: grow-25;
}
/* line 3474, ../sass/partials/modules/widgets/_animate.scss */
.bar.pct-45 .inner {
  -webkit-animation-duration: 3s;
  -webkit-animation-name: grow-45;
}
/* line 3478, ../sass/partials/modules/widgets/_animate.scss */
.bar.pct-70 .inner {
  -webkit-animation-duration: 5s;
  -webkit-animation-name: grow-70;
}
/* line 3482, ../sass/partials/modules/widgets/_animate.scss */
.bar.pct-85 .inner {
  -webkit-animation-duration: 6s;
  -webkit-animation-name: grow-85;
}

/*Creates the slide-out menu effect*/
@media all and (min-width: 64em) {
  /* line 4, ../sass/partials/modules/widgets/_menu-slider.scss */
  .btn-slide {
    display: none;
  }
}
@media all and (max-width: 63.9375em) {
  /* line 8, ../sass/partials/modules/widgets/_menu-slider.scss */
  input.btn-slide[type=checkbox] {
    position: absolute;
    opacity: 0;
  }

  /* line 12, ../sass/partials/modules/widgets/_menu-slider.scss */
  label.btn-slide {
    position: absolute;
    padding: 0.5em;
    top: 5px;
    left: 5%;
    z-index: 1;
    display: block;
    font-size: 0.8em;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    transition: transform .4s;
    background-color: #BCC932;
  }
  /* line 24, ../sass/partials/modules/widgets/_menu-slider.scss */
  label.btn-slide:before {
    content: "Open ";
  }

  /* line 27, ../sass/partials/modules/widgets/_menu-slider.scss */
  input.btn-slide[type=checkbox]:checked ~ label.btn-slide .icon:before {
    transform: rotate(180deg);
  }
  /* line 28, ../sass/partials/modules/widgets/_menu-slider.scss */
  input.btn-slide[type=checkbox]:checked ~ label.btn-slide:before {
    content: "Close ";
  }

  /* line 30, ../sass/partials/modules/widgets/_menu-slider.scss */
  .content-box {
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform .4s;
    z-index: 0;
  }

  /* line 36, ../sass/partials/modules/widgets/_menu-slider.scss */
  input.btn-slide[type=checkbox]:checked ~ .nav-list {
    transform: translate3d(0, 0, 0);
  }

  /* line 39, ../sass/partials/modules/widgets/_menu-slider.scss */
  input.btn-slide[type=checkbox]:checked ~ .nav-list .nav li {
    width: 100%;
  }

  /* line 42, ../sass/partials/modules/widgets/_menu-slider.scss */
  .nav-list {
    transform: translate3d(-100%, 0, 0);
    position: absolute;
    left: 0;
    transition: all .4s;
    z-index: 99;
  }
}
/* Forms */
/* ======================================================================================
   @FORMS -> BASE
   ====================================================================================== */
/* Indicate that `label` will shift focus to the associated `input` element */
/* line 6, ../sass/partials/forms/_base.scss */
label {
  cursor: pointer;
}

/* Text inputs via the `.txt-input` class, `textarea` and `select` */
/* line 9, ../sass/partials/forms/_base.scss */
.txt-input,
textarea,
select {
  width: 100%;
  padding: .75rem;
  border: 1px solid #DDE3EA;
  /*background: #DDE3EA;*/
  /* Transition */
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
  /* Focus pseudo class */
}
/* line 18, ../sass/partials/forms/_base.scss */
.txt-input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #DDE3EA;
  /* Old IE */
}

/* Legend - for legends that are visible and to fix up some browsers not supporting bottom margin */
/* line 29, ../sass/partials/forms/_base.scss */
legend.hn {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

/* Textarea */
/* line 35, ../sass/partials/forms/_base.scss */
textarea {
  height: 9em;
  resize: vertical;
}

/* Select list */
/* line 41, ../sass/partials/forms/_base.scss */
select {
  width: auto;
}

/* Alternate sizes */
/* line 44, ../sass/partials/forms/_base.scss */
.txt-input-sml {
  width: 16.666%;
}

/* line 46, ../sass/partials/forms/_base.scss */
.txt-input-med {
  width: 50%;
}

/* Placeholder */
/* Webkit */
/* line 475, ../sass/partials/utils/_mixins.scss */
::-webkit-input-placeholder {
  color: #aaa;
}

/* Firefox 18- */
/* line 480, ../sass/partials/utils/_mixins.scss */
:-moz-placeholder {
  color: #aaa;
}

/* Firefox 19+ */
/* line 485, ../sass/partials/utils/_mixins.scss */
::-moz-placeholder {
  color: #aaa;
}

/* MS */
/* line 490, ../sass/partials/utils/_mixins.scss */
:-ms-input-placeholder {
  color: #aaa;
}

/* jQuery plugin (old IE) */
/* line 495, ../sass/partials/utils/_mixins.scss */
.lte9 .placeholder {
  color: #aaa;
}

/* Disabled and Read-only */
/* 
	Note: it is okay to use `!important` here as we're doing it pre-emptively i.e. you know you will always want the rule it's applied too to take precedence.
*/
/* line 57, ../sass/partials/forms/_base.scss */
button[disabled],
input[disabled],
select[disabled],
textarea[disabled],
.is-disabled {
  cursor: default !important;
  text-shadow: none !important;
  box-shadow: none !important;
  opacity: 0.7!important;
}

/* 'Required field' indicator (asterisk) */
/* line 69, ../sass/partials/forms/_base.scss */
.req-field {
  background-color: #000;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .125rem .5rem;
}

/* Resest some defaults 
form p {margin: 0;}*/
/* To disable iPhone zoom */
/* line 81, ../sass/partials/forms/_base.scss */
input, textarea {
  font-size: 16px;
}

/*Alt row layout*/
/* line 87, ../sass/partials/forms/_base.scss */
.div-alt .form-main-label, .div-alt .form-main-field {
  margin: 0;
}
/* line 88, ../sass/partials/forms/_base.scss */
.div-alt .form-main-field {
  padding: 0.5em;
}
/* line 90, ../sass/partials/forms/_base.scss */
.div-alt .form-main-field:nth-child(odd) {
  background-color: #f2f2f2;
}

/* line 97, ../sass/partials/forms/_base.scss */
.form-icon {
  align-items: center;
  background-color: #004D7A;
  display: flex;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 1rem;
}

/* ======================================================================================
   @FORMS -> LAYOUT
   ====================================================================================== */
/*
	Usage: 
		These styles handle a typical form layout which is linear (label above input(s) i.e. stacked) for small viewports and side by side (label and input(s) aligned horizontally) for larger viewports.
	
	Basic HTML anatomy:
		<form class="form-main">
		
			<div class="form-main-field">
			
				<label class="form-main-label">Label</label>
				<p class="form-main-label">Label</p>
				
				<div class="form-main-inputs">
					[input(s)]
					<small class="form-main-notes">Helper notes...</small>
					<p class="feedback feedback-success">Feedback - success</p>
					<p class="feedback feedback-error">Feedback - error</p>
					<span class="preloader"><span class="preloader__spinner"></span> <em aria-live="polite" aria-controls="input-id-here">Preloader</em></span>
				</div>
				
			</div>
			
		</form>
				
	Demo:
		Style Guide -> Form Patterns
*/
/* Field */
/* Label */
/* line 40, ../sass/partials/forms/_layout.scss */
.form-main-label {
  display: block;
  margin-bottom: 0.1875em;
  /* Sits to the left of it's input(s) at this breakpoint */
}
@media all and (min-width: 48em) {
  /* line 40, ../sass/partials/forms/_layout.scss */
  .form-main-label {
    /*width: to-em(250);*/
    /*float: left;*/
    /*text-align: right;*/
    margin: 0.3125em 0 0.5rem;
    padding-right: 0.625em;
    position: relative;
    /* 'Required field' indicator (asterisk) */
    /*For when widths need to be full or auto*/
  }
  /* line 54, ../sass/partials/forms/_layout.scss */
  .form-main-label .req-field {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
  }
  /* line 61, ../sass/partials/forms/_layout.scss */
  .form-main-label.label-full {
    width: auto;
  }
}

/* line 66, ../sass/partials/forms/_layout.scss */
.form-main-label-full {
  width: auto;
  float: none;
  margin: 0;
  padding: 0;
}

/* Input(s) - sits to the right of it's label at this breakpoint */
	/*@include respond-min($ipad-portrait) {
		.form-main-inputs {
			margin-left: to-em(280); 
			width: $one-half;
		}
        .form-main-inputs-full {
            width:auto;
        }
	}*/
/* --Extenders-- */
/* The 'Actions' and 'Solo checkbox' extenders need this to position their 'Preloader' and 'Checkbox' */
/* line 88, ../sass/partials/forms/_layout.scss */
.form-main-inputs-solo-checkbox,
.form-main-inputs-actions {
  position: relative;
}

/* Apply a top margin to 'Actions' extender due to the `:last-child` rule in `@extend %mrg-base;` for 'Field' */
/* line 92, ../sass/partials/forms/_layout.scss */
.form-main-inputs-actions {
  margin-top: 24px;
  margin-top: 1.5rem;
  /* Print */
}
@media print {
  /* line 92, ../sass/partials/forms/_layout.scss */
  .form-main-inputs-actions {
    display: none;
  }
}

/* line 100, ../sass/partials/forms/_layout.scss */
.form-main-inputs-full {
  margin-left: 0;
}

/* Input(s) nested elements */
/* line 105, ../sass/partials/forms/_layout.scss */
.form-main-inputs {
  /* Vertical alignment for all `input`'s and `label`'s */
  /* Adjustments at this breakpoint */
}
/* line 107, ../sass/partials/forms/_layout.scss */
.form-main-inputs label,
.form-main-inputs input {
  vertical-align: middle;
}
@media all and (min-width: 48em) {
  /* line 105, ../sass/partials/forms/_layout.scss */
  .form-main-inputs {
    /* Nudge `type="file"` `input` down */
    /* Horizontal list */
  }
  /* line 113, ../sass/partials/forms/_layout.scss */
  .form-main-inputs input[type="file"] {
    margin-top: 0.25em;
  }
  /* line 116, ../sass/partials/forms/_layout.scss */
  .form-main-inputs .horiz-list li {
    margin-left: 0.75em;
    /* Turn off margin for first item */
  }
  /* line 120, ../sass/partials/forms/_layout.scss */
  .form-main-inputs .horiz-list li:first-child {
    margin-left: 0;
  }
}

/* Solo checkbox */
/* line 126, ../sass/partials/forms/_layout.scss */
.form-main-inputs-solo-checkbox {
  /* Checkbox */
  /* Label */
}
/* line 128, ../sass/partials/forms/_layout.scss */
.form-main-inputs-solo-checkbox input {
  position: absolute;
  top: 0.34375em;
  left: 0;
}
/* line 135, ../sass/partials/forms/_layout.scss */
.form-main-inputs-solo-checkbox label {
  padding-left: 1.125em;
  display: block;
}

/* Feedback, Notes and Preloader */
/* line 142, ../sass/partials/forms/_layout.scss */
.form-main-inputs .form-main-notes,
.form-main-field .feedback,
.form-main-field .preloader {
  margin-top: 0.375em;
}

/* Notes */
/* line 147, ../sass/partials/forms/_layout.scss */
.form-main-notes {
  display: block !important;
  /*@include font-size($font-size-sml, 1.35);*/
  font-size: 0.7em;
  color: gray;
}

/* Preloader within 'Actions' */
/* line 155, ../sass/partials/forms/_layout.scss */
.form-main-inputs-actions .preloader {
  vertical-align: middle;
  margin-top: 0;
}

/* Clear for aside */
/* line 162, ../sass/partials/forms/_layout.scss */
.form-main-block > div {
  width: 100%;
  float: none;
  margin-left: 0;
}
/* line 168, ../sass/partials/forms/_layout.scss */
.form-main-block > label {
  text-align: left;
  display: block;
}

/* line 174, ../sass/partials/forms/_layout.scss */
.form-main-block > div,
.form-main-block > label {
  float: none;
  margin-left: 0;
  width: 100%;
}

/* line 181, ../sass/partials/forms/_layout.scss */
.content-box {
  /*@extend .shadow;*/
}
/* line 184, ../sass/partials/forms/_layout.scss */
.content-box .form-main-field {
  display: flex;
  flex-direction: column;
}
/* line 188, ../sass/partials/forms/_layout.scss */
.content-box .form-main-field .form-main-label {
  background: #623764;
  color: #fff;
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
  padding: .55rem;
}
/* line 197, ../sass/partials/forms/_layout.scss */
.content-box .form-main-field .form-main-inputs {
  width: 100%;
}
/* line 200, ../sass/partials/forms/_layout.scss */
.content-box .form-main-field .form-main-inputs input, .content-box .form-main-field .form-main-inputs textarea {
  border-radius: 0 0 10px 10px;
}
@media (min-width: 48em) {
  /* line 184, ../sass/partials/forms/_layout.scss */
  .content-box .form-main-field {
    align-items: flex-start;
    flex-direction: row;
  }
  /* line 210, ../sass/partials/forms/_layout.scss */
  .content-box .form-main-field .form-main-inputs {
    width: 50%;
  }
  /* line 213, ../sass/partials/forms/_layout.scss */
  .content-box .form-main-field .form-main-inputs input, .content-box .form-main-field .form-main-inputs textarea {
    border-radius: 0 10px 10px 0;
  }
}

/*Quiz*/
/* line 223, ../sass/partials/forms/_layout.scss */
.ddlAnswers {
  padding: 0;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid #944019;
  color: #944019;
}

/*Custom styling of inputs - radiobuttons and checkboxes*/
/* line 231, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="checkbox"], .form-main-inputs input[type="radio"], .survey-tbl input[type="checkbox"], .survey-tbl input[type="radio"] {
  opacity: 0;
  position: absolute;
}
/* line 236, ../sass/partials/forms/_layout.scss */
.form-main-inputs label, .survey-tbl label {
  position: relative;
}
/* line 238, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="checkbox"], .form-main-inputs input[type="radio"], .form-main-inputs label, .survey-tbl input[type="checkbox"], .survey-tbl input[type="radio"], .survey-tbl label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
/* line 245, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="checkbox"] + label:before, .form-main-inputs input[type="radio"] + label:before, .survey-tbl input[type="checkbox"] + label:before, .survey-tbl input[type="radio"] + label:before {
  content: '';
  background: #fff;
  border: 1px solid #bfbfbf;
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 23px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
}
/* line 258, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="radio"] + label:before, .survey-tbl input[type="radio"] + label:before {
  border-radius: 50%;
}
/* line 262, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="radio"]:checked + label:before, .survey-tbl input[type="radio"]:checked + label:before {
  background: #30393F;
  box-shadow: inset 0px 0px 0px 2px #fff;
}
/* line 267, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="checkbox"]:checked + label:before, .survey-tbl input[type="checkbox"]:checked + label:before {
  font-family: 'icons';
  content: "\ea10";
  color: #30393F;
}

/*Survey*/
/* line 276, ../sass/partials/forms/_layout.scss */
.survey-list li {
  padding: 0.7em;
}
/* line 278, ../sass/partials/forms/_layout.scss */
.survey-list li:nth-child(even) {
  background-color: rgba(203, 203, 203, 0.1);
}

/* line 286, ../sass/partials/forms/_layout.scss */
.survey-tbl tbody tr:nth-child(odd) th, .survey-tbl tbody tr:nth-child(odd) td {
  background-color: #f2f2f2;
}
/* line 289, ../sass/partials/forms/_layout.scss */
.survey-tbl tbody th {
  padding: 0.5em 0 0.5em 0.5em;
}
@media all and (max-width: 64em) {
  /* line 292, ../sass/partials/forms/_layout.scss */
  .survey-tbl thead {
    display: none;
  }
  /* line 293, ../sass/partials/forms/_layout.scss */
  .survey-tbl td, .survey-tbl th[scope="row"] {
    display: block;
  }
  /* line 295, ../sass/partials/forms/_layout.scss */
  .survey-tbl td label {
    vertical-align: unset;
  }
  /* line 296, ../sass/partials/forms/_layout.scss */
  .survey-tbl td:first-child {
    padding-top: .5em;
  }
  /* line 300, ../sass/partials/forms/_layout.scss */
  .survey-tbl td:last-child {
    padding-bottom: .5em;
  }
  /* line 304, ../sass/partials/forms/_layout.scss */
  .survey-tbl td:before {
    content: attr(data-label) ": ";
    font-weight: bold;
    width: 50%;
    display: inline-block;
    padding-left: 0.5em;
  }
}
@media all and (max-width: 40em) {
  /* line 314, ../sass/partials/forms/_layout.scss */
  .survey-tbl td:before {
    width: 82%;
  }
}

/*Username*/
/* line 322, ../sass/partials/forms/_layout.scss */
.username-email {
  position: absolute;
  right: 0;
  top: 0.4em;
}

/* line 326, ../sass/partials/forms/_layout.scss */
.navigation select {
  width: 100%;
}

/* ======================================================================================
   @FORMS -> VALIDATION
   ====================================================================================== */
/* 
	Usage:
		For highlighting text inputs for validation.
	
	Note: 
		It is okay to use `!important` here as we're doing it pre-emptively i.e. you know you will always want the rule it's applied too to take precedence.
	
	Demo:
		Style Guide -> Form Patterns
*/
/* Error */
/* line 17, ../sass/partials/forms/_validation.scss */
.input-error {
  border-color: #c43c35 !important;
  /* Focus pseudo class */
}
/* line 21, ../sass/partials/forms/_validation.scss */
.input-error:focus {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 10px rgba(196, 60, 53, 0.75) !important;
}

/* Success */
/* line 28, ../sass/partials/forms/_validation.scss */
.input-success {
  border-color: #57a957 !important;
  background-color: #cfe9c5 !important;
  /* Focus pseudo class */
}
/* line 33, ../sass/partials/forms/_validation.scss */
.input-success:focus {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 10px rgba(87, 169, 87, 0.75) !important;
}

/* Buttons */
/* ======================================================================================
   @BUTTONS -> BASE
   ====================================================================================== */
/* 
	Usage: 
		Basic button structural/reset styling that all buttons need, can only be extended from not used by itself.
	
	Demo:
		Style Guide -> Buttons -> Base
*/
/* Reset all the browser default styles */
/* line 14, ../sass/partials/buttons/_base.scss */
.btn {
  line-height: normal;
  display: inline-flex;
  justify-content: center;
  vertical-align: middle;
  background: none;
  border: 0;
  padding: 0;
  /* Parent + pseudo elements */
  /* Parent + pseudo classes */
  /* Note: this may be redundant? */
  /* --Extenders-- */
  /* 
  	Note: have to increase the specificity by chaining the base `.btn` class to make it easy to override non-simple extenders. 
  */
  /* Make span full width of parent */
  /* Round button */
  /*Buttons with icons*/
  /*	&.btn-white {
  		align-items: center;
  		background-color: var(--white);
  		border-radius: 10px;
  		color: var(--grey-900) !important;
  		display: inline-flex;
  		padding: .45rem;
  	}*/
  /* Small and large sizes */
  /* Apply right spacing for adjacent buttons */
  /* Print */
  /* 
  	Note: It is okay to use `!important` here as we're doing it pre-emptively i.e. you know you will always want the rule it's applied too to take precedence.
  */
}
/* line 29, ../sass/partials/buttons/_base.scss */
.btn, .btn:hover, .btn:focus {
  text-decoration: none;
}
/* line 40, ../sass/partials/buttons/_base.scss */
.btn.btn-full {
  display: block;
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/* line 48, ../sass/partials/buttons/_base.scss */
.btn.btn-pill {
  border-radius: 50%;
}
/* line 52, ../sass/partials/buttons/_base.scss */
.btn.btn-search {
  background: transparent url("img/icon/btn-search-sml.png") no-repeat 0.5em 0.3em;
  width: 2.2em;
  height: 2.2em;
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
}
/* line 71, ../sass/partials/buttons/_base.scss */
.btn.btn-transparent {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
}
/* line 77, ../sass/partials/buttons/_base.scss */
.btn.btn-sml {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}
/* line 81, ../sass/partials/buttons/_base.scss */
.btn.btn-lrg {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: normal;
}
/* line 85, ../sass/partials/buttons/_base.scss */
.btn.btn-spacing {
  margin-right: 0.375em;
}
@media print {
  /* line 14, ../sass/partials/buttons/_base.scss */
  .btn {
    display: none !important;
  }
}

/* ======================================================================================
   @BUTTONS -> MAIN
   ====================================================================================== */
/* 
	Usage: 
		The main button for the site.
	
	Note:
		Extends from `.btn`, see: 'buttons/base'.
	
	Demo:
		Style Guide -> Buttons -> Main
*/
/* line 16, ../sass/partials/buttons/_main.scss */
.btn-main, .btn-blue, .btn-green, .btn-white, .btn-black {
  padding: .5rem .875rem;
  /*@include linear-gradient($color-yellow, darken($color-yellow, 10%), $override-bg-color: true, $bg-color-override: $color-yellow);*/
  background-color: #BCC932;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-align: center;
  /* Parent + pseudo classes */
  /* Pseudo classes */
  /* --Extenders-- */
  /* Disabled (has to match the bg for the default state) */
}
/* line 27, ../sass/partials/buttons/_main.scss */
.btn-main, .btn-blue, .btn-green, .btn-white, .btn-black, .btn-main:visited, .btn-blue:visited, .btn-green:visited, .btn-white:visited, .btn-black:visited, .btn-main:hover, .btn-blue:hover, .btn-green:hover, .btn-white:hover, .btn-black:hover, .btn-main:focus, .btn-blue:focus, .btn-green:focus, .btn-white:focus, .btn-black:focus {
  color: #262626;
}
/* line 34, ../sass/partials/buttons/_main.scss */
.btn-main:hover, .btn-blue:hover, .btn-green:hover, .btn-white:hover, .btn-black:hover, .btn-main:focus, .btn-blue:focus, .btn-green:focus, .btn-white:focus, .btn-black:focus, .btn-main.btn-menu-toggle.is-expanded, .btn-menu-toggle.is-expanded.btn-blue, .btn-menu-toggle.is-expanded.btn-green, .btn-menu-toggle.is-expanded.btn-white, .btn-menu-toggle.is-expanded.btn-black {
  /*@include linear-gradient(lighten($color-yellow, 15%), darken($color-yellow, 8%));*/
  background-color: #d1db6d;
  border-color: #BCC932;
}
/* line 43, ../sass/partials/buttons/_main.scss */
.btn-main:active, .btn-blue:active, .btn-green:active, .btn-white:active, .btn-black:active, .btn-main.btn-menu-toggle.is-expanded, .btn-menu-toggle.is-expanded.btn-blue, .btn-menu-toggle.is-expanded.btn-green, .btn-menu-toggle.is-expanded.btn-white, .btn-menu-toggle.is-expanded.btn-black {
  box-shadow: inset 0.05em 0.15em 0.4em rgba(0, 0, 0, 0.2), inset 0 0 0.2em rgba(255, 255, 255, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
/* line 50, ../sass/partials/buttons/_main.scss */
.btn-main[disabled], [disabled].btn-blue, [disabled].btn-green, [disabled].btn-white, [disabled].btn-black, .btn-main.is-disabled, .is-disabled.btn-blue, .is-disabled.btn-green, .is-disabled.btn-white, .is-disabled.btn-black {
  background-color: #BCC932;
  background-image: -webkit-linear-gradient(top, #BCC932, #96a028);
  background-image: linear-gradient(to bottom, #BCC932, #96a028);
}
/* line 58, ../sass/partials/buttons/_main.scss */
.btn-main-order--body {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: -1em auto 1em auto;
  background-color: #8c3b92;
  color: #fff;
  padding: 1em 0;
  text-transform: uppercase;
  text-align: center;
}
/* line 69, ../sass/partials/buttons/_main.scss */
.btn-main-order--body a {
  color: #fff;
  width: 100%;
  font-weight: bold;
}
/* line 75, ../sass/partials/buttons/_main.scss */
.btn-main-order--body img {
  margin-right: .4em;
}
/* line 80, ../sass/partials/buttons/_main.scss */
.btn-main-order--header {
  /*display: none;*/
  /*position: absolute;*/
  height: 44px;
  /*right: 27em;*/
  /*top: -0.45em;*/
  font-weight: bold;
  padding: .5rem 1.5rem !important;
  background-color: #008793;
  border: 1px solid #6B3E5C !important;
  color: #fff !important;
  white-space: nowrap;
}
/* line 93, ../sass/partials/buttons/_main.scss */
.btn-main-order--header img {
  margin-right: .4em;
  width: 25px;
  height: 25px;
  position: relative;
  top: -2px;
}
/* line 101, ../sass/partials/buttons/_main.scss */
.btn-main-order--header:hover {
  background-color: #A44D82;
}

@media (min-width: 64em) {
  /* line 109, ../sass/partials/buttons/_main.scss */
  .btn-main, .btn-blue, .btn-green, .btn-white, .btn-black {
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 1650px) {
  /* line 117, ../sass/partials/buttons/_main.scss */
  .btn-main-order--header {
    /*display: block;*/
  }
  /* line 123, ../sass/partials/buttons/_main.scss */
  .btn-main-order--body {
    display: none;
  }
}
/* line 130, ../sass/partials/buttons/_main.scss */
.btn-blue {
  background-color: var(--blue-400);
  border-color: var(--blue-400);
  color: #fff;
}
/* line 136, ../sass/partials/buttons/_main.scss */
.btn-blue:hover {
  color: var(--black);
}
/* line 140, ../sass/partials/buttons/_main.scss */
.btn-blue:visited {
  background-color: var(--blue-400);
  border-color: var(--blue-400);
  color: #fff;
}

/* line 147, ../sass/partials/buttons/_main.scss */
.btn-green {
  background-color: #008793;
  border-color: #008793;
  color: var(--white);
}
/* line 153, ../sass/partials/buttons/_main.scss */
.btn-green:hover {
  background-color: #008793;
  border-color: #008793;
  color: var(--black);
}
/* line 159, ../sass/partials/buttons/_main.scss */
.btn-green:visited {
  background-color: #008793;
  border-color: #008793;
  color: #fff;
}

/* line 166, ../sass/partials/buttons/_main.scss */
.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--black);
}
/* line 172, ../sass/partials/buttons/_main.scss */
.btn-white:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--black);
}
/* line 178, ../sass/partials/buttons/_main.scss */
.btn-white:visited {
  background-color: #fff;
  border-color: #fff;
  color: var(--black);
}

/* line 186, ../sass/partials/buttons/_main.scss */
.btn-black {
  background-color: var(--black);
  border-color: var(--black);
  color: #fff;
}
/* line 192, ../sass/partials/buttons/_main.scss */
.btn-black:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: #fff;
}
/* line 198, ../sass/partials/buttons/_main.scss */
.btn-black:visited {
  background-color: var(--black);
  border-color: var(--black);
  color: #fff;
}

/* line 206, ../sass/partials/buttons/_main.scss */
.btn-delete {
  background: #fff url(img/icon/icon-delete.png) no-repeat -1px 0;
}

/* line 210, ../sass/partials/buttons/_main.scss */
.btn-archive {
  background: #fff url(img/icon/icon-archive.png) no-repeat -1px 0;
}

/* line 214, ../sass/partials/buttons/_main.scss */
.btn-copy {
  background: #fff url(img/icon/icon-copy.png) no-repeat 0 0;
}

/* --Extenders-- */
/* Compact - reduce padding by 50% */
/* line 219, ../sass/partials/buttons/_main.scss */
.btn-main-compact {
  padding: 0.7rem 1rem;
}

/* Paging */
/* line 223, ../sass/partials/buttons/_main.scss */
.paging-div {
  float: right;
  /*For any inputs instead of a tags*/
}
/* line 227, ../sass/partials/buttons/_main.scss */
.paging-div > div:first-child {
  margin-top: 0.35em;
}
/* line 231, ../sass/partials/buttons/_main.scss */
.paging-div > div:last-child {
  /*float:left;*/
  margin: 1em 0 0 1em;
}
/* line 235, ../sass/partials/buttons/_main.scss */
.paging-div > div:last-child label {
  padding-left: 0;
}
/* line 241, ../sass/partials/buttons/_main.scss */
.paging-div .page-far-left, .paging-div .page-left, .paging-div .page-far-right, .paging-div .page-right {
  display: block;
  height: 28px;
  width: 28px;
  padding-top: 0.15em;
  background-color: #fff;
  border: 1px solid #d4d4d4;
}
/* line 249, ../sass/partials/buttons/_main.scss */
.paging-div .page-far-left .icon:before, .paging-div .page-left .icon:before, .paging-div .page-far-right .icon:before, .paging-div .page-right .icon:before {
  margin-right: 0;
}
/* line 254, ../sass/partials/buttons/_main.scss */
.paging-div .page-far-left, .paging-div .page-left, .paging-div .page-far-right, .paging-div .page-right, .paging-div .page-info {
  float: left;
}
/* line 258, ../sass/partials/buttons/_main.scss */
.paging-div .page-far-left, .paging-div .page-far-right {
  margin: 0 5px;
}
/* line 262, ../sass/partials/buttons/_main.scss */
.paging-div .page-info {
  line-height: 16px;
  padding: 5px 12px 0 12px;
}
/* line 267, ../sass/partials/buttons/_main.scss */
.paging-div .icon:before {
  margin-left: 33%;
}
/* line 271, ../sass/partials/buttons/_main.scss */
.paging-div .icon-right:before {
  margin-left: 44%;
}
/* line 275, ../sass/partials/buttons/_main.scss */
.paging-div label {
  padding-left: 1em;
}
/* line 279, ../sass/partials/buttons/_main.scss */
.paging-div select {
  padding: 0.43em;
}
/* line 284, ../sass/partials/buttons/_main.scss */
.paging-div input.page-far-left {
  background: transparent url(img/icon/icon-jumpLeft.png) no-repeat -2px -3px;
}
/* line 288, ../sass/partials/buttons/_main.scss */
.paging-div input.page-left {
  background: transparent url(img/icon/icon-left.png) no-repeat -3px -3px;
}
/* line 292, ../sass/partials/buttons/_main.scss */
.paging-div input.page-far-right {
  background: transparent url(img/icon/icon-jumpRight.png) no-repeat -2px -3px;
}
/* line 296, ../sass/partials/buttons/_main.scss */
.paging-div input.page-right {
  background: transparent url(img/icon/icon-right.png) no-repeat -1px -3px;
}
@media all and (min-width: 24.625em) {
  /* line 302, ../sass/partials/buttons/_main.scss */
  .paging-div > div:first-child {
    float: left;
  }
  /* line 306, ../sass/partials/buttons/_main.scss */
  .paging-div > div:last-child {
    float: right;
    margin-top: 0;
  }
}
@media all and (max-width: 33.6875em) {
  /* line 223, ../sass/partials/buttons/_main.scss */
  .paging-div {
    float: none;
    margin-top: 1em;
  }
  /* line 316, ../sass/partials/buttons/_main.scss */
  .paging-div .page-far-left {
    margin-left: 0;
  }
}

/*Toolbar*/
/* line 322, ../sass/partials/buttons/_main.scss */
.toolbar {
  /*a + a {margin-left:-1px;}*/
}
/* line 323, ../sass/partials/buttons/_main.scss */
.toolbar a {
  color: #000;
}
/* line 327, ../sass/partials/buttons/_main.scss */
.toolbar a span {
  display: inline-block;
  text-align: center;
}
/* line 332, ../sass/partials/buttons/_main.scss */
.toolbar a span, .toolbar input.btn {
  width: 27px;
  height: 27px;
}
/* line 337, ../sass/partials/buttons/_main.scss */
.toolbar .txt-red {
  color: red;
}
/* line 341, ../sass/partials/buttons/_main.scss */
.toolbar .txt-green {
  color: green;
}
/* line 345, ../sass/partials/buttons/_main.scss */
.toolbar .btn, .toolbar .icon {
  border: 1px solid #e3e3e3;
  border-radius: 3px;
}
/* line 350, ../sass/partials/buttons/_main.scss */
.toolbar .btn {
  /*position: relative;top: -1px;*/
  padding: 0;
  /*reset padding*/
  vertical-align: top;
}
/* line 356, ../sass/partials/buttons/_main.scss */
.toolbar .icon {
  background-color: #fff;
}
/* line 359, ../sass/partials/buttons/_main.scss */
.toolbar .icon:before {
  margin-right: 0;
  top: -2px;
}

/*On Off Button*/
/* line 366, ../sass/partials/buttons/_main.scss */
.onoffswitch {
  position: relative;
  margin: 1em 1em 0 0;
  float: right;
  width: 5.9375em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 376, ../sass/partials/buttons/_main.scss */
.onoffswitch-checkbox {
  display: none;
}

/* line 380, ../sass/partials/buttons/_main.scss */
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #4d4d4d;
  border-radius: 10px;
}

/* line 388, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
/* line 394, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  color: white;
  box-sizing: border-box;
}
/* line 405, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner:before {
  content: "Audio";
  padding-left: 10px;
  background-color: #7ac144;
  color: #fff;
}
/* line 412, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner:after {
  content: "Audio";
  padding-right: 10px;
  background-color: #f2f2f2;
  color: #4d4d4d;
  text-align: right;
}

/*Used for activation switch*/
/* line 423, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner-active:before {
  content: "Active";
}
/* line 427, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner-active:after {
  content: "Inactive";
}

/* line 432, ../sass/partials/buttons/_main.scss */
.onoffswitch-switch {
  display: block;
  width: 15px;
  margin: 5px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 66px;
  border: 1px solid #4d4d4d;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

/*Used for activation switch*/
/* line 446, ../sass/partials/buttons/_main.scss */
.onoffswitch-switch-active {
  right: 80px;
}

/* line 450, ../sass/partials/buttons/_main.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

/* line 454, ../sass/partials/buttons/_main.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/*Export*/
/* line 459, ../sass/partials/buttons/_main.scss */
.export .view {
  background: #BCC932 url(img/icon/icon-search.png) no-repeat 0.2em 50%;
  padding-left: 1.9em;
  padding-right: 0.8em;
}
/* line 465, ../sass/partials/buttons/_main.scss */
.export .pdf {
  background: #BCC932 url(img/icon/icon-pdf-white.png) no-repeat 0.8em 50%;
  padding-left: 2.2em;
  padding-right: 0.8em;
}
/* line 471, ../sass/partials/buttons/_main.scss */
.export .excel {
  background: #BCC932 url(img/icon/icon-excel-white.png) no-repeat 0.7em 50%;
  padding-left: 2.2em;
  padding-right: 0.8em;
}

/* line 479, ../sass/partials/buttons/_main.scss */
.c-feedback-button {
  bottom: 3rem;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  right: -2rem;
  position: fixed;
  transform: rotate(270deg);
}

/* line 489, ../sass/partials/buttons/_main.scss */
.c-star-rating {
  margin-bottom: 2rem;
}
/* line 492, ../sass/partials/buttons/_main.scss */
.c-star-rating a {
  display: flex;
  flex: 1;
}
/* line 497, ../sass/partials/buttons/_main.scss */
.c-star-rating__star {
  background-image: url(/img/icon/star.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 20%;
}
/* line 503, ../sass/partials/buttons/_main.scss */
.c-star-rating__star--full {
  background-repeat: no-repeat;
  background-position: center;
  width: 20%;
  background-image: url(/img/icon/star-full.svg);
}

/* ======================================================================================
   @BUTTONS -> MENU TOGGLE
   ====================================================================================== */
/*
	Usage: 
		Toggles the main menu (site navigation) at small screen sizes.
	
	Note: 
		-	If an icon font is being used then make use of a 'menu' icon, nice design here: http://codepen.io/ekidd/pen/CJdov. 
		-	Extends from `.btn` and `.btn-main`, see: 'buttons/base' and 'buttons/main'.
	
	Demo:
		Style Guide -> Buttons -> Menu Toggle
*/
/* line 17, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle {
  position: relative;
  width: 3.125rem;
  height: 2.125rem;
  /* Hide at this breakpoint */
  /* JS off */
}
@media (min-width: 850px) {
  /* line 17, ../sass/partials/buttons/_menu-toggle.scss */
  .btn-menu-toggle {
    display: none;
  }
}
/* line 27, ../sass/partials/buttons/_menu-toggle.scss */
.no-js .btn-menu-toggle {
  display: none;
}

/* Create the icon (three lines) */
/* line 33, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon {
  left: 50%;
  top: 50%;
  margin: -1px 0px 0px -14px;
  margin: -0.0625rem 0rem 0rem -0.875rem;
  pointer-events: none;
  /* Shared */
  /* Pseudo elements - top/bottom lines */
}
/* line 40, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon, .btn-menu-toggle__icon:before, .btn-menu-toggle__icon:after {
  position: absolute;
  width: 1.75rem;
  height: 0.1875rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 -1px rgba(0, 0, 0, 0.2);
}
/* line 52, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon:before, .btn-menu-toggle__icon:after {
  content: "";
  left: 0;
}
/* line 58, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon:before {
  top: -0.375rem;
}
/* line 60, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon:after {
  top: 0.375rem;
}

/* ======================================================================================
   @BUTTONS -> CLOSE
   ====================================================================================== */
/* 
	Usage: 
		For closing/removing UI components e.g. a dialog/modal.
	
	Note:
		Extends from `.btn`, see: 'buttons/base'.
	
	Demo:
		Style Guide -> Buttons -> Close
*/
/* line 17, ../sass/partials/buttons/_close.scss */
.btn-close {
  /* Pseudo element - 'x' */
  /* Pseudo classes */
}
/* line 20, ../sass/partials/buttons/_close.scss */
.btn-close:before {
  content: "x";
  display: block;
  speak: none;
  font: bold 1.125em/1.125em Verdana, Geneva, Tahoma, sans-serif;
  padding: 0em 0.4375em 0.3125em;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
/* line 32, ../sass/partials/buttons/_close.scss */
.btn-close:hover:before, .btn-close:focus:before {
  opacity: 0.9;
}

/* ======================================================================================
   @BUTTONS -> FAUX LINK
   ====================================================================================== */
/*
	Usage: 
		Make a button look like a link.
	
	Note: 
		-	The base link styles are repeated here so not very DRY (need to look into this). 
		-	Extends from `.btn`, see: 'buttons/base'.
	
	Demo:
		Style Guide -> Buttons -> Faux Link
*/
/* line 17, ../sass/partials/buttons/_faux-link.scss */
.btn-faux-link {
  color: #004D7A;
  text-decoration: underline;
  /* Note: this may be redundant? */
  /* Pseudo classes */
}
/* line 22, ../sass/partials/buttons/_faux-link.scss */
.btn-faux-link:hover, .btn-faux-link:focus {
  color: #7a2d00;
  text-decoration: none;
  /* Note: this may be redundant? */
}

/* Helpers */
/* ======================================================================================
   @HELPERS -> HIDE
   ====================================================================================== */
/*
	Usage: 
		Hides elements in various ways, see inline comments.
*/
/* Hide from both screen readers and browsers */
/* line 16, ../sass/partials/helpers/_hide.scss */
.hide-fully {
  display: none;
  visibility: hidden;
}

/* --Apply at specific breakpoints (all pre-defined breakpoints)-- */
/* Palm */
@media all and (max-width: 40em) {
  /* line 22, ../sass/partials/helpers/_hide.scss */
  .hide-fully--palm {
    display: none;
    visibility: hidden;
  }
}
/* Non-palm */
@media all and (min-width: 40.0625em) {
  /* line 27, ../sass/partials/helpers/_hide.scss */
  .hide-fully--non-palm {
    display: none;
    visibility: hidden;
  }
}
/* Lap */
/* Lap */
@media all and (min-width: 40.0625em) and (max-width: 74.9375em) {
  /* line 32, ../sass/partials/helpers/_hide.scss */
  .hide-fully--lap {
    display: none;
    visibility: hidden;
  }
}
/* Lap small */
/* Lap large */
/* Desk small */
/* Lap small */
/* Lap */
/* Lap small */
@media all and (min-width: 40.0625em) and (max-width: 56.25em) {
  /* line 37, ../sass/partials/helpers/_hide.scss */
  .hide-fully--lap-sml {
    display: none;
    visibility: hidden;
  }
}
/* Lap large */
/* Desk small */
/* Lap large */
/* Lap */
/* Lap small */
/* Lap large */
@media all and (min-width: 56.3125em) and (max-width: 74.9375em) {
  /* line 42, ../sass/partials/helpers/_hide.scss */
  .hide-fully--lap-lrg {
    display: none;
    visibility: hidden;
  }
}
/* Desk small */
/* Portable */
@media all and (max-width: 74.9375em) {
  /* line 47, ../sass/partials/helpers/_hide.scss */
  .hide-fully--portable {
    display: none;
    visibility: hidden;
  }
}
/* Desk */
@media all and (min-width: 75em) {
  /* line 52, ../sass/partials/helpers/_hide.scss */
  .hide-fully--desk {
    display: none;
    visibility: hidden;
  }
}
/* Desk small */
/* Lap */
/* Lap small */
/* Lap large */
/* Desk small */
@media all and (min-width: 75em) and (max-width: 85.3125em) {
  /* line 57, ../sass/partials/helpers/_hide.scss */
  .hide-fully--desk-sml {
    display: none;
    visibility: hidden;
  }
}
/* Desk large */
@media all and (min-width: 85.375em) {
  /* line 62, ../sass/partials/helpers/_hide.scss */
  .hide-fully--desk-lrg {
    display: none;
    visibility: hidden;
  }
}
/* Hide only visually but have it available for screen readers */
/* line 66, ../sass/partials/helpers/_hide.scss */
.hide-visually {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  border: 0;
}

/* Form `legend` requires this */
/* line 78, ../sass/partials/helpers/_hide.scss */
legend.hide-visually {
  left: -9999px;
}

/* Hide stuff relating to JS */
/* line 81, ../sass/partials/helpers/_hide.scss */
.js .js-off,
.js .js-hide-show {
  display: none;
}

/* Print */
@media print {
  /* line 86, ../sass/partials/helpers/_hide.scss */
  .hide-print {
    display: none;
  }

  /* line 88, ../sass/partials/helpers/_hide.scss */
  .js-hide-show {
    display: block !important;
  }
}
/* ======================================================================================
   @HELPERS -> SPACING
   ====================================================================================== */
/*
	Usage: 
		Apply spacing via the base bottom margin or variants of it e.g. half / double, can also apply 'top' margins, or to remove spacing applied via margins use any of the `.flush` classes.
	
	Demo:
		Style Guide -> Helpers -> Spacing
*/
/* Base */
/* line 14, ../sass/partials/helpers/_spacing.scss */
.mrg-base {
  margin-bottom: 24px!important;
  margin-bottom: 1.5rem!important;
}

/* line 16, ../sass/partials/helpers/_spacing.scss */
.mrg-base-top {
  margin-top: 24px!important;
  margin-top: 1.5rem!important;
}

/* line 18, ../sass/partials/helpers/_spacing.scss */
.mrg-base-top-negative {
  margin-top: -24px!important;
  margin-top: -1.5rem!important;
}

/* Mini */
/* line 21, ../sass/partials/helpers/_spacing.scss */
.mrg-mini {
  margin-bottom: 6px!important;
  margin-bottom: 0.375rem!important;
}

/* Half */
/* line 24, ../sass/partials/helpers/_spacing.scss */
.mrg-half {
  margin-bottom: 12px!important;
  margin-bottom: 0.75rem!important;
}

/* line 26, ../sass/partials/helpers/_spacing.scss */
.mrg-half-top {
  margin-top: 12px!important;
  margin-top: 0.75rem!important;
}

/* Double */
/* line 29, ../sass/partials/helpers/_spacing.scss */
.mrg-dbl {
  margin-bottom: 48px!important;
  margin-bottom: 3rem!important;
}

/* line 31, ../sass/partials/helpers/_spacing.scss */
.mrg-dbl-top {
  margin-top: 48px!important;
  margin-top: 3rem!important;
}

/* --Apply at specific breakpoints (all pre-defined breakpoints)-- */
/* Palm */
@media all and (max-width: 40em) {
  /* line 37, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-palm {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Non-palm */
@media all and (min-width: 40.0625em) {
  /* line 42, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-non-palm {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Lap */
/* Lap */
@media all and (min-width: 40.0625em) and (max-width: 74.9375em) {
  /* line 47, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-lap {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Lap small */
/* Lap large */
/* Desk small */
/* Lap small */
/* Lap */
/* Lap small */
@media all and (min-width: 40.0625em) and (max-width: 56.25em) {
  /* line 52, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-lap-sml {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Lap large */
/* Desk small */
/* Lap large */
/* Lap */
/* Lap small */
/* Lap large */
@media all and (min-width: 56.3125em) and (max-width: 74.9375em) {
  /* line 57, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-lap-lrg {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Desk small */
/* Portable */
@media all and (max-width: 74.9375em) {
  /* line 62, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-portable {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Desk */
@media all and (min-width: 75em) {
  /* line 67, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-desk {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Desk small */
/* Lap */
/* Lap small */
/* Lap large */
/* Desk small */
@media all and (min-width: 75em) and (max-width: 85.3125em) {
  /* line 72, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-desk-sml {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Desk large */
@media all and (min-width: 85.375em) {
  /* line 77, ../sass/partials/helpers/_spacing.scss */
  .mrg-base-desk-lrg {
    margin-bottom: 24px!important;
    margin-bottom: 1.5rem!important;
  }
}
/* Flush */
/* line 81, ../sass/partials/helpers/_spacing.scss */
.flush {
  margin: 0 !important;
}

/* line 83, ../sass/partials/helpers/_spacing.scss */
.flush-top {
  margin-top: 0 !important;
}

/* line 85, ../sass/partials/helpers/_spacing.scss */
.flush-right {
  margin-right: 0 !important;
}

/* line 87, ../sass/partials/helpers/_spacing.scss */
.flush-btm {
  margin-bottom: 0 !important;
}

/* line 89, ../sass/partials/helpers/_spacing.scss */
.flush-left {
  margin-left: 0 !important;
}

/* line 91, ../sass/partials/helpers/_spacing.scss */
.flush-ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 96, ../sass/partials/helpers/_spacing.scss */
.flush-sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* line 101, ../sass/partials/helpers/_spacing.scss */
.padding-base {
  padding: 24px!important;
  padding: 1.5rem!important;
}

/* ======================================================================================
   @HELPERS -> DISPLAY
   ====================================================================================== */
/*
	Usage: 
		Changes the `display` property of an element.
	
	Demo:
		Style Guide -> Helpers -> Display
*/
/* line 13, ../sass/partials/helpers/_display.scss */
.block {
  display: block !important;
}

/* line 15, ../sass/partials/helpers/_display.scss */
.inline {
  display: inline !important;
}

/* line 17, ../sass/partials/helpers/_display.scss */
.inline-block {
  display: inline-block !important;
}

/* line 19, ../sass/partials/helpers/_display.scss */
.index-top {
  z-index: 10;
}

/* line 21, ../sass/partials/helpers/_display.scss */
.index-bottom {
  z-index: 1;
}

/* ======================================================================================
   @HELPERS -> TEXT
   ====================================================================================== */
/*
	Usage: 
		Various helpers specifically for text.
	
	Demo:
		Style Guide -> Helpers -> Text
*/
/* Sizes */
/* line 14, ../sass/partials/helpers/_text.scss */
.txt-sml {
  font-size: 14px!important;
  font-size: 0.875rem!important;
  line-height: 1.71429;
}

/* line 16, ../sass/partials/helpers/_text.scss */
.txt-lrg {
  font-size: 18px!important;
  font-size: 1.125rem!important;
  line-height: 1.33333;
}

/* line 18, ../sass/partials/helpers/_text.scss */
.txt-reset {
  font-size: 100% !important;
}

/* Alignments */
/* line 21, ../sass/partials/helpers/_text.scss */
.txt-center {
  text-align: center !important;
}

/* line 23, ../sass/partials/helpers/_text.scss */
.txt-left {
  text-align: left !important;
}

/* line 25, ../sass/partials/helpers/_text.scss */
.txt-right {
  text-align: right !important;
}

/* Styles */
/* line 28, ../sass/partials/helpers/_text.scss */
.txt-italic {
  font-style: italic !important;
}

/* line 30, ../sass/partials/helpers/_text.scss */
.txt-bold {
  font-weight: 700 !important;
}

/* line 32, ../sass/partials/helpers/_text.scss */
.txt-caps {
  text-transform: uppercase !important;
}

/* Truncate */
/* line 35, ../sass/partials/helpers/_text.scss */
.txt-truncate {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/* Break word */
/* line 43, ../sass/partials/helpers/_text.scss */
.txt-break-word {
  word-wrap: break-word !important;
  -ms-word-break: break-all !important;
  word-break: break-all !important;
  /* Non standard for webkit */
  word-break: break-word !important;
  /* Hyphens */
  /* Transition */
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
  /* Note: 'layout' is needed for IE. */
  /* Note: `table-layout: fixed;` is needen when this is used within tables, the rule needs to go on the `table` element. */
}

/* colour */
/* line 56, ../sass/partials/helpers/_text.scss */
.txt-yellow {
  color: #BCC932;
}

/* line 57, ../sass/partials/helpers/_text.scss */
.background-yellow {
  background: #BCC932;
  padding: 0.7em;
}

/* line 58, ../sass/partials/helpers/_text.scss */
.txt-yellow-dark {
  color: #FFAC07;
}

/* line 59, ../sass/partials/helpers/_text.scss */
.background-yellow-dark {
  background: #FFAC07;
  padding: 0.7em;
}

/* line 60, ../sass/partials/helpers/_text.scss */
.txt-med-orange {
  color: #F7890D;
}

/* line 61, ../sass/partials/helpers/_text.scss */
.background-med-orange {
  background: #F7890D;
  padding: 0.7em;
}

/* line 62, ../sass/partials/helpers/_text.scss */
.txt-dull-orange {
  color: #E46717;
}

/* line 63, ../sass/partials/helpers/_text.scss */
.background-dull-orange {
  background: #E46717;
  padding: 0.7em;
}

/* line 64, ../sass/partials/helpers/_text.scss */
.txt-color-purple {
  color: #5B207D;
}

/* line 65, ../sass/partials/helpers/_text.scss */
.background-color-purple {
  background: #5B207D;
  color: #fff;
  padding: 0.7em;
}

/* line 66, ../sass/partials/helpers/_text.scss */
.background-dark-orange {
  background: #944019;
  color: #fff;
  padding: 0.7em;
}

/* ======================================================================================
   @HELPERS -> FLOAT
   ====================================================================================== */
/*
	Usage: 
		Float an element to either the right or left or remove float altogether.
	
	Demo:
		Style Guide -> Helpers -> Float
*/
/* line 13, ../sass/partials/helpers/_float.scss */
.float-left {
  float: left !important;
}

/* line 15, ../sass/partials/helpers/_float.scss */
.float-right {
  float: right !important;
}

/* line 17, ../sass/partials/helpers/_float.scss */
.float-none {
  float: none !important;
}

/* ======================================================================================
   @HELPERS -> PULL
   ====================================================================================== */
/*
	Usage: 
		Pull elements to the left, right or center of their parent container. Elements pulled to the left or right are floated with any surrounding element(s) flowing around it. Typical usage is for aligning images to either the left or right of it's accompanying content.
	
	Demo:
		Style Guide -> Helpers -> Pull
*/
/* line 18, ../sass/partials/helpers/_pull.scss */
.pull-left img,
.pull-right img,
.pull-center img {
  display: block;
}

/* line 21, ../sass/partials/helpers/_pull.scss */
.pull-left {
  float: left;
  margin-right: 24px;
  margin-right: 1.5rem;
}

/* line 26, ../sass/partials/helpers/_pull.scss */
.pull-right {
  float: right;
  margin-left: 24px;
  margin-left: 1.5rem;
}

/* line 31, ../sass/partials/helpers/_pull.scss */
.pull-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* ======================================================================================
   @HELPERS - VERTICAL ALIGNMENTS
   ====================================================================================== */
/*
	Usage: 
		Changes the vertical alignment of an element.
	
	Demo:
		Style Guide -> Helpers -> Vertical Alignments
*/
/* line 13, ../sass/partials/helpers/_vertical-alignments.scss */
.align-top {
  vertical-align: top !important;
}

/* line 15, ../sass/partials/helpers/_vertical-alignments.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 17, ../sass/partials/helpers/_vertical-alignments.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 19, ../sass/partials/helpers/_vertical-alignments.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* Print */
@media print {
  /* ======================================================================================
     @PRINT
     ====================================================================================== */
  /* 
  	Note: all print styles live in context with their corresponding rule sets except styles set here as they cannot be used in context i.e. they need to be set globally, it is okay to use `!important` here as we're doing it pre-emptively i.e. you know you will always want the rule it's applied too to take precedence.
  */
  /* =======================================================================
     HIDE
     ======================================================================= */
  /* line 16, ../sass/partials/print/_print.scss */
  nav,
  video,
  audio {
    display: none !important;
  }

  /* =======================================================================
     RESET
     ======================================================================= */
  /* line 25, ../sass/partials/print/_print.scss */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    border-color: #000 !important;
    -ms-filter: none !important;
    /* Old IE */
  }

  /* =======================================================================
     PAGE BREAKS / ORPHANS and WIDOWS
     ======================================================================= */
  /* [PAGE BREAKS]
  -------------------------------------------------------*/
  /* After */
  /* line 45, ../sass/partials/print/_print.scss */
  h2, .h2,
  h3, .h3, .nav-list .h4, .nav-list .island-button h2, .island-button .nav-list h2 {
    page-break-after: avoid;
  }

  /* Inside */
  /* line 49, ../sass/partials/print/_print.scss */
  tr,
  img,
  pre,
  blockquote {
    page-break-inside: avoid;
  }

  /* [ORPHANS and WIDOWS]
  -------------------------------------------------------*/
  /* line 56, ../sass/partials/print/_print.scss */
  p,
  h2, .h2,
  h3, .h3, .nav-list .h4, .nav-list .island-button h2, .island-button .nav-list h2 {
    orphans: 3;
    widows: 3;
  }
}
