@charset "UTF-8";
/*
▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂

Old IE (IE < 9) stylesheet

	Usage:
		Refer to the 'Usage' section in 'main.scss'.

▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂
*/
/* ======================================================================================
   @SASS SETTINGS
   ====================================================================================== */
/* [VARS]
-------------------------------------------------------*/
/* For targetting old IE (IE < 9) */
/* Set the max width breakpoint of the media query CSS we want to grab i.e. anything above this width will be discarded  */
/* 
	Note: '1500' is the max width for the page container as declared by the `$page-container-max-width` var in 'utils/vars'.
*/
/* [IMPORTS]
-------------------------------------------------------*/
/* Import everything from 'main.scss' */
/*
▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂

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 */
/*2.5*/
/* Triple */
/* [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 */
/* --Brand color variations: http://www.colorhexa.com/1983c0-- */
/* Base text color */
/* Link colors */
/* --Greyscale-- */
/* Light */
/* Lighter */
/* Lightest */
/* Off white */
/* Grey fill */
/* 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 */
/* ======================================================================================
   @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.
 */
/*b,
strong {
    font-weight: 500; 
}
.strong{font-weight:700;}*/
/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 125, ../sass/partials/utils/_normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 133, ../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 143, ../sass/partials/utils/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 152, ../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 164, ../sass/partials/utils/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 172, ../sass/partials/utils/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 180, ../sass/partials/utils/_normalize.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 188, ../sass/partials/utils/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 196, ../sass/partials/utils/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 200, ../sass/partials/utils/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 212, ../sass/partials/utils/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 220, ../sass/partials/utils/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 232, ../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 245, ../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 256, ../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 270, ../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 282, ../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 295, ../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 307, ../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 317, ../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 329, ../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 342, ../sass/partials/utils/_normalize.scss */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 350, ../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 361, ../sass/partials/utils/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 374, ../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 95, ../sass/partials/utils/_reset.scss */
ol,
ul {
  list-style: none;
}

/* endif */
/* 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, h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6, table, .quote, .quote blockquote, hr, pre, .grid,
.grid-item, .island,
.islet, .slats, .slats-img,
.slats-img-rev, .divider, .feedback-block, form .panel p, .form-main-field, .pull-left,
.pull-right,
.pull-center {
  margin-bottom: 21px;
  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, h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child, table:last-child, .quote:last-child, .quote blockquote:last-child, hr: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 .panel p: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 870, ../sass/partials/utils/_mixins.scss */
.island:after,
.islet:after, .slats:after, .flexslider .slides:after, .modal-footer: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 863, ../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 */
/* line 40, ../sass/partials/utils/placeholders/_image-replacement.scss */
.flex-control-paging a, .flex-direction-nav a {
  text-indent: -9999px;
}

/* ======================================================================================
   @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.71429em;
  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, .logo img, .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;
}

/* ======================================================================================
   @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;
}
@font-face {
  font-family: 'emoticons';
  src: url("fonts/emoticons.eot?-erybr4");
  src: url("fonts/emoticons.eot?#iefix-erybr4") format("embedded-opentype"), url("fonts/emoticons.ttf?-erybr4") format("truetype"), url("fonts/emoticons.woff?-erybr4") format("woff"), url("fonts/emoticons.svg?-erybr4#emoticons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ======================================================================================
   @BASE -> MAIN
   ====================================================================================== */
/* line 5, ../sass/partials/base/_main.scss */
html {
  font-size: 0.93333em;
  line-height: 1.5;
  font-weight: 300;
}

/* line 11, ../sass/partials/base/_main.scss */
body {
  background-color: #000;
  /* Transition */
  -webkit-animation: fade-in 1.5s 0.5s both;
  animation: fade-in 1.5s 0.5s both;
}

/* 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: "Quicksand", Arial, Helvetica, sans-serif;
  color: #000;
}

/* line 37, ../sass/partials/base/_main.scss */
.black {
  background-color: #000;
}

/* ======================================================================================
   @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: #2b5e7f;
  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: gray;
}
/* line 14, ../sass/partials/base/_links.scss */
a:hover, a:focus {
  /*color: $color-brand;*/
  /*text-decoration: underline;*/
}
/* line 22, ../sass/partials/base/_links.scss */
a[href^="tel:"] {
  color: inherit;
  text-decoration: inherit;
  cursor: text;
  /* Pseudo classes */
}
/* line 863, ../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 30, ../sass/partials/base/_links.scss */
.download {
  margin: 0.2em 0 0.5em 0;
  display: inline-block;
}

/*Admin*/
/* line 34, ../sass/partials/base/_links.scss */
.dashboard a:hover, .dashboard a:focus {
  text-decoration: none;
}

/* Print */
@media print {
  /* line 42, ../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 46, ../sass/partials/base/_links.scss */
  a[href]:after,
  abbr[title]:after {
    font-size: 80%;
    color: gray !important;
  }

  /* line 52, ../sass/partials/base/_links.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 54, ../sass/partials/base/_links.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Don't show the `href` attr value for the following */
  /* line 57, ../sass/partials/base/_links.scss */
  .header a[href]:after,
  .url[href]:after,
  a[href^="tel:"]:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
}
/* ======================================================================================
   @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: 21px;
  margin-left: 1.5rem;
  /* Increase left indent at this breakpoint */
  margin-left: 42px;
  margin-left: 3rem;
}

/* [LISTS]
-------------------------------------------------------*/
/* Unordered and Ordered lists via the 'list' class */
/* line 27, ../sass/partials/base/_lists.scss */
.list,
.list ul,
.list ol {
  /*@include to-rem(margin-left, $spacing-dbl);*/
  margin-left: 1.1em;
  margin-bottom: 1.5em;
}

/* half indent */
/* line 35, ../sass/partials/base/_lists.scss */
.list-indent-half {
  margin-left: 21px;
  margin-left: 1.5rem;
}

/* unordered bullets */
/* line 40, ../sass/partials/base/_lists.scss */
ul.list {
  list-style: disc !important;
}

/* line 44, ../sass/partials/base/_lists.scss */
.list ul {
  list-style: circle;
}

/* line 46, ../sass/partials/base/_lists.scss */
.list ul ul {
  list-style: square;
}

/* ordered bullets */
/* line 49, ../sass/partials/base/_lists.scss */
ol.list {
  list-style: decimal;
}

/* line 51, ../sass/partials/base/_lists.scss */
.list ol {
  list-style: lower-alpha;
}

/* line 53, ../sass/partials/base/_lists.scss */
.list ol ol {
  list-style: lower-roman;
}

/* [DEFINITION]
-------------------------------------------------------*/
/* line 59, ../sass/partials/base/_lists.scss */
dt {
  font-weight: 700;
}

/* [CUSTOM] 
-------------------------------------------------------*/
/*Alternate coloured backgrounds*/
/* line 65, ../sass/partials/base/_lists.scss */
.list-colour-alt {
  /*.form-main-field {
      .form-main-label {
          position: relative;
          top: 0.5em; 
          left: -0.75em;
      }
  }*/
}
/* line 68, ../sass/partials/base/_lists.scss */
.list-colour-alt div:after {
  content: "";
  display: table;
  clear: both;
}
/* line 73, ../sass/partials/base/_lists.scss */
.list-colour-alt div.form-main-field {
  padding: 1em 0;
  margin-bottom: 0;
}
/* line 76, ../sass/partials/base/_lists.scss */
.list-colour-alt div.form-main-field:nth-child(odd) {
  background: #f2f2f2;
}
/* line 81, ../sass/partials/base/_lists.scss */
.list-colour-alt div .icon {
  padding-left: 0.5em;
}
/* line 82, ../sass/partials/base/_lists.scss */
.list-colour-alt div .icon-success:before {
  color: #2b4119;
}
/* line 83, ../sass/partials/base/_lists.scss */
.list-colour-alt div .icon-warning:before {
  color: #6f0f0f;
}
/* line 84, ../sass/partials/base/_lists.scss */
.list-colour-alt div .btn-sml {
  float: right;
}
/* line 86, ../sass/partials/base/_lists.scss */
.list-colour-alt div .btn-sml:before {
  content: "Configuration";
}
/* line 101, ../sass/partials/base/_lists.scss */
.list-colour-alt .table-admin label {
  margin: 0;
}

/* GRAPHICAL LISTS */
/*Arrows*/
/* line 115, ../sass/partials/base/_lists.scss */
.list-arrow {
  margin-left: 0;
}
/* line 118, ../sass/partials/base/_lists.scss */
.list-arrow li {
  background: transparent url(img/icons/icon-right.png) no-repeat -0.8em -5px;
  padding-left: 1.5em;
}

/*Tick circles*/
/* line 124, ../sass/partials/base/_lists.scss */
.list-circle-tick {
  margin-left: 0;
}
/* line 127, ../sass/partials/base/_lists.scss */
.list-circle-tick li {
  background: transparent url(img/icons/icon-green-tick.png) no-repeat 0em -1px;
  padding-left: 2em;
}

/*Available Time*/
/* line 135, ../sass/partials/base/_lists.scss */
.hours strong {
  width: 6.42857em;
  display: inline-block;
}

/* line 138, ../sass/partials/base/_lists.scss */
.availability-time-row select {
  top: 0 !important;
  padding: 0.5em 2em 0.5em 0.5em;
  margin-right: 0.5em;
}
/* line 143, ../sass/partials/base/_lists.scss */
.availability-time-row .txt-input {
  margin-right: 0.5em;
}
/* line 144, ../sass/partials/base/_lists.scss */
.availability-time-row .btn-main {
  position: relative;
  top: -1px;
}

/* line 148, ../sass/partials/base/_lists.scss */
.secondary-page ul, .secondary-page ol, .content-body ul, .content-body ol {
  margin: 1em 0 1em 1.2em;
}
/* line 151, ../sass/partials/base/_lists.scss */
.secondary-page ul, .content-body ul {
  list-style: disc;
}
/* line 154, ../sass/partials/base/_lists.scss */
.secondary-page ul.content-docs, .secondary-page ul.accordion, .secondary-page ul.tab-nav, .content-body ul.content-docs, .content-body ul.accordion, .content-body ul.tab-nav {
  list-style: none;
  margin-left: 0;
}
/* line 157, ../sass/partials/base/_lists.scss */
.secondary-page ul.content-docs li:before, .secondary-page ul.accordion li:before, .secondary-page ul.tab-nav li:before, .content-body ul.content-docs li:before, .content-body ul.accordion li:before, .content-body ul.tab-nav li:before {
  display: none;
}
/* line 162, ../sass/partials/base/_lists.scss */
.secondary-page ol, .content-body ol {
  counter-reset: li;
}
/* line 164, ../sass/partials/base/_lists.scss */
.secondary-page ol li, .content-body ol li {
  counter-increment: li;
}
/* line 166, ../sass/partials/base/_lists.scss */
.secondary-page ol li:before, .content-body ol li:before {
  content: counter(li);
  color: #54BF9D;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/*PDF*/
/* line 178, ../sass/partials/base/_lists.scss */
ul li {
  position: relative;
}
/* line 179, ../sass/partials/base/_lists.scss */
ul li .icon-pdf, ul li .icon-word, ul li .icon-excel {
  position: absolute;
  left: -1.3em;
}

/* ======================================================================================
   @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;
}

/*MISCELLANEOUS*/
/* line 23, ../sass/partials/base/_embedded-content.scss */
.percentage {
  width: 7.85714em;
  height: 7.85714em;
  text-align: center;
  padding-top: 1.5em;
  color: #f0668e;
  /*background: transparent url('img/percent-complete-tracks.png') no-repeat 0 0;*/
}
/* line 31, ../sass/partials/base/_embedded-content.scss */
.percentage .h2 {
  font-size: 1.8em;
  margin-bottom: -0.2em;
  line-height: 1.5em;
  color: #f0668e !important;
}
/* line 38, ../sass/partials/base/_embedded-content.scss */
.percentage span {
  font-size: 0.8em;
}

/* line 44, ../sass/partials/base/_embedded-content.scss */
.content-body img.full-width {
  width: 100%;
}

/* ======================================================================================
   @BASE -> PARAGRAPHS
   ====================================================================================== */
/* line 7, ../sass/partials/base/_paragraphs.scss */
.main p, .secondary-page p {
  margin-bottom: 1.2em;
}

/*.console-bg {
    .content-body {
        color:#000;
    }
}*/
/* ======================================================================================
   @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,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: normal;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  position: relative;
}

/* H1 */
/* line 25, ../sass/partials/base/_headings.scss */
h1, .h1 {
  font-size: 35px;
  font-size: 2.5rem;
  line-height: 1.2;
  line-height: 1.07143em;
}
/* line 28, ../sass/partials/base/_headings.scss */
h1:after, .h1:after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  width: 4em;
  left: 50%;
  margin-left: -2em;
  border-bottom: 1px solid #fff;
}

/* H2 */
/* line 38, ../sass/partials/base/_headings.scss */
h2, .h2 {
  font-size: 22px;
  font-size: 1.57143rem;
  line-height: 1.90909;
}
/* line 40, ../sass/partials/base/_headings.scss */
h2:after, .h2:after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  width: 4em;
  left: 50%;
  margin-left: -2em;
  border-bottom: 1px solid #000 !important;
}

/* H3 */
/* line 50, ../sass/partials/base/_headings.scss */
h3, .h3 {
  font-size: 20px;
  font-size: 1.42857rem;
  line-height: 1.05;
}

/* H4 */
/* line 55, ../sass/partials/base/_headings.scss */
h4, .h4 {
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.3125;
}

/* H5 */
/* line 60, ../sass/partials/base/_headings.scss */
h5, .h5 {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

/* H6 */
/* line 66, ../sass/partials/base/_headings.scss */
h6, .h6 {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.5;
}

/*Static pages*/
/* line 72, ../sass/partials/base/_headings.scss */
.secondary-page h2, .secondary-page .h2,
.secondary-page h3, .secondary-page .h3,
.secondary-page h4, .secondary-page .h4 {
  margin: 1em 0 0.5em 0;
}

/* line 79, ../sass/partials/base/_headings.scss */
.module-heading {
  text-transform: none;
}

/*.non-palm-three-quarters,*/
/* line 84, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds {
  position: relative;
}
/* line 86, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .module-heading {
  font-size: 1.8em;
  line-height: 1.2em;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 0.5em 1em;
  border-bottom: 2px solid #082e3e;
}
/* line 94, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .module-heading.light-blue {
  border-bottom: 2px solid #4cb6bd;
}
/* line 97, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .module-heading.orange {
  border-bottom: 2px solid #faae40;
}
/* line 100, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .module-heading.blue {
  border-bottom: 2px solid #2b5e7f;
}
/* line 103, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .module-heading.purple {
  border-bottom: 2px solid #b55ca4;
}
/* line 106, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .module-heading.yellow {
  border-bottom: 2px solid #efca27;
}
/* line 112, ../sass/partials/base/_headings.scss */
.non-palm-two-thirds .content-media .module-heading {
  border-bottom: 0;
  padding: 0 0 1em 0;
}

/* line 119, ../sass/partials/base/_headings.scss */
.edit-section {
  display: block;
  padding: 0.5em 0 0 0;
  margin: 1em 1em 1em 0;
}

/* line 125, ../sass/partials/base/_headings.scss */
h2.h4:after {
  border-bottom: 0 !important;
}

/* ======================================================================================
   @BASE -> TABLES
   ====================================================================================== */
/* line 5, ../sass/partials/base/_tables.scss */
table {
  width: 100%;
}

/* line 9, ../sass/partials/base/_tables.scss */
caption,
th {
  text-align: left;
}

/* line 14, ../sass/partials/base/_tables.scss */
th,
td {
  vertical-align: middle;
}

/*Width classes*/
/* line 20, ../sass/partials/base/_tables.scss */
.tiny {
  width: 1%;
}

/* line 24, ../sass/partials/base/_tables.scss */
.short {
  width: 12.5%;
}

/* line 28, ../sass/partials/base/_tables.scss */
.med {
  width: 20%;
}

/* line 32, ../sass/partials/base/_tables.scss */
.long {
  width: 35%;
}

/* line 36, ../sass/partials/base/_tables.scss */
.x-long {
  width: 55%;
}

/*Word wrap long URLs*/
/* line 41, ../sass/partials/base/_tables.scss */
td[data-th=URL] {
  /* 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;
}

/* Print */
@media print {
  /* line 61, ../sass/partials/base/_tables.scss */
  thead {
    display: table-header-group;
  }
}
/* ======================================================================================
   GRID TABLES
   ====================================================================================== */
/* line 70, ../sass/partials/base/_tables.scss */
.grid-table {
  display: table;
  width: 100%;
}
/* line 74, ../sass/partials/base/_tables.scss */
.grid-table .grid-row {
  display: table-row;
}
/* line 77, ../sass/partials/base/_tables.scss */
.grid-table .grid-item {
  display: table-cell;
}

/* Other tables */
/* line 83, ../sass/partials/base/_tables.scss */
.table-admin {
  background-color: #fff;
  clear: both;
  /* Zebra striping */
  /*More/Less*/
}
/* line 86, ../sass/partials/base/_tables.scss */
.table-admin td, .table-admin th {
  vertical-align: top;
  /* Width */
}
/* line 89, ../sass/partials/base/_tables.scss */
.table-admin td.tiny, .table-admin th.tiny {
  width: 1%;
}
/* line 93, ../sass/partials/base/_tables.scss */
.table-admin td.strong, .table-admin td .strong, .table-admin th.strong, .table-admin th .strong {
  font-weight: 500;
}
/* line 98, ../sass/partials/base/_tables.scss */
.table-admin th {
  background-color: #082e3e;
  padding: 0.5em;
  color: #fff;
  font-weight: normal;
}
/* line 104, ../sass/partials/base/_tables.scss */
.table-admin th a {
  color: #fff;
}
/* line 108, ../sass/partials/base/_tables.scss */
.table-admin th[title="Card"] img {
  max-width: 1.42857em;
  margin-right: 0.5em;
  margin-top: -0.1em;
}
/* line 112, ../sass/partials/base/_tables.scss */
.table-admin tr:nth-of-type(odd) {
  background: #f2f2f2;
}
/* line 116, ../sass/partials/base/_tables.scss */
.table-admin td {
  text-align: left;
  padding: 0.5em;
}
/* line 120, ../sass/partials/base/_tables.scss */
.table-admin td .toolbar {
  width: 100%;
}
/* line 125, ../sass/partials/base/_tables.scss */
.table-admin .form-main-inputs {
  margin-left: 0;
}
/* line 128, ../sass/partials/base/_tables.scss */
.table-admin .form-main-inputs .custom-cb-label {
  margin: 0;
}
/* line 131, ../sass/partials/base/_tables.scss */
.table-admin .form-main-inputs .custom-cb-label:before {
  border-radius: 0;
}
/* line 137, ../sass/partials/base/_tables.scss */
.table-admin .unread {
  font-weight: 500;
}
/* line 141, ../sass/partials/base/_tables.scss */
.table-admin .js-toggle-content {
  margin-top: 0.5em;
}
/* line 238, ../sass/partials/base/_tables.scss */
.table-admin .toolbar-6-items {
  width: 13.57143em;
}
/* line 242, ../sass/partials/base/_tables.scss */
.table-admin .toolbar-5-items {
  width: 11.78571em;
}
/* line 246, ../sass/partials/base/_tables.scss */
.table-admin .toolbar-4-items {
  width: 9.64286em;
}
/* line 250, ../sass/partials/base/_tables.scss */
.table-admin .toolbar-3-items {
  width: 7.85714em;
}
/* line 254, ../sass/partials/base/_tables.scss */
.table-admin .toolbar-2-items {
  width: 5.71429em;
  /*text-align:right;*/
}
/* line 259, ../sass/partials/base/_tables.scss */
.table-admin .toolbar-1-item {
  width: 3.57143em;
  text-align: right;
}
/* line 267, ../sass/partials/base/_tables.scss */
.table-admin .title {
  position: relative;
}
/* line 270, ../sass/partials/base/_tables.scss */
.table-admin .title .btn-toggle-content-wrap {
  position: absolute;
  right: 0;
  top: 0.2em;
}
/* line 275, ../sass/partials/base/_tables.scss */
.table-admin .title .btn-toggle-content-wrap .btn-faux-link {
  margin-top: 0;
}

/* ASSESSMENT MODULE TABLES */
/* line 284, ../sass/partials/base/_tables.scss */
.table-assessment, .table-admin {
  background-color: #fff;
  text-align: left;
}
/* line 289, ../sass/partials/base/_tables.scss */
.table-assessment tr th, .table-admin tr th {
  background-color: #082e3e;
  color: #fff;
  font-weight: normal;
}
/* line 294, ../sass/partials/base/_tables.scss */
.table-assessment tr th .id-column, .table-admin tr th .id-column {
  width: 0.71429em;
  padding-right: 0;
}
/* line 298, ../sass/partials/base/_tables.scss */
.table-assessment tr th .id-column .icon:before, .table-admin tr th .id-column .icon:before {
  margin-right: 0;
}
/* line 303, ../sass/partials/base/_tables.scss */
.table-assessment tr th h2, .table-admin tr th h2 {
  float: left;
  margin: 0.5em 0 0 0;
}
/* line 308, ../sass/partials/base/_tables.scss */
.table-assessment tr th .btn, .table-admin tr th .btn {
  float: right;
}
/* line 312, ../sass/partials/base/_tables.scss */
.table-assessment tr th.sort-handle-heading, .table-admin tr th.sort-handle-heading {
  padding: 0.8em 0 0.8em 0.5em;
  text-align: center;
  width: 1%;
}
/* line 319, ../sass/partials/base/_tables.scss */
.table-assessment tr th, .table-admin tr th {
  padding: 0.8em;
}
/* line 323, ../sass/partials/base/_tables.scss */
.table-assessment tr td, .table-admin tr td {
  padding: 0.3em 0.8em;
  vertical-align: top;
}
/* line 327, ../sass/partials/base/_tables.scss */
.table-assessment tr td.sort-handle, .table-admin tr td.sort-handle {
  padding: 0.3em 0 0.3em 0.6em;
}
/* line 330, ../sass/partials/base/_tables.scss */
.table-assessment tr td.sort-handle span, .table-admin tr td.sort-handle span {
  display: inline-block;
  text-align: center;
}
/* line 335, ../sass/partials/base/_tables.scss */
.table-assessment tr td.sort-handle .icon:before, .table-admin tr td.sort-handle .icon:before {
  margin-right: 0;
}
/* line 344, ../sass/partials/base/_tables.scss */
.table-assessment tr td a:hover, .table-admin tr td a:hover {
  text-decoration: none;
}
/* line 351, ../sass/partials/base/_tables.scss */
.table-assessment .date, .table-admin .date {
  margin-right: 1em;
}
/* line 355, ../sass/partials/base/_tables.scss */
.table-assessment .message, .table-admin .message {
  width: 16.42857em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 362, ../sass/partials/base/_tables.scss */
.table-assessment .text-full, .table-admin .text-full {
  width: 83%;
  display: inline-block;
}
/* line 367, ../sass/partials/base/_tables.scss */
.table-assessment .text-short, .table-admin .text-short {
  display: none;
}
/* line 371, ../sass/partials/base/_tables.scss */
.table-assessment .short-cell, .table-admin .short-cell {
  width: 3%;
}
/* line 374, ../sass/partials/base/_tables.scss */
.table-assessment .short-cell .disc, .table-admin .short-cell .disc {
  margin-left: 0;
}
/* line 379, ../sass/partials/base/_tables.scss */
.table-assessment .med-cell, .table-admin .med-cell {
  width: 20%;
}
/* line 383, ../sass/partials/base/_tables.scss */
.table-assessment .id-cell, .table-admin .id-cell {
  width: 10%;
}
/* line 387, ../sass/partials/base/_tables.scss */
.table-assessment .name-cell, .table-admin .name-cell {
  width: 20%;
}
/* line 391, ../sass/partials/base/_tables.scss */
.table-assessment .user-type-cell, .table-admin .user-type-cell {
  width: 10.71429em;
}
/* line 395, ../sass/partials/base/_tables.scss */
.table-assessment .date-cell, .table-admin .date-cell {
  width: 6.42857em;
}
/* line 401, ../sass/partials/base/_tables.scss */
.table-assessment tr:last-child td:first-child, .table-admin tr:last-child td:first-child {
  border-bottom-left-radius: 0.5em;
}
/* line 405, ../sass/partials/base/_tables.scss */
.table-assessment tr:last-child td:last-child, .table-admin tr:last-child td:last-child {
  border-bottom-right-radius: 0.5em;
}
/* line 410, ../sass/partials/base/_tables.scss */
.table-assessment .status, .table-admin .status {
  position: absolute;
  right: 2.5em;
  top: -0.82em;
}
/* line 415, ../sass/partials/base/_tables.scss */
.table-assessment .status .icon, .table-admin .status .icon {
  font-size: 2em;
  color: #082e3e;
}
/* line 419, ../sass/partials/base/_tables.scss */
.table-assessment .status .icon:before, .table-admin .status .icon:before {
  margin-right: 0;
}

/* line 476, ../sass/partials/base/_tables.scss */
.table-assessment tr th h2 {
  color: #fff;
}
/* line 480, ../sass/partials/base/_tables.scss */
.table-assessment tr th:first-child {
  width: 0.71429em;
  padding-right: 0;
  text-align: center;
}
/* line 485, ../sass/partials/base/_tables.scss */
.table-assessment tr th:first-child .icon:before {
  margin-right: 0;
}
/* line 491, ../sass/partials/base/_tables.scss */
.table-assessment tr td:first-child {
  vertical-align: middle;
}
/* line 496, ../sass/partials/base/_tables.scss */
.table-assessment .icon-edit {
  width: 5.71429em;
  text-align: center;
}
/* line 500, ../sass/partials/base/_tables.scss */
.table-assessment .icon-edit:before {
  border: 2px solid #082e3e;
  border-radius: 50%;
  padding: 0.4em 0.36em;
}
/* line 508, ../sass/partials/base/_tables.scss */
.table-assessment tr:nth-of-type(odd) {
  background: #f2f2f2;
}
/* line 512, ../sass/partials/base/_tables.scss */
.table-assessment td > a:first-child {
  position: relative;
  width: 100%;
  display: block;
}
/* line 517, ../sass/partials/base/_tables.scss */
.table-assessment td > a:first-child .icon-edit {
  position: absolute;
  right: -0.7em;
  top: -0.2em;
  text-align: right;
}

/*Tables for the messages*/
/* line 542, ../sass/partials/base/_tables.scss */
.table-message tr td {
  cursor: pointer;
}

/* line 549, ../sass/partials/base/_tables.scss */
.table-report .disc {
  margin-left: 0;
}
/* line 553, ../sass/partials/base/_tables.scss */
.table-report .label td {
  background-color: #082e3e;
  color: #fff;
}

/*Resources*/
/* line 560, ../sass/partials/base/_tables.scss */
.resources .table-admin {
  border-bottom: 1px solid #e3e3e3;
}
/* line 561, ../sass/partials/base/_tables.scss */
.resources .table-admin tr th {
  background-color: transparent;
  color: #082e3e;
  border-top: 1px solid #082e3e;
  border-bottom: 1px solid #082e3e;
}
/* line 570, ../sass/partials/base/_tables.scss */
.resources .table-admin tr:last-child td {
  border-radius: 0;
}

/*Responsive tables using data-attributes*/
/*Module training*/
/* line 603, ../sass/partials/base/_tables.scss */
.content-body table {
  background-color: #e3e3e3;
}
/* line 605, ../sass/partials/base/_tables.scss */
.content-body table thead td {
  background-color: #082e3e;
  font-weight: bold;
  color: #fff;
}
/* line 606, ../sass/partials/base/_tables.scss */
.content-body table td {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.5em;
}

/*Custom table*/
/* line 612, ../sass/partials/base/_tables.scss */
.custom-table h6 {
  margin-bottom: 0.5em;
}
/* line 613, ../sass/partials/base/_tables.scss */
.custom-table .linked-question {
  font-size: 80%;
}
/* line 622, ../sass/partials/base/_tables.scss */
.custom-table h6 {
  min-height: 5em;
}

/* line 629, ../sass/partials/base/_tables.scss */
.table-special tr:first-child td {
  background-color: #faebd7;
}

/* line 634, ../sass/partials/base/_tables.scss */
.sortable td {
  border: 0 !important;
  vertical-align: middle !important;
}
/* line 638, ../sass/partials/base/_tables.scss */
.sortable td[data-hr="Avatar"] img {
  max-width: 5em;
}

/* ======================================================================================
   @BASE -> QUOTES
   ====================================================================================== */
/* [INLINE]
-------------------------------------------------------*/
/* line 7, ../sass/partials/base/_quotes.scss */
q {
  quotes: "\2018" "\2019" "\201C" "\201D";
  /* Pseudo elements */
  /* Nested */
}
/* line 10, ../sass/partials/base/_quotes.scss */
q:before {
  content: "\2018";
  /* Left single quotation mark */
  content: open-quote;
}
/* line 15, ../sass/partials/base/_quotes.scss */
q:after {
  content: "\2019";
  /* Right single quotation mark */
  content: close-quote;
}
/* line 21, ../sass/partials/base/_quotes.scss */
q q:before {
  content: "\201C";
  /* Left double quotation mark */
  content: open-quote;
}
/* line 26, ../sass/partials/base/_quotes.scss */
q q:after {
  content: "\201D";
  /* Right double quotation mark */
  content: close-quote;
}

/* [BLOCK]
-------------------------------------------------------*/
/*Other blockquote*/
/* line 37, ../sass/partials/base/_quotes.scss */
.content-body blockquote {
  font-style: italic;
  margin: 0 1em 1em 0;
  padding: 2em 4em 0.5em 3.5em;
  text-align: center;
  position: relative;
  background-color: #082e3e;
  color: #fff;
}
/* line 46, ../sass/partials/base/_quotes.scss */
.content-body blockquote:before, .content-body blockquote:after {
  line-height: 0.1em;
  margin-right: 0.2em;
  font-size: 100px;
  font-family: arial;
  position: absolute;
  color: #bfbfbf;
}
/* line 55, ../sass/partials/base/_quotes.scss */
.content-body blockquote:before {
  content: "\201C";
  top: 0.5em;
  left: 0;
}
/* line 61, ../sass/partials/base/_quotes.scss */
.content-body blockquote:after {
  content: "\201D";
  right: 0;
  bottom: 0;
}

/* line 69, ../sass/partials/base/_quotes.scss */
.quote {
  padding: 1.5em 0;
  /* Reduce the width and center align at this breakpoint */
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  /* Source */
}
/* line 79, ../sass/partials/base/_quotes.scss */
.quote blockquote {
  font-family: Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif;
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.3125;
  font-style: italic;
  color: #262626;
  position: relative;
  quotes: none;
  /* Increase the font size at this breakpoint */
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.3125;
  /* Pseudo element - double quotation marks */
  /* Nested paragraphs */
}
/* line 92, ../sass/partials/base/_quotes.scss */
.quote blockquote:before, .quote blockquote:after {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 100px;
  font-size: 7.14286rem;
  line-height: 1.05;
  font-weight: bold;
  font-style: normal;
  speak: none;
  position: absolute;
}
/* line 101, ../sass/partials/base/_quotes.scss */
.quote blockquote:before {
  content: "\201C";
  top: -0.1em;
  left: -0.56em;
  /* Increase the font size and offsets at this breakpoint */
  font-size: 130px;
  font-size: 9.28571rem;
  line-height: 1.13077;
  top: -0.07692em;
  left: -0.53846em;
}
/* line 113, ../sass/partials/base/_quotes.scss */
.quote blockquote:after {
  content: "\201D";
  top: 1em;
  left: auto;
  right: -0.56em;
}
/* line 120, ../sass/partials/base/_quotes.scss */
.quote blockquote p {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
/* line 125, ../sass/partials/base/_quotes.scss */
.quote figcaption {
  color: gray;
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.75;
  /* Pseudo element - em dash */
}
/* line 129, ../sass/partials/base/_quotes.scss */
.quote figcaption:before {
  content: "\2014";
}

/* line 136, ../sass/partials/base/_quotes.scss */
.quote.flexslider {
  border-left: 2em solid #082e3e;
  border-right: 2em solid #082e3e;
  background-color: #2b5e7f;
  background-image: -webkit-linear-gradient(right, #4cb6bd, #2b5e7f);
  background-image: linear-gradient(to left, #4cb6bd, #2b5e7f);
  width: auto;
  color: #fff;
}
/* line 143, ../sass/partials/base/_quotes.scss */
.quote.flexslider .purely-decorative {
  border-bottom: 0.2em solid #f0668e;
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* line 150, ../sass/partials/base/_quotes.scss */
.quote.flexslider .background-transparent {
  background-color: transparent;
}
/* line 153, ../sass/partials/base/_quotes.scss */
.quote.flexslider .background-transparent:before, .quote.flexslider .background-transparent:after {
  display: none;
}
/* line 158, ../sass/partials/base/_quotes.scss */
.quote.flexslider figcaption p {
  color: #fff;
}
/* line 162, ../sass/partials/base/_quotes.scss */
.quote.flexslider blockquote {
  background-color: transparent;
  margin-right: 0;
  padding-right: 3.5em;
}
/* line 167, ../sass/partials/base/_quotes.scss */
.quote.flexslider blockquote:before, .quote.flexslider blockquote:after {
  font-size: 100px;
  color: #fff;
}
/* line 172, ../sass/partials/base/_quotes.scss */
.quote.flexslider blockquote:before {
  left: 0.1em;
}
/* line 176, ../sass/partials/base/_quotes.scss */
.quote.flexslider blockquote:after {
  right: -0.1em;
  top: auto;
  bottom: -0.5em;
}
/* line 183, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-direction-nav {
  margin-top: 0;
}
/* line 186, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-direction-nav a {
  background-color: transparent;
  margin-top: 0;
  width: 1em;
  height: 3em;
  top: -4em;
}
/* line 193, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-direction-nav a:before {
  font-size: 20px;
}
/* line 197, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-direction-nav a.flex-prev {
  left: -2.8em;
}
/* line 201, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-direction-nav a.flex-next {
  right: -1.5em;
}
/* line 207, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-control-paging {
  margin: 0;
}
/* line 210, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-control-paging a {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  color: transparent;
  width: 1em;
  height: 1em;
}
/* line 219, ../sass/partials/base/_quotes.scss */
.quote.flexslider .flex-control-paging .flex-active {
  background-color: #fff;
  color: #fff;
}

/* ======================================================================================
   @BASE -> TEXT SELECTION
   ====================================================================================== */
/* Firefox */
/* line 6, ../sass/partials/base/_text-selection.scss */
::-moz-selection {
  background: #082e3e;
  text-shadow: none;
  color: #fff;
}

/* Everyone else */
/* line 13, ../sass/partials/base/_text-selection.scss */
::selection {
  background: #082e3e;
  text-shadow: none;
  color: #fff;
}

/* line 19, ../sass/partials/base/_text-selection.scss */
.txt-green {
  color: green;
}

/* line 20, ../sass/partials/base/_text-selection.scss */
.txt-orange {
  color: orange;
}

/* line 21, ../sass/partials/base/_text-selection.scss */
.txt-red {
  color: red;
}

/* line 22, ../sass/partials/base/_text-selection.scss */
.txt-blue {
  color: blue;
}

/* line 23, ../sass/partials/base/_text-selection.scss */
.txt-black {
  color: black;
}

/* line 24, ../sass/partials/base/_text-selection.scss */
.txt-white {
  color: white;
}

/* ======================================================================================
   @BASE -> MISCELLANEOUS
   ====================================================================================== */
/* [HORIZONTAL RULE]
-------------------------------------------------------*/
/* line 7, ../sass/partials/base/_misc.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 0.07143em solid #bfbfbf;
  padding: 0;
  position: relative;
  /* Pesudo element for a more stylised `hr` */
}
/* line 17, ../sass/partials/base/_misc.scss */
hr:after {
  content: "\2767";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  line-height: 0;
  text-align: center;
  color: #bfbfbf;
}

/* [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,
em {
  font-style: normal;
}

/* [SMALL]
-------------------------------------------------------*/
/* line 52, ../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 57, ../sass/partials/base/_misc.scss */
canvas {
  -ms-touch-action: double-tap-zoom;
}

/*Custom*/
/* line 61, ../sass/partials/base/_misc.scss */
.clear:after {
  content: "";
  display: table;
  clear: both;
}

/* line 67, ../sass/partials/base/_misc.scss */
.block-number {
  display: inline-block;
  background-color: #082e3e;
  padding: 0.1em 0.4em;
  margin-right: 0.5em;
  color: #fff;
}

/* line 73, ../sass/partials/base/_misc.scss */
.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 5.5em;
  height: 5.5em;
  text-align: right;
}
/* line 80, ../sass/partials/base/_misc.scss */
.ribbon span {
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
  line-height: 2.3em;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 114px;
  display: block;
  background: #082e3e;
  box-shadow: 0 3px 10px -5px black;
  position: absolute;
  top: 9px;
  right: -31px;
}
/* line 89, ../sass/partials/base/_misc.scss */
.ribbon span:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #79A70A;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79A70A;
}
/* line 95, ../sass/partials/base/_misc.scss */
.ribbon span:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #79A70A;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79A70A;
}

/* line 107, ../sass/partials/base/_misc.scss */
.disc {
  border-radius: 50%;
  display: inline-block;
  height: 1.21429em;
  width: 1.21429em;
  position: relative;
  color: #fff;
}
/* line 115, ../sass/partials/base/_misc.scss */
.disc.green {
  background-color: #082e3e;
}
/* line 116, ../sass/partials/base/_misc.scss */
.disc.orange {
  background-color: #faae40;
}
/* line 117, ../sass/partials/base/_misc.scss */
.disc.blue {
  background-color: #2b5e7f;
}

/* line 120, ../sass/partials/base/_misc.scss */
strong, .strong {
  font-weight: bold;
}

/* line 121, ../sass/partials/base/_misc.scss */
.medium {
  font-weight: 400;
}

/* line 122, ../sass/partials/base/_misc.scss */
.light {
  font-weight: 300;
}

/* line 124, ../sass/partials/base/_misc.scss */
.js-toggle-content {
  padding: 0.8em 0.1em;
}

/*Stack trace*/
/* line 129, ../sass/partials/base/_misc.scss */
.tracecontent, #__asptrace {
  background-color: #fff !important;
}

/*Responsive videos*/
/* line 134, ../sass/partials/base/_misc.scss */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 2em;
}
/* line 142, ../sass/partials/base/_misc.scss */
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Borders*/
/* line 152, ../sass/partials/base/_misc.scss */
.border-top-right {
  border-top-right-radius: 1.7em;
}
/* line 154, ../sass/partials/base/_misc.scss */
.border-top-right .border-top-right {
  border-top-right-radius: 1em;
}

/* line 158, ../sass/partials/base/_misc.scss */
.border-bottom-left {
  border-bottom-left-radius: 1em;
}

/*Characters*/
/* line 164, ../sass/partials/base/_misc.scss */
.characters .tab-nav {
  margin: 0;
}
/* line 166, ../sass/partials/base/_misc.scss */
.characters .tab-nav li {
  margin-right: 0;
  background-color: gray;
}
/* line 169, ../sass/partials/base/_misc.scss */
.characters .tab-nav li div {
  padding: 0.5em;
  position: relative;
}
/* line 173, ../sass/partials/base/_misc.scss */
.characters .tab-nav li div .arrow--up {
  display: none;
}
/* line 178, ../sass/partials/base/_misc.scss */
.characters .tab-nav li img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
/* line 183, ../sass/partials/base/_misc.scss */
.characters .tab-nav li.is-active img, .characters .tab-nav li:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: unset;
}
/* line 189, ../sass/partials/base/_misc.scss */
.characters .tab-nav li.is-active div, .characters .tab-nav li:hover div {
  background-color: #082e3e;
}
/* line 191, ../sass/partials/base/_misc.scss */
.characters .tab-nav li.is-active div strong, .characters .tab-nav li:hover div strong {
  color: #fff;
}
/* line 192, ../sass/partials/base/_misc.scss */
.characters .tab-nav li.is-active div .arrow--up, .characters .tab-nav li:hover div .arrow--up {
  display: block;
  position: absolute;
  top: -0.6em;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #082e3e;
  margin-top: -0.2em;
}
/* line 204, ../sass/partials/base/_misc.scss */
.characters .tab-nav li a {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 0;
}
/* line 213, ../sass/partials/base/_misc.scss */
.characters .tab-content {
  border: 0;
  background-color: #f2f2f2;
  margin-bottom: 1em;
}

/* ======================================================================================
   @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: #082e3e;
  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 -> CONTAINERS
====================================================================================== */
/* line 4, ../sass/partials/layout/_containers.scss */
.container {
  width: 90%;
  min-width: 280px;
  min-width: 20rem;
  max-width: 1300px;
  max-width: 92.85714rem;
  margin: 0 auto;
  /* Print */
}
@media print {
  /* line 4, ../sass/partials/layout/_containers.scss */
  .container {
    width: auto;
  }
}

/* line 13, ../sass/partials/layout/_containers.scss */
.container-pad {
  padding: 0 1.5em;
}

/* line 14, ../sass/partials/layout/_containers.scss */
.container-ball {
  bottom: -1.42857em;
  position: absolute;
  left: 50%;
  margin-left: -24px;
}

/* line 20, ../sass/partials/layout/_containers.scss */
.container--full {
  width: 100%;
  padding-bottom: 2.85714em;
}

/* line 24, ../sass/partials/layout/_containers.scss */
.container-padding {
  padding: 42px 0px;
  padding: 3rem 0rem;
  padding: 63px 0px;
  padding: 4.5rem 0rem;
}

/*Public*/
/* line 33, ../sass/partials/layout/_containers.scss */
.banner {
  background-color: #2b5e7f;
  background-image: -webkit-linear-gradient(right, #4cb6bd, #2b5e7f);
  background-image: linear-gradient(to left, #4cb6bd, #2b5e7f);
  position: relative;
  color: #fff;
}
/* line 38, ../sass/partials/layout/_containers.scss */
.banner > .container > div {
  padding: 3em 0;
}
/* line 47, ../sass/partials/layout/_containers.scss */
.banner h1 {
  text-transform: uppercase;
  font-weight: bold;
}

/* line 52, ../sass/partials/layout/_containers.scss */
.dashboard {
  padding: 5em 0;
}
/* line 54, ../sass/partials/layout/_containers.scss */
.dashboard a {
  color: #000;
}
/* line 55, ../sass/partials/layout/_containers.scss */
.dashboard a img + div {
  font-size: 1.2rem;
}

/* line 60, ../sass/partials/layout/_containers.scss */
.message-body {
  background-color: #fff;
  text-align: left;
}
/* line 63, ../sass/partials/layout/_containers.scss */
.message-body .message-toolbar {
  border-radius: 0;
}
/* line 65, ../sass/partials/layout/_containers.scss */
.message-body .message-toolbar .btn {
  border: 0;
}
/* line 67, ../sass/partials/layout/_containers.scss */
.message-body .message-bar {
  background-color: #082e3e;
  color: #fff;
}
/* line 71, ../sass/partials/layout/_containers.scss */
.message-body .message-header {
  position: relative;
  background-color: #f2f2f2;
  margin-bottom: 0;
}
/* line 75, ../sass/partials/layout/_containers.scss */
.message-body .message-header .message-flag {
  position: absolute;
  right: 0;
  top: 2.5em;
}
/* line 79, ../sass/partials/layout/_containers.scss */
.message-body .message-header .message-flag .icon:before {
  font-size: 2em;
}

/*Help Section*/
/* line 89, ../sass/partials/layout/_containers.scss */
.help-page .list li {
  margin-bottom: 0.5em;
}
/* line 91, ../sass/partials/layout/_containers.scss */
.help-page p {
  margin-bottom: 0.5em;
}
/* line 92, ../sass/partials/layout/_containers.scss */
.help-page .non-palm-three-quarters .islet {
  background-color: #f2f2f2;
}

/* line 94, ../sass/partials/layout/_containers.scss */
.help-page-title {
  background-color: #082e3e;
  color: #fff;
}
/* line 97, ../sass/partials/layout/_containers.scss */
.help-page-title .icon {
  display: inline-block;
  padding: 0.5em;
  margin-right: 0.5em;
  background-color: #082e3e;
}
/* line 102, ../sass/partials/layout/_containers.scss */
.help-page-title .icon:before {
  margin-right: 0;
}

/* line 105, ../sass/partials/layout/_containers.scss */
.help-page-subtitle {
  background-color: #082e3e;
  color: #fff;
  padding: 0.5em;
}

/*Secondary Pages*/
/* line 111, ../sass/partials/layout/_containers.scss */
.secondary-page {
  text-align: left;
  padding-bottom: 1em;
}

/* line 115, ../sass/partials/layout/_containers.scss */
.content-body {
  position: relative;
  z-index: 9;
  background-color: #fff;
  -webkit-box-shadow: 10px 0px 14px -10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 10px 0px 14px -10px rgba(0, 0, 0, 0.25);
  box-shadow: 10px 0px 14px -10px rgba(0, 0, 0, 0.25);
  padding: 1.5em;
}
/* line 123, ../sass/partials/layout/_containers.scss */
.content-body p {
  padding-bottom: 0.5em;
}
/* line 124, ../sass/partials/layout/_containers.scss */
.content-body h3 {
  text-transform: none;
  font-weight: normal;
  background-color: #f2f2f2;
  border-left: 0.2em solid #4cb6bd;
  padding: 0.5em;
}

/*Register*/
/* line 134, ../sass/partials/layout/_containers.scss */
.register .slats-img {
  font-weight: bold;
}
/* line 135, ../sass/partials/layout/_containers.scss */
.register .slats-body {
  text-align: left;
}
/* line 136, ../sass/partials/layout/_containers.scss */
.register .form-main-label {
  font-weight: bold;
}
/* line 138, ../sass/partials/layout/_containers.scss */
.register .register-footer {
  position: relative;
}
/* line 141, ../sass/partials/layout/_containers.scss */
.register .register-footer .btn-main-compact {
  border: 0;
  text-transform: none;
  background-color: gray;
  position: absolute;
  left: 1.5em;
  top: 28%;
}

/* Module pages */
/* line 176, ../sass/partials/layout/_containers.scss */
.module-navigation {
  text-align: right;
}
/* line 180, ../sass/partials/layout/_containers.scss */
.module-navigation .start-exit {
  background-color: #2b5e7f;
  color: #fff;
}
/* line 183, ../sass/partials/layout/_containers.scss */
.module-navigation .start-exit + .btn-main {
  background-color: #4cb6bd;
}

/*Module menu*/
/* line 190, ../sass/partials/layout/_containers.scss */
.menu-panel {
  background: #262626 url("img/menu.png") no-repeat right 0;
  padding: 1.5em 2em 1.5em 0.5em;
}
/* line 193, ../sass/partials/layout/_containers.scss */
.menu-panel a {
  color: #fff;
}

/* line 200, ../sass/partials/layout/_containers.scss */
.module-menu {
  float: right;
  max-width: 17.85714em;
  margin-left: 0;
  margin-bottom: 0;
  color: #fff;
  list-style: none !important;
}
/* line 207, ../sass/partials/layout/_containers.scss */
.module-menu .subnav {
  list-style: none !important;
}
/* line 208, ../sass/partials/layout/_containers.scss */
.module-menu li {
  padding-bottom: 1em;
  padding-left: 1.5em;
  background: transparent url("/img/icons/circle.png") no-repeat 0 0.25em;
}
/* line 211, ../sass/partials/layout/_containers.scss */
.module-menu li.active {
  background: transparent url("/img/icons/dot.png") no-repeat 0 0.25em;
}
/* line 214, ../sass/partials/layout/_containers.scss */
.module-menu li.complete {
  background: transparent url("/img/icons/circle-complete.png") no-repeat 0 0.25em;
}
/* line 218, ../sass/partials/layout/_containers.scss */
.module-menu li .subnav li {
  padding-bottom: 0;
  padding-top: 0.5em;
  background-position-y: 0.75em;
}
/* line 224, ../sass/partials/layout/_containers.scss */
.module-menu .menu {
  display: none;
  border: 1px solid #fff;
  padding: 0.5em 1.5em;
  font-size: 2em;
  margin-bottom: 1em;
  background-image: none;
  display: block;
}
/* line 236, ../sass/partials/layout/_containers.scss */
.module-menu h3 {
  padding: 0.5em;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: normal;
}
/* line 240, ../sass/partials/layout/_containers.scss */
.module-menu h3 img {
  margin-right: 0.3em;
  position: relative;
  top: -0.1em;
}
/* line 246, ../sass/partials/layout/_containers.scss */
.module-menu ul {
  margin-left: 0;
}

/*Values*/
/* line 249, ../sass/partials/layout/_containers.scss */
.values {
  background-color: #2b5e7f;
  background-image: -webkit-linear-gradient(right, #4cb6bd, #2b5e7f);
  background-image: linear-gradient(to left, #4cb6bd, #2b5e7f);
  color: #fff;
}
/* line 252, ../sass/partials/layout/_containers.scss */
.values .values-heading {
  background-color: #082e3e;
  color: #fff;
  padding: 0.5em;
}
/* line 257, ../sass/partials/layout/_containers.scss */
.values .value-row {
  padding: 0 0.5em;
  display: table;
  width: 100%;
}
/* line 261, ../sass/partials/layout/_containers.scss */
.values .value-row label, .values .value-row .slides {
  display: table-cell;
  vertical-align: middle;
}
/* line 264, ../sass/partials/layout/_containers.scss */
.values .value-row label {
  width: 30%;
}
/* line 267, ../sass/partials/layout/_containers.scss */
.values .value-row .slides {
  background: transparent url(img/home-banner-bg.png) no-repeat 50% 0;
}
/* line 268, ../sass/partials/layout/_containers.scss */
.values .value-row table {
  background-color: transparent;
}
/* line 270, ../sass/partials/layout/_containers.scss */
.values .value-row table td {
  border: 0;
}
/* line 272, ../sass/partials/layout/_containers.scss */
.values .value-row .txt-input {
  border: 0;
  box-shadow: none;
}
/* line 276, ../sass/partials/layout/_containers.scss */
.values .value-row input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 0.5em;
  border-radius: 5px;
  background: #082e3e;
  outline: none;
  padding: 0;
  margin: 0;
}
/* line 286, ../sass/partials/layout/_containers.scss */
.values .value-row:nth-child(odd) {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0+100 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=1 );
  /* IE6-9 */
}
/* line 293, ../sass/partials/layout/_containers.scss */
.values .value-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  cursor: pointer;
  background: transparent url(/img/icons/icon-anchor.png) no-repeat 0 0;
  background-size: contain;
}
/* line 302, ../sass/partials/layout/_containers.scss */
.values .value-row input[type=range]::-moz-range-thumb {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  cursor: pointer;
  background: transparent url(/img/icons/icon-anchor.png) no-repeat 0 0;
  background-size: contain;
}
/* line 310, ../sass/partials/layout/_containers.scss */
.values .value-row input[type="range"]::-ms-thumb {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  cursor: pointer;
  background: transparent url(/img/icons/icon-anchor.png) no-repeat 0 0;
  background-size: contain;
}

/* ======================================================================================
   @LAYOUT -> HEADER
   ====================================================================================== */
/* line 5, ../sass/partials/layout/_header.scss */
.header {
  font-size: 13px;
  font-size: 0.92857rem;
  line-height: 1.61538;
  background-color: #082e3e;
  border-top: 0.4em solid #f0668e;
  position: relative;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  /* Base rules */
  -webkit-box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.35);
}
/* line 15, ../sass/partials/layout/_header.scss */
.header a {
  text-decoration: none;
  font-weight: normal;
}
/* line 20, ../sass/partials/layout/_header.scss */
.header p {
  margin-bottom: 0;
}

/* User navigation */
/* line 39, ../sass/partials/layout/_header.scss */
.nav-user {
  /* Items */
  /* Links */
  text-align: center;
  /*Drop down customisation*/
}
/* line 41, ../sass/partials/layout/_header.scss */
.nav-user li {
  /* Pseudo element - slash */
  /* Remove slash at this breakpoint */
}
/* line 43, ../sass/partials/layout/_header.scss */
.nav-user li:after {
  color: #082e3e;
}
/* line 48, ../sass/partials/layout/_header.scss */
.nav-user li:after {
  display: none;
}
/* line 54, ../sass/partials/layout/_header.scss */
.nav-user a {
  /* Pad out and add rounded corners at this breakpoint */
  padding: 1em;
  margin-bottom: 1px;
  /* Pseudo classes + active state */
  /* Reveal link text at this breakpoint */
}
/* line 55, ../sass/partials/layout/_header.scss */
.nav-user a .arrow {
  display: none;
}
/* line 62, ../sass/partials/layout/_header.scss */
.nav-user a:hover, .nav-user a:focus, .nav-user a.is-active {
  position: relative;
}
/* line 66, ../sass/partials/layout/_header.scss */
.nav-user a:hover .arrow, .nav-user a:focus .arrow, .nav-user a.is-active .arrow {
  display: block;
  position: absolute;
  bottom: -2.7em;
  left: 50%;
  transform: translateX(-50%);
}
/* line 75, ../sass/partials/layout/_header.scss */
.nav-user a .hide-visually {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  margin: 0;
}
/* line 115, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links > a:hover {
  background-color: gray;
}
/* line 120, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links ul li {
  text-align: left;
  margin-left: 0 !important;
}
/* line 123, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links ul li a {
  border: 0;
  border-left: 0 !important;
  border-bottom: 1px solid #000;
  padding: 0.4em 0.3em 0.4em 0.6em;
  display: block;
  border-radius: 0;
  width: 8.57143em;
  font-size: 0.9em;
}
/* line 133, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links ul li a:hover {
  background-color: gray;
}
/* line 139, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links ul.my-modules a {
  width: 12.85714em;
}
/* line 144, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links ul.my-account a {
  width: 10.71429em;
}
/* line 164, ../sass/partials/layout/_header.scss */
.nav-user .nav-main-conditional-links.more {
  display: none;
}
/* line 180, ../sass/partials/layout/_header.scss */
.nav-user .js-drop-down a {
  margin-bottom: 0;
}

/*Navigation by users*/
/*PUBLIC MENU*/
/* line 204, ../sass/partials/layout/_header.scss */
.public-menu {
  /*For responsive design*/
}
/* line 205, ../sass/partials/layout/_header.scss */
.public-menu > .nav-group {
  background-color: #2b5e7f;
  background-image: -webkit-linear-gradient(right, #4cb6bd, #2b5e7f);
  background-image: linear-gradient(to left, #4cb6bd, #2b5e7f);
}
/* line 207, ../sass/partials/layout/_header.scss */
.public-menu > .nav-group a {
  color: #fff;
  width: 7.14286em;
}
/* line 209, ../sass/partials/layout/_header.scss */
.public-menu > .nav-group .horiz-list li {
  display: inline-block;
}
/* line 215, ../sass/partials/layout/_header.scss */
.public-menu .btn-menu-toggle {
  float: right;
  margin-left: 0.3em;
}

/*REGISTERED USERS*/
/* line 226, ../sass/partials/layout/_header.scss */
.user-menu .btn-menu-toggle {
  float: right;
}
/* line 229, ../sass/partials/layout/_header.scss */
.user-menu > .nav-group {
  background-color: #2b5e7f;
  background-image: -webkit-linear-gradient(right, #4cb6bd, #2b5e7f);
  background-image: linear-gradient(to left, #4cb6bd, #2b5e7f);
}
/* line 231, ../sass/partials/layout/_header.scss */
.user-menu > .nav-group a {
  color: #fff;
  width: 6.07143em;
}

/*ADMIN*/
/* line 244, ../sass/partials/layout/_header.scss */
.admin-menu {
  background-color: #000;
  padding: 0.4em 1em;
}
/* line 248, ../sass/partials/layout/_header.scss */
.admin-menu .nav-super-admin {
  /*position:absolute;*/
  z-index: 99;
  text-align: right;
}

/* line 278, ../sass/partials/layout/_header.scss */
.nav-quick-links {
  vertical-align: middle;
  text-align: right;
  color: #fff;
  text-align: right;
}
/* line 281, ../sass/partials/layout/_header.scss */
.nav-quick-links a:hover {
  background-color: #2373a0;
  background-image: -webkit-linear-gradient(left, #082e3e, #2373a0);
  background-image: linear-gradient(to right, #082e3e, #2373a0);
}
/* line 285, ../sass/partials/layout/_header.scss */
.nav-quick-links .nav-user {
  position: unset;
  border: 0;
}
/* line 287, ../sass/partials/layout/_header.scss */
.nav-quick-links .nav-user li {
  display: inline-block;
}
/* line 288, ../sass/partials/layout/_header.scss */
.nav-quick-links .nav-user li a {
  color: #fff;
  border: 0;
  padding: 0 0.5em;
}
/* line 301, ../sass/partials/layout/_header.scss */
.nav-quick-links .nav-user {
  text-align: right;
}
/* line 303, ../sass/partials/layout/_header.scss */
.nav-quick-links .nav-user a {
  padding: 0.1em 0.4em;
  color: #fff;
  font-weight: normal;
}
/* line 307, ../sass/partials/layout/_header.scss */
.nav-quick-links .nav-user a .icon:before {
  margin-right: 0.3em;
  top: -2px;
}
/* line 310, ../sass/partials/layout/_header.scss */
.nav-quick-links .admin-user-area {
  display: inline;
}

/* line 316, ../sass/partials/layout/_header.scss */
.header_brand-user {
  /* Increase the width at this breakpoint range */
  /* Base rules */
  /* Inner container */
  /* Faux table layout at this breakpoint*/
  /*@include respond-min($non-palm) {*/
  display: table;
  /*width: 100%;*/
  padding: 1em 0;
  /*}*/
}
/* line 322, ../sass/partials/layout/_header.scss */
.header_brand-user,
.header_brand-user a {
  color: #000;
}
/* line 332, ../sass/partials/layout/_header.scss */
.header_brand-user div {
  display: table-cell;
  width: 33%;
}
/* line 338, ../sass/partials/layout/_header.scss */
.header_brand-user .nav-group {
  vertical-align: middle;
}
/* line 340, ../sass/partials/layout/_header.scss */
.header_brand-user .nav-group .btn-main {
  background-color: #4cb6bd;
}
/* line 342, ../sass/partials/layout/_header.scss */
.header_brand-user .nav-group.nav-group-2 {
  /*@include respond-max($palm){
      nav{position:absolute;top:1.5em;right:7em;}
      .btn-main {padding:0.68em 0.5em;}
  }
  @include respond-max(400){
      nav{right:6em;}
  }*/
}
/* line 343, ../sass/partials/layout/_header.scss */
.header_brand-user .nav-group.nav-group-2 a {
  color: #fff;
}

/* Logo */
/* line 368, ../sass/partials/layout/_header.scss */
.logo {
  display: block;
  text-align: left;
  float: left;
  margin: 0;
  /*&.logo-big {
      display: none;
  }
  &.logo-small {
      padding-top:0.5em;
  }*/
            /*&.logo-big {
                display: block;
            }

            &.logo-small {
                display: none;
            }*/
  /* Pseudo classes */
}
/* line 381, ../sass/partials/layout/_header.scss */
.logo img {
  margin-left: 0;
  max-width: 21.42857em;
}
/* line 401, ../sass/partials/layout/_header.scss */
.logo:hover img, .logo:focus img {
  filter: alpha(opacity="70");
}

/* [Navigation] --------------------------------------------------------------------------------------------- */
/* line 409, ../sass/partials/layout/_header.scss */
.header_nav {
  background-color: #fff;
  /* Base rules */
  /* Container */
}
/* line 412, ../sass/partials/layout/_header.scss */
.header_nav a, .header_nav .nav-main .btn {
  color: #fff;
}
/* line 416, ../sass/partials/layout/_header.scss */
.header_nav .container {
  position: relative;
  padding: 0.25em 0;
  /*width:100%;*/
  /* Remove padding and increase width at this breakpoint */
  padding: 0;
  /* Restore default width at this breakpoint */
  width: 90%;
}
/* line 433, ../sass/partials/layout/_header.scss */
.header_nav .btn-menu-toggle {
  padding: 0.75em 0.5em;
  width: 4rem;
  height: 2.3rem;
}
/* line 445, ../sass/partials/layout/_header.scss */
.header_nav .btn-menu-toggle, .header_nav .btn-main.btn-menu-toggle.is-expanded, .header_nav .btn-main:hover, .header_nav .btn-main:focus {
  border: 0;
  top: 0.5em;
}

/* --Main navigation-- */
/* Toggle the menu via jQuery */
/* line 453, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle {
  /* Hide */
  display: none;
  /* Show when expanded */
  /* Always show at this breakpoint */
  display: block;
}
/* line 457, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle.is-expanded {
  display: block;
}
/* line 459, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle.is-expanded .nav-user {
  background-color: #fff;
  margin-top: 0.3em;
  border-top: 1px solid #f2f2f2;
}
/* line 463, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle.is-expanded .nav-user li {
  border-bottom: 1px solid #f2f2f2;
}
/* line 464, ../sass/partials/layout/_header.scss */
.js .js-menu-toggle.is-expanded .nav-user a {
  color: #000;
}

/* Main navigation - admin user*/
/* line 483, ../sass/partials/layout/_header.scss */
.nav-main {
  padding: 0.75em 0;
  /* Remove padding at this breakpoint */
  padding: 0;
  /* Links */
  /* --Conditional links (drop down) at lap viewport range-- */
  /* Hide the conditional links at these breakpoints */
  /* Hide/show of certain links at this breakpoint range */
  /* Drop down trigger */
  /* Drop down */
  /* Opened state */
  /* Home link */
  /* Icons */
  /* Icon spacing */
}
/* line 486, ../sass/partials/layout/_header.scss */
.nav-main .icon-home:before {
  margin-left: 0.2em;
  margin-right: 0.2em;
}
/* line 495, ../sass/partials/layout/_header.scss */
.nav-main a, .nav-main .btn {
  padding: 5px 7px;
  padding: 0.35714rem 0.5rem;
  margin-right: 1px;
  /* Pseudo classes + active state */
  /* Mods at this breakpoint */
}
/* line 499, ../sass/partials/layout/_header.scss */
.nav-main a:hover, .nav-main a:focus, .nav-main a.is-active, .nav-main .btn:hover, .nav-main .btn:focus, .nav-main .btn.is-active {
  background-color: #082e3e;
}
/* line 516, ../sass/partials/layout/_header.scss */
.nav-main .nav-main-conditional-links {
  display: none;
}
/* line 532, ../sass/partials/layout/_header.scss */
.nav-main .btn {
  line-height: 1.61538;
  vertical-align: baseline;
}
/* line 537, ../sass/partials/layout/_header.scss */
.nav-main .drop-down {
  background-color: #082e3e;
  width: 186px;
  /* Links */
  /* Last link in list */
  /* Icons */
}
/* line 541, ../sass/partials/layout/_header.scss */
.nav-main .drop-down a {
  display: block;
  padding-top: 4px;
  padding-top: 0.28571rem;
  padding-bottom: 4px;
  padding-bottom: 0.28571rem;
  border-bottom: 1px solid #04171e;
  box-shadow: 0 1px 0 #082e3e;
  margin-right: 0;
  /* Pseudo classes + active state */
}
/* line 548, ../sass/partials/layout/_header.scss */
.nav-main .drop-down a:hover, .nav-main .drop-down a:focus, .nav-main .drop-down a.is-active {
  background-color: #062430;
}
/* line 555, ../sass/partials/layout/_header.scss */
.nav-main .drop-down li:last-child a {
  border: 0;
  box-shadow: none;
}
/* line 560, ../sass/partials/layout/_header.scss */
.nav-main .drop-down .icon:before {
  width: 1em;
  text-align: center;
}
/* line 566, ../sass/partials/layout/_header.scss */
.nav-main .drop-down-container.is-active {
  /* Trigger */
}
/* line 568, ../sass/partials/layout/_header.scss */
.nav-main .drop-down-container.is-active .btn {
  background-color: #082e3e;
}
/* line 573, ../sass/partials/layout/_header.scss */
.nav-main .nav-main-home {
  box-shadow: inset 0 1px 0 #082e3e, 0 1px 0 #082e3e;
  /* Add bg color and remove border/shadow at this breakpoint */
  background-color: #082e3e;
  border: 0;
  box-shadow: none;
  /* Reveal link text at this breakpoint */
  /* Pseudo classes */
  /* Icon */
}
/* line 593, ../sass/partials/layout/_header.scss */
.nav-main .nav-main-home:hover, .nav-main .nav-main-home:focus {
  box-shadow: inset 0 0 0 #082e3e, 0 1px 0 #082e3e;
  /* No box shadow at this breakpoint */
  box-shadow: none;
}
/* line 602, ../sass/partials/layout/_header.scss */
.nav-main .nav-main-home .icon:before {
  /* Reduce font size and add some right spacing at this breakpoint */
}
/* line 610, ../sass/partials/layout/_header.scss */
.nav-main .icon:before {
  width: 1em;
  text-align: center;
  /* Remove fixed widths at this breakpoint */
  width: auto;
  text-align: left;
}
/* line 620, ../sass/partials/layout/_header.scss */
.nav-main .icon-spacing:before {
  margin-right: 0.5em;
  /* Decrease spacing at this breakpoint */
  margin-right: 0.375em;
}

/* Search */
/* line 630, ../sass/partials/layout/_header.scss */
.search-mini {
  position: absolute;
  left: 0;
  top: 0.85em;
  background-color: #fff;
  padding: 0.14286em 3.14286em 0.21429em 0.85714em;
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.75;
  width: 75%;
  /* IE 9 */
  /* Adjust width and top positioning at this breakpoint */
  top: 0.2em;
  width: 15.71429em;
  /* IE 9 */
  /* Increase width at this breakpoint */
  width: 21.42857em;
  /* Increase width at this breakpoint */
  width: 25.71429em;
  /* All items */
  /* Text input */
  /* Submit button */
  /* Submit button icon */
}
/* line 639, ../sass/partials/layout/_header.scss */
.ie9 .search-mini {
  top: 0.42857em;
}
/* line 647, ../sass/partials/layout/_header.scss */
.ie9 .search-mini {
  top: 0.28571em;
}
/* line 660, ../sass/partials/layout/_header.scss */
.search-mini * {
  vertical-align: middle;
}
/* line 664, ../sass/partials/layout/_header.scss */
.search-mini input {
  border: 0;
  padding: 0.2em 0;
  width: 100%;
  /* IE 9 */
  /* Focus pseudo class */
}
/* line 669, ../sass/partials/layout/_header.scss */
.ie9 .search-mini input {
  padding-top: 0.57143em;
  padding-bottom: 0.5em;
}
/* line 674, ../sass/partials/layout/_header.scss */
.search-mini input:focus {
  outline: none;
}
/* line 679, ../sass/partials/layout/_header.scss */
.search-mini .btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2em;
}
/* line 687, ../sass/partials/layout/_header.scss */
.search-mini .icon:before {
  color: #082e3e;
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1;
  /* IE 9 */
}
/* line 691, ../sass/partials/layout/_header.scss */
.ie9 .search-mini .icon:before {
  position: static;
}

/* User area */
/* line 698, ../sass/partials/layout/_header.scss */
.user-area {
  /*text-align: center;*/
  padding: 0.375em;
  text-align: right;
  padding: 1.07143em 0em 0em 0.75em;
}

/* Adjusting positioning of logo when a nav button exists*/
/* ======================================================================================
   @LAYOUT -> HEADER -> BANNER DISPLAY
   ====================================================================================== */
/* line 721, ../sass/partials/layout/_header.scss */
.navigation {
  background-color: #e7e8e8;
  padding: 0.5em 0;
  text-align: left;
  width: 100%;
  padding-bottom: 1em;
}
/* line 733, ../sass/partials/layout/_header.scss */
.navigation:after {
  display: table;
}
/* line 737, ../sass/partials/layout/_header.scss */
.navigation .heading {
  float: left;
}
/* line 741, ../sass/partials/layout/_header.scss */
.navigation .breadcrumb {
  float: right;
  text-align: right;
  padding-top: 0.7em;
}

/* ======================================================================================
   @LAYOUT -> FLEX MODEL
   ====================================================================================== */
/* line 5, ../sass/partials/layout/_flex.scss */
.flex {
  display: flex !important;
  flex-flow: row wrap;
}

/* line 9, ../sass/partials/layout/_flex.scss */
.flex-halign-center {
  justify-content: center;
}

/* line 12, ../sass/partials/layout/_flex.scss */
.flex-valign-center {
  align-items: center;
}

/* line 15, ../sass/partials/layout/_flex.scss */
.flex-stretch {
  align-items: stretch;
}

/* [ASIDE]
-------------------------------------------------------*/
/* line 3, ../sass/partials/layout/_aside.scss */
.aside {
  width: 30%;
  float: left;
  margin-top: 3em;
}

@media (max-width: 999px) {
  /* line 10, ../sass/partials/layout/_aside.scss */
  .aside {
    float: none;
    width: auto;
    min-height: 0;
    border-radius: 0;
    margin-top: 0;
    padding: 60px 0 0 0;
    box-shadow: none;
    background-size: contain;
  }

  /* line 21, ../sass/partials/layout/_aside.scss */
  .aside-inner {
    padding: 30px 9px;
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
    /* outerglow
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: inset 0 0 2px 1px rgba(255, 255, 255, .4),
    			0 0 12px 2px rgba(0, 0, 0, .55);*/
  }
}
@media (min-width: 750px) and (max-width: 999px) {
  /* line 36, ../sass/partials/layout/_aside.scss */
  .aside {
    background-size: auto;
  }

  /* line 40, ../sass/partials/layout/_aside.scss */
  .aside-inner {
    width: 90%;
  }
}
@media (min-width: 420px) and (max-width: 619px) {
  /* line 44, ../sass/partials/layout/_aside.scss */
  .aside-inner {
    padding-left: 8%;
    padding-right: 8%;
  }
}
/* ======================================================================================
   @LAYOUT -> MAIN

   ====================================================================================== */
/* line 6, ../sass/partials/layout/_main.scss */
.img-insert {
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* [Pages] 
-------------------------------------------------------*/
/* line 18, ../sass/partials/layout/_main.scss */
.console-bg {
  text-align: left;
}

/* line 22, ../sass/partials/layout/_main.scss */
.public-bg, .console-bg {
  background-size: cover;
}

/* line 32, ../sass/partials/layout/_main.scss */
.panel {
  background-color: #fff;
  padding: 2em 0;
}
/* line 35, ../sass/partials/layout/_main.scss */
.panel.fill {
  background-color: #f2f2f2;
}

/* line 40, ../sass/partials/layout/_main.scss */
.keypoints {
  background-color: #f2f2f2;
}
/* line 42, ../sass/partials/layout/_main.scss */
.keypoints ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* [MAIN - PUBLIC]
-------------------------------------------------------*/
/* line 47, ../sass/partials/layout/_main.scss */
.main {
  width: 100%;
  z-index: 2;
  text-align: center;
  background-color: #fff;
}

/* Inner Container */
/* line 55, ../sass/partials/layout/_main.scss */
.main-inner {
  width: 100%;
    /*min-height: to-em(400);
		margin-bottom: to-em($spacing-base);*/
}

@media (max-width: 1066px) {
  /* line 62, ../sass/partials/layout/_main.scss */
  .main-inner {
    padding-top: 0;
  }

  /* 46px */
}
@media (max-width: 999px) {
  /* line 69, ../sass/partials/layout/_main.scss */
  .main-inner {
    min-height: 0;
  }
}
/* [MAIN - ADMIN FULL]
-------------------------------------------------------*/
/* line 76, ../sass/partials/layout/_main.scss */
.main-full {
  width: 100%;
  z-index: 2;
  margin-top: 1.5em;
}

/* Inner Container */
/* line 83, ../sass/partials/layout/_main.scss */
.main-inner {
  width: 100%;
}

@media (max-width: 1066px) {
  /* line 88, ../sass/partials/layout/_main.scss */
  .main-inner {
    padding-top: 0;
  }

  /* 46px */
}
@media (max-width: 999px) {
  /* line 95, ../sass/partials/layout/_main.scss */
  .main-inner {
    min-height: 0;
  }
}
/* [MAIN - ADMIN]
-------------------------------------------------------*/
/* line 102, ../sass/partials/layout/_main.scss */
.main-right {
  width: 70%;
  float: right;
  margin-left: -4.14286em;
  margin-top: 1.5em;
  z-index: 2;
  /* Inner Container */
}
/* line 109, ../sass/partials/layout/_main.scss */
.main-right .main-inner {
  width: 100%;
  /*min-height: to-em(670);*/
  margin-bottom: 1.5em;
  padding: 0 4.461em;
}
@media (max-width: 1066px) {
  /* line 102, ../sass/partials/layout/_main.scss */
  .main-right {
    /* 46px */
  }
  /* line 117, ../sass/partials/layout/_main.scss */
  .main-right .main-inner {
    padding-top: 0;
  }
}
@media (max-width: 999px) {
  /* line 124, ../sass/partials/layout/_main.scss */
  .main-right .main-inner {
    min-height: 0;
  }
}
@media (max-width: 749px) {
  /* line 130, ../sass/partials/layout/_main.scss */
  .main-right .main-inner {
    padding-right: 2.30768em;
    /* 30px */
    padding-left: 3.5388em;
    /* 46px */
  }
}

@media (max-width: 999px) {
  /* line 138, ../sass/partials/layout/_main.scss */
  .main-right {
    float: none;
    width: 100%;
  }
}
@media (max-width: 749px) {
  /* line 145, ../sass/partials/layout/_main.scss */
  .main-right {
    width: auto;
    margin-left: -.46155em;
    /* 6px */
  }
}
@media (min-width: 750px) and (max-width: 999px) {
  /* line 152, ../sass/partials/layout/_main.scss */
  .main-right {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ======================================================================================
   @.NET CONTROLS
   ====================================================================================== */
/* [UPDATE PANEL]
-------------------------------------------------------*/
/* line 166, ../sass/partials/layout/_main.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 179, ../sass/partials/layout/_main.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 185, ../sass/partials/layout/_main.scss */
.update-loader {
  z-index: 100;
  position: fixed;
  width: 120px;
  margin-left: -60px;
  top: 50%;
  left: 50%;
}

/* line 194, ../sass/partials/layout/_main.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');
}

/* [TOOLTIPS]
-------------------------------------------------------*/
/* line 202, ../sass/partials/layout/_main.scss */
.tooltip {
  background-color: #000;
  border: 1px solid #fff;
  padding: 8px 8px;
  width: 200px;
  display: none;
  color: #fff;
  text-align: left;
  font-size: 12px;
}

/* line 213, ../sass/partials/layout/_main.scss */
.info-tooltip {
  width: 100px;
  background-color: #000;
  line-height: 25px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

/* [MODAL]
-------------------------------------------------------*/
/* line 224, ../sass/partials/layout/_main.scss */
.modalBackground {
  background-color: Gray;
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/* line 230, ../sass/partials/layout/_main.scss */
.modal-confirm-box {
  background-color: White;
  padding: 10px;
  border: 3px solid #ccc;
  height: 200px;
  width: 370px;
  position: relative;
  color: #333;
}

/* line 240, ../sass/partials/layout/_main.scss */
.modal-confirm-box input.modal-button {
  width: 50px;
  height: 30px;
  position: relative;
  background: #339999;
  color: white;
}

/* [GRID]
-------------------------------------------------------*/
/* line 250, ../sass/partials/layout/_main.scss */
.gridview {
  text-align: left;
  width: 100%;
  margin: 10px auto 0 auto;
  color: #333;
}

/* line 257, ../sass/partials/layout/_main.scss */
.gridview .gvInputs {
  width: 630px;
  position: relative;
  padding: 0 0 0 0;
  border-bottom: 1px dotted #CCC;
  margin: 5px 0 5px 10px;
}

/* line 265, ../sass/partials/layout/_main.scss */
.gridview .gvInputs .inputText {
  width: 150px;
  position: absolute;
  top: 2px;
  left: 0px;
}

/* line 272, ../sass/partials/layout/_main.scss */
.gridview .gvInputs .inputElement {
  width: 400px;
  line-height: 20px;
  padding: 0 0 0 150px;
}

/* line 278, ../sass/partials/layout/_main.scss */
.gridview .gvInputs .inputElement .tb {
  width: 145px;
  line-height: 16px;
  height: 16px;
  padding: 0;
}

/* line 285, ../sass/partials/layout/_main.scss */
.gridview .gvInputs .inputElement .ddl {
  width: auto;
  line-height: 24px;
  padding: 0;
}

/* line 291, ../sass/partials/layout/_main.scss */
.gridview .gvHead {
  line-height: 30px;
  /*background: url("/img/gridview/gridview-header-repeat.png") repeat-x;*/
  background-color: #082e3e !important;
  color: #FFF;
}

/* line 297, ../sass/partials/layout/_main.scss */
.gridview th {
  font-weight: bold;
  color: #FFF;
  padding: 0.5em;
  padding-left: 0.6em;
  vertical-align: middle;
  /*border-right: 1px solid #999;*/
}

/* line 305, ../sass/partials/layout/_main.scss */
.gridview .gvHead a, .gridview .gvHead a:link, .gridview .gvHead a:visited {
  background: url("/img/gridview/gridview-header-sort.png") no-repeat 95% 50%;
  font-weight: bold;
  color: #FFF;
  line-height: 25px;
  display: block;
  text-align: left;
  text-decoration: none;
}

/* line 315, ../sass/partials/layout/_main.scss */
.gridview .gvHead a:hover {
  background: url("/img/gridview/gridview-header-sort-hover.png") no-repeat 95% 50%;
}

/* line 319, ../sass/partials/layout/_main.scss */
.gridview .gvRow {
  background: #FFF;
  line-height: 2em;
}

/* line 324, ../sass/partials/layout/_main.scss */
.gridview .gvRow td {
  padding: 0.5em;
  /*border-left: 1px solid #CCCCCC;border-right: 1px solid #CCC;border-bottom: 1px solid #CCC;*/
  vertical-align: top;
}

/* line 329, ../sass/partials/layout/_main.scss */
.gridview .gvAlternate {
  background: #F1F1F1;
  line-height: 2em;
}

/* line 334, ../sass/partials/layout/_main.scss */
.gridview .gvAlternate td {
  padding: 0.5em;
  /*border-left: 1px solid #CCCCCC;border-right: 1px solid #CCC;border-bottom: 1px solid #CCC;*/
  vertical-align: top;
}

/* line 342, ../sass/partials/layout/_main.scss */
.gridview .gvItem td {
  padding: 0.5em;
  vertical-align: top;
}

/* line 347, ../sass/partials/layout/_main.scss */
.gridview .amount {
  padding: 0;
  margin: 0;
  line-height: 15px;
}

/* line 353, ../sass/partials/layout/_main.scss */
.gridview .gvPager td {
  border: 0;
  /*border-top: 1px solid #CCCCCC;*/
  color: #333;
}

/* [GRID PAGINATION]
-------------------------------------------------------*/
/* line 361, ../sass/partials/layout/_main.scss */
.message-div {
  float: left;
}

/* line 365, ../sass/partials/layout/_main.scss */
.paging-div {
  float: right;
  margin-top: 0.25em;
  /*For any inputs instead of a tags*/
}
/* line 369, ../sass/partials/layout/_main.scss */
.paging-div > div:last-child {
  float: left;
  margin-top: 1em;
}
/* line 373, ../sass/partials/layout/_main.scss */
.paging-div > div:last-child label {
  padding-left: 0;
}
/* line 378, ../sass/partials/layout/_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 386, ../sass/partials/layout/_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 391, ../sass/partials/layout/_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 395, ../sass/partials/layout/_main.scss */
.paging-div .page-far-left, .paging-div .page-far-right {
  margin: 0 5px;
}
/* line 399, ../sass/partials/layout/_main.scss */
.paging-div .page-info {
  line-height: 16px;
  padding: 5px 12px 0 12px;
}
/* line 404, ../sass/partials/layout/_main.scss */
.paging-div .icon:before {
  margin-left: 33%;
}
/* line 408, ../sass/partials/layout/_main.scss */
.paging-div .icon-right:before {
  margin-left: 44%;
}
/* line 412, ../sass/partials/layout/_main.scss */
.paging-div label {
  padding-left: 1em;
}
/* line 417, ../sass/partials/layout/_main.scss */
.paging-div input.page-far-left, .paging-div a.page-far-left {
  background: transparent url(img/icons/icon-jumpLeft.png) no-repeat -2px -3px;
}
/* line 421, ../sass/partials/layout/_main.scss */
.paging-div input.page-left, .paging-div a.page-left {
  background: transparent url(img/icons/icon-left.png) no-repeat -3px -3px;
}
/* line 425, ../sass/partials/layout/_main.scss */
.paging-div input.page-far-right, .paging-div a.page-far-right {
  background: transparent url(img/icons/icon-jumpRight.png) no-repeat -2px -3px;
}
/* line 429, ../sass/partials/layout/_main.scss */
.paging-div input.page-right, .paging-div a.page-right {
  background: transparent url(img/icons/icon-right.png) no-repeat -1px -3px;
}
/* line 435, ../sass/partials/layout/_main.scss */
.paging-div > div:first-child {
  float: left;
}
/* line 439, ../sass/partials/layout/_main.scss */
.paging-div > div:last-child {
  float: right;
  margin-top: 0;
}

/*alternate grey*/
/* line 456, ../sass/partials/layout/_main.scss */
.alternate-grey-body {
  background-color: #f9f9f9;
  padding: 0.8em 0.8em;
  margin-bottom: 0;
}

/*alternate white*/
/* line 463, ../sass/partials/layout/_main.scss */
.alternate-white {
  background-color: #fff;
  padding: 0.8em 0.8em;
  margin-bottom: 0;
}

/* ======================================================================================
   @LAYOUT -> FOOTER
   ====================================================================================== */
/* line 5, ../sass/partials/layout/_footer.scss */
.footer {
  clear: both;
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  padding: 2em 1em;
  /* Back to top */
}
/* line 12, ../sass/partials/layout/_footer.scss */
.footer a,
.footer .back-to-top {
  color: #fff;
}
/* line 17, ../sass/partials/layout/_footer.scss */
.footer .back-to-top {
  display: inline-block;
  text-decoration: none;
  padding: 1em 0;
  /* Pseudo element - up arrow */
  /* Hide at this breakpoint and for print */
  display: none;
}
/* line 22, ../sass/partials/layout/_footer.scss */
.footer .back-to-top:before {
  content: "\2191";
  display: block;
  text-align: center;
  font-size: 28px;
  font-size: 2rem;
  line-height: 0.8;
  font-family: "Courier New", Courier, monospace;
}
@media print {
  /* line 17, ../sass/partials/layout/_footer.scss */
  .footer .back-to-top {
    display: none;
  }
}
/* line 40, ../sass/partials/layout/_footer.scss */
.footer .grid-item {
  padding-top: 1em;
}
/* line 43, ../sass/partials/layout/_footer.scss */
.footer .grid-item:first-child {
  text-align: left;
}

/*Logos*/
/* line 58, ../sass/partials/layout/_footer.scss */
.logos {
  padding: 2em 0;
  text-align: left;
}
/* line 60, ../sass/partials/layout/_footer.scss */
.logos ul {
  list-style: none;
}
/* line 74, ../sass/partials/layout/_footer.scss */
.logos li {
  width: 25%;
}
/* line 76, ../sass/partials/layout/_footer.scss */
.logos li img {
  width: 7.14286em;
}
/* line 80, ../sass/partials/layout/_footer.scss */
.logos li:nth-child(-n+2) img {
  width: 14.28571em;
}

/* 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: -21px;
  margin-left: -1.5rem;
  /* Clear fix */
  /* Very infrequently occuring grid rows as children of grid rows */
}
/* line 870, ../sass/partials/utils/_mixins.scss */
.grid:after {
  content: "";
  display: table;
  clear: both;
}
/* line 29, ../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: 21px;
  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 45, ../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 */
  margin-bottom: 0;
}

/* --Extenders-- */
/* 'Gutterless' and 'Center align' */
/* line 58, ../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 {
  padding-left: 0;
}

/* Center align */
/* line 65, ../sass/partials/layout/grid/_grid.scss */
.grid-center > .grid-item {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  float: none;
}

/* Reversed */
/* line 73, ../sass/partials/layout/grid/_grid.scss */
.grid-rev > .grid-item {
  float: right;
}

/* Lists */
/* line 76, ../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: -21px;
  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 81, ../sass/partials/layout/grid/_grid.scss */
.grid-list .grid-item {
  margin-bottom: 21px;
  margin-bottom: 1.5rem;
}
/* line 84, ../sass/partials/layout/grid/_grid.scss */
.grid-list .grid-item--clear {
  clear: left;
}

/*Custom*/
/* line 89, ../sass/partials/layout/grid/_grid.scss */
.dashboard .grid-item {
  margin-bottom: 2em;
}

/*.dashboard {
    .grid {
        @include to-rem(margin-left, -$grid-gutter-dbl);

        .grid-item {
            @include to-rem(padding-left, $grid-gutter-dbl);
        }
    }

    @include respond-min($non-palm){
        .grid-item {
            @include to-rem(margin-bottom, $grid-gutter-dbl);
        }
    }
    @include respond-min (1100){
        .grid {
            @include to-rem(margin-left, -$grid-gutter-dbl-half);

            .grid-item {
                @include to-rem(padding-left, $grid-gutter-dbl-half);
                @include to-rem(margin-bottom, $grid-gutter-dbl-half);
            }
        }
    }
}*/
/* ======================================================================================
   @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 */
/* 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 small */
/* Lap large */
/* Portable */
/* Desk */
/* 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 */
/* Desk large */
/* 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 */
/* line 23, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list {
  /* List items */
}
/* line 26, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list > li {
  /* List items + links */
}
/* line 29, ../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 #4d4d4d;
  /*padding-left: to-em($spacing-half);*/
  margin-left: 0.75em;
  /* Kill rules for the first item */
}
/* line 43, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list-dividers > li:first-child {
  padding: 0;
  margin: 0;
  border: 0;
}

/* Center align */
/* line 51, ../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 54, ../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 63, ../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: to-em($spacing-half);*/
}

/* 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 */
  /* 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 85, ../sass/partials/abstractions/_horizontal-list.scss */
.horiz-list-comma > li:after,
.horiz-list-slash > li:after {
  margin-right: 0.375em;
}
/* 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: ",";
}

/* Wizard style lists */
/* line 100, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list {
  background-color: #082e3e;
}
/* line 103, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li {
  position: relative;
  overflow: visible;
  border-right: 0.4em solid #fff;
  border-left: 0.4em solid #fff;
  background-color: #082e3e;
  color: #fff;
  position: relative;
}
/* line 111, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:first-child {
  border-left: 0;
}
/* line 112, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:first-child a {
  padding-left: 1em;
  padding-right: 0;
}
/* line 114, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:hover {
  background-color: #082e3e;
}
/* line 115, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-active {
  background-color: #082e3e;
}
/* line 116, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-active .nav-arrow {
  border-color: #fff #fff #fff #082e3e;
}
/* line 117, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-active .nav-wedge {
  border-color: #082e3e #082e3e #082e3e transparent;
}
/* line 120, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-viewed {
  background: #082e3e url("img/icons/icon-tick.png") no-repeat 97% 49%;
}
/* line 122, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-viewed:hover {
  background-color: #082e3e;
}
/* line 123, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-viewed.tab-active {
  background-color: #082e3e;
}
/* line 126, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li a {
  color: #fff;
  padding: 0.6em 2.5em 0.6em 0.7em;
  display: block;
}
/* line 132, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li .nav-arrow {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 1.4em 0 1.4em 0.7em;
  border-color: #fff #fff #fff #082e3e;
  z-index: 150;
}
/* line 138, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:last-child {
  border-right-color: #082e3e;
}
/* line 140, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:last-child .nav-arrow {
  border-color: transparent transparent transparent #082e3e;
}
/* line 143, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:last-child:hover .nav-arrow {
  border-color: transparent transparent transparent #082e3e;
}
/* line 147, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.tab-active:last-child .nav-arrow {
  border-color: transparent transparent transparent #082e3e;
}
/* line 150, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li .nav-wedge {
  position: absolute;
  top: 0px;
  left: -10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 1.4em 0 1.4em 0.7em;
  border-color: #082e3e #082e3e #082e3e transparent;
  z-index: 150;
}
/* line 158, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:hover .nav-arrow {
  border-color: #fff #fff #fff #082e3e;
}
/* line 159, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:hover .nav-wedge {
  border-color: #082e3e #082e3e #082e3e transparent;
}
/* line 161, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li:hover a {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}
/* line 168, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.active .nav-arrow {
  border-color: transparent transparent transparent #082e3e;
}
/* line 169, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.active .nav-wedge {
  border-color: #082e3e #082e3e #082e3e transparent;
}
/* line 170, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list > li.active a {
  background-color: #082e3e;
}

/*Wizard list for Overview*/
/* line 212, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list-overview {
  background-color: transparent;
}
/* line 214, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list-overview li {
  width: 24.75%;
}
/* line 216, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list-overview li a {
  padding-right: 0;
}
/* line 217, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list-overview li:last-child {
  border-right-color: transparent;
}
/* line 219, ../sass/partials/abstractions/_horizontal-list.scss */
.wizard-list-overview li:last-child .nav-arrow {
  right: -15px;
}

/* ======================================================================================
   @ABSTRACTIONS -> DEFINITION LIST
   ====================================================================================== */
/*
	Usage: 
		Make the `dt` and `dd` elements of a definition list render side-by-side.

	Demo:
		Style Guide -> Abstractions -> Definition List
*/
/* line 13, ../sass/partials/abstractions/_definition-list.scss */
.def-list {
  margin-bottom: 0;
  padding: 0.5em 0;
}

/* Definiton title */
/* line 16, ../sass/partials/abstractions/_definition-list.scss */
.def-list_title {
  float: left;
  clear: left;
  margin-right: 0.375em;
  margin-left: 0.6em;
  /* Left indent at this breakpoint */
  margin-right: 0;
}

/* Definiton description - left indent at this breakpoint */
/* line 29, ../sass/partials/abstractions/_definition-list.scss */
.def-list_desc {
  margin-left: 13.57143em;
  margin-bottom: 0.2em;
}

/*Grey background*/
/* line 35, ../sass/partials/abstractions/_definition-list.scss */
.def-list.grey {
  background-color: #f2f2f2;
}

/*Icons*/
/* line 39, ../sass/partials/abstractions/_definition-list.scss */
.def-list .def-list_desc {
  position: relative;
}
/* line 41, ../sass/partials/abstractions/_definition-list.scss */
.def-list .def-list_desc .form-main-inputs {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: 0;
  width: auto;
}

/* ======================================================================================
   @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: #387aa5;
}
/* line 25, ../sass/partials/abstractions/_complex-link.scss */
.complex-link:hover .complex-link--target, .complex-link:focus .complex-link--target {
  color: #082e3e;
  text-decoration: none;
}

/* Link target */
/* line 33, ../sass/partials/abstractions/_complex-link.scss */
.complex-link--target {
  color: #2b5e7f;
  text-decoration: underline;
  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 */
/* 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 */
  text-align: left;
  clear: left;
  /* Pseudo element - colon */
}
/* 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 */
  border: 1px solid #e3e3e3;
  border-bottom-width: 2px;
}

/* 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: Georgia, Palatino, "Palatino Linotype", Times, "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: 21px;
  padding: 1.5rem;
}

/* Islet - half the padding */
/* line 31, ../sass/partials/abstractions/_island.scss */
.islet {
  padding: 10.5px;
  padding: 0.75rem;
}

/* line 33, ../sass/partials/abstractions/_island.scss */
.island-aside {
  border-radius: 4px;
  border: 1px solid #e3e3e3;
  background: #f2f2f2;
}

/* line 38, ../sass/partials/abstractions/_island.scss */
.island-body {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 44, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button {
  border: 0;
  position: relative;
  background-color: #082e3e;
  background-image: -webkit-linear-gradient(bottom right, #faae40, #082e3e);
  background-image: linear-gradient(to top left, #faae40, #082e3e);
  color: #fff;
}
/* line 50, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button h2, .dashboard .island-button .h4 {
  color: #fff;
  letter-spacing: 0.1em;
}
/* line 52, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button img {
  padding-bottom: 1em;
}
/* line 54, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .icon:before {
  margin-right: 0;
}
/* line 56, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .user-notifications-count {
  background-color: #b31200;
  color: #fff;
  font-size: 1.5em;
  padding: 0.1em 0.55em;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 0.7em;
  right: 0.5em;
}
/* line 78, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
}
/* line 83, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button img {
  width: 80%;
}
/* line 84, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .icon:before {
  margin-bottom: 0.375em;
}
/* line 85, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .icon-email {
  position: relative;
  bottom: -3px;
}
/* line 86, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .user-notifications-count {
  position: absolute;
  top: -0.8em;
  right: 0.5em;
}
/* line 87, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .user-notifications-complete {
  padding: 0.22em 0.32em;
}
/* line 89, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button .user-notifications-complete .icon:before {
  margin-bottom: 0;
  font-size: 1.5em;
}
/* line 93, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button:hover {
  -webkit-box-shadow: 3px 3px 13px 0px black;
  -moz-box-shadow: 3px 3px 13px 0px black;
  box-shadow: 3px 3px 13px 0px black;
}
/* line 99, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button.white {
  background-color: #fff;
  color: #082e3e;
}
/* line 101, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button.white h2, .dashboard .island-button.white .h4 {
  color: #082e3e;
}
/* line 103, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button.green {
  background-color: #fff;
  color: #082e3e;
  border: 2px solid #082e3e;
}
/* line 106, ../sass/partials/abstractions/_island.scss */
.dashboard .island-button.green h2, .dashboard .island-button.green .h4 {
  color: #082e3e;
}

/* line 130, ../sass/partials/abstractions/_island.scss */
.console .island-button {
  background-color: #262626;
  color: #fff;
}
/* line 133, ../sass/partials/abstractions/_island.scss */
.console .island-button h3 {
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
}
/* line 136, ../sass/partials/abstractions/_island.scss */
.console .island-button h3.blue {
  background-color: #4e9797;
}
/* line 139, ../sass/partials/abstractions/_island.scss */
.console .island-button h3.yellow {
  background-color: #c1a42f;
}
/* line 142, ../sass/partials/abstractions/_island.scss */
.console .island-button h3.red {
  background-color: #914647;
}
/* line 145, ../sass/partials/abstractions/_island.scss */
.console .island-button h3.green {
  background-color: #7aa440;
}
/* line 149, ../sass/partials/abstractions/_island.scss */
.console .island-button .content {
  font-size: 1.3em;
}
/* line 151, ../sass/partials/abstractions/_island.scss */
.console .island-button .content.blue {
  padding: 0.5em;
  background-color: #2b5e7f;
}
/* line 155, ../sass/partials/abstractions/_island.scss */
.console .island-button .content.yellow {
  padding: 0.5em;
  background-color: #efca27;
}
/* line 159, ../sass/partials/abstractions/_island.scss */
.console .island-button .content.red {
  padding: 0.5em;
  background-color: #ec1f27;
}
/* line 163, ../sass/partials/abstractions/_island.scss */
.console .island-button .content.green {
  padding: 0.5em;
  background-color: #8cc63f;
}
/* line 167, ../sass/partials/abstractions/_island.scss */
.console .island-button .content .red {
  color: #ec1f27;
}
/* line 185, ../sass/partials/abstractions/_island.scss */
.console .island-button .icon:before {
  font-size: 2.5em;
}
/* line 188, ../sass/partials/abstractions/_island.scss */
.console .island-button .content {
  font-size: 1em;
}
/* line 203, ../sass/partials/abstractions/_island.scss */
.console .island-button .icon-notification:before {
  font-size: 1em;
}

/* Overview */
/* line 214, ../sass/partials/abstractions/_island.scss */
.overview h2 {
  background-color: #082e3e;
  color: #fff;
  padding-left: 0.5em;
}
/* line 215, ../sass/partials/abstractions/_island.scss */
.overview h3 {
  padding-left: 0.5em;
  font-weight: 500;
}
/* line 218, ../sass/partials/abstractions/_island.scss */
.overview h3 .dot {
  margin-left: 0;
}
/* line 221, ../sass/partials/abstractions/_island.scss */
.overview .h3 strong {
  font-weight: 500;
}
/* line 222, ../sass/partials/abstractions/_island.scss */
.overview .h3 .disc {
  margin-left: 0;
}
/* line 226, ../sass/partials/abstractions/_island.scss */
.overview p {
  padding: 0 0.8em;
}
/* line 227, ../sass/partials/abstractions/_island.scss */
.overview .form-main-inputs {
  margin-top: 0.5em;
}

/*Register*/
/* line 233, ../sass/partials/abstractions/_island.scss */
.register .island-body.header {
  background-color: #000;
  color: #fff;
}
/* line 236, ../sass/partials/abstractions/_island.scss */
.register .island-body.header h1 {
  text-transform: none;
}

/*Profile*/
/* line 243, ../sass/partials/abstractions/_island.scss */
.island-body.heading {
  color: #000;
}
/* line 244, ../sass/partials/abstractions/_island.scss */
.island-body.heading h2 {
  color: #000 !important;
}
/* line 247, ../sass/partials/abstractions/_island.scss */
.island-body.green {
  color: #fff;
  background-color: #082e3e;
}

/* ======================================================================================
   @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
*/
/* Image container */
/* line 22, ../sass/partials/abstractions/_slats.scss */
.slats-img,
.slats-img-rev {
  /* Remove bottom margin at this breakpoint */
  margin-bottom: 0;
  /* Images in `.islets`s need an appropriately sized margin */
}
/* line 32, ../sass/partials/abstractions/_slats.scss */
.islet .slats-img, .islet
.slats-img-rev {
  margin-bottom: 10.5px;
  margin-bottom: 0.75rem;
  /* Remove bottom margin at this breakpoint */
  margin-bottom: 0;
}

/* line 42, ../sass/partials/abstractions/_slats.scss */
.slats-img {
  float: left;
  margin-right: 21px;
  margin-right: 1.5rem;
  /* Images in `.islets`s need an appropriately sized margin */
}
/* line 47, ../sass/partials/abstractions/_slats.scss */
.islet .slats-img {
  margin-right: 10.5px;
  margin-right: 0.75rem;
}

/* Extend: reverse the image location (right instead of left) */
/* line 51, ../sass/partials/abstractions/_slats.scss */
.slats-img-rev {
  float: right;
  margin-left: 21px;
  margin-left: 1.5rem;
  /* Images in `.islets`s need an appropriately sized margin */
}
/* line 56, ../sass/partials/abstractions/_slats.scss */
.islet .slats-img-rev {
  margin-left: 10.5px;
  margin-left: 0.75rem;
}

/* Images */
/* line 60, ../sass/partials/abstractions/_slats.scss */
.slats-img img,
.slats-img-rev img {
  display: block;
}

/* Body container columnised at this breakpoint */
/* line 65, ../sass/partials/abstractions/_slats.scss */
.slats-body {
  overflow: hidden;
}

/* ======================================================================================
   @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 */
/* 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: 21px;
  -moz-column-gap: 21px;
  column-gap: 21px;
  /* 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 small */
/* Lap large */
/* Portable */
/* Desk */
/* 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 */
/* Desk large */
/* 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 27, ../sass/partials/abstractions/_arrows.scss */
.arrow {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  display: inline-block;
  vertical-align: middle;
}

/* Down */
/* line 36, ../sass/partials/abstractions/_arrows.scss */
.arrow-down {
  border-top-color: #7ec7b6;
  margin-top: -0.5em;
}
/* line 39, ../sass/partials/abstractions/_arrows.scss */
.arrow-down.blue {
  border-top-color: #2b5e7f;
}
/* line 42, ../sass/partials/abstractions/_arrows.scss */
.arrow-down.yellow {
  border-top-color: #efca27;
}
/* line 45, ../sass/partials/abstractions/_arrows.scss */
.arrow-down.red {
  border-top-color: #ec1f27;
}
/* line 48, ../sass/partials/abstractions/_arrows.scss */
.arrow-down.green {
  border-top-color: #8cc63f;
}

/* Up */
/* line 54, ../sass/partials/abstractions/_arrows.scss */
.arrow-up {
  border-bottom-color: #7ec7b6;
  margin-top: -10px;
}

/* Left */
/* line 60, ../sass/partials/abstractions/_arrows.scss */
.arrow-left {
  border-right-color: #7ec7b6;
}

/* Right */
/* line 63, ../sass/partials/abstractions/_arrows.scss */
.arrow-right {
  border-left-color: #7ec7b6;
}

/* ======================================================================================
   @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 #082e3e;
  /*box-shadow: 0 1px 0 $color-grey-lightest;*/
  padding-bottom: 21px;
  padding-bottom: 1.5rem;
}

/* --Extenders-- */
/* Larger spacing */
/* line 23, ../sass/partials/abstractions/_divider.scss */
.divider-lrg {
  padding-bottom: 42px;
  padding-bottom: 3rem;
  margin-bottom: 42px;
  margin-bottom: 3rem;
}

/* Smaller spacing */
/* line 29, ../sass/partials/abstractions/_divider.scss */
.divider-sml {
  padding-bottom: 10.5px;
  padding-bottom: 0.75rem;
  margin-bottom: 10.5px;
  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;
}

/* ======================================================================================
   CIRCULAR PROGRESS BAR
   ====================================================================================== */
/*$progress-color: #4b86db;*/
/*.position {
	float: left;
}*/
/* line 12, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar {
  position: relative;
  height: 8em;
  width: 8em;
}
/* line 16, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar div {
  position: absolute;
  height: 8em;
  width: 8em;
  border-radius: 50%;
}
/* line 21, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar div span {
  position: absolute;
  font-size: 2em;
  font-weight: normal;
  line-height: 3.5em;
  height: 3.6em;
  width: 3.6em;
  left: 0.2em;
  top: 0.2em;
  text-align: center;
  border-radius: 50%;
  background-color: #262626;
}
/* line 36, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar .background {
  background-color: #000 important;
}
/* line 39, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar .rotate {
  clip: rect(0 4em 8em 0);
  /*background-color: $progress-color;*/
  background-color: #2b5e7f;
  background-image: -webkit-linear-gradient(bottom, #082e3e, #2b5e7f);
  background-image: linear-gradient(to top, #082e3e, #2b5e7f);
}
/* line 47, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar .left {
  clip: rect(0 4em 8em 0);
  opacity: 1;
  background-color: #000 !important;
}
/* line 53, ../sass/partials/abstractions/_progress-bars.scss */
.progress-bar .right {
  clip: rect(0 4em 8em 0);
  transform: rotate(180deg);
  opacity: 0;
  /*background-color: $progress-color;*/
  background-color: #082e3e;
  background-image: -webkit-linear-gradient(bottom, #2b5e7f, #082e3e);
  background-image: linear-gradient(to top, #2b5e7f, #082e3e);
}

@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ======================================================================================
   NOTCHED PROGRESS BAR
   ====================================================================================== */
/* line 76, ../sass/partials/abstractions/_progress-bars.scss */
.progress-steps .grid {
  position: relative;
  border: 1px solid #fff;
  background-color: #bfbfbf;
}
/* line 79, ../sass/partials/abstractions/_progress-bars.scss */
.progress-steps .grid .grid-item {
  border-right: 1px solid #fff;
  padding: 0.1em;
}
/* line 81, ../sass/partials/abstractions/_progress-bars.scss */
.progress-steps .grid .grid-item.fill {
  background-color: #efca27;
}
/* line 83, ../sass/partials/abstractions/_progress-bars.scss */
.progress-steps .grid .indicator-small {
  position: absolute;
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  border-bottom-color: #efca27;
  top: -0.9em;
}
/* line 90, ../sass/partials/abstractions/_progress-bars.scss */
.progress-steps .grid .indicator-small:after {
  content: '';
  position: absolute;
  left: -0.5em;
  top: 0.5em;
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  border-top-color: #efca27;
}
/* line 101, ../sass/partials/abstractions/_progress-bars.scss */
.progress-steps .grid .indicator-big {
  position: absolute;
  top: -0.7em;
  right: -0.9em;
}

/* 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;
  border: 1px solid;
  /*box-shadow: inset 0 1px 0 rgba(#fff, 0.25),
  			0 1px 2px rgba(#000, 0.3);*/
  /* Links */
}
/* line 20, ../sass/partials/modules/_feedback.scss */
.feedback a {
  /*text-decoration: underline;  Note: this may be redundant? */
  /* Pseudo classes */
  /* Note: this may be redundant? */
}
/* line 24, ../sass/partials/modules/_feedback.scss */
.feedback a:hover, .feedback a:focus {
  text-decoration: none;
}

/* Block */
/* line 30, ../sass/partials/modules/_feedback.scss */
.feedback-block {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  min-height: 24.28571em;
  /* Shared */
  /* Paragraphs and lists */
}
/* line 39, ../sass/partials/modules/_feedback.scss */
.feedback-block .hn,
.feedback-block p,
.feedback-block .list {
  margin-bottom: 0;
}
/* line 44, ../sass/partials/modules/_feedback.scss */
.feedback-block p,
.feedback-block .list {
  margin-top: 0.375em;
}

/* Error */
/* line 49, ../sass/partials/modules/_feedback.scss */
.feedback-error {
  background-color: #ffabca;
  border-color: #f39797;
  /* Parent, links + headings */
}
/* line 54, ../sass/partials/modules/_feedback.scss */
.feedback-error,
.feedback-error a,
.feedback-error .hn {
  color: #6f0f0f;
}

/* Error */
/* line 60, ../sass/partials/modules/_feedback.scss */
.feedback-validation {
  background-color: #ffabca;
  border-color: #f39797;
  display: block;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.35;
  /* Parent, links + headings */
}
/* line 67, ../sass/partials/modules/_feedback.scss */
.feedback-validation,
.feedback-validation a,
.feedback-validation .hn {
  color: #6f0f0f;
}

/* Warning */
/* line 73, ../sass/partials/modules/_feedback.scss */
.feedback-warning {
  background-color: #faf2c9;
  border-color: #f3de7c;
  /* Parent, links + headings */
}
/* line 78, ../sass/partials/modules/_feedback.scss */
.feedback-warning,
.feedback-warning a,
.feedback-warning .hn {
  color: #4e4207;
}

/* Success */
/* line 84, ../sass/partials/modules/_feedback.scss */
.feedback-success {
  background-color: #f0f8f2;
  border-color: #a5cf83;
  /* Parent, links + headings */
}
/* line 89, ../sass/partials/modules/_feedback.scss */
.feedback-success,
.feedback-success a,
.feedback-success .hn {
  color: #2b4119;
}

/* Info */
/* line 95, ../sass/partials/modules/_feedback.scss */
.feedback-info {
  background-color: #eff9fe;
  border-color: #86c5e6;
  /* Parent, links + headings */
}
/* line 100, ../sass/partials/modules/_feedback.scss */
.feedback-info,
.feedback-info a,
.feedback-info .hn {
  color: #154c69;
}

/* Notification complete */
/* line 106, ../sass/partials/modules/_feedback.scss */
.user-notifications-complete {
  border-radius: 5px;
  background: white;
  color: green;
  padding: 0.22em 0.55em;
  border-radius: 50%;
  border: 1px solid green;
  position: absolute;
  top: -0.9em;
  right: 0.5em;
  display: inline-block;
  /* Transition */
  -webkit-animation: bounce 0.6s 3s 3 both;
  animation: bounce 0.6s 3s 3 both;
}

/*Scale feedback*/
/* line 120, ../sass/partials/modules/_feedback.scss */
.survey-scale .feedback {
  text-align: left;
}
/* line 122, ../sass/partials/modules/_feedback.scss */
.survey-scale .feedback.feedback-validation {
  font-weight: bold;
}
/* line 124, ../sass/partials/modules/_feedback.scss */
.survey-scale legend {
  width: 100% !important;
  margin-bottom: 0.5em;
}
/* line 125, ../sass/partials/modules/_feedback.scss */
.survey-scale .txt {
  width: 100% !important;
}

/* ======================================================================================
   @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 31, ../sass/partials/modules/_sprite.scss */
.paw-sml-white {
  width: 25px;
  height: 28px;
  background-position: -462px 0;
  margin-right: 0.375em;
}

/* Arrows */
/* right */
/* line 40, ../sass/partials/modules/_sprite.scss */
.s-arrow-r {
  width: 17px;
  height: 18px;
  background-position: -514px 0;
}

/* up */
/* line 47, ../sass/partials/modules/_sprite.scss */
.s-arrow-u {
  width: 18px;
  height: 17px;
  background-position: -531px 0;
}

/* alt */
/* line 54, ../sass/partials/modules/_sprite.scss */
.s-arrow-alt-l,
.s-arrow-alt-r,
.flex-direction-nav a {
  width: 26px;
  height: 26px;
}

/* left */
/* line 62, ../sass/partials/modules/_sprite.scss */
.s-arrow-alt-l,
.flex-prev {
  background-position: -549px 0;
}

/* right */
/* line 66, ../sass/partials/modules/_sprite.scss */
.s-arrow-alt-r,
.flex-next {
  background-position: -575px 0;
}

/* Icons */
/* shared */
/* line 71, ../sass/partials/modules/_sprite.scss */
.s-icon-ghost,
.s-icon-pdf {
  margin-right: 0;
  height: 16px;
}

/* pdf */
/* line 78, ../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 84, ../sass/partials/modules/_sprite.scss */
.s-icon-ghost {
  width: 0;
}

/* --Extenders-- */
/* Apply some spacing between the sprite element and adjacent text */
/* line 91, ../sass/partials/modules/_sprite.scss */
.sprite--spacing {
  margin-right: 0.25em;
}

/* ======================================================================================
   @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;
}

/*Arrow up*/
/* line 23, ../sass/partials/modules/_icon.scss */
.icon-arrow-up:before {
  content: "\e901";
}

/*Bullseye*/
/* line 26, ../sass/partials/modules/_icon.scss */
.icon-bullseye:before {
  content: "\e902";
}

/*Lock2*/
/* line 29, ../sass/partials/modules/_icon.scss */
.icon-lock2:before {
  content: "\e903";
}

/*Modules*/
/* line 32, ../sass/partials/modules/_icon.scss */
.icon-modules:before {
  content: "\e905";
}

/*Screen*/
/* line 35, ../sass/partials/modules/_icon.scss */
.icon-screen:before {
  content: "\e906";
}

/* settings */
/* line 38, ../sass/partials/modules/_icon.scss */
.icon-settings:before {
  content: "\e000";
}

/* cart */
/* line 41, ../sass/partials/modules/_icon.scss */
.icon-products:before {
  content: "\e001";
}

/* inbox */
/* line 44, ../sass/partials/modules/_icon.scss */
.icon-orders:before {
  content: "\e003";
}

/* speechbubble */
/* line 47, ../sass/partials/modules/_icon.scss */
.icon-news:before {
  content: "\e005";
}

/* edit */
/* line 50, ../sass/partials/modules/_icon.scss */
.icon-content:before {
  content: "\e006";
}

/* image */
/* line 53, ../sass/partials/modules/_icon.scss */
.icon-media:before {
  content: "\e007";
}

/* tick - success */
/* line 56, ../sass/partials/modules/_icon.scss */
.icon-success:before {
  content: "\e009";
}

/* cross - error */
/* line 59, ../sass/partials/modules/_icon.scss */
.icon-error:before {
  content: "\e00a";
}

/* exclamation - warning */
/* line 62, ../sass/partials/modules/_icon.scss */
.icon-warning:before {
  content: "\e00b";
}

/* magnify  -search */
/* line 65, ../sass/partials/modules/_icon.scss */
.icon-search:before {
  content: "\e00c";
}

/* email */
/* line 68, ../sass/partials/modules/_icon.scss */
.icon-email:before {
  content: "\e00d";
}

/* home */
/* line 71, ../sass/partials/modules/_icon.scss */
.icon-home:before {
  content: "\e00e";
}

/* thumbsup */
/* line 74, ../sass/partials/modules/_icon.scss */
.icon-partners:before {
  content: "\e00f";
}

/* question - help */
/* line 77, ../sass/partials/modules/_icon.scss */
.icon-help:before {
  content: "\e010";
}

/* options */
/* line 80, ../sass/partials/modules/_icon.scss */
.icon-website:before {
  content: "\e011";
}

/* progress */
/* line 83, ../sass/partials/modules/_icon.scss */
.icon-analytics:before {
  content: "\e012";
}

/* menudown */
/* line 86, ../sass/partials/modules/_icon.scss */
.icon-caret-down:before {
  content: "\e013";
}

/* Arrow-left */
/* line 89, ../sass/partials/modules/_icon.scss */
.icon-arrow-left:before {
  content: "\e094";
}

/* Arrow-right */
/* line 92, ../sass/partials/modules/_icon.scss */
.icon-arrow-right:before {
  content: "\e095";
}

/* Plus */
/* line 95, ../sass/partials/modules/_icon.scss */
.icon-plus:before {
  content: "\e114";
}

/* Minus */
/* line 98, ../sass/partials/modules/_icon.scss */
.icon-minus:before {
  content: "\e115";
}

/* Question mark outline */
/* line 101, ../sass/partials/modules/_icon.scss */
.icon-question-outline:before {
  content: "\e30f";
}

/* pencil - edit */
/* line 104, ../sass/partials/modules/_icon.scss */
.icon-edit:before {
  content: "\e600";
}

/* play - movie */
/* line 107, ../sass/partials/modules/_icon.scss */
.icon-movie:before {
  content: "\e601";
}

/* bullhorn */
/* line 110, ../sass/partials/modules/_icon.scss */
.icon-bullhorn:before {
  content: "\e602";
}

/* copy */
/* line 113, ../sass/partials/modules/_icon.scss */
.icon-copy:before {
  content: "\e603";
}

/* tag */
/* line 116, ../sass/partials/modules/_icon.scss */
.icon-tag:before {
  content: "\e604";
}

/* tags */
/* line 119, ../sass/partials/modules/_icon.scss */
.icon-tags:before {
  content: "\e605";
}

/* qrcode */
/* line 122, ../sass/partials/modules/_icon.scss */
.icon-qrcode:before {
  content: "\e606";
}

/* location */
/* line 125, ../sass/partials/modules/_icon.scss */
.icon-location:before {
  content: "\e607";
}

/* location2 */
/* line 128, ../sass/partials/modules/_icon.scss */
.icon-location2:before {
  content: "\e608";
}

/* map */
/* line 131, ../sass/partials/modules/_icon.scss */
.icon-map:before {
  content: "\e609";
}

/* map2 */
/* line 134, ../sass/partials/modules/_icon.scss */
.icon-map2:before {
  content: "\e60a";
}

/* print */
/* line 137, ../sass/partials/modules/_icon.scss */
.icon-print:before {
  content: "\e60b";
}

/* zoomin */
/* line 140, ../sass/partials/modules/_icon.scss */
.icon-zoomin:before {
  content: "\e60c";
}

/* zoomout */
/* line 143, ../sass/partials/modules/_icon.scss */
.icon-zoomout:before {
  content: "\e60d";
}

/* lock */
/* line 146, ../sass/partials/modules/_icon.scss */
.icon-lock:before {
  content: "\e60e";
}

/* unlocked */
/* line 149, ../sass/partials/modules/_icon.scss */
.icon-unlocked:before {
  content: "\e60f";
}

/* cogs */
/* line 152, ../sass/partials/modules/_icon.scss */
.icon-cogs:before {
  content: "\e610";
}

/* stats */
/* line 155, ../sass/partials/modules/_icon.scss */
.icon-stats:before {
  content: "\e611";
}

/* bars */
/* line 158, ../sass/partials/modules/_icon.scss */
.icon-bars:before {
  content: "\e612";
}

/* gift */
/* line 161, ../sass/partials/modules/_icon.scss */
.icon-gift:before {
  content: "\e613";
}

/* remove */
/* line 164, ../sass/partials/modules/_icon.scss */
.icon-remove:before {
  content: "\e614";
}

/* airplane */
/* line 167, ../sass/partials/modules/_icon.scss */
.icon-airplane:before {
  content: "\e615";
}

/* truck */
/* line 170, ../sass/partials/modules/_icon.scss */
.icon-truck:before {
  content: "\e616";
}

/* road */
/* line 173, ../sass/partials/modules/_icon.scss */
.icon-road:before {
  content: "\e617";
}

/* accessibility */
/* line 176, ../sass/partials/modules/_icon.scss */
.icon-accessibility:before {
  content: "\e618";
}

/* link */
/* line 179, ../sass/partials/modules/_icon.scss */
.icon-link:before {
  content: "\e619";
}

/* phone */
/* line 182, ../sass/partials/modules/_icon.scss */
.icon-phone:before {
  content: "\e61a";
}

/*Calendar*/
/* line 185, ../sass/partials/modules/_icon.scss */
.icon-calendar:before {
  content: "\e61e";
}

/* Star border */
/* line 188, ../sass/partials/modules/_icon.scss */
.icon-star_border:before {
  content: "\e61f";
}

/* Star half */
/* line 191, ../sass/partials/modules/_icon.scss */
.icon-star_half:before {
  content: "\e620";
}

/* Star full */
/* line 194, ../sass/partials/modules/_icon.scss */
.icon-star_full:before {
  content: "\e621";
}

/* Clipboard */
/* line 197, ../sass/partials/modules/_icon.scss */
.icon-clipboard:before {
  content: "\e622";
}

/* PDF */
/* line 200, ../sass/partials/modules/_icon.scss */
.icon-pdf:before {
  content: "\e62b";
}

/* Word */
/* line 203, ../sass/partials/modules/_icon.scss */
.icon-word:before {
  content: "\e62c";
}

/* Excel */
/* line 206, ../sass/partials/modules/_icon.scss */
.icon-excel:before {
  content: "\e62d";
}

/* Download */
/* line 209, ../sass/partials/modules/_icon.scss */
.icon-download:before {
  content: "\e631";
}

/* Attach */
/* line 212, ../sass/partials/modules/_icon.scss */
.icon-attach:before {
  content: "\e6db";
}

/*Fwd Email*/
/* line 215, ../sass/partials/modules/_icon.scss */
.icon-fwd-mail:before {
  content: "\e907";
}

/*New Email*/
/* line 218, ../sass/partials/modules/_icon.scss */
.icon-new-mail:before {
  content: "\e908";
}

/*Flag*/
/* line 221, ../sass/partials/modules/_icon.scss */
.icon-flag:before {
  content: "\e909";
}

/*Preview*/
/* line 224, ../sass/partials/modules/_icon.scss */
.icon-preview:before {
  content: "\e90a";
}

/*Clock*/
/* line 227, ../sass/partials/modules/_icon.scss */
.icon-clock:before {
  content: "\e90b";
}

/*Reply All Email*/
/* line 230, ../sass/partials/modules/_icon.scss */
.icon-reply-all-mail:before {
  content: "\e90c";
}

/*Reply Email*/
/* line 233, ../sass/partials/modules/_icon.scss */
.icon-reply-mail:before {
  content: "\e90d";
}

/*Key*/
/* line 236, ../sass/partials/modules/_icon.scss */
.icon-key:before {
  content: "\e90e";
}

/*List*/
/* line 239, ../sass/partials/modules/_icon.scss */
.icon-list:before {
  content: "\e90f";
}

/*Tree*/
/* line 242, ../sass/partials/modules/_icon.scss */
.icon-tree:before {
  content: "\e910";
}

/*Notification*/
/* line 245, ../sass/partials/modules/_icon.scss */
.icon-notification:before {
  content: "\e911";
}

/*Office*/
/* line 248, ../sass/partials/modules/_icon.scss */
.icon-facility:before {
  content: "\e912";
}

/*Pen*/
/* line 251, ../sass/partials/modules/_icon.scss */
.icon-pen:before {
  content: "\e913";
}

/*Book*/
/* line 254, ../sass/partials/modules/_icon.scss */
.icon-book:before {
  content: "\e914";
}

/*Profile*/
/* line 257, ../sass/partials/modules/_icon.scss */
.icon-profile:before {
  content: "\e915";
}

/*Users*/
/* line 260, ../sass/partials/modules/_icon.scss */
.icon-group:before {
  content: "\e916";
}

/*Referral*/
/* line 263, ../sass/partials/modules/_icon.scss */
.icon-referral:before {
  content: "\e917";
}

/*File Text*/
/* line 266, ../sass/partials/modules/_icon.scss */
.icon-text:before {
  content: "\e918";
}

/*Drawer*/
/* line 269, ../sass/partials/modules/_icon.scss */
.icon-drawer:before {
  content: "\e919";
}

/*Lifebuoy*/
/* line 272, ../sass/partials/modules/_icon.scss */
.icon-support:before {
  content: "\e91a";
}

/*Rounded box*/
/* line 275, ../sass/partials/modules/_icon.scss */
.icon-rounded-box:before {
  content: "\e91b";
}

/*White Plus*/
/* line 278, ../sass/partials/modules/_icon.scss */
.icon-white-plus:before {
  content: "\e91c";
}

/*User Plus*/
/* line 281, ../sass/partials/modules/_icon.scss */
.icon-user-plus:before {
  content: "\e91d";
}

/*Archive*/
/* line 284, ../sass/partials/modules/_icon.scss */
.icon-archive:before {
  content: "\e91e";
}

/*Activate*/
/* line 287, ../sass/partials/modules/_icon.scss */
.icon-activate:before {
  content: "\e91f";
}

/* Question mark not in a circle */
/* line 290, ../sass/partials/modules/_icon.scss */
.icon-question-mark:before {
  content: "\e920";
}

/* play - round button */
/* line 293, ../sass/partials/modules/_icon.scss */
.icon-play:before {
  content: "\e921";
}

/* solid block plus */
/* line 296, ../sass/partials/modules/_icon.scss */
.icon-block-plus:before {
  content: "\e922";
}

/*Network - organisation  management*/
/* line 299, ../sass/partials/modules/_icon.scss */
.icon-network:before {
  content: "\e923";
}

/*Play*/
/* line 302, ../sass/partials/modules/_icon.scss */
.icon-music:before {
  content: "\e924";
}

/*Compass*/
/* line 305, ../sass/partials/modules/_icon.scss */
.icon-compass:before {
  content: "\e94a";
}

/*Mobile*/
/* line 308, ../sass/partials/modules/_icon.scss */
.icon-mobile:before {
  content: "\e958";
}

/*Left*/
/* line 311, ../sass/partials/modules/_icon.scss */
.icon-left:before {
  content: "\f044";
}

/*Right*/
/* line 314, ../sass/partials/modules/_icon.scss */
.icon-right:before {
  content: "\f05a";
}

/*Cogs*/
/* line 317, ../sass/partials/modules/_icon.scss */
.icon-cogs:before {
  content: "\f085";
}

/*Jump Left*/
/* line 320, ../sass/partials/modules/_icon.scss */
.icon-jumpleft:before {
  content: "\f0a5";
}

/*Jump Right*/
/* line 323, ../sass/partials/modules/_icon.scss */
.icon-jumpright:before {
  content: "\f0a6";
}

/*Circle*/
/* line 326, ../sass/partials/modules/_icon.scss */
.icon-circle:before {
  content: "\f10c";
}

/*Replied Email*/
/* line 329, ../sass/partials/modules/_icon.scss */
.icon-replied-mail:before {
  content: "\f112";
}

/*Replied Email*/
/* line 332, ../sass/partials/modules/_icon.scss */
.icon-sort:before {
  content: "\f142";
}

/* Tick */
/* line 335, ../sass/partials/modules/_icon.scss */
.icon-tick:before {
  content: "\e925";
}

/* user */
/* line 338, ../sass/partials/modules/_icon.scss */
.icon-user:before {
  content: "\e900";
}

/* info */
/* line 341, ../sass/partials/modules/_icon.scss */
.icon-info:before {
  content: "\e926";
}

/* logout */
/* line 344, ../sass/partials/modules/_icon.scss */
.icon-logout:before {
  content: "\e904";
}

/* Table */
/* line 347, ../sass/partials/modules/_icon.scss */
.icon-table:before {
  content: "\ea71";
}

/* --Extenders-- */
/* Apply some spacing between the icon element and adjacent text */
/* line 352, ../sass/partials/modules/_icon.scss */
.icon-spacing:before {
  margin-right: 0.25em;
}

/* Remove margins*/
/* line 355, ../sass/partials/modules/_icon.scss */
.icon-flush-top:before {
  position: static;
}

/* line 356, ../sass/partials/modules/_icon.scss */
.icon-flush:before {
  margin-right: 0;
}

/* Fixed width */
/* line 359, ../sass/partials/modules/_icon.scss */
.icon-fixed-width:before {
  width: 1em;
  text-align: center;
}

/* - Misc -*/
/* line 365, ../sass/partials/modules/_icon.scss */
.notification {
  background-color: #b31200;
  padding: 0.4em 0.85em;
  border: 1px solid #fff;
  border-radius: 50%;
  float: right;
  position: absolute;
  top: 1em;
  right: 1em;
  top: -1em;
}

/* line 378, ../sass/partials/modules/_icon.scss */
.red_flag {
  color: #b31200;
}

/* -Alternate sizes- */
/* Small */
/* line 383, ../sass/partials/modules/_icon.scss */
.icon-sml:before {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1;
}

/* Medium */
/* line 386, ../sass/partials/modules/_icon.scss */
.icon-med:before {
  font-size: 20px;
  font-size: 1.42857rem;
  line-height: 1;
}

/* Big */
/* line 390, ../sass/partials/modules/_icon.scss */
.icon-big:before {
  font-size: 32px;
  font-size: 2.28571rem;
  line-height: 1;
}

/* Large */
/* line 393, ../sass/partials/modules/_icon.scss */
.icon-lrg:before {
  font-size: 45px;
  font-size: 3.21429rem;
  line-height: 1;
}

/* Huge */
/* line 396, ../sass/partials/modules/_icon.scss */
.icon-huge:before {
  font-size: 64px;
  font-size: 4.57143rem;
  line-height: 1;
}

/* Bigger */
/* line 399, ../sass/partials/modules/_icon.scss */
.icon-huge-2:before {
  font-size: 72px;
  font-size: 5.14286rem;
  line-height: 1;
}

/* Default */
/* line 402, ../sass/partials/modules/_icon.scss */
.icon-default:before {
  font-size: inherit;
}

/*Locked*/
/* line 405, ../sass/partials/modules/_icon.scss */
.locked img {
  opacity: 0.5;
}
/* line 407, ../sass/partials/modules/_icon.scss */
.locked img:hover {
  opacity: 1;
}

/* ======================================================================================
   @MODULES -> ICON
   ====================================================================================== */
/*
	Usage: 
		Applies an icon font and nothing else (similar to the sprite module).
	
	Demo:
		Style Guide -> Modules -> Icon
*/
@font-face {
  font-family: 'emoticons';
  src: url("fonts/emoticons/emoticons.eot?-erybr4");
  src: url("fonts/emoticons/emoticons.eot?#iefix-erybr4") format("embedded-opentype"), url("fonts/emoticons/emoticons.ttf?-erybr4") format("truetype"), url("fonts/emoticons/emoticons.woff?-erybr4") format("woff"), url("fonts/emoticons/emoticons.svg?-erybr4#emoticons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 24, ../sass/partials/modules/_emoticons.scss */
.emoticon:before {
  /*@extend %sprite-icon;*/
  speak: none;
  font-family: 'emoticons';
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-size: 2.5em;
}

/* --Set icons-- */
/*Calm*/
/* line 38, ../sass/partials/modules/_emoticons.scss */
.emoticon-calm:before {
  content: "\62";
}

/*Grateful*/
/* line 41, ../sass/partials/modules/_emoticons.scss */
.emoticon-grateful:before {
  content: "\6a";
}

/*Excited*/
/* line 44, ../sass/partials/modules/_emoticons.scss */
.emoticon-excited:before {
  content: "\44";
}

/*Happy*/
/* line 47, ../sass/partials/modules/_emoticons.scss */
.emoticon-happy:before {
  content: "\29";
}

/*Determined*/
/* line 50, ../sass/partials/modules/_emoticons.scss */
.emoticon-determined:before {
  content: "\58";
}

/*Inspired*/
/* line 53, ../sass/partials/modules/_emoticons.scss */
.emoticon-inspired:before {
  content: "\67";
}

/*Lovestruck*/
/* line 56, ../sass/partials/modules/_emoticons.scss */
.emoticon-lovestruck:before {
  content: "\69";
}

/*Strong*/
/* line 59, ../sass/partials/modules/_emoticons.scss */
.emoticon-strong:before {
  content: "\34";
}

/*Hopeful*/
/* line 62, ../sass/partials/modules/_emoticons.scss */
.emoticon-hopeful:before {
  content: "\48";
}

/*Tired*/
/* line 65, ../sass/partials/modules/_emoticons.scss */
.emoticon-tired:before {
  content: "\5a";
}

/*Bored*/
/* line 68, ../sass/partials/modules/_emoticons.scss */
.emoticon-bored:before {
  content: "\47";
}

/*Lonely*/
/* line 71, ../sass/partials/modules/_emoticons.scss */
.emoticon-lonely:before {
  content: "\43";
}

/*Guilty*/
/* line 74, ../sass/partials/modules/_emoticons.scss */
.emoticon-guilty:before {
  content: "\28";
}

/*Irritable*/
/* line 77, ../sass/partials/modules/_emoticons.scss */
.emoticon-irritable:before {
  content: "\73";
}

/*Restless*/
/* line 80, ../sass/partials/modules/_emoticons.scss */
.emoticon-restless:before {
  content: "\4a";
}

/*Afraid*/
/* line 83, ../sass/partials/modules/_emoticons.scss */
.emoticon-afraid:before {
  content: "\76";
}

/*Distressed*/
/* line 86, ../sass/partials/modules/_emoticons.scss */
.emoticon-distressed:before {
  content: "\64";
}

/*Misunderstood*/
/* line 89, ../sass/partials/modules/_emoticons.scss */
.emoticon-misunderstood:before {
  content: "\49";
}

/*Needy*/
/* line 92, ../sass/partials/modules/_emoticons.scss */
.emoticon-needy:before {
  content: "\68";
}

/*Sad*/
/* line 95, ../sass/partials/modules/_emoticons.scss */
.emoticon-sad:before {
  content: "\6b";
}

/*Anxious*/
/* line 98, ../sass/partials/modules/_emoticons.scss */
.emoticon-anxious:before {
  content: "\75";
}

/*Ashamed*/
/* line 101, ../sass/partials/modules/_emoticons.scss */
.emoticon-ashamed:before {
  content: "\65";
}

/*Obsessed*/
/* line 104, ../sass/partials/modules/_emoticons.scss */
.emoticon-obsessed:before {
  content: "\55";
}

/*Angry*/
/* line 107, ../sass/partials/modules/_emoticons.scss */
.emoticon-angry:before {
  content: "\33";
}

/*Depressed*/
/* line 110, ../sass/partials/modules/_emoticons.scss */
.emoticon-depressed:before {
  content: "\6e";
}

/*Craving*/
/* line 113, ../sass/partials/modules/_emoticons.scss */
.emoticon-craving:before {
  content: "\61";
}

/*Pain*/
/* line 116, ../sass/partials/modules/_emoticons.scss */
.emoticon-pain:before {
  content: "\53";
}

/*Resentful*/
/* line 119, ../sass/partials/modules/_emoticons.scss */
.emoticon-resentful:before {
  content: "\36";
}

/* ======================================================================================
   @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: 33px;
  height: 33px;
  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;
}

/* ======================================================================================
   @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;
  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 19, ../sass/partials/modules/_pagination.scss */
.pagination li,
.pagination a,
.pagination .pagination--skip:before {
  display: inline-block;
}
/* line 24, ../sass/partials/modules/_pagination.scss */
.pagination li {
  margin: 0.25em 0em 0.25em 0.14286em;
  /* Adjust margin at this breakpoint */
  margin: 0em 0em 0em 0.14286em;
  /* Turn off margin for first child */
}
/* line 33, ../sass/partials/modules/_pagination.scss */
.pagination li:first-child {
  margin-left: 0;
}
/* line 37, ../sass/partials/modules/_pagination.scss */
.pagination a, .pagination button,
.pagination html input[type="button"],
.pagination input[type="reset"],
.pagination input[type="submit"] {
  /*@include to-em(padding, $spacing-micro $spacing-third);*/
  padding: 0 0.5em;
  height: 2.5em;
  background-color: #e3e3e3;
  text-decoration: none;
  /* Note: this may be redundant? */
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  /* Pseudo classes + active state */
}
/* line 50, ../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 59, ../sass/partials/modules/_pagination.scss */
.pagination a {
        /*padding-top: 0.35em;
        font-size: 1.2em;
        height: 2.35em;

        @include respond-max($palm){padding-top:0.4em;}*/
  padding-top: 0.4em;
}
/* line 68, ../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: #082e3e;
}
/* line 77, ../sass/partials/modules/_pagination.scss */
.pagination a[rel="prev"]:before,
.pagination a[rel="next"]:after {
  speak: none;
  vertical-align: top;
}
/* line 84, ../sass/partials/modules/_pagination.scss */
.pagination a[rel="prev"]:before {
  content: "\2039";
  margin-right: 0.375em;
}
/* line 90, ../sass/partials/modules/_pagination.scss */
.pagination a[rel="next"]:after {
  content: "\203a";
  margin-left: 0.375em;
}

/* Page count */
/* line 97, ../sass/partials/modules/_pagination.scss */
.pagination--count {
  padding-right: 0.25em;
  /* Change the display at this breakpoint */
}

/* Page jump - pseudo element - horizontal ellipsis glyph */
/* line 107, ../sass/partials/modules/_pagination.scss */
.pagination--skip:before {
  content: "\2026";
  speak: none;
  margin-right: 0.375em;
  color: gray;
  vertical-align: bottom;
}

/* ======================================================================================
   @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: -21px;
  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: 21px;
  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 {
  filter: alpha(opacity="70");
  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 {
  margin-left: 0;
  /* Accordion items */
}
/* line 17, ../sass/partials/modules/widgets/_accordion.scss */
.accordion > li {
  border-top: 1px solid #e3e3e3;
  /* 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: #f2f2f2;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  /* JS on */
  /* Pseudo element - plus glyph */
  /* Expanded state */
  /* Print */
}
/* line 39, ../sass/partials/modules/widgets/_accordion.scss */
.js .accordion-header {
  cursor: pointer;
  /* Pseudo classes */
}
/* line 43, ../sass/partials/modules/widgets/_accordion.scss */
.js .accordion-header:hover, .js .accordion-header:focus {
  background: #4d4d4d;
  color: #fff;
}
/* line 51, ../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 51, ../sass/partials/modules/widgets/_accordion.scss */
  .js .accordion-header:before {
    display: none;
  }
}
/* line 65, ../sass/partials/modules/widgets/_accordion.scss */
.js .is-expanded .accordion-header {
  background: #082e3e;
  color: #fff;
  /* Pseudo element - minus glyph */
}
/* line 70, ../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 80, ../sass/partials/modules/widgets/_accordion.scss */
.accordion-content {
  padding: 0.75em;
  display: none;
  /* Double the padding at this breakpoint */
  padding: 1.5em;
  /* JS off */
  /* Print */
}
/* line 90, ../sass/partials/modules/widgets/_accordion.scss */
.no-js .accordion-content {
  display: block;
}
@media print {
  /* line 80, ../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. */
  }
}

/* line 99, ../sass/partials/modules/widgets/_accordion.scss */
.content-body .accordion {
  margin-top: 0;
}
/* line 101, ../sass/partials/modules/widgets/_accordion.scss */
.content-body .accordion .accordion-header {
  color: #fff;
  text-transform: uppercase;
  background-color: #4cb6bd;
  padding-left: 0;
  font-weight: bold;
}
/* line 108, ../sass/partials/modules/widgets/_accordion.scss */
.content-body .accordion .accordion-content {
  padding: 0;
}

/*Show hide https://codepen.io/srekoble/pen/WGBzZa */
/* line 116, ../sass/partials/modules/widgets/_accordion.scss */
.show-hide-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 124, ../sass/partials/modules/widgets/_accordion.scss */
.show-hide-text a {
  /*-webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;*/
  border: 1px solid #bfbfbf;
  padding: 0 0.3em;
  margin-bottom: 0.3em;
}

/* line 131, ../sass/partials/modules/widgets/_accordion.scss */
.show-hide-text .story {
  position: relative;
  overflow: hidden;
  max-height: 60px;
  line-height: 20px;
  margin-bottom: 0.5em;
  width: 100%;
}

/* line 140, ../sass/partials/modules/widgets/_accordion.scss */
.show-hide-text .story:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2em;
}

@supports (-webkit-line-clamp: 3) {
  /* line 148, ../sass/partials/modules/widgets/_accordion.scss */
  .show-hide-text .story {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* line 154, ../sass/partials/modules/widgets/_accordion.scss */
  .show-hide-text .story:after {
    display: none;
  }
}
/* line 159, ../sass/partials/modules/widgets/_accordion.scss */
.show-less {
  display: none;
}

/* line 162, ../sass/partials/modules/widgets/_accordion.scss */
.show-less:target {
  display: block;
}

/* line 165, ../sass/partials/modules/widgets/_accordion.scss */
.show-less:target ~ .story {
  display: block;
  max-height: 100%;
}

/* line 170, ../sass/partials/modules/widgets/_accordion.scss */
.show-less:target + a {
  display: none;
}

/* ======================================================================================
   @MODULES -> WIDGETS -> FLEXSLIDER
   ====================================================================================== */
/*
	Usage: 
		A fully responsive jQuery slider, typically for photo galleries.
	
	Demo:
		Style Guide -> Modules -> Widgets -> Flexslider
	
	Credit: 
		http://www.woothemes.com/flexslider/
*/
/* 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;
}
/* line 28, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider {
  clear: both;
  position: relative;
  /* Print */
  /* Slides container */
  /* Slides - hide the slides before JS is loaded to avoid images jumping */
  /* Images */
}
@media print {
  /* line 28, ../sass/partials/modules/widgets/_flexslider.scss */
  .flexslider {
    display: none;
  }
}
/* line 40, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  /* First child should always be visible */
  /* Print */
}
/* line 44, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider .slides > li:first-child {
  display: block;
  -webkit-backface-visibility: visible;
}
@media print {
  /* line 40, ../sass/partials/modules/widgets/_flexslider.scss */
  .flexslider .slides > li {
    float: none !important;
  }
}
/* line 54, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider .slides img {
  display: block;
  margin: 0 auto;
}
/* line 58, ../sass/partials/modules/widgets/_flexslider.scss */
.flexslider li:before, .flexslider figcaption:before {
  display: none !important;
}

/* Pager nav */
/* line 62, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging {
  position: absolute;
  bottom: 0.5em;
  left: 50%;
  margin-left: -38px;
  /* Note: this equals half of what the width is */
  /* Print */
  /* Pager nav items */
  /* Links */
}
@media print {
  /* line 62, ../sass/partials/modules/widgets/_flexslider.scss */
  .flex-control-paging {
    display: none;
  }
}
/* line 72, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging li {
  display: inline-block;
}
/* line 76, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging a {
  width: 2.28571em;
  height: 2.28571em;
  overflow: hidden;
  display: block;
  cursor: pointer;
  margin-right: 0.375em;
  /* Note: demo styles, please remove. */
  text-decoration: none;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  text-indent: 0;
  font: bold 13px/26px Consolas, "Courier New", Courier, monospace;
  /* Pseudo classes + active state */
}
/* line 92, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-control-paging a:hover, .flex-control-paging a:focus, .flex-control-paging a.flex-active {
  /* Note: demo styles, please remove. */
  background-color: #082e3e;
  color: #fff;
}

/* Prev/next nav */
/* line 106, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav {
  list-style: none !important;
}

/* line 109, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a {
  text-decoration: none;
  /* Note: this may be redundant? */
  display: block;
  /* Note: demo styles, please remove. */
  width: 3.5em;
  height: 5em;
  text-align: center;
  padding-top: 0.7em;
  overflow: hidden;
  position: absolute;
  top: -12em;
  margin-top: -20px;
  /* Note: this equals half of what the height is */
  background-color: rgba(0, 0, 0, 0.5);
  text-indent: 0 !important;
  border-radius: 3px;
  /*@include respond-max(379){
      &.flex-prev{
          left:0!important;
      }
      &.flex-next{
          right:0!important;
      }
  }*/
}
/* line 125, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
/* line 126, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  color: #f2f2f2;
}
/* line 127, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a.flex-prev {
  left: -1.2em;
}
/* line 129, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a.flex-prev:before {
  content: '\f001';
}
/* line 131, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a.flex-next {
  right: 0;
}
/* line 133, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

/* Print */
@media print {
  /* line 159, ../sass/partials/modules/widgets/_flexslider.scss */
  .flex-direction-nav {
    display: none;
  }
}
/* Prev */
/* line 165, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-prev {
  left: 0;
  /* Pseudo classes */
  /* Note: demo styles, please remove. */
}
/* line 168, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-prev:hover, .flex-prev:focus {
  background-color: #082e3e;
}

/* Next */
/* line 176, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-next {
  right: 0;
  /* Pseudo classes */
  /* Note: demo styles, please remove. */
}
/* line 179, ../sass/partials/modules/widgets/_flexslider.scss */
.flex-next:hover, .flex-next:focus {
  background-color: #082e3e;
}

/*Modules*/
/* line 188, ../sass/partials/modules/widgets/_flexslider.scss */
.modules.grid {
  margin-left: -10px;
}
/* line 190, ../sass/partials/modules/widgets/_flexslider.scss */
.modules.grid .grid-item {
  padding-left: 10px;
}
/* line 192, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider {
  margin: 0 auto;
}
/* line 194, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides {
  margin: 0;
}
/* line 196, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides a {
  color: #fff !important;
}
/* line 198, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides a:hover {
  text-decoration: none;
}
/* line 200, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .first, .modules .flexslider .slides .second, .modules .flexslider .slides .third, .modules .flexslider .slides .fourth, .modules .flexslider .slides .fifth {
  min-height: 9.28571em;
  position: relative;
}
/* line 203, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .first div, .modules .flexslider .slides .second div, .modules .flexslider .slides .third div, .modules .flexslider .slides .fourth div, .modules .flexslider .slides .fifth div {
  position: absolute;
  bottom: 0.8em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
/* line 208, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .first div span, .modules .flexslider .slides .second div span, .modules .flexslider .slides .third div span, .modules .flexslider .slides .fourth div span, .modules .flexslider .slides .fifth div span {
  margin-right: 0.5em;
}
/* line 211, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .first {
  background-color: #2d8ca8;
  background-image: -webkit-linear-gradient(bottom right, #132b4f, #2d8ca8);
  background-image: linear-gradient(to top left, #132b4f, #2d8ca8);
}
/* line 214, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .second {
  background-color: #4e3f29;
  background-image: -webkit-linear-gradient(bottom right, #090909, #4e3f29);
  background-image: linear-gradient(to top left, #090909, #4e3f29);
}
/* line 217, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .third {
  background-color: #3e9aab;
  background-image: -webkit-linear-gradient(bottom right, #2f82af, #3e9aab);
  background-image: linear-gradient(to top left, #2f82af, #3e9aab);
}
/* line 220, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .fourth {
  background-color: #2c728f;
  background-image: -webkit-linear-gradient(bottom right, #0b3123, #2c728f);
  background-image: linear-gradient(to top left, #0b3123, #2c728f);
}
/* line 223, ../sass/partials/modules/widgets/_flexslider.scss */
.modules .flexslider .slides .fifth {
  background-color: #fbd981;
  background-image: -webkit-linear-gradient(bottom right, #d47929, #fbd981);
  background-image: linear-gradient(to top left, #d47929, #fbd981);
}

/* ======================================================================================
   @MODULES -> WIDGETS -> RESPONSIVE 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 */
  /* 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: 10.5px;
  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 */
  display: none;
  /* 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 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 */
/* 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: $z-index-max - 1;*/
  z-index: 5;
  background-color: #000;
}
/* line 37, ../sass/partials/modules/widgets/_modal.scss */
.modal-backdrop, .modal-backdrop.is-fade.is-active {
  filter: alpha(opacity="80");
}

/* Modal */
/* line 44, ../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);
  /* Fix the width and adjust offsets at this breakpoint */
  width: 40em;
  margin-top: -250px;
  margin-left: -280px;
  /* Fade state */
}
/* line 63, ../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 67, ../sass/partials/modules/widgets/_modal.scss */
.modal.is-fade.is-active {
  top: 15%;
  opacity: 1;
  top: 40%;
}

/* Modal header */
/* line 79, ../sass/partials/modules/widgets/_modal.scss */
.modal-header {
  padding: 0.375em 1em;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  /* Modal title */
  /* Close button */
}
/* line 84, ../sass/partials/modules/widgets/_modal.scss */
.modal-header .hn {
  margin: 0;
}
/* line 88, ../sass/partials/modules/widgets/_modal.scss */
.modal-header .btn-close {
  position: absolute;
  right: 0.71429em;
  top: 50%;
  margin-top: -0.78571em;
  z-index: 99;
}

/* Modal body */
/* line 98, ../sass/partials/modules/widgets/_modal.scss */
.modal-body {
  max-height: 32.85714em;
  padding: 1em;
  overflow-y: auto;
  /* Increase the max height at this breakpoint */
  max-height: 28.57143em;
}

/* Modal footer */
/* line 109, ../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;
}

/* Special Modal Emoticons*/
/* line 120, ../sass/partials/modules/widgets/_modal.scss */
.modal-emoticons {
  font-size: 0.9em;
}
/* line 121, ../sass/partials/modules/widgets/_modal.scss */
.modal-emoticons .non-palm-one-quarter {
  width: 25%;
  text-align: center;
}

/* line 135, ../sass/partials/modules/widgets/_modal.scss */
.good, .fair, .bad {
  text-decoration: none;
}

/* line 139, ../sass/partials/modules/widgets/_modal.scss */
.good, .good:visited {
  color: #1ac62a;
}

/* line 143, ../sass/partials/modules/widgets/_modal.scss */
.fair, .fair:visited {
  color: #ff8a00;
}

/* line 147, ../sass/partials/modules/widgets/_modal.scss */
.bad, .bad:visited {
  color: #ff0000;
}

/*Image library*/
/* line 154, ../sass/partials/modules/widgets/_modal.scss */
.image-library .modal-body .grid {
  display: table !important;
}
/* line 158, ../sass/partials/modules/widgets/_modal.scss */
.image-library .modal-body .grid-item {
  display: table-cell;
  min-height: 150px;
  margin-bottom: 0;
}
/* line 164, ../sass/partials/modules/widgets/_modal.scss */
.image-library .modal-body .grid-item img {
  margin-top: 0.5em;
  max-width: 5.71429em !important;
}

/*Comm Styles*/
/* line 172, ../sass/partials/modules/widgets/_modal.scss */
.communication-styles-list {
  display: table;
  width: 100%;
  margin-left: 0;
  background-color: #f2f2f2;
  font-size: 0.9em;
}
/* line 178, ../sass/partials/modules/widgets/_modal.scss */
.communication-styles-list li {
  display: table-cell;
  padding: 0.3em;
  width: 33%;
}

/*Popup modal image*/
/* line 182, ../sass/partials/modules/widgets/_modal.scss */
.modal-img {
  display: block;
  text-align: center;
}
/* line 185, ../sass/partials/modules/widgets/_modal.scss */
.modal-img img {
  max-height: 21.42857em;
}

/* ======================================================================================
   @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.42857em;
  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 */
  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 */
/* line 14, ../sass/partials/modules/widgets/_tabs.scss */
.tabs {
  text-align: left;
}

/* Tab nav */
/* line 19, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav {
  text-align: left;
  margin-bottom: -1px;
  /* Items */
  /* Links */
  /* Pseudo classes + active state */
  /* JS off */
  /* Print */
}
/* line 23, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav li {
  background-color: #082e3e;
  position: relative;
  margin-right: -0.175em;
  /*Notification number*/
  /* Items go into horizontal mode therefore require some spacing between them at this breakpoint */
  border-bottom: 0;
}
/* line 28, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav li .user-notifications-count {
  background-color: #b31200;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: -1.7em;
  right: 0.5em;
  width: 2.5em;
  height: 2.5em;
  padding-top: 0.4em;
}
/* line 46, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav a {
  padding: 0.75em 1.5em;
  text-decoration: none;
  /* Note: this may be redundant? */
  color: #fff;
  display: block;
  /* Change the border color at this breakpoint 
  @include respond-min($non-palm) {
      border:1px solid $color-grey-lighter;
  }*/
}
/* line 62, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav h2 {
  color: #fff;
}
/* line 66, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav a:hover,
.tab-nav a:focus,
.tab-nav .is-active a {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  color: #082e3e;
  /* Change the border color at this breakpoint */
  border-bottom-color: #fff;
}
/* line 82, ../sass/partials/modules/widgets/_tabs.scss */
.tab-nav a:hover h2, .tab-nav .is-active a h2 {
  color: #082e3e;
}
/* line 86, ../sass/partials/modules/widgets/_tabs.scss */
.no-js .tab-nav {
  display: none;
}
@media print {
  /* line 19, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-nav {
    display: none;
  }
}

/* Tab Content */
/* line 108, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content {
  display: none;
  padding: 21px;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  text-align: left;
  /* Active tab */
  /* Double the padding at this breakpoint */
  padding: 21px;
  /* JS off */
  /* Print */
}
/* line 116, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content.is-active {
  display: block;
  /*border:1px solid $color-grey-lighter;*/
}
/* line 126, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content .complete {
  position: absolute;
  right: 0;
  top: 0.3em;
  width: auto;
  margin-left: 0;
}
/* line 129, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content .complete .form-main-label {
  width: auto;
}
/* line 134, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content .update-sort {
  float: left;
  margin-left: 0.2em;
}
/* line 140, ../sass/partials/modules/widgets/_tabs.scss */
.no-js .tab-content {
  display: block;
  margin-bottom: 21px;
}
@media print {
  /* line 108, ../sass/partials/modules/widgets/_tabs.scss */
  .tab-content {
    display: block;
    margin-bottom: 21px;
  }
}
/* line 150, ../sass/partials/modules/widgets/_tabs.scss */
.tab-content:after {
  content: "";
  display: table;
  clear: both;
}

/* line 159, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading-simple h2 {
  float: left;
}
/* line 163, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading-simple div {
  float: right;
}

/* line 171, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter div {
  position: relative;
  margin-bottom: 1em;
}
/* line 175, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter div a {
  width: 100%;
  text-align: center;
}
/* line 181, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .disc {
  padding: 0.3em 0 0 0;
  width: 2em;
  height: 2em;
  text-align: center;
}
/* line 205, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading div:last-child, .tab-heading .h1 {
  float: left;
}
/* line 209, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading div:first-child {
  float: right;
}
/* line 213, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading:after {
  clear: both;
}
/* line 219, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter div:first-child {
  float: right;
  margin-left: 0.71429em;
}
/* line 224, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter div:last-child {
  float: right;
  margin-bottom: 0;
}
/* line 228, ../sass/partials/modules/widgets/_tabs.scss */
.tab-heading .filter div:last-child .onoffswitch {
  left: 1em;
  margin-right: 2em;
}

/* line 244, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading {
  padding-bottom: 1em;
  padding-bottom: 0;
}
/* line 249, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div:first-child .onoffswitch {
  left: 0;
  float: left;
  margin-right: 0.3em;
  margin-bottom: 1em;
}
/* line 257, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div:last-child {
  float: none;
}
/* line 265, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading h2 {
  float: left;
}
/* line 269, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading .onoffswitch {
  top: 0.5em;
}
/* line 275, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div:first-child .onoffswitch {
  left: 1em;
}
/* line 280, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div:last-child {
  float: right;
}
/* line 282, ../sass/partials/modules/widgets/_tabs.scss */
.profile-heading div:last-child input {
  margin-top: 0.35em;
}

/* line 288, ../sass/partials/modules/widgets/_tabs.scss */
.tab-body {
  border: 1px solid #d4d4d4;
}

/*Help section*/
/* line 294, ../sass/partials/modules/widgets/_tabs.scss */
.help-tiles .island {
  background-color: #f2f2f2;
  border-radius: 0;
  text-align: center;
  padding: 2em 1em;
}
/* line 299, ../sass/partials/modules/widgets/_tabs.scss */
.help-tiles .island .icon:before {
  margin-right: 0;
}
/* line 301, ../sass/partials/modules/widgets/_tabs.scss */
.help-tiles .btn {
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}
/* line 303, ../sass/partials/modules/widgets/_tabs.scss */
.help-tiles .btn div {
  text-transform: none;
  margin-top: 0.5em;
}

/* ======================================================================================
   @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: #000;
  border-radius: 4px;
  padding: 0.5em;
  display: none;
  position: absolute;
  white-space: nowrap;
  z-index: 2147483647;
  /* 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 44, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip:before {
  content: "";
  position: absolute;
}
/* line 52, ../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 61, ../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 70, ../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 78, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.e:before {
  border-right: 10px solid rgba(0, 0, 0, 0.8);
  left: -10px;
}
/* line 84, ../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 92, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.w:before {
  border-left: 10px solid rgba(0, 0, 0, 0.8);
  right: -10px;
}
/* line 98, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.ne:before, #tooltip.se:before {
  border-right: 10px solid transparent;
  border-left: 0;
  left: 10px;
}
/* line 106, ../sass/partials/modules/widgets/_tooltip.scss */
#tooltip.nw:before, #tooltip.sw:before {
  border-left: 10px solid transparent;
  border-right: 0;
  right: 10px;
}

/* line 1, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box {
  font-size: 1.25rem;
  /* 20 */
  text-align: center;
  background-color: #c8dadf;
  position: relative;
  padding: 20px 20px;
}

/* line 9, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box.has-advanced-upload {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  transition: outline-offset .15s ease-in-out, background-color .15s linear;
}

/* line 16, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box.is-dragover {
  outline-offset: -20px;
  outline-color: #c8dadf;
  background-color: #fff;
}

/* line 22, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__dragndrop,
.box__icon {
  display: none;
}

/* line 27, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box.has-advanced-upload .box__dragndrop {
  display: inline;
}

/* line 31, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box.has-advanced-upload .box__icon {
  width: 100%;
  height: 80px;
  fill: #92b0b3;
  display: block;
  margin-bottom: 40px;
}

/* line 39, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box.is-uploading .box__input,
.box.is-success .box__input,
.box.is-error .box__input {
  visibility: hidden;
}

/* line 45, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__uploading,
.box__success,
.box__error {
  display: none;
}

/* line 51, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box.is-uploading .box__uploading,
.box.is-success .box__success,
.box.is-error .box__error {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 63, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__uploading {
  font-style: italic;
}

/* line 67, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__success {
  -webkit-animation: appear-from-inside .25s ease-in-out;
  animation: appear-from-inside .25s ease-in-out;
}

@-webkit-keyframes appear-from-inside {
  from {
    -webkit-transform: translateY(-50%) scale(0);
  }
  75% {
    -webkit-transform: translateY(-50%) scale(1.1);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
  }
}
@keyframes appear-from-inside {
  from {
    transform: translateY(-50%) scale(0);
  }
  75% {
    transform: translateY(-50%) scale(1.1);
  }
  to {
    transform: translateY(-50%) scale(1);
  }
}
/* line 100, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__restart {
  font-weight: 700;
}

/* line 104, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__restart:focus,
.box__restart:hover {
  color: #39bfd3;
}

/* line 109, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.js .box__file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

/* line 118, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.js .box__file + label {
  max-width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
}

/* line 127, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.js .box__file + label:hover strong,
.box__file:focus + label strong,
.box__file.has-focus + label strong {
  color: #39bfd3;
}

/* line 133, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.js .box__file:focus + label,
.js .box__file.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

/* line 139, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.js .box__file + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}

/* line 143, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.no-js .box__file + label {
  display: none;
}

/* line 147, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.no-js .box__button {
  display: block;
}

/* line 151, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__button {
  font-weight: 700;
  color: #e5edf1;
  background-color: #39bfd3;
  display: block;
  padding: 8px 16px;
  margin: 40px auto 0;
}

/* line 160, ../sass/partials/modules/widgets/_drag-and-drop.scss */
.box__button:hover,
.box__button:focus {
  background-color: #0f3c4b;
}

/*Creates the slide-out menu effect*/
/* line 2, ../sass/partials/modules/widgets/_menu-slider.scss */
input.btn-slide[type=checkbox] {
  position: fixed;
  opacity: 0;
}

/* line 7, ../sass/partials/modules/widgets/_menu-slider.scss */
label.btn-slide {
  display: none;
}

/*@import "partials/modules/widgets/custom-etc";
@import "partials/modules/widgets/tablesaw";*/
/* 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: 0.41em;
  border: 1px solid #bfbfbf;
  box-shadow: inset -1px 1px 1px 0 rgba(0, 0, 0, 0.1);
  /* 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 20, ../sass/partials/forms/_base.scss */
.txt-input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.35);
  /* Old IE */
  border-color: gray;
}

/* line 34, ../sass/partials/forms/_base.scss */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("img/dd-arrow.png") no-repeat right;
  padding: 0.4em 2em 0.5em 0.5em;
}

/* Legend - for legends that are visible and to fix up some browsers not supporting bottom margin */
/* line 42, ../sass/partials/forms/_base.scss */
legend.hn {
  padding-bottom: 21px;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

/* Textarea */
/* line 48, ../sass/partials/forms/_base.scss */
textarea {
  height: 13em;
  resize: vertical;
}

/* Listbox */
/* line 54, ../sass/partials/forms/_base.scss */
.listbox {
  height: 15em;
  width: 80%;
  resize: vertical;
}

/* Select list */
/* line 61, ../sass/partials/forms/_base.scss */
select {
  width: auto;
}

/* Alternate sizes */
/* line 64, ../sass/partials/forms/_base.scss */
.txt-input-sml {
  width: 16.666%;
}

/* line 65, ../sass/partials/forms/_base.scss */
.txt-input-sml-med {
  width: 33.333%;
}

/* line 66, ../sass/partials/forms/_base.scss */
.txt-input-med {
  width: 50%;
}

/* line 67, ../sass/partials/forms/_base.scss */
.txt-input-90 {
  width: 90%;
}

/* 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 78, ../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;
  filter: alpha(opacity="70")!important;
}

/* 'Required field' indicator (asterisk) */
/* line 90, ../sass/partials/forms/_base.scss */
.req-field {
  font-family: Verdana, Geneva, sans-serif;
  line-height: 1;
  color: #e80000;
  cursor: help;
}

/* Reset some defaults */
/* line 98, ../sass/partials/forms/_base.scss */
form p {
  margin: 0;
}

/* line 102, ../sass/partials/forms/_base.scss */
.clear-bg {
  background-image: none;
}

/* line 110, ../sass/partials/forms/_base.scss */
.auto-complete-list {
  margin: 0;
  background: white;
  border: 1px solid #c1c1c1;
}

/* line 116, ../sass/partials/forms/_base.scss */
.auto-complete-highlighted {
  background: #c1c1c1;
  padding: .2em .2em;
}

/* line 121, ../sass/partials/forms/_base.scss */
.auto-complete-list-item {
  padding: .2em .2em;
}

/* line 125, ../sass/partials/forms/_base.scss */
#password_strength {
  display: inline-block;
}

/* ======================================================================================
   @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.21429em;
  font-weight: 500;
  /* Sits to the left of it's input(s) at this breakpoint */
  width: 18.28571em;
  float: left;
  text-align: right;
  margin: 0.14286em 0 0;
  padding-right: 1em;
  position: relative;
}

/* Input(s) - sits to the right of it's label at this breakpoint */
/* line 57, ../sass/partials/forms/_layout.scss */
.form-main-inputs {
  margin-left: 20em;
  width: 50%;
}

/* --Extenders-- */
/* The 'Actions' and 'Solo checkbox' extenders need this to position their 'Preloader' and 'Checkbox' */
/* line 67, ../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 73, ../sass/partials/forms/_layout.scss */
.form-main-inputs-actions {
  margin-top: 21px;
  margin-top: 1.5rem;
  /* Print */
}
@media print {
  /* line 73, ../sass/partials/forms/_layout.scss */
  .form-main-inputs-actions {
    display: none;
  }
}

/*Grey fill*/
/* line 82, ../sass/partials/forms/_layout.scss */
.alternate-grey {
  background-color: #f4f4f4;
  padding: 0.8em 0.8em;
  margin-bottom: 0;
}

/*white fill*/
/* line 89, ../sass/partials/forms/_layout.scss */
.alternate-white {
  background-color: #fff;
  padding: 0.8em 0.8em;
  margin-bottom: 0;
}

/*Dashboard img width*/
/* line 96, ../sass/partials/forms/_layout.scss */
.icon-width {
  width: 150px;
}

/* Input(s) nested elements */
/* line 102, ../sass/partials/forms/_layout.scss */
.form-main-inputs {
  /* Vertical alignment for all `input`'s and `label`'s */
  /* Adjustments at this breakpoint */
  /* Nudge `type="file"` `input` down */
  /* Horizontal list */
}
/* line 104, ../sass/partials/forms/_layout.scss */
.form-main-inputs label,
.form-main-inputs input {
  vertical-align: middle;
}
/* line 111, ../sass/partials/forms/_layout.scss */
.form-main-inputs input[type="file"] {
  margin-top: 0.28571em;
}
/* line 115, ../sass/partials/forms/_layout.scss */
.form-main-inputs .horiz-list li {
  margin-left: 0.75em;
  /* Turn off margin for first item */
}
/* line 118, ../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.39286em;
  left: 0;
}
/* line 134, ../sass/partials/forms/_layout.scss */
.form-main-inputs-solo-checkbox label {
  padding-left: 1.28571em;
  display: block;
}

/* Feedback, Notes and Preloader */
/* line 141, ../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 148, ../sass/partials/forms/_layout.scss */
.form-main-notes {
  display: block;
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.35;
  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%;
}

/*Custom styling of inputs - radiobuttons and checkboxes*/
/* line 182, ../sass/partials/forms/_layout.scss */
.form-main-field, .form-main-inputs, .survey-answers, .survey-tbl, .survey-checkboxes, .list-colour-alt, .def-list {
  /*label {
      position: relative;
  }*/
}
/* line 184, ../sass/partials/forms/_layout.scss */
.form-main-field input[type="checkbox"], .form-main-field input[type="radio"], .form-main-inputs input[type="checkbox"], .form-main-inputs input[type="radio"], .survey-answers input[type="checkbox"], .survey-answers input[type="radio"], .survey-tbl input[type="checkbox"], .survey-tbl input[type="radio"], .survey-checkboxes input[type="checkbox"], .survey-checkboxes input[type="radio"], .list-colour-alt input[type="checkbox"], .list-colour-alt input[type="radio"], .def-list input[type="checkbox"], .def-list input[type="radio"] {
  opacity: 0;
  position: absolute;
}
/* line 191, ../sass/partials/forms/_layout.scss */
.form-main-field input[type="checkbox"], .form-main-field input[type="radio"], .form-main-field label, .form-main-inputs input[type="checkbox"], .form-main-inputs input[type="radio"], .form-main-inputs label, .survey-answers input[type="checkbox"], .survey-answers input[type="radio"], .survey-answers label, .survey-tbl input[type="checkbox"], .survey-tbl input[type="radio"], .survey-tbl label, .survey-checkboxes input[type="checkbox"], .survey-checkboxes input[type="radio"], .survey-checkboxes label, .list-colour-alt input[type="checkbox"], .list-colour-alt input[type="radio"], .list-colour-alt label, .def-list input[type="checkbox"], .def-list input[type="radio"], .def-list label {
  display: inline-block;
  vertical-align: middle;
  /*margin: 5px;*/
  cursor: pointer;
}
/* line 198, ../sass/partials/forms/_layout.scss */
.form-main-field input[type="checkbox"] + label:before, .form-main-field input[type="radio"] + label:before, .form-main-inputs input[type="checkbox"] + label:before, .form-main-inputs input[type="radio"] + label:before, .survey-answers input[type="checkbox"] + label:before, .survey-answers input[type="radio"] + label:before, .survey-tbl input[type="checkbox"] + label:before, .survey-tbl input[type="radio"] + label:before, .survey-checkboxes input[type="checkbox"] + label:before, .survey-checkboxes input[type="radio"] + label:before, .list-colour-alt input[type="checkbox"] + label:before, .list-colour-alt input[type="radio"] + label:before, .def-list input[type="checkbox"] + label:before, .def-list 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 211, ../sass/partials/forms/_layout.scss */
.form-main-field input[type="radio"] + label:before, .form-main-inputs input[type="radio"] + label:before, .survey-answers input[type="radio"] + label:before, .survey-tbl input[type="radio"] + label:before, .survey-checkboxes input[type="radio"] + label:before, .list-colour-alt input[type="radio"] + label:before, .def-list input[type="radio"] + label:before {
  border-radius: 50%;
}
/* line 215, ../sass/partials/forms/_layout.scss */
.form-main-field input[type="radio"]:checked + label:before, .form-main-inputs input[type="radio"]:checked + label:before, .survey-answers input[type="radio"]:checked + label:before, .survey-tbl input[type="radio"]:checked + label:before, .survey-checkboxes input[type="radio"]:checked + label:before, .list-colour-alt input[type="radio"]:checked + label:before, .def-list input[type="radio"]:checked + label:before {
  background: #082e3e;
  box-shadow: inset 0px 0px 0px 2px #fff;
}
/* line 220, ../sass/partials/forms/_layout.scss */
.form-main-field input[type="checkbox"]:checked + label:before, .form-main-inputs input[type="checkbox"]:checked + label:before, .survey-answers input[type="checkbox"]:checked + label:before, .survey-tbl input[type="checkbox"]:checked + label:before, .survey-checkboxes input[type="checkbox"]:checked + label:before, .list-colour-alt input[type="checkbox"]:checked + label:before, .def-list input[type="checkbox"]:checked + label:before {
  font-family: 'icons';
  content: "\e925";
  color: #082e3e;
}

/* line 227, ../sass/partials/forms/_layout.scss */
.form-main-label label {
  margin: 0 5px;
}

/* line 231, ../sass/partials/forms/_layout.scss */
.survey-answers {
  text-align: left;
}
/* line 234, ../sass/partials/forms/_layout.scss */
.survey-answers input[type="checkbox"] + label:before, .survey-answers input[type="radio"] + label:before {
  margin: 0 10px 5px 0px;
}
/* line 238, ../sass/partials/forms/_layout.scss */
.survey-answers .form-main-inputs-full {
  margin-right: 0;
  margin-left: 0;
}

/*Forms*/
/* line 246, ../sass/partials/forms/_layout.scss */
.forms .txt-input {
  border: 0;
}
/* line 249, ../sass/partials/forms/_layout.scss */
.forms .form-main-label {
  text-align: center;
  display: block;
  background-color: #2b5e7f;
  margin: 0;
  padding: 2.8em 0 0.5em 0;
  color: #fff;
  width: 10.71429em;
  min-height: 7.14286em;
  border-bottom-left-radius: 1em;
  position: relative;
}
/* line 260, ../sass/partials/forms/_layout.scss */
.forms .form-main-label span {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: right;
  display: block;
  padding: 0.5em 1em;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
  background: -moz-linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
/* line 270, ../sass/partials/forms/_layout.scss */
.forms .form-main-inputs {
  margin-left: 10.71429em;
  width: auto;
  position: relative;
}
/* line 274, ../sass/partials/forms/_layout.scss */
.forms .form-main-inputs .txt-input {
  min-height: 7.14286em;
}
/* line 277, ../sass/partials/forms/_layout.scss */
.forms .form-main-inputs span {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5em 1em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  position: absolute;
  top: 0;
}

/* Public */
/* line 287, ../sass/partials/forms/_layout.scss */
.public-bg .txt-input {
  border: 0;
  box-shadow: none;
  background-color: #f2f2f2;
  /*border-bottom:1px solid #fff;*/
  /*max-width:18.2em;*/
}
/* line 292, ../sass/partials/forms/_layout.scss */
.public-bg .form-main-block {
  position: relative;
}
/* line 294, ../sass/partials/forms/_layout.scss */
.public-bg .form-main-block .form-main-inputs {
  text-align: left;
}
/* line 295, ../sass/partials/forms/_layout.scss */
.public-bg .form-main-block .icon {
  background-color: #082e3e;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 0.3em;
  width: 2.2em;
  height: 2.1em;
}
/* line 307, ../sass/partials/forms/_layout.scss */
.public-bg label:before {
  background-color: transparent !important;
}
/* line 308, ../sass/partials/forms/_layout.scss */
.public-bg .line {
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
  border-bottom: 1px solid #fff;
}
/* line 309, ../sass/partials/forms/_layout.scss */
.public-bg .faq-box {
  margin-top: 1em;
  padding: 0.5em 3em;
  border: 1px solid #fff;
  display: inline-block;
}
/* line 312, ../sass/partials/forms/_layout.scss */
.public-bg .outer {
  margin: auto;
  position: relative;
}
/* line 315, ../sass/partials/forms/_layout.scss */
.public-bg .outer .inner {
  position: absolute;
  width: 1px;
  height: 2em;
  background: #fff;
  top: 30%;
  left: 50%;
}

/* Admin */
/* line 334, ../sass/partials/forms/_layout.scss */
.dashboard .gridview select {
  position: relative;
  top: -0.2em;
}

/* line 341, ../sass/partials/forms/_layout.scss */
.form-main-inputs.full {
  width: 100%;
}
/* line 344, ../sass/partials/forms/_layout.scss */
.form-main-inputs.full .form-main-label {
  width: auto;
  padding-right: 0;
}

/* line 355, ../sass/partials/forms/_layout.scss */
.modules .content-body .survey .form-main-field .form-main-label, .modules .content-body .survey .form-main-field .form-main-inputs {
  width: 100%;
}
/* line 356, ../sass/partials/forms/_layout.scss */
.modules .content-body .survey .form-main-field .form-main-label {
  float: none;
}
/* line 357, ../sass/partials/forms/_layout.scss */
.modules .content-body .survey .form-main-field .form-main-inputs {
  margin-left: 0;
}
/* line 359, ../sass/partials/forms/_layout.scss */
.modules .content-body .survey .form-main-field .form-main-inputs label {
  margin-left: 2.5em;
}

/* [SURVEY]
-------------------------------------------------------*/
/* Shared - tabular and list */
/* line 372, ../sass/partials/forms/_layout.scss */
.survey {
  background: white;
  margin: 15px 0;
  /*Hide for now*/
}
/* line 375, ../sass/partials/forms/_layout.scss */
.survey input[type="checkbox"] + label:before, .survey input[type="radio"] + label:before {
  margin-left: -2.5em;
}
/* line 378, ../sass/partials/forms/_layout.scss */
.survey .form-main-field {
  padding: 0.5em 0.5em 0.5em 2em;
  margin-bottom: 1em;
  position: relative;
}
/* line 383, ../sass/partials/forms/_layout.scss */
.survey .form-main-field .form-main-label {
  margin-bottom: 0.8em;
  text-align: left;
}
/* line 387, ../sass/partials/forms/_layout.scss */
.survey .form-main-field .form-main-label .numbering {
  color: #082e3e;
  display: inline-block;
  position: absolute;
  left: -1.5em;
}
/* line 397, ../sass/partials/forms/_layout.scss */
.survey .form-main-field .form-main-label {
  width: 30em;
}
/* line 401, ../sass/partials/forms/_layout.scss */
.survey .form-main-field .form-main-inputs {
  margin-left: 32.5em;
}
/* line 403, ../sass/partials/forms/_layout.scss */
.survey .form-main-field .form-main-inputs textarea {
  margin-left: -2.5em;
}
/* line 413, ../sass/partials/forms/_layout.scss */
.survey .form-main-notes {
  display: none;
}

/* coloured rows */
/* line 419, ../sass/partials/forms/_layout.scss */
.survey li:nth-of-type(odd),
.survey .form-main-field:nth-of-type(odd),
.survey tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

/* HTML tags */
/* line 426, ../sass/partials/forms/_layout.scss */
em {
  font-style: italic;
}

/*strong{font-weight: bold;}*/
/* Heading */
/* line 432, ../sass/partials/forms/_layout.scss */
.survey-hdr {
  padding-bottom: 1.42857em;
}
/* line 435, ../sass/partials/forms/_layout.scss */
.survey-hdr .list {
  margin-left: 1em;
}
/* line 438, ../sass/partials/forms/_layout.scss */
.survey-hdr .list li {
  padding: 0.3em;
}

/* Formatting for titles or content seperations between quesitons */
/* line 445, ../sass/partials/forms/_layout.scss */
.title-content {
  /*font-size:1.1em;*/
  padding-left: 0.3em;
}

/* line 450, ../sass/partials/forms/_layout.scss */
.title-content p {
  margin: 5px;
  padding-left: 5px;
  font-size: .9em;
}

/* Items */
/* line 457, ../sass/partials/forms/_layout.scss */
.survey-list li,
.survey-tbl td,
.survey-tbl th {
  padding: 0.5em 0.333em;
  text-align: center;
  /*div>label{font-size: .9em;}*/
}

/* line 465, ../sass/partials/forms/_layout.scss */
.survey-list li,
.survey-tbl tbody td,
.survey-tbl tbody th {
  /*border-bottom: 1px dotted $color-grey-lightest;*/
  border: 0;
  background-color: rgba(255, 255, 255, 0.35);
}

/* line 473, ../sass/partials/forms/_layout.scss */
.survey-list li:hover,
.survey-tbl tbody tr:hover td,
.survey-tbl tbody tr:hover th {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Questions */
/* line 480, ../sass/partials/forms/_layout.scss */
.survey-tbl th:first-child,
.survey-list legend {
  text-align: left;
}

/* line 485, ../sass/partials/forms/_layout.scss */
.survey-tbl thead th:first-child,
.survey-list legend {
  width: 45%;
}

/* line 490, ../sass/partials/forms/_layout.scss */
.survey-list li .survey-answers tr {
  background-color: transparent;
}

/* line 494, ../sass/partials/forms/_layout.scss */
ol.survey-list {
  list-style: none;
}

/* line 499, ../sass/partials/forms/_layout.scss */
.console-bg .survey-list {
  border-top: 0;
}
/* line 501, ../sass/partials/forms/_layout.scss */
.console-bg .survey-list li:nth-of-type(odd) {
  background-color: transparent;
}

/* Answers */
/* line 508, ../sass/partials/forms/_layout.scss */
.survey-answers,
.survey-tbl thead th,
.form-field {
  line-height: 1.4em;
}

/* line 514, ../sass/partials/forms/_layout.scss */
.form-field div {
  line-height: 2em;
}

/* Submit */
/* line 519, ../sass/partials/forms/_layout.scss */
.survey .survey-submit {
  text-align: right;
  padding: .8em;
  /* 12px */
}

/* Tabular */
/* base rules */
/* line 527, ../sass/partials/forms/_layout.scss */
.survey-tbl th {
  font-weight: normal;
}

/* head */
/* line 532, ../sass/partials/forms/_layout.scss */
.survey-tbl thead th {
  color: #fff;
  width: 10%;
  background-color: #333;
}

/* List */
/* line 545, ../sass/partials/forms/_layout.scss */
.survey-list {
  border-top: 1px dotted #e3e3e3;
}

/* Shared */
/* line 550, ../sass/partials/forms/_layout.scss */
.survey-list legend,
.survey-answers > div {
  float: left;
}

/* Answers */
/* line 556, ../sass/partials/forms/_layout.scss */
.survey-answers {
  float: right;
  width: 55%;
}

/* Answer columns */
/* line 562, ../sass/partials/forms/_layout.scss */
.survey-answers > div {
  width: 20%;
  text-align: left;
}

/* Answer labels */
/* line 568, ../sass/partials/forms/_layout.scss */
.survey-answers label {
  margin: 0 0 0 2.5em;
  display: block;
  font-size: 9;
}

/* textbox & checkbox */
/* line 575, ../sass/partials/forms/_layout.scss */
.survey-answers > div.txt {
  width: 100%;
  text-align: left;
}

/* Submit */
/* line 582, ../sass/partials/forms/_layout.scss */
ol.survey-list li.survey-submit {
  background: none;
  border: 0;
}

/* Checkboxes */
/* line 590, ../sass/partials/forms/_layout.scss */
.survey-checkboxes {
  margin: 0;
  /* Columns */
}
/* line 593, ../sass/partials/forms/_layout.scss */
.survey-checkboxes ul {
  list-style: none;
  margin: 0;
}
/* line 598, ../sass/partials/forms/_layout.scss */
.survey-checkboxes li {
  float: left;
  width: 100%;
  padding: 0.5em;
  position: relative;
}
/* line 604, ../sass/partials/forms/_layout.scss */
.survey-checkboxes li .survey-col-2 {
  width: 50%;
}
/* line 608, ../sass/partials/forms/_layout.scss */
.survey-checkboxes li .survey-col-2 {
  width: 33.33333333333333%;
}

/* Responsive layout.*/
/* line 646, ../sass/partials/forms/_layout.scss */
.form-main-inputs table tr {
  background-color: transparent !important;
}
/* line 649, ../sass/partials/forms/_layout.scss */
.form-main-inputs table tr td {
  border: 0 !important;
  padding: 0;
}
/* line 655, ../sass/partials/forms/_layout.scss */
.form-main-inputs table .form-main-inputs {
  margin-left: 0 !important;
}
/* line 660, ../sass/partials/forms/_layout.scss */
.form-main-inputs label {
  margin-bottom: 0.3em;
}

/* Progress bar */
/* line 666, ../sass/partials/forms/_layout.scss */
.progress {
  position: relative;
  width: 100%;
  color: black;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 2em;
  padding: 0.3em;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
}
/* line 677, ../sass/partials/forms/_layout.scss */
.progress span {
  display: block;
  border-radius: 4px;
}
/* line 681, ../sass/partials/forms/_layout.scss */
.progress span.start {
  position: absolute;
  top: 15%;
  left: 8px;
}
/* line 687, ../sass/partials/forms/_layout.scss */
.progress span.complete {
  position: absolute;
  top: 15%;
  right: 8px;
}
/* line 694, ../sass/partials/forms/_layout.scss */
.progress .bar {
  background-color: #082e3e;
}

/* Results */
/* line 700, ../sass/partials/forms/_layout.scss */
.survey-results {
  background: url("img/bg-survey-results.png") no-repeat 0 0;
  margin: 0 auto;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3;
  text-transform: lowercase;
  color: #fff;
  height: 285px;
}

/* Rating scale items */
/* line 712, ../sass/partials/forms/_layout.scss */
.survey-results li {
  text-align: center;
  position: relative;
  padding-top: 16px;
  height: 33px;
}

/* scale 5 */
/* line 720, ../sass/partials/forms/_layout.scss */
.survey-results .survey-result-5 {
  height: 45px;
  padding-top: 44px;
}

/* active states */
/* line 726, ../sass/partials/forms/_layout.scss */
.survey-results .is-active {
  background-repeat: no-repeat;
  background-position: 0 0;
}

/* scale 5 */
/* line 732, ../sass/partials/forms/_layout.scss */
.survey-result-5.is-active {
  background-image: url("img/bg-survey-results-active5.png");
}

/* scale 4 */
/* line 737, ../sass/partials/forms/_layout.scss */
.survey-result-4.is-active {
  background-image: url("img/bg-survey-results-active4.png");
}

/* scale 3 */
/* line 742, ../sass/partials/forms/_layout.scss */
.survey-result-3.is-active {
  background-image: url("img/bg-survey-results-active3.png");
}

/* scale 2 */
/* line 747, ../sass/partials/forms/_layout.scss */
.survey-result-2.is-active {
  background-image: url("img/bg-survey-results-active2.png");
}

/* scale 1 */
/* line 752, ../sass/partials/forms/_layout.scss */
.survey-result-1.is-active {
  background-image: url("img/bg-survey-results-active1.png");
}

/* Your score indicator */
/* line 757, ../sass/partials/forms/_layout.scss */
.survey-results .s-arrow-r {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -30px;
}

/* scale 5 */
/* line 765, ../sass/partials/forms/_layout.scss */
.survey-result-5 .s-arrow-r {
  margin-left: -145px;
}

/* scale 4 */
/* line 770, ../sass/partials/forms/_layout.scss */
.survey-result-4 .s-arrow-r {
  margin-left: -199px;
}

/* scale 3 */
/* line 775, ../sass/partials/forms/_layout.scss */
.survey-result-3 .s-arrow-r {
  margin-left: -241px;
}

/* scale 2 */
/* line 780, ../sass/partials/forms/_layout.scss */
.survey-result-2 .s-arrow-r {
  margin-left: -278px;
}

/* scale 1 */
/* line 785, ../sass/partials/forms/_layout.scss */
.survey-result-1 .s-arrow-r {
  margin-left: -321px;
}

/*Scale layout survey*/
/* line 790, ../sass/partials/forms/_layout.scss */
.survey-scale {
  /*@include respond-range($non-palm,1023) {*/
  /*The last two questions are special*/
}
/* line 791, ../sass/partials/forms/_layout.scss */
.survey-scale li {
  padding: 0.3em;
}
/* line 795, ../sass/partials/forms/_layout.scss */
.survey-scale strong {
  font-weight: 700;
}
/* line 799, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers {
  display: table;
  /*Scale version 1*/
  /*Scale version 2*/
}
/* line 802, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-start, .survey-scale .survey-answers .scale-end {
  width: 24.5%;
  padding-top: 0.5em;
}
/* line 807, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-start {
  text-align: right;
}
/* line 811, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-end {
  text-align: left;
}
/* line 815, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-response {
  width: 50%;
}
/* line 818, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-response div {
  float: left;
  text-align: center;
  width: 9%;
}
/* line 823, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-response div input {
  margin: 0.5em;
}
/* line 829, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scale-end {
  padding-left: 0.5em;
}
/* line 833, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scalestart.non-palm-one-third {
  text-align: left;
  width: 33%;
}
/* line 838, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scalemid.non-palm-one-third {
  text-align: center;
  width: 33%;
}
/* line 843, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .scaleend.non-palm-one-third {
  text-align: right;
  width: 33%;
}
/* line 848, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .survey-inputs {
  float: left;
}
/* line 852, ../sass/partials/forms/_layout.scss */
.survey-scale .survey-answers .grid {
  width: 100%;
}
/* line 878, ../sass/partials/forms/_layout.scss */
.survey-scale .scale-response {
  display: flex;
  justify-content: space-between;
}
/* line 890, ../sass/partials/forms/_layout.scss */
.survey-scale input[type="checkbox"] + label:before, .survey-scale input[type="radio"] + label:before {
  margin: 0.5em auto !important;
  display: block;
}
/* line 916, ../sass/partials/forms/_layout.scss */
.survey-scale .scale-response .txt-input {
  width: 23.21429em;
}
/* line 960, ../sass/partials/forms/_layout.scss */
.survey-scale li:nth-child(10) {
  border-bottom: 0;
}
/* line 963, ../sass/partials/forms/_layout.scss */
.survey-scale li:nth-child(10) .survey-answers {
  border-bottom: 0;
}
/* line 968, ../sass/partials/forms/_layout.scss */
.survey-scale li:last-child {
  background-color: #fff;
}
/* line 971, ../sass/partials/forms/_layout.scss */
.survey-scale li:last-child .survey-answers {
  border-top: 0;
}

/*Thermometer layout*/
/* line 979, ../sass/partials/forms/_layout.scss */
.slider-bg {
  margin: 1em auto;
  padding: 1em;
  width: 9em;
  height: 32.14286em;
  position: relative;
  display: table;
  left: 10em;
  /*Number output*/
}
/* line 988, ../sass/partials/forms/_layout.scss */
.slider-bg .scale-start, .slider-bg .scale-end {
  position: absolute;
  left: -9.2em;
}
/* line 993, ../sass/partials/forms/_layout.scss */
.slider-bg .scale-end {
  bottom: 1em;
}
/* line 997, ../sass/partials/forms/_layout.scss */
.slider-bg .slider {
  /* IE10+ */
  background-image: -ms-linear-gradient(bottom, #69A732 0%, #FFFF00 50%, #cc0000 100%);
  /* Mozilla Firefox */
  background-image: -moz-linear-gradient(bottom, #69A732 0%, #FFFF00 50%, #cc0000 100%);
  /* Opera */
  background-image: -o-linear-gradient(bottom, #69A732 0%, #FFFF00 50%, #cc0000 100%);
  /* Webkit (Safari/Chrome 10) */
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #69A732), color-stop(50, #FFFF00), color-stop(100, #cc0000));
  /* Webkit (Chrome 11+) */
  background-image: -webkit-linear-gradient(bottom, #69A732 0%, #FFFF00 50%, #cc0000 100%);
  /* W3C Markup */
  background-image: linear-gradient(to top, #69A732 0%, #FFFF00 50%, #cc0000 100%);
  position: relative;
  cursor: pointer;
  clear: right;
  -moz-box-shadow: inset 0 0 8px #000;
  margin: 0 2.75em 0 0;
  height: 26.3em;
  width: 1.3em;
  z-index: 22;
  border: 0.5em #eae2d5 solid;
  border-bottom: 0;
  border-radius: 0.7em 0.7em 0 0;
  float: right;
  /* drag handle */
}
/* line 1023, ../sass/partials/forms/_layout.scss */
.slider-bg .slider .progress {
  display: none;
  opacity: 0.6;
  width: 9px;
  position: absolute;
  bottom: 0;
}
/* line 1031, ../sass/partials/forms/_layout.scss */
.slider-bg .slider .handle {
  background: #000 no-repeat url("img/icons/thermometer-slider.png") 50% 50%;
  background-size: 60%;
  height: 1.7em;
  width: 1.6em;
  position: absolute;
  display: block;
  border-radius: 50%;
  cursor: move;
  top: 0;
  left: -0.6em;
}
/* line 1045, ../sass/partials/forms/_layout.scss */
.slider-bg .top-bulb, .slider-bg .bot-bulb {
  position: absolute;
}
/* line 1049, ../sass/partials/forms/_layout.scss */
.slider-bg .top-bulb {
  width: 4.9em;
  height: 2.2em;
  top: 0.5em;
  left: 1.85em;
}
/* line 1056, ../sass/partials/forms/_layout.scss */
.slider-bg .bot-bulb {
  background: transparent url(/css/img/bot-bulb.png) no-repeat 0 0;
  width: 4.9em;
  height: 3.4em;
  bottom: 0;
  left: 3.25em;
  z-index: 1;
}
/* line 1065, ../sass/partials/forms/_layout.scss */
.slider-bg .slider-nos {
  float: left;
  width: 1em;
  margin-top: 0.5em;
  height: 27.5em;
}
/* line 1073, ../sass/partials/forms/_layout.scss */
.slider-bg .range {
  position: absolute;
  left: 10em;
  top: 2em;
  /*range*/
}
/* line 1080, ../sass/partials/forms/_layout.scss */
.slider-bg input {
  pointer-events: none;
}

/* Module Surveys */
/* line 1088, ../sass/partials/forms/_layout.scss */
.content-body .survey-list legend, .content-body .survey-list .survey-answers {
  width: 100%;
}

/*Questionnaires initial well-being screeners */
/* line 1095, ../sass/partials/forms/_layout.scss */
.survey-q {
  background-color: transparent;
}
/* line 1098, ../sass/partials/forms/_layout.scss */
.survey-q .survey-answers {
  vertical-align: top;
  text-align: left;
}
/* line 1103, ../sass/partials/forms/_layout.scss */
.survey-q .survey-answers table tr {
  background-color: transparent;
}
/* line 1107, ../sass/partials/forms/_layout.scss */
.survey-q .survey-answers table td {
  border: 0;
}
/* line 1112, ../sass/partials/forms/_layout.scss */
.survey-q .survey-answers .form-main-inputs {
  margin-left: 0;
}
/* line 1117, ../sass/partials/forms/_layout.scss */
.survey-q .survey table {
  background-color: transparent !important;
}

/*Slider*/
/* line 1123, ../sass/partials/forms/_layout.scss */
.survey-slider {
  /*The slider output*/
}
/* line 1124, ../sass/partials/forms/_layout.scss */
.survey-slider .form-main-inputs {
  position: relative;
  margin-left: 0 !important;
  width: 100%;
}
/* line 1125, ../sass/partials/forms/_layout.scss */
.survey-slider .grid {
  width: calc(100% - (73px));
}
/* line 1127, ../sass/partials/forms/_layout.scss */
.survey-slider .grid .non-palm-one-third {
  width: 33%;
}
/* line 1133, ../sass/partials/forms/_layout.scss */
.survey-slider .scaleend {
  text-align: right;
}
/* line 1134, ../sass/partials/forms/_layout.scss */
.survey-slider input[type="range"] {
  border: 0;
  box-shadow: none;
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 0.5em;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
/* line 1146, ../sass/partials/forms/_layout.scss */
.survey-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #082e3e;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  cursor: pointer;
}
/* line 1154, ../sass/partials/forms/_layout.scss */
.survey-slider input[type=range]::-moz-range-thumb {
  background-color: #082e3e;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  cursor: pointer;
}
/* line 1161, ../sass/partials/forms/_layout.scss */
.survey-slider input[type="range"]::-ms-thumb {
  background-color: #082e3e;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  cursor: pointer;
}
/* line 1169, ../sass/partials/forms/_layout.scss */
.survey-slider .input-output {
  background-color: #082e3e;
  border: 0;
  color: #fff;
  padding: 0.3em 0.5em;
  position: absolute;
  right: 0;
  width: 3em;
  text-align: center;
}
/* line 1174, ../sass/partials/forms/_layout.scss */
.survey-slider .output-label:before {
  position: absolute;
  bottom: 0.1em;
  right: 3em;
  width: 0;
  height: 0;
  border-top: 0.5em solid transparent;
  border-right: 0.5em solid #082e3e;
  border-bottom: 0.5em solid transparent;
  content: '';
}

/* ======================================================================================
   @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 */
  /*background-color: $color-feedback-error-light !important;*/
}
/* 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 30, ../sass/partials/forms/_validation.scss */
.input-success {
  border-color: #57a957 !important;
  background-color: #f0f8f2 !important;
  /* Focus pseudo class */
}
/* line 35, ../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;
}

/*Select all with attribute aria-required=true */
/* line 43, ../sass/partials/forms/_validation.scss */
.show-validate input[aria-required="true"], .show-validate input[type="text"][required] {
  background-image: radial-gradient(#7ac144 15%, rgba(0, 0, 0, 0) 16%), radial-gradient(#7ac144 15%, rgba(0, 0, 0, 0) 16%);
  background-size: 2em 2em;
  background-position: top right;
  background-repeat: no-repeat;
  border-color: #7ac144;
}

/* 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-block;
  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 */
  /* 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 28, ../sass/partials/buttons/_base.scss */
.btn, .btn:hover, .btn:focus {
  text-decoration: none;
}
/* line 39, ../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-milli {
  font-size: 11px;
  font-size: 0.78571rem;
  line-height: normal;
}
/* line 50, ../sass/partials/buttons/_base.scss */
.btn.btn-sml {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: normal;
}
/* line 52, ../sass/partials/buttons/_base.scss */
.btn.btn-lrg {
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: normal;
}
/* line 55, ../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 {
  padding: 0.75em 1.5em;
  background-color: #f0668e;
  text-transform: uppercase;
  border-radius: 0 !important;
  /* Pseudo classes */
  /* --Extenders-- */
  /* Disabled (has to match the bg for the default state) */
}
/* line 21, ../sass/partials/buttons/_main.scss */
.btn-main, .btn-main:visited, .btn-main:hover, .btn-main:focus {
  color: #fff !important;
}
/* line 28, ../sass/partials/buttons/_main.scss */
.btn-main:hover, .btn-main:focus, .btn-main.btn-menu-toggle.is-expanded {
  background-color: #03131a;
  background-image: -webkit-linear-gradient(top, #0b3f55, #03131a);
  background-image: linear-gradient(to bottom, #0b3f55, #03131a);
  border-color: #082e3e;
}
/* line 36, ../sass/partials/buttons/_main.scss */
.btn-main:active, .btn-main.btn-menu-toggle.is-expanded {
  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 43, ../sass/partials/buttons/_main.scss */
.btn-main[disabled], .btn-main.is-disabled {
  background-color: #082e3e;
  background-image: -webkit-linear-gradient(top, #082e3e, #020c11);
  background-image: linear-gradient(to bottom, #082e3e, #020c11);
}
/* line 48, ../sass/partials/buttons/_main.scss */
.btn-main.orange {
  background-color: #faae40;
}
/* line 49, ../sass/partials/buttons/_main.scss */
.btn-main.red {
  background-color: #ec1f27;
}
/* line 50, ../sass/partials/buttons/_main.scss */
.btn-main.blue {
  background-color: #2b5e7f;
}
/* line 51, ../sass/partials/buttons/_main.scss */
.btn-main.purple {
  background-color: #b55ca4;
}

/* --Extenders-- */
/* Compact - reduce padding by 50% */
/* line 57, ../sass/partials/buttons/_main.scss */
.btn-main-compact {
  padding: 0.5em 0.75em;
}

/* line 61, ../sass/partials/buttons/_main.scss */
.btn-ghost {
  background-color: transparent;
  text-transform: uppercase;
  color: #082e3e;
  border: 1px solid #d4d4d4;
}
/* line 67, ../sass/partials/buttons/_main.scss */
.btn-ghost .icon:before {
  margin: 0.3em;
}
/* line 71, ../sass/partials/buttons/_main.scss */
.btn-ghost:hover {
  background-color: transparent;
  border-color: #082e3e;
}

/*Custom*/
/* line 78, ../sass/partials/buttons/_main.scss */
div.toolbar {
  /* For the toolbar of icons in each section */
  text-align: right;
  padding: 0;
  background-color: transparent !important;
  display: flex;
  justify-content: left;
}
/* line 84, ../sass/partials/buttons/_main.scss */
div.toolbar a {
  margin-right: 0.3em;
}
/* line 86, ../sass/partials/buttons/_main.scss */
div.toolbar a:hover {
  color: #fff;
}
/* line 89, ../sass/partials/buttons/_main.scss */
div.toolbar a:hover .icon {
  background-color: #082e3e;
}
/* line 95, ../sass/partials/buttons/_main.scss */
div.toolbar .icon {
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  height: 26px;
  width: 26px;
}
/* line 104, ../sass/partials/buttons/_main.scss */
div.toolbar .icon:hover {
  color: #fff;
}
/* line 108, ../sass/partials/buttons/_main.scss */
div.toolbar .icon:before {
  margin-right: 0;
  top: 0;
}
/* line 115, ../sass/partials/buttons/_main.scss */
div.toolbar .btn {
  height: 26px;
  width: 26px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  margin-right: 0.3em;
}
/* line 121, ../sass/partials/buttons/_main.scss */
div.toolbar .btn:hover {
  background-color: #082e3e;
}
/* line 126, ../sass/partials/buttons/_main.scss */
div.toolbar .txt-green:hover {
  color: #fff;
  background-color: green;
}

/* line 137, ../sass/partials/buttons/_main.scss */
.btn-edit {
  background: #082e3e url(img/icons/icon-edit.png) no-repeat -1px 0;
}
/* line 140, ../sass/partials/buttons/_main.scss */
.btn-edit:hover {
  background: #082e3e url(img/icons/icon-edit.png) no-repeat -1px 0;
}

/* line 144, ../sass/partials/buttons/_main.scss */
.btn-edit-page {
  margin-left: 0.5em;
}

/* line 148, ../sass/partials/buttons/_main.scss */
input.btn-edit {
  padding-left: 2em;
  background: #f0668e url(img/icons/icon-edit-hover.png) no-repeat 0.2em 0.3em;
}
/* line 152, ../sass/partials/buttons/_main.scss */
input.btn-edit:hover {
  background: #082e3e url(img/icons/icon-edit-hover.png) no-repeat 0.2em 0.3em;
}

/* line 157, ../sass/partials/buttons/_main.scss */
.btn-delete {
  background: #fff url(img/icons/icon-delete.png) no-repeat 0 2px;
}
/* line 160, ../sass/partials/buttons/_main.scss */
.btn-delete.remove {
  height: 26px;
  width: 26px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  margin-right: 0.3em;
  cursor: pointer;
}
/* line 169, ../sass/partials/buttons/_main.scss */
.btn-delete:hover {
  background: url(img/icons/icon-delete-hover.png) no-repeat 0 2px;
  background-color: #e02222 !important;
  color: #fff;
}

/* line 177, ../sass/partials/buttons/_main.scss */
table .btn-delete {
  height: 26px;
  width: 26px;
}

/* line 183, ../sass/partials/buttons/_main.scss */
.btn-copy {
  background: #fff url(img/icons/icon-copy.png) no-repeat -1px 0;
}
/* line 186, ../sass/partials/buttons/_main.scss */
.btn-copy:hover {
  background: url(img/icons/icon-copy-hover.png) no-repeat -1px 0;
}

/* line 191, ../sass/partials/buttons/_main.scss */
.btn-active {
  background: #fff url(img/icons/icon-active.png) no-repeat -1px 0;
}
/* line 194, ../sass/partials/buttons/_main.scss */
.btn-active:hover {
  background: #fff url(img/icons/icon-active-hover.png) no-repeat -1px 0;
}

/* line 199, ../sass/partials/buttons/_main.scss */
.btn-inactive {
  background: #fff url(img/icons/icon-inactive.png) no-repeat -1px 0;
}
/* line 202, ../sass/partials/buttons/_main.scss */
.btn-inactive:hover {
  background: #fff url(img/icons/icon-inactive-hover.png) no-repeat -1px 0;
}

/* line 207, ../sass/partials/buttons/_main.scss */
.btn-print {
  background: #fff url(img/icons/btn-print.png) no-repeat 0.4em center;
  padding-left: 2.5em;
}
/* line 210, ../sass/partials/buttons/_main.scss */
.btn-print:hover {
  background: #082e3e url(img/icons/btn-print.png) no-repeat 0.4em center;
}

/* line 215, ../sass/partials/buttons/_main.scss */
.btn-pdf {
  padding-left: 2.14286em;
  background: #082e3e url(img/icons/icon-pdf-white.png) no-repeat 5px 6px;
}
/* line 219, ../sass/partials/buttons/_main.scss */
.btn-pdf, .btn-pdf:visited, .btn-pdf:hover, .btn-pdf:focus {
  background: url(img/icons/icon-pdf-white.png) no-repeat 5px 6px;
  background-color: #04171e;
}

/* line 229, ../sass/partials/buttons/_main.scss */
.toolbar .btn-pdf {
  padding-left: 0;
  background-position: 0 0;
}

/* line 235, ../sass/partials/buttons/_main.scss */
.btn-excel {
  padding-left: 2.14286em;
  background: #082e3e url(img/icons/icon-excel-white.png) no-repeat 5px 6px;
}
/* line 239, ../sass/partials/buttons/_main.scss */
.btn-excel:hover {
  background: url(img/icons/icon-excel-white.png) no-repeat 5px 6px;
  background-color: #04171e;
}

/* line 245, ../sass/partials/buttons/_main.scss */
.btn-archive {
  background: #fff url(img/icons/icon-archive.png) no-repeat -1px 0;
}
/* line 248, ../sass/partials/buttons/_main.scss */
.btn-archive:hover {
  background: #082e3e url(img/icons/icon-archive-hover.png) no-repeat -1px 0;
  color: #fff;
}

/* line 254, ../sass/partials/buttons/_main.scss */
.btn-activate {
  background: #fff url(img/icons/icon-activate.png) no-repeat 5px 5px;
}
/* line 257, ../sass/partials/buttons/_main.scss */
.btn-activate:hover {
  background: #fff url(img/icons/icon-tick.png) no-repeat 5px 5px;
}

/* line 262, ../sass/partials/buttons/_main.scss */
.btn-green-tick {
  background: #fff url(img/icons/icon-green-tick.png) no-repeat 0 0;
}
/* line 265, ../sass/partials/buttons/_main.scss */
.btn-green-tick:hover {
  background: #082e3e url(img/icons/icon-green-tick-hover.png) no-repeat 0 0;
}

/* line 270, ../sass/partials/buttons/_main.scss */
.btn-email {
  background-image: url(img/icons/icon-email.png);
  background-repeat: no-repeat;
  background-position: 5px 4px;
  padding-left: 2.5em;
}

/*Module pages*/
/* line 278, ../sass/partials/buttons/_main.scss */
.quicklinks {
  position: relative;
  top: 5em;
}

/* line 287, ../sass/partials/buttons/_main.scss */
.edit, .bookmark, .print, .share {
  display: table;
  clear: both;
  margin-bottom: 0.5em;
  cursor: pointer;
  transform: translateX(-7.5em);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* line 293, ../sass/partials/buttons/_main.scss */
.edit span, .bookmark span, .print span, .share span {
  display: table-cell;
  width: 9.28571em;
  padding: 0.85em 0.5em 0.85em 1em;
  color: #fff;
  font-size: 0.8em;
}
/* line 301, ../sass/partials/buttons/_main.scss */
.edit img, .bookmark img, .print img, .share img {
  padding: 0.5em;
}
/* line 312, ../sass/partials/buttons/_main.scss */
.edit:hover, .bookmark:hover, .print:hover, .share:hover {
  transform: translateX(0);
}

/* line 342, ../sass/partials/buttons/_main.scss */
.bookmark {
  background-color: #3c9da4;
}
/* line 344, ../sass/partials/buttons/_main.scss */
.bookmark img {
  background-color: #4cb6bd;
}

/* line 346, ../sass/partials/buttons/_main.scss */
.print {
  background-color: #ec4173;
}
/* line 348, ../sass/partials/buttons/_main.scss */
.print img {
  background-color: #f0668e;
}

/*.print img[alt="Toolbox"] {
    @include respond-max(459) {
        height: 40px;
        width: 40px;
    }
}*/
/* line 356, ../sass/partials/buttons/_main.scss */
.share, .edit {
  background-color: #082e3e;
}
/* line 358, ../sass/partials/buttons/_main.scss */
.share img, .edit img {
  background-color: #0d4962;
}

/* line 371, ../sass/partials/buttons/_main.scss */
.print-this {
  background-color: #082e3e;
  border-right: 0.3em solid #f0668e;
  position: relative;
  margin-top: 1em;
  margin-left: 3.5em;
}
/* line 378, ../sass/partials/buttons/_main.scss */
.print-this img {
  position: absolute;
  left: -3.5em;
  top: -0.8em;
}

/* Message button bar */
/* line 387, ../sass/partials/buttons/_main.scss */
.message-div input {
  padding-left: 1.8em;
  background-position-x: 2px;
  background-position-y: 6px;
}
/* line 393, ../sass/partials/buttons/_main.scss */
.message-div .btn-delete {
  background: #082e3e url(img/icons/icon-delete-hover.png) no-repeat 2px 6px !important;
  color: #fff;
}
/* line 397, ../sass/partials/buttons/_main.scss */
.message-div .btn-delete:hover {
  background: url(img/icons/icon-delete-dark.png) no-repeat 2px 6px !important;
  background-color: rgba(122, 193, 68, 0.1) !important;
  color: #082e3e;
}
/* line 404, ../sass/partials/buttons/_main.scss */
.message-div .btn-archive {
  background-image: url(img/icons/icon-archive-hover.png);
  background-position: 2px 5px;
  background-color: #082e3e;
  color: #fff;
}
/* line 410, ../sass/partials/buttons/_main.scss */
.message-div .btn-archive:hover {
  background: url(img/icons/icon-archive.png) no-repeat 2px 5px;
  background-color: rgba(122, 193, 68, 0.1);
  color: #082e3e;
}

/*On Off Button*/
/* line 418, ../sass/partials/buttons/_main.scss */
.onoffswitch {
  position: relative;
  left: 1em;
  width: 6.42857em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 427, ../sass/partials/buttons/_main.scss */
.onoffswitch-checkbox {
  display: none;
}

/* line 431, ../sass/partials/buttons/_main.scss */
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #4d4d4d;
  border-radius: 4px;
}

/* line 439, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
/* line 445, ../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 456, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner:before {
  content: "Active";
  padding-left: 10px;
  background-color: #082e3e;
  color: #fff;
}
/* line 463, ../sass/partials/buttons/_main.scss */
.onoffswitch-inner:after {
  content: "Inactive";
  padding-right: 10px;
  background-color: #f2f2f2;
  color: #4d4d4d;
  text-align: right;
}

/* line 472, ../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: 4px;
  transition: all 0.3s ease-in 0s;
}

/* line 486, ../sass/partials/buttons/_main.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

/* line 490, ../sass/partials/buttons/_main.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/*Buttons*/
/* line 495, ../sass/partials/buttons/_main.scss */
.filter {
  position: relative;
}
/* line 498, ../sass/partials/buttons/_main.scss */
.filter button.btn, .filter input.btn {
  background-color: #082e3e;
  padding: 0.41em 0.65em;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 510, ../sass/partials/buttons/_main.scss */
.filter .icon {
  color: #fff;
}
/* line 513, ../sass/partials/buttons/_main.scss */
.filter .icon.icon-search:before {
  margin-right: 0;
}
/* line 518, ../sass/partials/buttons/_main.scss */
.filter input.btn-search {
  background: #082e3e url(img/icons/icon-search.png) no-repeat 2px 2px;
  padding: 0.45em 1.13em;
}

/*Module*/
/* line 525, ../sass/partials/buttons/_main.scss */
.module-navigation {
  position: relative;
  margin-top: 1em;
}
/* line 528, ../sass/partials/buttons/_main.scss */
.module-navigation .btn {
  margin-bottom: 0;
}
/* line 529, ../sass/partials/buttons/_main.scss */
.module-navigation .btn-main-compact {
  border: 0;
  text-transform: none;
  background-color: gray;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 548, ../sass/partials/buttons/_main.scss */
#create-new-response.btn-main {
  margin-right: 0.2em;
}

/* ======================================================================================
   @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: 50px;
  height: 34px;
  /* Hide at this breakpoint */
  display: none;
  /* JS off */
}
/* line 28, ../sass/partials/buttons/_menu-toggle.scss */
.no-js .btn-menu-toggle {
  display: none;
}

/* Create the icon (three lines) */
/* line 32, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon {
  left: 50%;
  top: 50%;
  margin: -1px 0px 0px -14px;
  margin: -0.07143rem 0rem 0rem -1rem;
  pointer-events: none;
  /* Shared */
  /* Pseudo elements - top/bottom lines */
}
/* line 39, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon, .btn-menu-toggle__icon:before, .btn-menu-toggle__icon:after {
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 -1px rgba(0, 0, 0, 0.2);
}
/* line 51, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon:before, .btn-menu-toggle__icon:after {
  content: "";
  left: 0;
}
/* line 57, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon:before {
  top: -6px;
}
/* line 59, ../sass/partials/buttons/_menu-toggle.scss */
.btn-menu-toggle__icon:after {
  top: 6px;
}

/* ======================================================================================
   @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.28571em/1.28571em Verdana, Geneva, Tahoma, sans-serif;
  padding: 0em 0.5em 0.35714em;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity="50");
}
/* line 32, ../sass/partials/buttons/_close.scss */
.btn-close:hover:before, .btn-close:focus:before {
  filter: alpha(opacity="90");
}

/* ======================================================================================
   @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: #2b5e7f;
  border: 1px solid #bfbfbf;
  padding: 0.2em 0.5em;
  margin-top: 0.5em;
  /*text-decoration: underline;  Note: this may be redundant? */
  /* Pseudo classes */
}
/* line 23, ../sass/partials/buttons/_faux-link.scss */
.btn-faux-link:hover, .btn-faux-link:focus {
  color: #7f4c2b;
  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 */
/* Non-palm */
/* line 27, ../sass/partials/helpers/_hide.scss */
.hide-fully--non-palm {
  display: none;
  visibility: hidden;
}

/* Lap */
/* Lap small */
/* Lap large */
/* Portable */
/* Desk */
/* line 52, ../sass/partials/helpers/_hide.scss */
.hide-fully--desk {
  display: none;
  visibility: hidden;
}

/* Desk small */
/* Desk large */
/* 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;
  left: 0;
  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: 21px!important;
  margin-bottom: 1.5rem!important;
}

/* line 15, ../sass/partials/helpers/_spacing.scss */
.mrg-base-top {
  margin-top: 21px!important;
  margin-top: 1.5rem!important;
}

/* Mini */
/* line 18, ../sass/partials/helpers/_spacing.scss */
.mrg-mini {
  margin-bottom: 5.25px!important;
  margin-bottom: 0.375rem!important;
}

/* line 19, ../sass/partials/helpers/_spacing.scss */
.mrg-mini-top {
  margin-top: 5.25px!important;
  margin-top: 0.375rem!important;
}

/* Half */
/* line 22, ../sass/partials/helpers/_spacing.scss */
.mrg-half {
  margin-bottom: 10.5px!important;
  margin-bottom: 0.75rem!important;
}

/* line 23, ../sass/partials/helpers/_spacing.scss */
.mrg-half-top {
  margin-top: 10.5px!important;
  margin-top: 0.75rem!important;
}

/* Double */
/* line 26, ../sass/partials/helpers/_spacing.scss */
.mrg-dbl {
  margin-bottom: 42px!important;
  margin-bottom: 3rem!important;
}

/* line 27, ../sass/partials/helpers/_spacing.scss */
.mrg-dbl-top {
  margin-top: 42px!important;
  margin-top: 3rem!important;
}

/* Double */
/* line 30, ../sass/partials/helpers/_spacing.scss */
.mrg-triple {
  margin-bottom: 63px!important;
  margin-bottom: 4.5rem!important;
}

/* line 31, ../sass/partials/helpers/_spacing.scss */
.mrg-triple-top {
  margin-top: 63px!important;
  margin-top: 4.5rem!important;
}

/* --Apply at specific breakpoints (all pre-defined breakpoints)-- */
/* Palm */
/* Non-palm */
/* line 42, ../sass/partials/helpers/_spacing.scss */
.mrg-base--non-palm {
  margin-bottom: 21px!important;
  margin-bottom: 1.5rem!important;
}

/* Lap */
/* Lap small */
/* Lap large */
/* Portable */
/* Desk */
/* line 67, ../sass/partials/helpers/_spacing.scss */
.mrg-base--desk {
  margin-bottom: 21px!important;
  margin-bottom: 1.5rem!important;
}

/* Desk small */
/* Desk large */
/* line 77, ../sass/partials/helpers/_spacing.scss */
.mrg-base--desk-lrg {
  margin-bottom: 21px!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;
}

/* ======================================================================================
   @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: 160;
}

/* 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: 12px!important;
  font-size: 0.85714rem!important;
  line-height: 1.75;
}

/* line 16, ../sass/partials/helpers/_text.scss */
.txt-lrg {
  font-size: 16px!important;
  font-size: 1.14286rem!important;
  line-height: 1.3125;
}

/* 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;
}

/* Colours */
/* line 35, ../sass/partials/helpers/_text.scss */
.txt-success {
  color: forestgreen;
}

/* line 36, ../sass/partials/helpers/_text.scss */
.txt-warning {
  color: coral;
}

/* line 37, ../sass/partials/helpers/_text.scss */
.txt-error {
  color: crimson;
}

/* Truncate */
/* line 40, ../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 48, ../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. */
}

/* ======================================================================================
   @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;
}

/* line 19, ../sass/partials/helpers/_float.scss */
.clear {
  clear: both;
}

/* ======================================================================================
   @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: 21px;
  margin-right: 1.5rem;
}

/* line 26, ../sass/partials/helpers/_pull.scss */
.pull-right {
  float: right;
  margin-left: 21px;
  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 */
    filter: none !important;
  }

  /* =======================================================================
     PAGE BREAKS / ORPHANS and WIDOWS
     ======================================================================= */
  /* [PAGE BREAKS]
  -------------------------------------------------------*/
  /* After */
  /* line 45, ../sass/partials/print/_print.scss */
  h2, .h2,
  h3, .h3 {
    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 {
    orphans: 3;
    widows: 3;
  }
}
/* ======================================================================================
   @OLD IE NOTIFICATION
   ====================================================================================== */
/* Inform IE 7 users and under that they should upgrade their browser */
/* line 41, ../sass/old-ie.scss */
.old-ie-notification {
  background-color: #ffe766;
  color: #202020;
  padding: 0.64286em 0;
  text-align: center;
}
