@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 11, ../scss/partials/_normalize.scss */
* {
  min-height: 0;
}

/* line 16, ../scss/partials/_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 35, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 46, ../scss/partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 56, ../scss/partials/_normalize.scss */
[hidden],
template {
  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 71, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 81, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 93, ../scss/partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 101, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 109, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 123, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 132, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 140, ../scss/partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 150, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 160, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 170, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 181, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 189, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 201, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 209, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 216, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 222, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 230, ../scss/partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 238, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 242, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 254, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 263, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 271, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 275, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 285, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 299, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 307, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 319, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 331, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 342, ../scss/partials/_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 353, ../scss/partials/_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 367, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/* line 372, ../scss/partials/_normalize.scss */
input {
  border-radius: 0 !important;
  -webkit-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

/**
 * 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 395, ../scss/partials/_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 408, ../scss/partials/_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 420, ../scss/partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 430, ../scss/partials/_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).
 */
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 463, ../scss/partials/_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 474, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 487, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 494, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 501, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 509, ../scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
/* line 511, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
/* line 512, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 519, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*replace with #fcc90f*/
/*replace with #8d1a42*/
/*replace with #7dd667*/
/*replace with #0680eb*/
/*correct*/
/*correct*/
/*correct*/
/*correct*/
/*replace with XXX*/
/*replace with #7c7c7c*/
/*rename to mid-grey*/
/*replace with #cfcfcf*/
/*replace with #7c7c7c light grey*/
/*replace with #7c7c7c*/
/*correct*/
/*correct*/
/*correct*/
/*correct*/
/*rename to orange?*/
/*delete*/
/*correct*/
/*replace with #9ec432*/
/*correct*/
/*correct*/
/*correct*/
/*correct*/
/*delete—should be same as azure*/
/*correct*/
/*correct*/
/*correct*/
/*correct*/
/*correct*/
/*replace with #000*/
/*replace with *e02057*/
/*This should be based on category color*/
/*replace with 7c7c7c*/
/* line 83, ../scss/partials/_variables.scss */
.black-bg, .blue-bg, .blue2-bg, .orange-bg, .green-bg, .fuscia-bg, .pink-bg {
  color: #fff;
}

/* line 84, ../scss/partials/_variables.scss */
.white-bg {
  color: #fff;
}

/* line 85, ../scss/partials/_variables.scss */
.black-bg {
  background-color: #000;
}

/* line 88, ../scss/partials/_variables.scss */
.white-bg {
  background-color: #fff;
}

/* line 91, ../scss/partials/_variables.scss */
.blue-bg {
  background-color: #0680EB;
}

/* line 94, ../scss/partials/_variables.scss */
.blue2-bg {
  background-color: #16576B;
}

/* line 97, ../scss/partials/_variables.scss */
.blue-link {
  color: #0680EB;
}

/* line 100, ../scss/partials/_variables.scss */
.green-bg {
  background-color: #19AA3C;
}

/* line 103, ../scss/partials/_variables.scss */
.fuscia-bg {
  background-color: #E825BD;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Fonts/e0542193-b2e6-4273-bc45-39d4dfd3c15b.eot?#iefix");
  src: url("../fonts/Fonts/e0542193-b2e6-4273-bc45-39d4dfd3c15b.eot?#iefix") format("eot"), url("../fonts/Fonts/17b90ef5-b63f-457b-a981-503bb7afe3c0.woff2") format("woff2"), url("../fonts/Fonts/c9aeeabd-dd65-491d-b4be-3e0db9ae47a0.woff") format("woff"), url("../fonts/Fonts/25f994de-d13f-4a5d-a82b-bf925a1e054d.ttf") format("truetype"), url("../fonts/Fonts/3604edbd-784e-4ca7-b978-18836469c62d.svg#3604edbd-784e-4ca7-b978-18836469c62d") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Fonts/6af9989e-235b-4c75-8c08-a83bdaef3f66.eot?#iefix");
  src: url("../fonts/Fonts/6af9989e-235b-4c75-8c08-a83bdaef3f66.eot?#iefix") format("eot"), url("../fonts/Fonts/d513e15e-8f35-4129-ad05-481815e52625.woff2") format("woff2"), url("../fonts/Fonts/61bd362e-7162-46bd-b67e-28f366c4afbe.woff") format("woff"), url("../fonts/Fonts/ccd17c6b-e7ed-4b73-b0d2-76712a4ef46b.ttf") format("truetype"), url("../fonts/Fonts/20577853-40a7-4ada-a3fb-dd6e9392f401.svg#20577853-40a7-4ada-a3fb-dd6e9392f401") format("svg");
  font-weight: 800;
  font-style: normal;
}
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/* **********************
 Fonts 
 ***********************/
/* Basic elements */
/***** Headers ******/
/* line 83, ../scss/partials/_typography.scss */
h1 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 50px;
  font-weight: 800;
  line-height: 1.64;
}

/* line 87, ../scss/partials/_typography.scss */
h2 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 48px;
  font-weight: 800;
  line-height: 0.83;
  font-weight: 500;
}

/* line 92, ../scss/partials/_typography.scss */
h3 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5625;
}

/* line 96, ../scss/partials/_typography.scss */
h4 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 30px;
  font-weight: 800;
  line-height: 1.533;
}

/* line 100, ../scss/partials/_typography.scss */
h5 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 28px;
  font-weight: 800;
  line-height: 1.428;
}

/* line 104, ../scss/partials/_typography.scss */
h6 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  font-weight: 800;
  line-height: 2.22;
}

/* line 108, ../scss/partials/_typography.scss */
.h7 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}

/* line 112, ../scss/partials/_typography.scss */
.h8 {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.66;
}

/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 120, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: normal;
  word-break: normal;
  word-wrap: normal;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}
/* line 141, ../scss/partials/_typography.scss */
p .head {
  font-weight: 600;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 35, ../scss/partials/_grid.scss */
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  /* line 49, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 55, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 60, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 65, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 70, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 75, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 86, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 92, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 97, ../scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 102, ../scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 107, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 112, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 117, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 122, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 127, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 132, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 142, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 148, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 153, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 158, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 163, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 168, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 173, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 178, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 183, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 188, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  /* line 193, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  /* line 198, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  /* line 203, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  /* line 208, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  /* line 213, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  /* line 218, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  /* line 223, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  /* line 228, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  /* line 233, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  /* line 238, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  /* line 243, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }

  /* line 248, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/* line 255, ../scss/partials/_grid.scss */
.align-center {
  display: block;
  margin: 0 auto;
  float: none;
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 21, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #efbc03;
  background: #fcc90f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #0572d2;
  background: #0680eb;
}

/* line 33, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #771638;
  background: #8d1a42;
}

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #6cd153;
  background: #7dd667;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
/* line 27, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: "Avenir", "Arial", "sans-serif";
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 44, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* line 51, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active {
  top: 1px;
}

/* line 58, ../scss/modules/_buttons.scss */
#bottom-cta_image .white-button.bigbtn {
  height: 60px !important;
  font-size: 24px;
  padding: 3px 25px !important;
  font-weight: normal !important;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
/* line 71, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  background-color: #0680EB;
}
/* line 75, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #0575d7;
}
/* line 80, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #0572d2;
}

/* line 87, ../scss/modules/_buttons.scss */
.primary-cta {
  font-size: 24px;
  font-weight: 500;
  color: #0680EB;
  background-color: white;
  height: 54px;
  padding: 0 20px;
  border: none;
}

/* line 92, ../scss/modules/_buttons.scss */
.secondary-cta {
  height: 38px;
  width: 38px;
  border-radius: 19px;
  padding: 0 14px;
  border: none;
}
/* line 93, ../scss/modules/_buttons.scss */
.secondary-cta > #arrow-right {
  height: 15px;
  width: 10px;
}
/* line 97, ../scss/modules/_buttons.scss */
.secondary-cta > #arrow-right > polygon {
  fill: white;
}

/* line 107, ../scss/modules/_buttons.scss */
.full-width-col {
  clear: left;
}

/* line 113, ../scss/modules/_buttons.scss */
#saved-cta, #written-cta {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease;
}

/* line 122, ../scss/modules/_buttons.scss */
#switch {
  position: relative;
  display: table;
  width: 320px;
  height: 76px;
  margin: 3em auto;
  border: 3px solid #2D3C8B;
  padding: 2px;
}

/* line 132, ../scss/modules/_buttons.scss */
#switch input {
  display: none;
}

/* line 136, ../scss/modules/_buttons.scss */
.post-filter {
  color: #fff;
}

/* line 139, ../scss/modules/_buttons.scss */
.post-filter.active {
  color: #2D3C8B;
}

/* line 143, ../scss/modules/_buttons.scss */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2D3C8B;
  -webkit-transition: .4s;
  transition: .4s;
}

/* line 154, ../scss/modules/_buttons.scss */
.slider:before {
  position: absolute;
  content: "";
  height: 68px;
  width: 160px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

/* line 166, ../scss/modules/_buttons.scss */
input[type="checkbox"]#switchbox:checked ~ .slider:before {
  -webkit-transform: translateX(152px);
  -ms-transform: translateX(152px);
  transform: translateX(152px);
}

/* line 173, ../scss/modules/_buttons.scss */
.smallbtn, .bigbtn {
  display: block;
  padding: 0 15px !important;
  color: #0680EB !important;
  border: 0;
  background: #fff;
}
/* line 179, ../scss/modules/_buttons.scss */
.smallbtn .submit-icon, .bigbtn .submit-icon {
  display: inline-table !important;
  margin: 0 !important;
  position: relative;
  text-align: center;
  cursor: pointer;
  float: left;
  transition: all 0.4s ease;
  padding: 0 8px;
}
/* line 188, ../scss/modules/_buttons.scss */
.smallbtn .submit-icon:after, .bigbtn .submit-icon:after {
  content: url("../images/submit-loader.svg");
  display: inline-block;
  width: 26px;
  position: relative;
  top: 0;
}
/* line 196, ../scss/modules/_buttons.scss */
.smallbtn .submit-arrow, .bigbtn .submit-arrow {
  position: relative;
  left: 5px;
  float: left;
  vertical-align: middle;
}
/* line 201, ../scss/modules/_buttons.scss */
.smallbtn .submit-arrow svg, .bigbtn .submit-arrow svg {
  width: 15px;
  height: 13px;
}
/* line 207, ../scss/modules/_buttons.scss */
.smallbtn .validate:after, .bigbtn .validate:after {
  content: url("../images/submit-validate.svg") !important;
}
/* line 211, ../scss/modules/_buttons.scss */
.smallbtn .onclic:after, .bigbtn .onclic:after {
  animation: rotating 1s 0.25s linear infinite;
}

/* line 216, ../scss/modules/_buttons.scss */
.smallbtn .submit-arrow {
  line-height: 25px;
}
/* line 219, ../scss/modules/_buttons.scss */
.smallbtn .submit-icon.validate:after {
  position: relative;
}
/* line 223, ../scss/modules/_buttons.scss */
.smallbtn .submit-icon:not(.validate):after {
  top: 5px;
}

/* line 229, ../scss/modules/_buttons.scss */
.bigbtn .submit-arrow {
  line-height: 50px;
}

/* line 233, ../scss/modules/_buttons.scss */
#media-nav-arrow {
  position: relative;
  top: -3px;
}

/* line 237, ../scss/modules/_buttons.scss */
.profile-info .smallbtn .submit-arrow {
  top: 13px;
}

/* line 240, ../scss/modules/_buttons.scss */
.smallerbtn {
  font-size: 16px !important;
}

/* line 243, ../scss/modules/_buttons.scss */
.smallbtn {
  height: 48px !important;
  font-size: 18px !important;
}
/* line 246, ../scss/modules/_buttons.scss */
.smallbtn span {
  line-height: 48px !important;
}
/* line 249, ../scss/modules/_buttons.scss */
.smallbtn .submit-icon {
  height: 39px !important;
  width: 48px !important;
  /*&.error {
  	top: -9px!important;
  }*/
}

/* line 257, ../scss/modules/_buttons.scss */
.bigbtn {
  height: 60px !important;
  font-size: 24px;
}
/* line 260, ../scss/modules/_buttons.scss */
.bigbtn span {
  line-height: 60px !important;
}
/* line 263, ../scss/modules/_buttons.scss */
.bigbtn .submit-icon {
  height: 48px !important;
  width: 48px !important;
}

/* line 271, ../scss/modules/_buttons.scss */
.main-header .smallbtn, .main-header .bigbtn, .mobile-nav-bar .smallbtn, .mobile-nav-bar .bigbtn {
  color: #000 !important;
}

/* line 276, ../scss/modules/_buttons.scss */
#profile-password-update .smallbtn .submit-arrow {
  top: 13px;
}

/* line 282, ../scss/modules/_buttons.scss */
.profile-wrapper .submit-icon:not(.validate) {
  top: 10px;
}
/* line 284, ../scss/modules/_buttons.scss */
.profile-wrapper .submit-icon:not(.validate):after {
  top: 0;
}
/* line 288, ../scss/modules/_buttons.scss */
.profile-wrapper .submit-icon.error {
  top: 0px;
}
/* line 290, ../scss/modules/_buttons.scss */
.profile-wrapper .submit-icon.error:after {
  top: 0;
}

/* line 297, ../scss/modules/_buttons.scss */
#nav-subscribe-form .submit-icon:not(.validate):after {
  top: 6px;
}

/* line 304, ../scss/modules/_buttons.scss */
.bigbtn .submit-icon:not(.validate):after {
  top: 5px;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
/* line 24, ../scss/modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="color"],
textarea,
.field {
  display: block;
  height: 47px;
  line-height: 1em;
  padding: 0;
  margin-bottom: 14px;
  color: #fff;
  vertical-align: middle;
  box-shadow: none;
  width: 100%;
  max-width: 400px;
  font-family: "Avenir", "Arial", "sans-serif";
  background-color: transparent;
  border-radius: 0;
  border-color: #fff;
  border-width: 0 0 2px 0;
  border-style: none none solid none;
  box-shadow: none;
  font-size: 18px;
}
/* line 59, ../scss/modules/_forms.scss */
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
  background-color: transparent;
  font-weight: 800;
}
/* line 67, ../scss/modules/_forms.scss */
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #8d1a42;
  border-color: #8d1a42;
  background-color: transparent;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #8d1a42;
}
/* line 79, ../scss/modules/_forms.scss */
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #7dd667;
  border-color: #7dd667;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #7dd667;
}
/* line 91, ../scss/modules/_forms.scss */
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 97, ../scss/modules/_forms.scss */
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #0680eb;
}

/* line 106, ../scss/modules/_forms.scss */
.form-label {
  font-weight: 800;
}

/* line 111, ../scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 116, ../scss/modules/_forms.scss */
textarea {
  display: block;
  max-width: 100%;
  min-height: 173px;
  line-height: 1.5em;
  background-color: transparent;
  border-radius: 0;
  border-color: #fff;
  border-width: 2px;
  border-style: solid;
  resize: none;
  padding: 5px 12px;
  font-size: 20px;
}

/* line 132, ../scss/modules/_forms.scss */
select {
  display: block;
  height: 47px;
  padding: 0 12px;
  margin: 5px 0 14px;
  font-size: 18px;
  color: #fff;
  vertical-align: middle;
  box-shadow: none;
  width: 100%;
  max-width: 400px;
  font-family: "Avenir", "Arial", "sans-serif";
  background-color: transparent;
  border-radius: 0;
  border-color: #fff;
  border-width: 2px;
  border-style: solid;
  box-shadow: none;
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/select-arrows.svg);
  background-repeat: no-repeat;
  background-position: 100% center;
}
/* line 157, ../scss/modules/_forms.scss */
select:focus, select:active {
  outline: none;
  background-color: #fff;
  color: #0680EB;
}

/* line 167, ../scss/modules/_forms.scss */
input[type=checkbox] + label {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  margin: 0 0 0 50px;
}

/* line 174, ../scss/modules/_forms.scss */
input[type=checkbox] {
  position: absolute;
  top: -9999px;
  left: -9999px;
  display: none;
}

/* line 181, ../scss/modules/_forms.scss */
input[type=checkbox] + .checkbox::before {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 25px;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
}

/* line 191, ../scss/modules/_forms.scss */
input[type=checkbox]:checked + label {
  color: #fff;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  margin: 0 0 0 50px;
}

/* line 198, ../scss/modules/_forms.scss */
input[type=checkbox]:checked + .checkbox::before {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 25px;
  background: #fff url(../images/checkbox.svg) no-repeat center center;
  background-size: 20px 15px;
}

/* line 207, ../scss/modules/_forms.scss */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

/* line 211, ../scss/modules/_forms.scss */
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* SEARCH */
/* line 217, ../scss/modules/_forms.scss */
input[type=search] {
  -webkit-appearance: textfield;
  font-family: inherit;
  font-size: 100%;
  border-radius: 0;
}

/* line 228, ../scss/modules/_forms.scss */
input::-webkit-search-cancel-button:after {
  /* generate content after all "X" buttons */
  content: '';
  /* required for :after content to show */
  display: block;
  /*
   * Setup dimensions for the custom icon.  Note that these dimensions seem to
   * affect positioning.
   */
  width: 14px;
  height: 10px;
  /*
   * Base64 encoded custom "X" icon
   * Natively 30x30, but downscaled for highres screens
   */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
  /* setup all the background tweaks for our custom icon */
  background-repeat: no-repeat;
  /* icon size */
  background-size: 10px;
  /* note: this positioning will need to be tweaked for iOS */
  background-position: top left;
}

/* line 258, ../scss/modules/_forms.scss */
input:-moz-placeholder {
  color: #fff;
  letter-spacing: normal;
}

/* line 262, ../scss/modules/_forms.scss */
input::-moz-placeholder {
  color: #fff;
  letter-spacing: normal;
}

/* line 266, ../scss/modules/_forms.scss */
input::-webkit-input-placeholder {
  color: #fff;
  letter-spacing: normal;
}

/* line 272, ../scss/modules/_forms.scss */
::-webkit-input-placeholder {
  /* Chrome */
  font-size: 18px;
  color: #fff;
  transition: opacity 150ms ease-in-out;
  letter-spacing: normal;
}

/* line 279, ../scss/modules/_forms.scss */
:focus::-webkit-input-placeholder {
  opacity: 0;
  letter-spacing: normal;
}

/* line 283, ../scss/modules/_forms.scss */
:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 18px;
  color: #fff;
  transition: opacity 150ms ease-in-out;
  letter-spacing: normal;
}

/* line 290, ../scss/modules/_forms.scss */
:focus:-ms-input-placeholder {
  opacity: 0;
  letter-spacing: normal;
}

/* line 294, ../scss/modules/_forms.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  font-size: 18px;
  transition: opacity 150ms ease-in-out;
  letter-spacing: normal;
}

/* line 301, ../scss/modules/_forms.scss */
:focus::-moz-placeholder {
  opacity: 0;
  letter-spacing: normal;
}

/* line 305, ../scss/modules/_forms.scss */
:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #fff;
  font-size: 18px;
  transition: opacity 150ms ease-in-out;
  letter-spacing: normal;
}

/* line 312, ../scss/modules/_forms.scss */
:focus:-moz-placeholder {
  opacity: 0;
  letter-spacing: normal;
}

/* Form setup */
/* line 318, ../scss/modules/_forms.scss */
.form-group {
  position: relative;
}

/* line 321, ../scss/modules/_forms.scss */
.checkbox-group {
  clear: both;
  padding: 0 0 15px;
  position: relative;
}

/* line 326, ../scss/modules/_forms.scss */
.form-label, .form-label-static {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 14px;
  color: #fff;
  margin: 0;
  display: block;
  opacity: 1;
  text-align: left;
  -webkit-transition: all 300ms cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: all 300ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

/* line 337, ../scss/modules/_forms.scss */
.form-label-static {
  padding: 10px 0 0;
}

/* line 340, ../scss/modules/_forms.scss */
.form-control {
  color: #fff;
  font-family: "Avenir", "Arial", "sans-serif";
}

/* line 344, ../scss/modules/_forms.scss */
.form-control:focus {
  box-shadow: none;
}

/* line 347, ../scss/modules/_forms.scss */
.js-hide-label {
  opacity: 0;
  transition: all 300ms cubic-bezier(0.47, 0, 0.745, 0.715);
}

/* line 351, ../scss/modules/_forms.scss */
.js-unhighlight-label {
  color: #FFFFFF;
}

/* line 355, ../scss/modules/_forms.scss */
#subscribe-form .parsley-errors-list {
  position: absolute;
}

/* line 360, ../scss/modules/_forms.scss */
.contribute-form-class .parsley-errors-list {
  position: relative;
  bottom: 15px;
}
/* line 365, ../scss/modules/_forms.scss */
.contribute-form-class .d-1of2:not(.last-col) .d-1of2 {
  height: 120px;
}

/* line 370, ../scss/modules/_forms.scss */
.parsley-errors-list, .form-error-msg {
  font-size: 14px !important;
  color: #D50D4E !important;
}

/* line 375, ../scss/modules/_forms.scss */
#subscribe-form .parsley-errors-list, #subscribe-form .form-error-msg, #contribute-form .parsley-errors-list, #contribute-form .form-error-msg, #contribute-form2 .parsley-errors-list, #contribute-form2 .form-error-msg, .profile-wrapper .parsley-errors-list, .profile-wrapper .form-error-msg {
  color: #fff !important;
}

/* line 379, ../scss/modules/_forms.scss */
.parsley-errors-list, .form-error-msg {
  font-family: "Avenir", "Arial", "sans-serif";
  color: #fff;
  padding: 0;
}
/* line 383, ../scss/modules/_forms.scss */
.parsley-errors-list li, .form-error-msg li {
  font-weight: 500;
  text-align: left;
  padding: 10px 0 10px 25px !important;
  padding: 10px 0 10px 0px !important;
  margin: 5px 0 15px 15px !important;
}
/* line 389, ../scss/modules/_forms.scss */
.parsley-errors-list li:before, .form-error-msg li:before {
  content: " ";
  background: url("../images/error_x.png") no-repeat 0 0;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  padding: 0;
  margin: -3px 0 0 0;
  background-size: 100%;
  position: absolute;
  left: 0;
  display: inline-block;
}

/* line 405, ../scss/modules/_forms.scss */
.contribute-form-class .parsley-errors-list, .contribute-form-class .form-error-msg {
  height: 76px;
}
/* line 407, ../scss/modules/_forms.scss */
.contribute-form-class .parsley-errors-list li, .contribute-form-class .form-error-msg li {
  padding: 10px 0 10px 0px !important;
}
/* line 408, ../scss/modules/_forms.scss */
.contribute-form-class .parsley-errors-list li:before, .contribute-form-class .form-error-msg li:before {
  top: 14px;
}

/* line 418, ../scss/modules/_forms.scss */
.form-error-msg {
  display: none;
  font-weight: 500;
  text-align: left;
  padding: 10px 0 10px 25px !important;
  margin: 0 !important;
}
/* line 424, ../scss/modules/_forms.scss */
.form-error-msg:before {
  content: " ";
  background: url("../images/error_x.png") no-repeat 0 0;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  padding: 0;
  margin: 0 5px 0 0;
  background-size: 100%;
  position: absolute;
  left: 0;
  display: inline-block;
}

/* line 438, ../scss/modules/_forms.scss */
.parsley-error {
  border-color: #E02057 !important;
}

/* line 443, ../scss/modules/_forms.scss */
.log-nav .standard-form {
  clear: both;
}
/* line 445, ../scss/modules/_forms.scss */
.log-nav .standard-form .form-label {
  text-align: left;
}
/* line 448, ../scss/modules/_forms.scss */
.log-nav .standard-form button {
  background: #fff;
  border: 0;
  color: #000;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 14px;
  height: 34px;
  margin: 8px 0 0;
  padding: 0 10px 0 15px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/* line 463, ../scss/modules/_forms.scss */
.log-nav .standard-form .submit-txt {
  float: left;
}
/* line 466, ../scss/modules/_forms.scss */
.log-nav .standard-form .submit-icon {
  text-align: center;
  cursor: pointer;
  float: left;
}
/* line 470, ../scss/modules/_forms.scss */
.log-nav .standard-form .submit-icon svg {
  height: 15px;
  margin: 0;
}
/* line 227, ../scss/partials/_mixins.scss */
.log-nav .standard-form input:-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 232, ../scss/partials/_mixins.scss */
.log-nav .standard-form input::-webkit-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 237, ../scss/partials/_mixins.scss */
.log-nav .standard-form ::-webkit-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 242, ../scss/partials/_mixins.scss */
.log-nav .standard-form :-ms-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 247, ../scss/partials/_mixins.scss */
.log-nav .standard-form ::-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 252, ../scss/partials/_mixins.scss */
.log-nav .standard-form :-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}

/* Specific Forms */
/* line 479, ../scss/modules/_forms.scss */
#home-subscribe {
  background: #0680EB;
}
@media (max-width: 767px) {
  /* line 479, ../scss/modules/_forms.scss */
  #home-subscribe {
    padding: 28.33333px 28.33333px 28.33333px 28.33333px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 479, ../scss/modules/_forms.scss */
  #home-subscribe {
    padding: 42.5px 42.5px 42.5px 42.5px;
  }
}
@media (min-width: 1030px) {
  /* line 479, ../scss/modules/_forms.scss */
  #home-subscribe {
    padding: 85px 85px 85px 85px;
  }
}
/* line 482, ../scss/modules/_forms.scss */
#home-subscribe .h2 {
  color: #fff;
}
/* line 483, ../scss/modules/_forms.scss */
#home-subscribe .cf, #home-subscribe .comment-respond {
  position: relative;
}
/* line 486, ../scss/modules/_forms.scss */
#home-subscribe form {
  /*@include responsive-padding(30px, 0px, 0px, 20px);*/
}
/* line 489, ../scss/modules/_forms.scss */
#home-subscribe .form-group {
  float: left;
  width: 100%;
}
/* line 490, ../scss/modules/_forms.scss */
#home-subscribe input {
  width: 100%;
}
/* line 493, ../scss/modules/_forms.scss */
#home-subscribe button.subscribe-submit {
  background: #fff;
  border: 0;
  color: #0680EB;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 24px;
  height: 60px;
  /*margin:8px 0 0;*/
  padding: 0 20px 0 30px;
  text-align: left;
  align-items: center;
  justify-content: center;
}
/* line 506, ../scss/modules/_forms.scss */
#home-subscribe .subscribe-submit-txt {
  float: left;
  vertical-align: middle;
  line-height: 60px;
}
/* line 511, ../scss/modules/_forms.scss */
#home-subscribe .subscribe-submit-icon {
  text-align: center;
  width: auto;
  cursor: pointer;
  transition: all 0.25s ease;
  float: left;
  margin: 6px 0 0 6px;
  transition: all 0.4s ease;
}
/* line 519, ../scss/modules/_forms.scss */
#home-subscribe .subscribe-submit-icon:after {
  transform-origin: 11px 25px;
  content: url(../images/submit-loader.svg);
}
/* line 207, ../scss/partials/_mixins.scss */
#home-subscribe .onclic:after {
  content: url(../images/submit-loader.svg);
  animation: rotating 1s 0.25s linear infinite;
  display: inline-block;
  transform-origin: 11px 25px;
}
/* line 215, ../scss/partials/_mixins.scss */
#home-subscribe .validate:after {
  content: url(../images/submit-validate.svg);
}
/* line 220, ../scss/partials/_mixins.scss */
#home-subscribe .error:after {
  content: url(../images/submit-error.svg);
}
/* line 227, ../scss/partials/_mixins.scss */
#home-subscribe input:-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 232, ../scss/partials/_mixins.scss */
#home-subscribe input::-webkit-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 237, ../scss/partials/_mixins.scss */
#home-subscribe ::-webkit-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 242, ../scss/partials/_mixins.scss */
#home-subscribe :-ms-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 247, ../scss/partials/_mixins.scss */
#home-subscribe ::-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 252, ../scss/partials/_mixins.scss */
#home-subscribe :-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}

/* line 207, ../scss/partials/_mixins.scss */
#forgot-password1 .onclic:after, #forgot-password2 .onclic:after {
  content: url(../images/submit-loader.svg);
  animation: rotating 1s 0.25s linear infinite;
  display: inline-block;
  transform-origin: 11px 25px;
}
/* line 215, ../scss/partials/_mixins.scss */
#forgot-password1 .validate:after, #forgot-password2 .validate:after {
  content: url(../images/submit-validate.svg);
}
/* line 220, ../scss/partials/_mixins.scss */
#forgot-password1 .error:after, #forgot-password2 .error:after {
  content: url(../images/submit-error.svg);
}

/* line 532, ../scss/modules/_forms.scss */
#forgot-password2 .form-error-msg a {
  color: #D50D4E;
  text-decoration: underline;
  font-size: 14px;
  text-transform: none;
}

/* line 541, ../scss/modules/_forms.scss */
#forgot-pw-cancel1:hover, #forgot-pw-cancel2:hover {
  cursor: pointer;
}

/* line 546, ../scss/modules/_forms.scss */
#nav-subscribe-form button.subscribe-submit, .pw-buttons button.subscribe-submit {
  background: #fff;
  border: 0;
  color: #0680EB;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 24px;
  height: 60px;
  margin: 8px 0 0;
  padding: 0 20px 0 30px;
  text-align: left;
  align-items: center;
  justify-content: center;
}
/* line 559, ../scss/modules/_forms.scss */
#nav-subscribe-form button.password-reset-submit, .pw-buttons button.password-reset-submit {
  background: #fff;
  border: 0;
  color: #0680EB;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 14px;
  height: 60px;
  margin: 8px 0 0;
  padding: 0 20px 0 30px;
  text-align: left;
  align-items: center;
  justify-content: center;
}
/* line 573, ../scss/modules/_forms.scss */
#nav-subscribe-form .subscribe-submit-txt, #nav-subscribe-form .password-submit-txt, .pw-buttons .subscribe-submit-txt, .pw-buttons .password-submit-txt {
  float: left;
  vertical-align: middle;
  line-height: 60px;
}
/* line 578, ../scss/modules/_forms.scss */
#nav-subscribe-form .subscribe-submit-icon, #nav-subscribe-form .password-reset-submit-icon, .pw-buttons .subscribe-submit-icon, .pw-buttons .password-reset-submit-icon {
  text-align: center;
  width: auto;
  cursor: pointer;
  transition: all 0.25s ease;
  float: left;
  margin: 6px 0 0 6px;
  transition: all 0.4s ease;
}
/* line 586, ../scss/modules/_forms.scss */
#nav-subscribe-form .subscribe-submit-icon:after, #nav-subscribe-form .password-reset-submit-icon:after, .pw-buttons .subscribe-submit-icon:after, .pw-buttons .password-reset-submit-icon:after {
  transform-origin: 11px 25px;
  content: url(../images/submit-loader.svg);
}

/* line 592, ../scss/modules/_forms.scss */
.home-contribute-class {
  background: #056ac3;
}
@media (max-width: 767px) {
  /* line 592, ../scss/modules/_forms.scss */
  .home-contribute-class {
    padding: 21.66667px 21.66667px 21.66667px 21.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 592, ../scss/modules/_forms.scss */
  .home-contribute-class {
    padding: 32.5px 32.5px 32.5px 32.5px;
  }
}
@media (min-width: 1030px) {
  /* line 592, ../scss/modules/_forms.scss */
  .home-contribute-class {
    padding: 65px 65px 65px 65px;
  }
}
/* line 595, ../scss/modules/_forms.scss */
.home-contribute-class .h8 {
  color: #fff;
}
@media (max-width: 767px) {
  /* line 596, ../scss/modules/_forms.scss */
  .home-contribute-class form {
    padding: 10px 0px 0px 6.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 596, ../scss/modules/_forms.scss */
  .home-contribute-class form {
    padding: 15px 0px 0px 10px;
  }
}
@media (min-width: 1030px) {
  /* line 596, ../scss/modules/_forms.scss */
  .home-contribute-class form {
    padding: 30px 0px 0px 20px;
  }
}
/* line 599, ../scss/modules/_forms.scss */
.home-contribute-class input {
  width: 100%;
}
/* line 603, ../scss/modules/_forms.scss */
.home-contribute-class .fade-input .form-control {
  opacity: 0.5;
}
/* line 607, ../scss/modules/_forms.scss */
.home-contribute-class .form-label-static {
  opacity: 1;
}
/* line 610, ../scss/modules/_forms.scss */
.home-contribute-class .form-control {
  opacity: 1;
}
/* line 613, ../scss/modules/_forms.scss */
.home-contribute-class button.contribute-submit {
  background: #fff;
  border: 0;
  color: #0680EB;
  font-family: "Avenir", "Arial", "sans-serif";
  height: 54px;
  margin: 14px auto 0;
  padding: 0 20px 0 30px;
  text-align: left;
  display: block;
}
/* line 624, ../scss/modules/_forms.scss */
.home-contribute-class .contribute-submit-txt {
  float: left;
  vertical-align: middle;
  line-height: 54px;
  font-size: 24px;
}
/* line 630, ../scss/modules/_forms.scss */
.home-contribute-class .contribute-submit-icon {
  text-align: center;
  height: 40px;
  width: auto;
  cursor: pointer;
  float: left;
  margin: 0 0 0 10px;
  transition: all 0.4s ease;
}
/* line 638, ../scss/modules/_forms.scss */
.home-contribute-class .contribute-submit-icon:after {
  transform-origin: 11px 25px;
  content: url(../images/submit-loader.svg);
}
/* line 207, ../scss/partials/_mixins.scss */
.home-contribute-class .onclic:after {
  content: url(../images/submit-loader.svg);
  animation: rotating 1s 0.25s linear infinite;
  display: inline-block;
  transform-origin: 11px 25px;
}
/* line 215, ../scss/partials/_mixins.scss */
.home-contribute-class .validate:after {
  content: url(../images/submit-validate.svg);
}
/* line 220, ../scss/partials/_mixins.scss */
.home-contribute-class .error:after {
  content: url(../images/submit-error.svg);
}
/* line 227, ../scss/partials/_mixins.scss */
.home-contribute-class input:-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 232, ../scss/partials/_mixins.scss */
.home-contribute-class input::-webkit-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 237, ../scss/partials/_mixins.scss */
.home-contribute-class ::-webkit-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 242, ../scss/partials/_mixins.scss */
.home-contribute-class :-ms-input-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 247, ../scss/partials/_mixins.scss */
.home-contribute-class ::-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 252, ../scss/partials/_mixins.scss */
.home-contribute-class :-moz-placeholder {
  color: #fff;
  text-transform: normal;
  font-size: inherit;
}
/* line 645, ../scss/modules/_forms.scss */
.home-contribute-class #contribute-counter {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 14px;
  color: #fff;
}
/* line 653, ../scss/modules/_forms.scss */
.home-contribute-class .optional-profile {
  display: none;
}

/* line 657, ../scss/modules/_forms.scss */
.forgot-pw-link1:hover {
  cursor: pointer;
}

/* line 660, ../scss/modules/_forms.scss */
.forgot-pw-link2:hover {
  cursor: pointer;
}

/* line 665, ../scss/modules/_forms.scss */
#connect-users #cup-profiles, #connect-users #wp-authors {
  display: inline-block;
  float: left;
  width: 50%;
}
/* line 670, ../scss/modules/_forms.scss */
#connect-users #connect-users_button {
  margin: 0 auto;
  display: table;
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 695, ../scss/modules/_forms.scss */
.thank-you-for-contributing {
  display: none;
  color: #fff;
  padding: 5em 0;
}
/* line 699, ../scss/modules/_forms.scss */
.thank-you-for-contributing span.h8 {
  display: table;
  margin: 0 auto;
}
/* line 703, ../scss/modules/_forms.scss */
.thank-you-for-contributing .buttons-div {
  width: 600px;
  min-height: 100px;
  height: auto;
  padding: 50px 0 0 0;
}
/* line 708, ../scss/modules/_forms.scss */
.thank-you-for-contributing .buttons-div .write-another {
  float: left;
}
/* line 711, ../scss/modules/_forms.scss */
.thank-you-for-contributing .buttons-div .done {
  float: right;
}
/* line 714, ../scss/modules/_forms.scss */
.thank-you-for-contributing .buttons-div span {
  color: #0680EB;
}
/* line 717, ../scss/modules/_forms.scss */
.thank-you-for-contributing .buttons-div .nav-arrow {
  stroke: #000;
}
/* line 720, ../scss/modules/_forms.scss */
.thank-you-for-contributing .buttons-div div {
  height: 60px;
}

/* line 726, ../scss/modules/_forms.scss */
.done-profile {
  display: none;
  float: right;
}

@media screen and (max-width: 650px) {
  /* line 731, ../scss/modules/_forms.scss */
  .buttons-div {
    width: 100%;
  }
  /* line 733, ../scss/modules/_forms.scss */
  .buttons-div .done-profile, .buttons-div .contribute-another {
    float: none;
    display: table;
    margin: 1em 0;
    font-size: 20px;
  }
  /* line 738, ../scss/modules/_forms.scss */
  .buttons-div .done-profile .submit-icon, .buttons-div .contribute-another .submit-icon {
    width: 24px !important;
  }
  /* line 742, ../scss/modules/_forms.scss */
  .buttons-div .done-profile {
    display: none;
  }
}
/* line 753, ../scss/modules/_forms.scss */
.profile-container .submit-icon:after, .submenu .submit-icon:after {
  transform-origin: 12px 13px !important;
}

/* line 764, ../scss/modules/_forms.scss */
body:not(.show-focus-outlines) button:focus,
body:not(.show-focus-outlines) [tabindex]:focus {
  outline: none;
}

/* line 769, ../scss/modules/_forms.scss */
.bigbtn .subscribe-submit-txt {
  width: 123px;
}

/* line 773, ../scss/modules/_forms.scss */
:not(.posi) .smallbtn .subscribe-submit-txt {
  width: 95px;
}

/* line 778, ../scss/modules/_forms.scss */
.posi .smallbtn .subscribe-submit-txt {
  width: 61px;
}

/* line 784, ../scss/modules/_forms.scss */
.cup-person input, .wp-user input {
  -webkit-appearance: radio !important;
  appearance: radio !important;
}

/* line 790, ../scss/modules/_forms.scss */
#reviewcontributions-table {
  width: 100%;
}
/* line 793, ../scss/modules/_forms.scss */
#reviewcontributions-table tr:nth-child(even) {
  background: #CCC;
}
/* line 794, ../scss/modules/_forms.scss */
#reviewcontributions-table tr:nth-child(odd) {
  background: #FFF;
}
/* line 795, ../scss/modules/_forms.scss */
#reviewcontributions-table td {
  border-top: dotted 1px #00F;
  border-left: dotted 1px #0F0;
  padding: 5px;
}
/* line 798, ../scss/modules/_forms.scss */
#reviewcontributions-table .dismiss {
  border-radius: 50%;
  border: none;
  background-color: red;
  width: 50px;
  height: 50px;
}

@media (max-width: 767px) {
  /* line 1, ../scss/modules/_home.scss */
  #learn-about {
    padding: 25px 11.66667px 0 11.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 1, ../scss/modules/_home.scss */
  #learn-about {
    padding: 37.5px 17.5px 0 17.5px;
  }
}
@media (min-width: 1030px) {
  /* line 1, ../scss/modules/_home.scss */
  #learn-about {
    padding: 75px 35px 0 35px;
  }
}
/* line 3, ../scss/modules/_home.scss */
#learn-about h3, #learn-about a {
  color: #000;
  text-align: center;
}
/* line 8, ../scss/modules/_home.scss */
#learn-about a {
  text-decoration: none;
}
/* line 12, ../scss/modules/_home.scss */
#learn-about h3 {
  display: inline;
  padding-bottom: 2px;
  text-decoration: none;
}
/* line 17, ../scss/modules/_home.scss */
#learn-about h6 a {
  border-bottom: solid 2px #0680EB;
}
/* line 20, ../scss/modules/_home.scss */
#learn-about svg {
  width: 11px;
}

/* line 25, ../scss/modules/_home.scss */
#contribute-container {
  background: #0680EB;
  color: #fff;
}
@media (max-width: 767px) {
  /* line 25, ../scss/modules/_home.scss */
  #contribute-container {
    padding: 21.66667px 21.66667px 21.66667px 21.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 25, ../scss/modules/_home.scss */
  #contribute-container {
    padding: 32.5px 32.5px 32.5px 32.5px;
  }
}
@media (min-width: 1030px) {
  /* line 25, ../scss/modules/_home.scss */
  #contribute-container {
    padding: 65px 65px 65px 65px;
  }
}
/* line 29, ../scss/modules/_home.scss */
#contribute-container button {
  background: white;
  border: 0;
  color: #0680EB;
  font-family: "Avenir", "Arial", sans-serif;
  font-size: 24px;
  height: 60px;
  margin: 8px 0 0;
  padding: 0 35px 0 25px;
  text-align: left;
}
/* line 39, ../scss/modules/_home.scss */
#contribute-container button .nav-arrow {
  stroke: #0680eb;
}

/* line 44, ../scss/modules/_home.scss */
.contribute-form2 {
  position: relative;
}

@media (max-width: 767px) {
  /* line 48, ../scss/modules/_home.scss */
  #more-ways-container {
    padding: 25px 21.66667px 15px 21.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 48, ../scss/modules/_home.scss */
  #more-ways-container {
    padding: 37.5px 32.5px 22.5px 32.5px;
  }
}
@media (min-width: 1030px) {
  /* line 48, ../scss/modules/_home.scss */
  #more-ways-container {
    padding: 75px 65px 45px 65px;
  }
}
/* line 50, ../scss/modules/_home.scss */
#more-ways-container h2 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

/* line 57, ../scss/modules/_home.scss */
.media ul {
  display: table;
  margin: 0 auto;
}
/* line 61, ../scss/modules/_home.scss */
.media li {
  padding: 0 1em;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}
/* line 66, ../scss/modules/_home.scss */
.media li a {
  color: #fff;
  text-decoration: none;
}
/* line 71, ../scss/modules/_home.scss */
.media .icon {
  height: 60px;
  margin: 1em 4em 0 4em;
}
/* line 74, ../scss/modules/_home.scss */
.media .icon svg {
  width: auto;
  height: 60px;
}
/* line 77, ../scss/modules/_home.scss */
.media .icon svg .icon-fill {
  fill: #fff;
}
/* line 80, ../scss/modules/_home.scss */
.media .icon svg .icon-outline {
  fill: #19AA3C;
}

/*****************************************
** BOTTOM CTA
*****************************************/
/* line 90, ../scss/modules/_home.scss */
.bottom-cta {
  background-color: #E825BD;
}
/* line 93, ../scss/modules/_home.scss */
.bottom-cta #bottom-cta_image {
  background: url("../images/joy.png") no-repeat right center;
  background-size: cover;
}
@media (max-width: 767px) {
  /* line 97, ../scss/modules/_home.scss */
  .bottom-cta #bottom-cta_text-container {
    padding: 30px 30px 30px 30px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 97, ../scss/modules/_home.scss */
  .bottom-cta #bottom-cta_text-container {
    padding: 45px 45px 45px 45px;
  }
}
@media (min-width: 1030px) {
  /* line 97, ../scss/modules/_home.scss */
  .bottom-cta #bottom-cta_text-container {
    padding: 90px 90px 90px 90px;
  }
}
/* line 100, ../scss/modules/_home.scss */
.bottom-cta #bottom-cta_text-container h2 {
  font-weight: 500;
}
/* line 102, ../scss/modules/_home.scss */
.bottom-cta #bottom-cta_text-container h2 a {
  color: #fff;
}
/* line 106, ../scss/modules/_home.scss */
.bottom-cta #bottom-cta_text-container a {
  text-decoration: none;
  font-weight: 500;
}

/* =================================
  Base Element Styles
==================================== */
/* line 4, ../scss/modules/_navigation.scss */
#visible-nav {
  width: 100%;
  display: flex;
  position: relative;
}

/* line 9, ../scss/modules/_navigation.scss */
#invisible-dropdown-nav {
  width: 100%;
}
/* line 11, ../scss/modules/_navigation.scss */
#invisible-dropdown-nav .submenu {
  display: none;
  position: relative;
  width: 100%;
}
/* line 16, ../scss/modules/_navigation.scss */
#invisible-dropdown-nav .submenu.active-nav {
  opacity: 1;
  height: auto;
  max-height: 90px;
  transition: opacity 1s ease-in;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 25, ../scss/modules/_navigation.scss */
#invisible-dropdown-nav.fixed {
  position: fixed !important;
  top: 136px;
  z-index: 5;
}

/* line 30, ../scss/modules/_navigation.scss */
.posi ~ #invisible-dropdown-nav.fixed {
  top: 94px;
}

@media screen and (max-width: 768px) {
  /* line 34, ../scss/modules/_navigation.scss */
  .posi ~ #invisible-dropdown-nav.fixed {
    top: 169px;
  }
}
/* line 38, ../scss/modules/_navigation.scss */
.nav-option-black ~ .submenu {
  z-index: 10;
  position: absolute;
  top: 60px;
  background: black;
  padding: 20px;
  width: 320px;
  right: -10px;
}

/* line 47, ../scss/modules/_navigation.scss */
.log-sign .nav-option-black ~ .submenu {
  top: 62px;
}

/* line 51, ../scss/modules/_navigation.scss */
#invisible-dropdown-nav .dropdown li {
  /*width: 100%;
  display: table;
  margin: 0 auto;*/
}

/* line 56, ../scss/modules/_navigation.scss */
.logged-in .nav-option-black ~ .submenu {
  top: 74px !important;
}

/* line 59, ../scss/modules/_navigation.scss */
.nav-option {
  /*	svg {
  		transition: transform 150ms ease;
  	}*/
}
/* line 63, ../scss/modules/_navigation.scss */
.nav-option.active-nav svg {
  transform: rotate(180deg);
}

/* line 67, ../scss/modules/_navigation.scss */
div.log-nav {
  width: auto !important;
  padding: 0 !important;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
}

/* line 75, ../scss/modules/_navigation.scss */
.log-subs, .log-sign {
  background: transparent !important;
  position: relative;
  width: auto !important;
  float: left;
}
/* line 80, ../scss/modules/_navigation.scss */
.log-subs .nav-option-black span, .log-sign .nav-option-black span {
  display: none;
}
/* line 83, ../scss/modules/_navigation.scss */
.log-subs a, .log-sign a {
  background-color: #fff !important;
}

/* line 87, ../scss/modules/_navigation.scss */
.log-subs {
  right: 0;
  top: -22px;
  top: -11px;
}

/* line 92, ../scss/modules/_navigation.scss */
.log-sign {
  right: 10px;
  top: -24px;
  top: -13px;
}

/* line 97, ../scss/modules/_navigation.scss */
.log-subs-icon, .log-sign-icon {
  fill: #000 !important;
}

/* line 100, ../scss/modules/_navigation.scss */
#wobl-logo {
  position: absolute;
  left: 46px;
  top: -31px;
}
/* line 104, ../scss/modules/_navigation.scss */
#wobl-logo svg {
  width: 150px;
  width: 110px;
}

/* line 109, ../scss/modules/_navigation.scss */
body:not(.md-tablet):not(.md-phone) .main-header {
  transition: all 1s;
  -moz-transition: all 1s;
  /* Firefox 4 */
  -webkit-transition: all 1s;
  /* Safari and Chrome */
  -o-transition: all 1s;
  /* Opera */
  -webkit-overflow-scrolling: touch;
}

/* line 116, ../scss/modules/_navigation.scss */
.posi {
  position: fixed;
  top: 0;
  margin-top: 0;
  width: 100%;
}
/* line 121, ../scss/modules/_navigation.scss */
.posi.main-header, .posi .mobile-header {
  border-bottom: solid 1px black;
}
/* line 124, ../scss/modules/_navigation.scss */
.posi.main-header {
  padding: 0;
}
/* line 126, ../scss/modules/_navigation.scss */
.posi.main-header #wobl-logo svg {
  transition: .3s;
}
/* line 129, ../scss/modules/_navigation.scss */
.posi.main-header .main-nav li a, .posi.main-header .main-nav li input {
  font-size: 16px;
}
/* line 132, ../scss/modules/_navigation.scss */
.posi.main-header .log-nav span {
  font-size: 14px;
}
/* line 135, ../scss/modules/_navigation.scss */
.posi.main-header #wobl-logo {
  top: 33px;
}

/* line 142, ../scss/modules/_navigation.scss */
.main-header #wobl-logo svg {
  transition: .3s;
}

/* line 147, ../scss/modules/_navigation.scss */
.mobile-nav-button {
  background: #fff;
  display: inline-block;
  width: 50px;
  height: 60px;
  border: 0;
  padding: 14px 0 0 10px;
  cursor: pointer;
  position: absolute;
  z-index: 30;
}
/* line 157, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar,
.mobile-nav-button .bar:after,
.mobile-nav-button .bar:before {
  width: 30px;
  height: 4px;
}
/* line 165, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar {
  position: relative;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  background: black;
  transition: all 0ms 300ms;
}
/* line 172, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar.animate {
  background: transparent;
}
/* line 177, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: black;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/* line 186, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: black;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/* line 195, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/* line 201, ../scss/modules/_navigation.scss */
.mobile-nav-button .bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/* line 206, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header {
  width: 100%;
  position: relative;
  background: #fff;
  margin: -56px 0 0 0;
  z-index: 10;
  padding: 60px 5px 10px;
}
/* line 213, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header .logo-name {
  display: block;
  width: 300px;
  margin: 0 auto;
}
/* line 218, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  margin: 0;
  z-index: 9;
}
/* line 225, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav ul.log-nav {
  padding: 0;
  margin: 0;
  /* .log-subs {
  	.nav-option {
  		top:0;
  		right:0;
  	}
  } */
}
/* line 228, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-subs, .mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-sign {
  font-family: "Avenir", "Arial", "sans-serif";
  margin: 1px;
  background-color: transparent;
  color: #000;
  padding: 0;
  float: left;
}
/* line 235, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-subs a, .mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-sign a {
  background: transparent;
  color: #fff;
}
/* line 238, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-subs a svg, .mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-sign a svg {
  width: 30px;
  margin: 0;
}
/* line 242, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-subs a .log-subs-icon, .mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-subs a .log-sign-icon, .mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-sign a .log-subs-icon, .mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-sign a .log-sign-icon {
  fill: #000;
}
/* line 254, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header div.log-nav ul.log-nav .log-sign .nav-option {
  top: 0;
  right: 0;
}
/* line 262, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header .search-nav {
  padding-left: 11%;
}
/* line 265, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header .log-subs a.nav-option {
  padding-top: 5px;
}
/* line 268, ../scss/modules/_navigation.scss */
.mobile-nav-button .mobile-header .logged-in #logged-in-nav-pic {
  top: -4px;
}

@media screen and (min-width: 400px) and (max-width: 860px) {
  /* line 275, ../scss/modules/_navigation.scss */
  .search-nav {
    padding-left: 3% !important;
  }
}
/* line 280, ../scss/modules/_navigation.scss */
.main-header {
  padding-top: .5em;
  padding-bottom: .5em;
  background-color: #fff;
  z-index: 11111111;
  height: auto;
  min-height: 75px;
  min-height: 64px;
  padding: 4px 0;
}

/* line 293, ../scss/modules/_navigation.scss */
.main-nav {
  display: none;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
  font-family: "Avenir", "Arial", "sans-serif";
  font-weight: 800;
  margin: 0 auto 50px auto;
  position: relative;
  top: 50px;
  opacity: 0;
}
/* line 304, ../scss/modules/_navigation.scss */
.main-nav li {
  cursor: pointer;
  cursor: hand;
}

/* line 311, ../scss/modules/_navigation.scss */
.logo-name a .logo-top {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 133.5683px;
  letter-spacing: -1;
  font-weight: 500;
}
/* line 312, ../scss/modules/_navigation.scss */
.logo-name a .logo-btm {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 133.5683px;
  fill: #FFFFFF;
  letter-spacing: -1;
  font-weight: 500;
}

/* line 315, ../scss/modules/_navigation.scss */
.cat-nav, .media-nav {
  float: left;
}

/* line 319, ../scss/modules/_navigation.scss */
.dropdown1,
.dropdown2,
.dropdown3 {
  background-color: #0680EB;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 25px 0;
  height: 90px;
}
/* line 120, ../scss/partials/_mixins.scss */
.dropdown1 li,
.dropdown2 li,
.dropdown3 li {
  margin: 0 60px;
  padding: 10px 0;
}
/* line 123, ../scss/partials/_mixins.scss */
.dropdown1 li a,
.dropdown2 li a,
.dropdown3 li a {
  color: #fff;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  font-family: "Avenir", "Arial", "sans-serif";
  color: white;
  text-transform: capitalize;
  text-decoration: none;
}

/* line 324, ../scss/modules/_navigation.scss */
#subscribe-submit-container {
  height: 60px;
}

/* line 327, ../scss/modules/_navigation.scss */
.log-subs,
.log-sign {
  font-family: "Avenir", "Arial", "sans-serif";
  margin: 1px;
  background-color: #000;
  color: #fff;
  padding: 1em 1.5em;
}
/* line 334, ../scss/modules/_navigation.scss */
.log-subs img,
.log-sign img {
  z-index: 1000;
  color: #fff;
}
/* line 338, ../scss/modules/_navigation.scss */
.log-subs a,
.log-sign a {
  text-decoration: none;
  background-color: #000;
  color: #fff;
  vertical-align: top;
  position: absolute;
}

/* line 346, ../scss/modules/_navigation.scss */
.log-subs .nav-option {
  right: 2em;
  top: -1px;
}

/* line 350, ../scss/modules/_navigation.scss */
.loggedin .log-subs .nav-option {
  right: 0;
  top: 0;
}

/* line 354, ../scss/modules/_navigation.scss */
.log-subs svg, .log-sign svg {
  width: 21px;
  margin: 0 8px 0 0;
}

/* line 358, ../scss/modules/_navigation.scss */
.log-subs-icon, .log-sign-icon {
  fill: #FFFFFF;
}

/* line 364, ../scss/modules/_navigation.scss */
.main-header .zoom-icon,
ul.main-nav .zoom-icon,
.log-nav .zoom-icon {
  width: 20px;
  padding: 0 5px;
}
/* line 368, ../scss/modules/_navigation.scss */
.main-header #cup_logo,
ul.main-nav #cup_logo,
.log-nav #cup_logo {
  width: 175px;
}

/* line 375, ../scss/modules/_navigation.scss */
.zoom-icon {
  width: 25px;
}

/* line 378, ../scss/modules/_navigation.scss */
.blue {
  color: #0680EB;
}

/* line 383, ../scss/modules/_navigation.scss */
.main-nav li .nav-option:hover, .main-nav li .nav-option:focus, .main-nav li .nav-option.active {
  color: #0680EB;
}

/* line 385, ../scss/modules/_navigation.scss */
.main-nav li .nav-option:hover span, .main-nav li .nav-option:focus span, .main-nav li .nav-option.active span {
  border-bottom: 3px solid #0680EB;
}

/* line 387, ../scss/modules/_navigation.scss */
.main-nav li .nav-option:hover .nav-arrow, .main-nav li .nav-option:focus .nav-arrow, .main-nav li .nav-option.active .nav-arrow {
  stroke: #0680EB;
}

/* line 389, ../scss/modules/_navigation.scss */
.main-nav li .dropdown a:hover, .main-nav li .dropdown a:focus, .main-nav li .dropdown a.active {
  color: #fff;
  border-bottom: 3px solid #fff;
}

/* line 395, ../scss/modules/_navigation.scss */
.main-nav li .nav-option:hover, .main-nav li .nav-option:focus, .main-nav li .nav-option.active {
  color: #0680EB;
}
/* line 397, ../scss/modules/_navigation.scss */
.main-nav li .nav-option:hover span, .main-nav li .nav-option:focus span, .main-nav li .nav-option.active span {
  border-bottom: 3px solid #0680EB;
}
/* line 400, ../scss/modules/_navigation.scss */
.main-nav li .nav-option:hover .nav-arrow, .main-nav li .nav-option:focus .nav-arrow, .main-nav li .nav-option.active .nav-arrow {
  stroke: #0680EB;
}
/* line 406, ../scss/modules/_navigation.scss */
.main-nav li .dropdown a:hover, .main-nav li .dropdown a:focus, .main-nav li .dropdown a.active {
  color: #fff;
  border-bottom: 3px solid #fff;
}

/* line 412, ../scss/modules/_navigation.scss */
.nav-arrow {
  width: 15px;
  height: 9px;
  fill: none;
  stroke: #000000;
  stroke-width: 1.5;
  stroke-miterlimit: 10;
}

/* line 420, ../scss/modules/_navigation.scss */
.spinEffect {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

/* =================================
  Base Layout Styles
==================================== */
/* ---- Page Elements ---- */
/* line 430, ../scss/modules/_navigation.scss */
.logo-name a {
  padding: 5px 5px;
  display: block;
  text-align: center;
}

/* ---- Navigation ---- */
/* line 437, ../scss/modules/_navigation.scss */
.log-nav {
  text-align: center;
}

/* line 440, ../scss/modules/_navigation.scss */
.log-nav {
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
}

/* line 448, ../scss/modules/_navigation.scss */
.main-nav {
  text-align: center;
}
/* line 450, ../scss/modules/_navigation.scss */
.main-nav li {
  margin: 0 auto;
  padding: 10px 20px;
}
/* line 453, ../scss/modules/_navigation.scss */
.main-nav li a, .main-nav li input {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  font-weight: 800;
}

/* line 466, ../scss/modules/_navigation.scss */
input {
  outline: none;
  text-transform: none !important;
  font-size: 18px;
}

/* line 471, ../scss/modules/_navigation.scss */
input[type=search] {
  -webkit-appearance: textfield;
  font-family: inherit;
  font-size: 100%;
}

/* line 476, ../scss/modules/_navigation.scss */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
  display: none;
}

/* line 481, ../scss/modules/_navigation.scss */
input::-webkit-search-cancel-button:after {
  /* generate content after all "X" buttons */
  content: 'X';
  /* required for :after content to show */
  display: block;
  /*
   * Setup dimensions for the custom icon.  Note that these dimensions seem to
   * affect positioning.
   */
  width: 14px;
  height: 10px;
}

/* line 498, ../scss/modules/_navigation.scss */
.search-nav #searchform {
  /*display:table;*/
  margin: 0 -30px 0 0;
  max-width: 300px;
  height: 50px;
  display: inline-flex;
}
/* line 505, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search] {
  margin: 0;
  border: none;
  background: transparent;
  padding: 9px 10px 5px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  float: left;
  color: #000;
  width: 70%;
  border-bottom: solid 3px black;
}
/* line 517, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search] + .submit-btn {
  visibility: hidden;
}
/* line 520, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]::-webkit-input-placeholder {
  text-align: center;
  font-size: 18px !important;
}
/* line 524, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]::-moz-placeholder {
  text-align: center;
  font-size: 18px !important;
  opacity: 1;
}
/* line 529, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]:-ms-input-placeholder {
  text-align: center;
  font-size: 18px !important;
}
/* line 533, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]:-moz-placeholder {
  text-align: center;
  font-size: 18px !important;
}
/* line 538, ../scss/modules/_navigation.scss */
.search-nav #searchform .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
/* line 545, ../scss/modules/_navigation.scss */
.search-nav #searchform #search-icon {
  height: 43px;
  padding: 10px 5px 10px 0;
  float: left;
  position: relative;
  top: 5px;
}
/* line 552, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]:focus {
  border-bottom: 3px solid #000;
}
/* line 554, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]:focus + .submit-btn {
  visibility: visible;
}
/* line 557, ../scss/modules/_navigation.scss */
.search-nav #searchform input[type=search]:focus::-moz-placeholder {
  opacity: 0;
}
/* line 561, ../scss/modules/_navigation.scss */
.search-nav #searchform .submit-btn {
  width: 16px;
  height: 50px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}
/* line 227, ../scss/partials/_mixins.scss */
.search-nav #searchform input:-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
}
/* line 232, ../scss/partials/_mixins.scss */
.search-nav #searchform input::-webkit-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
}
/* line 237, ../scss/partials/_mixins.scss */
.search-nav #searchform ::-webkit-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
}
/* line 242, ../scss/partials/_mixins.scss */
.search-nav #searchform :-ms-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
}
/* line 247, ../scss/partials/_mixins.scss */
.search-nav #searchform ::-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
}
/* line 252, ../scss/partials/_mixins.scss */
.search-nav #searchform :-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
}

/* line 571, ../scss/modules/_navigation.scss */
.search-nav {
  width: 300px;
}

/* line 575, ../scss/modules/_navigation.scss */
.posi .search-nav #searchform input[type=search]::-webkit-input-placeholder {
  text-align: center;
  font-size: 16px !important;
}
/* line 579, ../scss/modules/_navigation.scss */
.posi .search-nav #searchform input[type=search]::-moz-placeholder {
  text-align: center;
  font-size: 16px !important;
  opacity: 1;
}
/* line 584, ../scss/modules/_navigation.scss */
.posi .search-nav #searchform input[type=search]:-ms-input-placeholder {
  text-align: center;
  font-size: 16px !important;
}
/* line 588, ../scss/modules/_navigation.scss */
.posi .search-nav #searchform input[type=search]:-moz-placeholder {
  text-align: center;
  font-size: 16px !important;
}

/* line 596, ../scss/modules/_navigation.scss */
ul.submenu {
  display: none;
}

/* line 600, ../scss/modules/_navigation.scss */
.log-nav .standard-form button {
  float: right;
}

/* line 604, ../scss/modules/_navigation.scss */
.main-nav .dropdown {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  font-family: "Avenir", "Arial", "sans-serif";
  color: white;
  background-color: #0680EB;
  padding: 0;
  margin: 20px 0 0;
}
/* line 611, ../scss/modules/_navigation.scss */
.main-nav .dropdown li {
  margin: 0 60px;
  padding: 10px 0;
}
/* line 614, ../scss/modules/_navigation.scss */
.main-nav .dropdown li a {
  color: #fff;
  font-family: "Avenir", "Arial", "sans-serif";
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: white;
  text-transform: capitalize;
  text-decoration: none;
}
/* line 624, ../scss/modules/_navigation.scss */
.main-nav ul.submenu {
  width: 100%;
  left: 0;
  right: 0;
  margin: 15px 0 0;
}
/* line 629, ../scss/modules/_navigation.scss */
.main-nav ul.submenu .col {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
/* line 635, ../scss/modules/_navigation.scss */
.main-nav ul.submenu .nav-underline {
  border-bottom: 3px solid #fff;
}

/* line 640, ../scss/modules/_navigation.scss */
.dropdown4 .intro {
  padding-right: 50px;
}

/* line 643, ../scss/modules/_navigation.scss */
.log-nav {
  position: relative;
}
/* line 645, ../scss/modules/_navigation.scss */
.log-nav .dropdown {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  font-family: "Avenir", "Arial", "sans-serif";
  color: white;
  min-height: 150px;
  background-color: #000;
}
/* line 651, ../scss/modules/_navigation.scss */
.log-nav .dropdown .intro {
  font-size: 14px;
  font-weight: 800;
  display: table;
  margin: 0 0 15px 0;
  text-align: left;
}
/* line 657, ../scss/modules/_navigation.scss */
.log-nav .dropdown .intro a {
  font-size: 14px;
  position: relative;
  background-color: #000 !important;
}
/* line 664, ../scss/modules/_navigation.scss */
.log-nav .dropdown li a {
  color: #fff;
  font-family: "Avenir", "Arial", "sans-serif";
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: white;
  text-transform: capitalize;
  text-decoration: none;
}
/* line 675, ../scss/modules/_navigation.scss */
.log-nav .dropdown5-menu .forgot-pw-link1 {
  font-weight: 500;
  font-size: 12px;
}
/* line 679, ../scss/modules/_navigation.scss */
.log-nav .dropdown5-menu .forgot-pw-link2 {
  font-weight: 500;
  font-size: 12px;
  text-align: right;
  width: 100%;
}
/* line 685, ../scss/modules/_navigation.scss */
.log-nav .dropdown5-menu #forgot-pw-cancel1, .log-nav .dropdown5-menu #forgot-pw-cancel2 {
  float: right;
}
/* line 688, ../scss/modules/_navigation.scss */
.log-nav .dropdown5-menu #forgot-pw-cancel2 {
  clear: both;
}
/* line 690, ../scss/modules/_navigation.scss */
.log-nav .dropdown5-menu #forgot-pw-cancel2 .submit-arrow {
  line-height: 50px;
}
/* line 697, ../scss/modules/_navigation.scss */
.log-nav .logged-in .dropdown5-menu .dropdown {
  margin: 0px;
  padding: 10px;
}
/* line 704, ../scss/modules/_navigation.scss */
.log-nav #create-account {
  font-weight: 500;
}
/* line 706, ../scss/modules/_navigation.scss */
.log-nav #create-account a {
  font-weight: 800;
}
/* line 710, ../scss/modules/_navigation.scss */
.log-nav .extra-links {
  clear: both;
  padding: 20px 0 0;
}
/* line 715, ../scss/modules/_navigation.scss */
.log-nav ul.submenu .col {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 728, ../scss/modules/_navigation.scss */
.log-nav .logged-in #logged-in-nav-pic {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
/* line 732, ../scss/modules/_navigation.scss */
.log-nav .logged-in #logged-in-nav-pic:hover {
  cursor: pointer;
}
/* line 737, ../scss/modules/_navigation.scss */
.log-nav .logged-in ul.submenu .dropdown li {
  padding: 0;
  margin: 0;
  text-align: left;
}
/* line 742, ../scss/modules/_navigation.scss */
.log-nav .logged-in ul.submenu .dropdown li .profile-links a {
  display: inline-block;
  float: left;
  clear: both;
}
/* line 748, ../scss/modules/_navigation.scss */
.log-nav .logged-in ul.submenu .dropdown li .intro {
  margin: 0;
  font-weight: 500;
}
/* line 752, ../scss/modules/_navigation.scss */
.log-nav .logged-in ul.submenu .dropdown li .name {
  margin: 1em 0 0 0;
  display: block;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
/* line 758, ../scss/modules/_navigation.scss */
.log-nav .logged-in ul.submenu .dropdown li .profile-links a {
  margin-top: 10px;
  border-bottom: solid #000 2px;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
/* line 761, ../scss/modules/_navigation.scss */
.log-nav .logged-in ul.submenu .dropdown li .profile-links a:hover {
  border-bottom: solid #fff 2px;
}

/* line 772, ../scss/modules/_navigation.scss */
#forgot-password1 span.password-help, #forgot-password2 span.password-help {
  font-weight: 500;
  text-align: left;
  float: left;
  font-size: 14px;
  padding-bottom: 10px;
}

/* line 780, ../scss/modules/_navigation.scss */
.parsley-errors-list {
  padding-left: 20px !important;
}

@media screen and (min-width: 376px) {
  /* line 786, ../scss/modules/_navigation.scss */
  .log-nav .dropdown {
    width: 305px;
    margin: 0 auto;
  }
}
/*
#desktop-cats {
	display: none;
	&.show-nav {
		display: block!important;
	}
}
#content, #desktop-cats {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: .3s ease all;
	transition: .3s all;
	&.show-nav {
		
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
}*/
/* line 811, ../scss/modules/_navigation.scss */
.visible {
  visibility: visible !important;
}

/* line 815, ../scss/modules/_navigation.scss */
.close-dropdown {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 819, ../scss/modules/_navigation.scss */
.close-dropdown svg {
  width: 50px;
  transform: rotate(45deg);
}
/* line 823, ../scss/modules/_navigation.scss */
.close-dropdown:hover {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  /* line 829, ../scss/modules/_navigation.scss */
  .loggedin .log-subs {
    right: 55px;
    top: -22px;
    top: -11px;
    z-index: 99999999999;
  }
}
/* line 2, ../scss/modules/_global_nav.scss */
#global-nav {
  background: #181817;
  height: 55px;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetia, Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: normal !important;
  line-height: 15px;
}
/* line 12, ../scss/modules/_global_nav.scss */
#global-nav .show-for-mobile {
  display: none !important;
}
/* line 14, ../scss/modules/_global_nav.scss */
#global-nav .cuplogo {
  display: none;
  text-indent: -999em;
}
/* line 18, ../scss/modules/_global_nav.scss */
#global-nav a.open {
  display: none;
  background: transparent url(../images/glonav_sprite.png) 8px 11px no-repeat;
  width: 34px;
  height: 40px;
  float: left;
  text-indent: -999em;
}
/* line 27, ../scss/modules/_global_nav.scss */
#global-nav #globalnav {
  height: 55px;
}
/* line 30, ../scss/modules/_global_nav.scss */
#global-nav #globalnav > li {
  display: inline !important;
  list-style-type: none !important;
  float: left !important;
  padding: 0 0.9% !important;
  height: 55px;
}
/* line 37, ../scss/modules/_global_nav.scss */
#global-nav #globalnav > li:first-child > a {
  background: transparent url(../images/glonav_sprite.png) 0 -588px no-repeat;
  text-indent: -999em;
  width: 157px;
  height: 33px;
  margin: 12px 0 0 0;
  padding: 0;
  float: left;
}
/* line 47, ../scss/modules/_global_nav.scss */
#global-nav #globalnav > li a {
  color: #FFF;
  text-decoration: none;
  float: left;
  padding: 20px 0;
  font-size: 12px;
  font-weight: normal;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
/* line 59, ../scss/modules/_global_nav.scss */
#global-nav #globalnav > li a:hover {
  color: #969492;
}
/* line 64, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu {
  height: 55px;
  position: relative;
}
/* line 68, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu a {
  background: transparent url(../images/glonav_sprite.png) 60px -244px no-repeat !important;
  padding: 20px 21px 0 0 !important;
  height: auto !important;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
}
/* line 76, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu a:hover {
  background-position: 60px -185px !important;
  display: inline-block;
  overflow: hidden;
}
/* line 82, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu.submenu1 ul {
  width: 280px;
}
/* line 85, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu.submenu2 ul {
  width: 185px;
}
/* line 88, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu ul {
  position: absolute;
  top: 4.6em;
  left: -999em;
  z-index: 999999999;
  padding-left: 0;
  cursor: pointer;
  overflow: hidden;
  clear: both;
}
/* line 97, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu ul li {
  display: block !important;
  list-style-type: none !important;
  float: none !important;
  clear: both;
  /*background: transparent url(../images/dropdown-back.png) 0 0 repeat;*/
  background: black;
  padding: 14px 28px;
  overflow: hidden;
}
/* line 106, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu ul li a {
  background: none !important;
  padding: 0px !important;
  float: left;
  width: 100%;
}
/* line 113, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu ul li.tablet-only {
  display: none !important;
}
/* line 119, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.submenu:hover ul {
  left: -11px;
}
/* line 124, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.highlighted {
  background-color: #40413C;
}
/* line 126, ../scss/modules/_global_nav.scss */
#global-nav #globalnav li.highlighted a {
  color: #FFFFFF;
}

/* line 133, ../scss/modules/_global_nav.scss */
#pageslide {
  overflow: auto;
  display: none;
  position: fixed !important;
  top: 0;
  z-index: 999999;
  background: #31302F;
  width: 280px;
  height: 100%;
  padding: 0;
  font-family: "Helvetica Neue", Helvetia, Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  color: #fff !important;
}
/* line 147, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav > li:first-child {
  display: none;
}
/* line 150, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav {
  margin: 0;
  padding: 0;
  height: 46px;
}
/* line 155, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li a {
  font-size: 20px;
  line-height: 30px;
  border-bottom: 1px solid #42403D !important;
  color: #fff !important;
  text-decoration: none !important;
  display: block !important;
  clear: both !important;
  padding: 8px 22px !important;
  overflow: hidden !important;
}
/* line 167, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.submenu {
  border-bottom: none !important;
  padding: 0 !important;
}
/* line 168, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.submenu > a:before, #pageslide ul#globalnav li.submenu > a:after {
  background-image: linear-gradient(transparent, transparent), url(http://cambridge.org/packages/cambridge_themes/images/ccp/global-nav.svg);
  background-repeat: no-repeat;
  background-size: 220px 146px;
  content: "";
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
/* line 177, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.submenu > a:after {
  background-position: -206px -58px;
  width: 14px;
  height: 9px;
  margin-left: 3px;
}
/* line 185, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.submenu ul {
  display: block !important;
  clear: both !important;
}
/* line 189, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.submenu ul li a {
  background: #2A2927 !important;
  color: #969492 !important;
  padding: 8px 22px !important;
}
/* line 195, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.submenu ul li.tablet-only {
  display: none !important;
}
/* line 201, ../scss/modules/_global_nav.scss */
#pageslide ul#globalnav li.highlighted:not(#global-ce) a {
  color: #0680EB !important;
}

/* line 207, ../scss/modules/_global_nav.scss */
#cambridgenav {
  height: 44px;
  display: table;
  margin: 0 auto;
  width: 100%;
  background-color: #40413C;
}
/* line 213, ../scss/modules/_global_nav.scss */
#cambridgenav ul {
  margin: 0 auto;
  display: block;
  width: 1150px;
  height: 44px;
  text-align: center;
}
/* line 220, ../scss/modules/_global_nav.scss */
#cambridgenav li {
  display: inline-block;
  list-style-type: none;
  padding: 0.5em 1.2%;
}
/* line 224, ../scss/modules/_global_nav.scss */
#cambridgenav li a {
  color: #969492;
  text-decoration: none;
  font-size: 12px;
  font-weight: normal;
}
/* line 231, ../scss/modules/_global_nav.scss */
#cambridgenav li.highlighted {
  background-color: #fff;
}
/* line 233, ../scss/modules/_global_nav.scss */
#cambridgenav li.highlighted a {
  color: #0680EB !important;
  font-weight: bold;
}

@media only screen and (min-width: 767px) and (max-width: 1150px) {
  /* line 247, ../scss/modules/_global_nav.scss */
  #cambridgenav ul {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
  /* line 262, ../scss/modules/_global_nav.scss */
  #global-nav #globalnav > li {
    padding: 0 0.6% !important;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  /* line 269, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) ul#globalnav li.submenu ul li.tablet-only {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  /* line 274, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) ul#globalnav li.hide-for-mobile {
    display: none !important;
  }

  /* line 277, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) ul#globalnav li.submenu:hover ul {
    left: -17px !important;
  }
}
@media only screen and (max-width: 972px) {
  /* line 282, ../scss/modules/_global_nav.scss */
  .submenu li a span {
    font-size: 16px;
    line-height: 24px;
    display: block;
  }

  /* line 287, ../scss/modules/_global_nav.scss */
  #pageslide #globalnav .submenu ul a:hover {
    color: #686868 !important;
  }

  /* line 290, ../scss/modules/_global_nav.scss */
  #pageslide .show-for-mobile {
    display: block !important;
  }

  /* line 291, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) {
    height: 45px;
  }
  /* line 293, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) ul#globalnav {
    display: none;
  }
  /* line 296, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) a.open {
    display: block !important;
  }
  /* line 298, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) a.open:hover {
    background-position: 8px -60px !important;
    position: relative;
  }
  /* line 302, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) a.open.globalnav_close {
    background-position: 10px -131px !important;
    left: 0;
  }
  /* line 307, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) .cuplogo {
    display: inline;
  }
  /* line 309, ../scss/modules/_global_nav.scss */
  #global-nav:not(.non-responsive) .cuplogo a {
    background: transparent url(../images/glonav_sprite.png) 0 -518px no-repeat !important;
    width: 144px !important;
    height: 30px !important;
    margin: 8px 0 0 0 !important;
    float: left !important;
  }

  /* line 319, ../scss/modules/_global_nav.scss */
  #mainWrapper #cambridgenav {
    display: none;
  }

  /* line 324, ../scss/modules/_global_nav.scss */
  #global-ce #cambridgenav {
    height: auto;
    display: block;
    padding: 0;
  }
  /* line 328, ../scss/modules/_global_nav.scss */
  #global-ce #cambridgenav ul {
    height: auto;
    width: auto;
  }
  /* line 331, ../scss/modules/_global_nav.scss */
  #global-ce #cambridgenav ul li {
    height: 57px;
    float: none;
    width: 100%;
    text-align: left;
  }
  /* line 336, ../scss/modules/_global_nav.scss */
  #global-ce #cambridgenav ul li a {
    border-bottom: 0 !important;
    clear: both;
    padding: 8px 15px !important;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Post Styles

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/* line 11, ../scss/modules/_posts.scss */
.article-header {
  position: relative;
}
/* line 14, ../scss/modules/_posts.scss */
.article-header .saveArticle .add {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 18, ../scss/modules/_posts.scss */
.article-header .saveArticle .add svg {
  height: 50px;
  width: 50px;
}
/* line 21, ../scss/modules/_posts.scss */
.article-header .saveArticle .add svg .check {
  display: none;
}
/* line 24, ../scss/modules/_posts.scss */
.article-header .saveArticle .add svg .plus {
  display: block;
}
/* line 33, ../scss/modules/_posts.scss */
.article-header .saved .add svg .check {
  display: block;
}
/* line 36, ../scss/modules/_posts.scss */
.article-header .saved .add svg .plus {
  display: none;
}

/* line 43, ../scss/modules/_posts.scss */
a.current_nav {
  border-bottom: solid 2px white;
  padding-bottom: 2px;
}

/* line 47, ../scss/modules/_posts.scss */
.post-container, #featured-post, .square-col {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-flow: row wrap;
  justify-content: space-around;
}
/* line 56, ../scss/modules/_posts.scss */
.post-container a, #featured-post a, .square-col a {
  text-decoration: none;
}
/* line 60, ../scss/modules/_posts.scss */
.post-container .blog-preview-content .header-arrow, #featured-post .blog-preview-content .header-arrow, .square-col .blog-preview-content .header-arrow {
  vertical-align: middle;
}
/* line 62, ../scss/modules/_posts.scss */
.post-container .blog-preview-content .header-arrow svg, #featured-post .blog-preview-content .header-arrow svg, .square-col .blog-preview-content .header-arrow svg {
  width: 47px;
}
/* line 66, ../scss/modules/_posts.scss */
.post-container .blog-preview-content:hover, #featured-post .blog-preview-content:hover, .square-col .blog-preview-content:hover {
  cursor: pointer;
}
/* line 71, ../scss/modules/_posts.scss */
.post-container .saveArticle .add, #featured-post .saveArticle .add, .square-col .saveArticle .add {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
/* line 76, ../scss/modules/_posts.scss */
.post-container .saveArticle .add svg, #featured-post .saveArticle .add svg, .square-col .saveArticle .add svg {
  width: 50px;
}
/* line 78, ../scss/modules/_posts.scss */
.post-container .saveArticle .add svg .check, #featured-post .saveArticle .add svg .check, .square-col .saveArticle .add svg .check {
  display: none;
}
/* line 81, ../scss/modules/_posts.scss */
.post-container .saveArticle .add svg .plus, #featured-post .saveArticle .add svg .plus, .square-col .saveArticle .add svg .plus {
  display: block;
}
/* line 89, ../scss/modules/_posts.scss */
.post-container .square-col .overlay-container .add, #featured-post .square-col .overlay-container .add, .square-col .square-col .overlay-container .add {
  cursor: pointer;
}
/* line 91, ../scss/modules/_posts.scss */
.post-container .square-col .overlay-container .add svg, #featured-post .square-col .overlay-container .add svg, .square-col .square-col .overlay-container .add svg {
  width: 50px;
  position: relative;
  top: -10px;
  right: 0;
}
/* line 103, ../scss/modules/_posts.scss */
.post-container #featured-post .overlay-container .add svg, #featured-post #featured-post .overlay-container .add svg, .square-col #featured-post .overlay-container .add svg {
  width: 75px;
  width: 50px;
  position: relative;
  top: -10px;
  right: -10px;
}
/* line 116, ../scss/modules/_posts.scss */
.post-container .saved .add svg .check, #featured-post .saved .add svg .check, .square-col .saved .add svg .check {
  display: block;
}
/* line 119, ../scss/modules/_posts.scss */
.post-container .saved .add svg .plus, #featured-post .saved .add svg .plus, .square-col .saved .add svg .plus {
  display: none;
}
/* line 125, ../scss/modules/_posts.scss */
.post-container .author-container, #featured-post .author-container, .square-col .author-container,
.post-container .post-view,
#featured-post .post-view,
.square-col .post-view {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 0;
  min-height: 0;
}
/* line 128, ../scss/modules/_posts.scss */
.post-container .author-container svg, #featured-post .author-container svg, .square-col .author-container svg,
.post-container .post-view svg,
#featured-post .post-view svg,
.square-col .post-view svg {
  width: 46px;
  margin: 0 11px 0 0;
  height: 57px;
}
/* line 134, ../scss/modules/_posts.scss */
.post-container .author-container.media svg, #featured-post .author-container.media svg, .square-col .author-container.media svg,
.post-container .post-view.media svg,
#featured-post .post-view.media svg,
.square-col .post-view.media svg {
  width: 61px;
  margin: 0 11px 0 0;
  height: 61px;
}
/* line 138, ../scss/modules/_posts.scss */
.post-container .author-container.media svg .icon-fill, #featured-post .author-container.media svg .icon-fill, .square-col .author-container.media svg .icon-fill,
.post-container .post-view.media svg .icon-fill,
#featured-post .post-view.media svg .icon-fill,
.square-col .post-view.media svg .icon-fill {
  fill: transparent;
}
/* line 141, ../scss/modules/_posts.scss */
.post-container .author-container.media svg .icon-outline, #featured-post .author-container.media svg .icon-outline, .square-col .author-container.media svg .icon-outline,
.post-container .post-view.media svg .icon-outline,
#featured-post .post-view.media svg .icon-outline,
.square-col .post-view.media svg .icon-outline {
  fill: #fff;
}
/* line 147, ../scss/modules/_posts.scss */
.post-container .misc, #featured-post .misc, .square-col .misc {
  position: absolute;
  bottom: 1em;
  left: 3em;
  right: 3em;
}
/* line 153, ../scss/modules/_posts.scss */
.post-container .more-tools, #featured-post .more-tools, .square-col .more-tools {
  justify-content: space-between;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 0;
  min-height: 0;
  width: 100%;
}
/* line 158, ../scss/modules/_posts.scss */
.post-container .more-tools .post-view img, #featured-post .more-tools .post-view img, .square-col .more-tools .post-view img {
  width: 50px;
  margin: 0 11px 0 0;
  height: 61px;
}
/* line 164, ../scss/modules/_posts.scss */
.post-container .more-tools .post-more, #featured-post .more-tools .post-more, .square-col .more-tools .post-more, .post-container .more-tools .post-num, #featured-post .more-tools .post-num, .square-col .more-tools .post-num {
  font-weight: 800;
  margin: 23px 0 23px 23px;
  font-size: .91em;
  line-height: 1.5em;
  letter-spacing: .7px;
}
/* line 171, ../scss/modules/_posts.scss */
.post-container .more-tools .post-more .link-cat-arrow svg, #featured-post .more-tools .post-more .link-cat-arrow svg, .square-col .more-tools .post-more .link-cat-arrow svg, .post-container .more-tools .post-num .link-cat-arrow svg, #featured-post .more-tools .post-num .link-cat-arrow svg, .square-col .more-tools .post-num .link-cat-arrow svg {
  width: 13px;
  fill: white;
}
/* line 177, ../scss/modules/_posts.scss */
.post-container .more-tools .post-num, #featured-post .more-tools .post-num, .square-col .more-tools .post-num {
  margin: 18px 0;
}
/* line 181, ../scss/modules/_posts.scss */
.post-container .prof-pic, #featured-post .prof-pic, .square-col .prof-pic {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  margin: 0 15px 0 0;
}
/* line 186, ../scss/modules/_posts.scss */
.post-container .fav-icon, #featured-post .fav-icon, .square-col .fav-icon {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 192, ../scss/modules/_posts.scss */
.post-container .eye-icon, #featured-post .eye-icon, .square-col .eye-icon {
  height: 30px;
  width: 30px;
}

/* line 196, ../scss/modules/_posts.scss */
#featured-post {
  position: relative;
  flex: 1 100%;
  color: #fff;
  background-size: cover !important;
  display: -moz-box;
}
/* line 204, ../scss/modules/_posts.scss */
#featured-post .title a {
  text-decoration: none;
}
/* line 207, ../scss/modules/_posts.scss */
#featured-post .title a h1 span {
  color: #fff;
  display: inline;
  padding: 0.45rem 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* line 217, ../scss/modules/_posts.scss */
#featured-post .title-arrow {
  position: relative;
  left: -8px;
}
/* line 220, ../scss/modules/_posts.scss */
#featured-post .title-arrow svg {
  width: 40px;
  display: block;
}
/* line 225, ../scss/modules/_posts.scss */
#featured-post .bg-image h1 {
  color: #fff;
}
/* line 228, ../scss/modules/_posts.scss */
#featured-post .bg-image-no h1 {
  color: #000;
}
/* line 231, ../scss/modules/_posts.scss */
#featured-post h4.avatar {
  padding: 10px 0 0 5px;
  margin: 0;
  font-weight: 800;
}
/* line 236, ../scss/modules/_posts.scss */
#featured-post h4.prof-name {
  margin: 0;
  font-weight: 800;
  color: #fff;
}
/* line 241, ../scss/modules/_posts.scss */
#featured-post .wide-post {
  padding: 1em 2em;
}
/* line 243, ../scss/modules/_posts.scss */
#featured-post .wide-post .post-more {
  font-size: 24px;
  float: right;
  color: #fff;
}
/* line 248, ../scss/modules/_posts.scss */
#featured-post .wide-post:hover {
  cursor: pointer;
}
/* line 252, ../scss/modules/_posts.scss */
#featured-post .saveArticle {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 259, ../scss/modules/_posts.scss */
#featured-post .saveArticle .add svg .check {
  display: none;
}
/* line 262, ../scss/modules/_posts.scss */
#featured-post .saveArticle .add svg .plus {
  display: block;
}
/* line 271, ../scss/modules/_posts.scss */
#featured-post .saved .add svg .check {
  display: block;
}
/* line 274, ../scss/modules/_posts.scss */
#featured-post .saved .add svg .plus {
  display: none;
}

/* line 281, ../scss/modules/_posts.scss */
.single_cp #featured-post .wide-post:hover {
  cursor: default;
}

/* line 285, ../scss/modules/_posts.scss */
.posts-list .post-container, .posts-list #featured-post, .posts-list .square-col {
  display: inline-block;
  flex-flow: initial;
  justify-content: initial;
}
/* line 289, ../scss/modules/_posts.scss */
.posts-list .post-container .header-color, .posts-list #featured-post .header-color, .posts-list .square-col .header-color,
.posts-list .post-container .prof-name,
.posts-list #featured-post .prof-name,
.posts-list .square-col .prof-name,
.posts-list .post-container .post-num,
.posts-list #featured-post .post-num,
.posts-list .square-col .post-num,
.posts-list .post-container .post-more,
.posts-list #featured-post .post-more,
.posts-list .square-col .post-more {
  color: #000;
}
/* line 295, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col, .posts-list #featured-post .full-width-col, .posts-list .square-col .full-width-col {
  display: none;
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  border-top: 1px solid #cfcfcf;
  overflow: hidden;
}
@media (max-width: 767px) {
  /* line 295, ../scss/modules/_posts.scss */
  .posts-list .post-container .full-width-col, .posts-list #featured-post .full-width-col, .posts-list .square-col .full-width-col {
    padding: 15px 21.66667px 15px 21.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 295, ../scss/modules/_posts.scss */
  .posts-list .post-container .full-width-col, .posts-list #featured-post .full-width-col, .posts-list .square-col .full-width-col {
    padding: 22.5px 32.5px 22.5px 32.5px;
  }
}
@media (min-width: 1030px) {
  /* line 295, ../scss/modules/_posts.scss */
  .posts-list .post-container .full-width-col, .posts-list #featured-post .full-width-col, .posts-list .square-col .full-width-col {
    padding: 45px 65px 45px 65px;
  }
}
/* line 305, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .blog-preview-content, .posts-list #featured-post .full-width-col .blog-preview-content, .posts-list .square-col .full-width-col .blog-preview-content {
  padding: 5px 15px;
}
/* line 309, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content h6, .posts-list #featured-post .full-width-col .post-content h6, .posts-list .square-col .full-width-col .post-content h6 {
  margin: 0;
  line-height: 1.125;
}
/* line 313, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content a, .posts-list #featured-post .full-width-col .post-content a, .posts-list .square-col .full-width-col .post-content a {
  text-decoration: none;
}
/* line 316, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content h4, .posts-list #featured-post .full-width-col .post-content h4, .posts-list .square-col .full-width-col .post-content h4 {
  float: left;
  display: inline-block;
}
/* line 320, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content .header-color, .posts-list #featured-post .full-width-col .post-content .header-color, .posts-list .square-col .full-width-col .post-content .header-color {
  margin: 0 10px 0 0;
  padding-bottom: 4px;
}
/* line 324, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content .header-arrow, .posts-list #featured-post .full-width-col .post-content .header-arrow, .posts-list .square-col .full-width-col .post-content .header-arrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
/* line 329, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content .header-arrow svg, .posts-list #featured-post .full-width-col .post-content .header-arrow svg, .posts-list .square-col .full-width-col .post-content .header-arrow svg {
  width: 47px;
}
/* line 333, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .post-content .h7, .posts-list #featured-post .full-width-col .post-content .h7, .posts-list .square-col .full-width-col .post-content .h7 {
  font-size: 21px;
  font-weight: 400;
  clear: left;
  padding: 0;
}
/* line 342, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .written svg .icon-outline, .posts-list #featured-post .full-width-col .written svg .icon-outline, .posts-list .square-col .full-width-col .written svg .icon-outline {
  fill: #e1e1e1;
}
/* line 345, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .written svg .icon-fill, .posts-list #featured-post .full-width-col .written svg .icon-fill, .posts-list .square-col .full-width-col .written svg .icon-fill {
  fill: transparent;
}
/* line 351, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .saveArticle .add, .posts-list #featured-post .full-width-col .saveArticle .add, .posts-list .square-col .full-width-col .saveArticle .add {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 355, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .saveArticle .add svg, .posts-list #featured-post .full-width-col .saveArticle .add svg, .posts-list .square-col .full-width-col .saveArticle .add svg {
  width: 50px;
}
/* line 357, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .saveArticle .add svg .check, .posts-list #featured-post .full-width-col .saveArticle .add svg .check, .posts-list .square-col .full-width-col .saveArticle .add svg .check {
  display: none;
}
/* line 360, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .saveArticle .add svg .plus, .posts-list #featured-post .full-width-col .saveArticle .add svg .plus, .posts-list .square-col .full-width-col .saveArticle .add svg .plus {
  display: block;
}
/* line 369, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .saved .add svg .check, .posts-list #featured-post .full-width-col .saved .add svg .check, .posts-list .square-col .full-width-col .saved .add svg .check {
  display: block;
}
/* line 372, ../scss/modules/_posts.scss */
.posts-list .post-container .full-width-col .saved .add svg .plus, .posts-list #featured-post .full-width-col .saved .add svg .plus, .posts-list .square-col .full-width-col .saved .add svg .plus {
  display: none;
}

/* line 381, ../scss/modules/_posts.scss */
.most-popular {
  color: #2D3C8B;
}
@media (max-width: 767px) {
  /* line 381, ../scss/modules/_posts.scss */
  .most-popular {
    padding: 11.66667px 11.66667px 8.33333px 11.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 381, ../scss/modules/_posts.scss */
  .most-popular {
    padding: 17.5px 17.5px 12.5px 17.5px;
  }
}
@media (min-width: 1030px) {
  /* line 381, ../scss/modules/_posts.scss */
  .most-popular {
    padding: 35px 35px 25px 35px;
  }
}

/* line 389, ../scss/modules/_posts.scss */
.square-col {
  position: relative;
  background-size: cover;
  display: -moz-box;
}
/* line 75, ../scss/partials/_mixins.scss */
.square-col:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%;
}
/* line 82, ../scss/partials/_mixins.scss */
.square-col > .blog-preview-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* line 394, ../scss/modules/_posts.scss */
.square-col .header-color,
.square-col .prof-name,
.square-col .post-num,
.square-col .post-more {
  color: #fff;
  text-align: right;
  width: 70%;
}
/* line 402, ../scss/modules/_posts.scss */
.square-col .prof-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .7px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 0;
  min-height: 0;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  margin: 0 25px 0 0;
}
/* line 412, ../scss/modules/_posts.scss */
.square-col .header-color {
  padding-bottom: 4px;
  margin-right: 7px;
}
/* line 417, ../scss/modules/_posts.scss */
.square-col .arrow-contain {
  margin: 0;
}

/* line 421, ../scss/modules/_posts.scss */
a svg {
  display: inline-block;
  vertical-align: middle;
}

/* line 425, ../scss/modules/_posts.scss */
.post-view svg {
  width: 30px;
  margin: 15px 10px;
}

/* line 430, ../scss/modules/_posts.scss */
.link-cat {
  font-weight: 800;
}

/* line 434, ../scss/modules/_posts.scss */
.link-cat-arrow svg {
  width: 13px;
  fill: #fff;
}

/* line 441, ../scss/modules/_posts.scss */
.single-campaign_page #featured-post .white-button {
  text-decoration: none;
  font-weight: 800;
  color: #000 !important;
}

/* line 449, ../scss/modules/_posts.scss */
.capt-contain {
  display: inline-block;
  margin: 20px 0;
}

/* line 453, ../scss/modules/_posts.scss */
.loadMore-container {
  margin: 0 auto 60px;
  display: table;
}

/* line 457, ../scss/modules/_posts.scss */
#loadMore, #explore {
  background-color: #2D3C8B;
  font-family: "Avenir", "Arial", sans-serif;
  font-size: 24px;
  height: 60px;
  vertical-align: middle;
  display: inline-block;
  padding: 13px 20px;
  text-align: left;
  color: #fff;
  border: 0;
}
/* line 468, ../scss/modules/_posts.scss */
#loadMore span, #explore span {
  float: left;
  color: #fff;
}
/* line 472, ../scss/modules/_posts.scss */
#loadMore span:nth-child(2), #explore span:nth-child(2) {
  position: relative;
}
/* line 475, ../scss/modules/_posts.scss */
#loadMore .link-cat-arrow, #explore .link-cat-arrow {
  padding: 0 0 0 10px;
}

/* line 479, ../scss/modules/_posts.scss */
.post-more,
.header-underline-color,
.header-quote {
  margin: 10px 0;
}

/* line 485, ../scss/modules/_posts.scss */
.header-quote {
  color: #fff;
}

/* line 491, ../scss/modules/_posts.scss */
.single-post #content.tools {
  background-image: url("../images/single-post-background-pink.png");
}
/* line 494, ../scss/modules/_posts.scss */
.single-post #content.insights {
  background-image: url("../images/single-post-background-orange.png");
}
/* line 497, ../scss/modules/_posts.scss */
.single-post #content.techniques {
  background-image: url("../images/single-post-background-green.png");
}
/* line 500, ../scss/modules/_posts.scss */
.single-post #content {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 60%;
}
/* line 505, ../scss/modules/_posts.scss */
.single-post .single-post-top {
  width: 92%;
  position: relative;
}
@media (max-width: 767px) {
  /* line 505, ../scss/modules/_posts.scss */
  .single-post .single-post-top {
    padding: 16.66667px 21.66667px 16.66667px 6.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 505, ../scss/modules/_posts.scss */
  .single-post .single-post-top {
    padding: 25px 32.5px 25px 10px;
  }
}
@media (min-width: 1030px) {
  /* line 505, ../scss/modules/_posts.scss */
  .single-post .single-post-top {
    padding: 50px 65px 50px 20px;
  }
}
/* line 509, ../scss/modules/_posts.scss */
.single-post .single-post-top h5 {
  padding: 0;
  margin: 0;
  font-weight: 800;
  text-transform: inherit;
  letter-spacing: normal;
}
/* line 517, ../scss/modules/_posts.scss */
.single-post .single-post-top h1 {
  font-size: 3.125em;
  line-height: 1.64em;
  margin: 0.67em 0 0.2em;
  width: 90%;
}
/* line 522, ../scss/modules/_posts.scss */
.single-post .single-post-top h1 span {
  color: #fff;
  display: inline;
  padding: 0.45rem 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* line 531, ../scss/modules/_posts.scss */
.single-post hr {
  border: 0;
  height: 2px;
  background: #2D3C8B;
}
/* line 536, ../scss/modules/_posts.scss */
.single-post .entry-content {
  position: relative;
  margin: -13em auto 0;
  background: transparent;
  width: 90%;
  color: #181817;
}
@media (max-width: 767px) {
  /* line 536, ../scss/modules/_posts.scss */
  .single-post .entry-content {
    padding: 13.33333px 26.66667px 13.33333px 26.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 536, ../scss/modules/_posts.scss */
  .single-post .entry-content {
    padding: 20px 40px 20px 40px;
  }
}
@media (min-width: 1030px) {
  /* line 536, ../scss/modules/_posts.scss */
  .single-post .entry-content {
    padding: 40px 80px 40px 80px;
  }
}
/* line 546, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .prof-pic {
  border-radius: 50px;
  height: 68px;
  width: 68px;
  float: left;
}
/* line 554, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li {
  float: left;
  padding: 0;
}
/* line 558, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li svg .social-bg {
  fill: #fff;
}
/* line 561, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li svg .social-fill, .single-post .entry-content .post-header .social-share ul li svg .social-plus {
  fill: #cfcfcf;
}
/* line 564, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li svg .social-path {
  fill: none;
  stroke: #cfcfcf;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
/* line 571, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li svg:hover .social-fill, .single-post .entry-content .post-header .social-share ul li svg:hover .social-bg {
  fill: #000;
}
/* line 574, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li svg:hover .social-path {
  fill: #000;
  stroke: #000;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
/* line 584, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li .saveArticle svg .plus {
  display: block;
}
/* line 587, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li .saveArticle svg .check {
  display: none;
}
/* line 593, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li .saveArticle:hover svg .social-bg, .single-post .entry-content .post-header .social-share ul li .saveArticle:hover svg .social-fill {
  fill: #000;
}
/* line 596, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li .saveArticle:hover svg .social-plus {
  fill: #fff;
}
/* line 604, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li .saved svg .plus {
  display: none;
}
/* line 607, ../scss/modules/_posts.scss */
.single-post .entry-content .post-header .social-share ul li .saved svg .check {
  display: block;
}
/* line 618, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content {
  padding: 0;
 /*
			.video-container iframe,
			.video-container object,
			.video-container embed {
			    position: absolute;
			    top: 0;
			    left: 0;
			    width: 100%;
			    height: 100%;
			}*/
}
/* line 620, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content p:first-of-type {
  font-weight: 800;
}
/* line 622, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content p:first-of-type em {
  font-style: normal;
}
/* line 626, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content .post-info {
  color: #a8a8a8;
  padding: 20px;
  background: #fff;
}
/* line 632, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content p {
  font-size: 1em;
  line-height: calc(1.3em + (1.5 - 1.3) * ((100vw - 21em)/(35 - 21)));
}
/* line 637, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content ul li {
  list-style: disc;
  font-size: inherit;
  font-family: "Avenir", "Arial", "sans-serif";
  margin-left: 2.25em;
}
/* line 644, ../scss/modules/_posts.scss */
.single-post .entry-content .post-content .video-container {
  padding-top: 30px;
  overflow: hidden;
}

/* line 661, ../scss/modules/_posts.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* line 668, ../scss/modules/_posts.scss */
.article-footer {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  /* line 668, ../scss/modules/_posts.scss */
  .article-footer {
    padding: 8.33333px 11.66667px 33.33333px 11.66667px;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 668, ../scss/modules/_posts.scss */
  .article-footer {
    padding: 12.5px 17.5px 50px 17.5px;
  }
}
@media (min-width: 1030px) {
  /* line 668, ../scss/modules/_posts.scss */
  .article-footer {
    padding: 25px 35px 100px 35px;
  }
}
/* line 672, ../scss/modules/_posts.scss */
.article-footer .social-share {
  position: relative;
}
/* line 675, ../scss/modules/_posts.scss */
.article-footer .social-share ul li {
  float: left;
  padding: 0;
}
/* line 678, ../scss/modules/_posts.scss */
.article-footer .social-share ul li svg {
  width: 55px;
}
/* line 680, ../scss/modules/_posts.scss */
.article-footer .social-share ul li svg .social-bg {
  fill: #fff;
}
/* line 683, ../scss/modules/_posts.scss */
.article-footer .social-share ul li svg .social-fill, .article-footer .social-share ul li svg .social-plus {
  fill: #2D3C8B;
}
/* line 686, ../scss/modules/_posts.scss */
.article-footer .social-share ul li svg .social-path {
  fill: none;
  stroke: #2D3C8B;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
/* line 693, ../scss/modules/_posts.scss */
.article-footer .social-share ul li svg:hover .social-fill, .article-footer .social-share ul li svg:hover .social-bg {
  fill: #2D3C8B;
}
/* line 696, ../scss/modules/_posts.scss */
.article-footer .social-share ul li svg:hover .social-path {
  fill: #2D3C8B;
  stroke: #2D3C8B;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
/* line 706, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saveArticle svg .plus {
  display: block;
}
/* line 709, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saveArticle svg .check {
  display: none;
}
/* line 715, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saveArticle:hover svg .social-bg, .article-footer .social-share ul li .saveArticle:hover svg .social-fill {
  fill: #2D3C8B;
}
/* line 718, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saveArticle:hover svg .social-plus {
  fill: #fff;
}
/* line 722, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saveArticle:hover:after {
  background: #2D3C8B;
  content: "SAVE ARTICLE";
  color: white;
  display: inline-block;
  position: absolute;
  top: 35px;
  right: 12px;
  padding: 0px 10px;
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  font-family: "Avenir", "Arial", "sans-serif";
}
/* line 741, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saved svg .plus {
  display: none;
}
/* line 744, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saved svg .check {
  display: block;
}
/* line 749, ../scss/modules/_posts.scss */
.article-footer .social-share ul li .saved:hover:after {
  content: "SAVED";
  right: -61px;
  top: 0px;
}

/* line 761, ../scss/modules/_posts.scss */
.filteredOut-cat, .filteredOut-content {
  display: none !important;
}

/* Juicer settings */
/* line 767, ../scss/modules/_posts.scss */
#juicer-feed h4 {
  text-align: center;
  color: #2D3C8B;
  font-weight: 800;
}

/* line 773, ../scss/modules/_posts.scss */
ul.juicer-feed {
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 16px;
  line-height: 20.8px;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  line-height: 24px;
  text-transform: none;
}
/* line 782, ../scss/modules/_posts.scss */
ul.juicer-feed .feed-item {
  background-color: #d9d9d9 !important;
  padding: 0 !important;
}
/* line 786, ../scss/modules/_posts.scss */
/*ul.juicer-feed .j-poster {
  display: none;
}
/* line 789, ../scss/modules/_posts.scss */
ul.juicer-feed .j-text {
  padding: 1em;
}

/* line 795, ../scss/modules/_posts.scss */
.techniques .tax-filter input[type=checkbox]:checked ~ label {
  background-color: #19AA3C;
}

/* line 800, ../scss/modules/_posts.scss */
.insights .tax-filter input[type=checkbox]:checked ~ label {
  background-color: #FF7501;
}

/* line 805, ../scss/modules/_posts.scss */
.tools .tax-filter input[type=checkbox]:checked ~ label {
  background-color: #E825BD;
}

/* line 809, ../scss/modules/_posts.scss */
.tax-container-hidden {
  display: none;
}

/* line 812, ../scss/modules/_posts.scss */
#noMorePosts,
#noPostsLikeThat {
  display: none;
  color: #000;
  text-align: center;
  margin-top: 0;
}

/* line 821, ../scss/modules/_posts.scss */
.taxonomy-super_cat .square-col .author-container, .taxonomy-content_type .square-col .author-container {
  display: none;
}
/* line 822, ../scss/modules/_posts.scss */
.taxonomy-super_cat .square-col .tax-container-hidden, .taxonomy-content_type .square-col .tax-container-hidden {
  display: block;
}
/* line 827, ../scss/modules/_posts.scss */
.taxonomy-super_cat .featured-tax-posts .post-view, .taxonomy-content_type .featured-tax-posts .post-view {
  display: none;
}
/* line 828, ../scss/modules/_posts.scss */
.taxonomy-super_cat .featured-tax-posts .post-more, .taxonomy-content_type .featured-tax-posts .post-more {
  text-align: left;
}
/* line 830, ../scss/modules/_posts.scss */
.taxonomy-super_cat .more-tools, .taxonomy-content_type .more-tools {
  display: block;
}
/* line 833, ../scss/modules/_posts.scss */
.taxonomy-super_cat .post-view, .taxonomy-content_type .post-view {
  float: right;
}
/* line 835, ../scss/modules/_posts.scss */
.taxonomy-super_cat .post-view svg, .taxonomy-content_type .post-view svg {
  position: relative;
  left: 52px;
}
/* line 840, ../scss/modules/_posts.scss */
.taxonomy-super_cat .post-num, .taxonomy-content_type .post-num {
  position: relative;
  left: -52px;
}
/* line 844, ../scss/modules/_posts.scss */
.taxonomy-super_cat .post-more, .taxonomy-content_type .post-more {
  float: left;
  text-align: left;
}

/* line 851, ../scss/modules/_posts.scss */
.login-overlay p:last-child {
  padding-top: 2em;
}

/* line 1, ../scss/modules/_profile.scss */
.profile-wrapper {
  background-color: #0680EB;
  color: #fff;
  text-align: center;
}
/* line 6, ../scss/modules/_profile.scss */
.profile-wrapper .standard-form {
  padding: 3.375em 1em;
  width: 100%;
}
/* line 11, ../scss/modules/_profile.scss */
.profile-wrapper .header-wrapper {
  text-transform: uppercase;
}
/* line 13, ../scss/modules/_profile.scss */
.profile-wrapper .header-wrapper h3 {
  margin: 0;
}
/* line 16, ../scss/modules/_profile.scss */
.profile-wrapper .header-wrapper h5 {
  display: inline-block;
  vertical-align: middle;
}
/* line 22, ../scss/modules/_profile.scss */
.profile-wrapper .parsley-required {
  text-align: left;
}
/* line 25, ../scss/modules/_profile.scss */
.profile-wrapper .profile-pic {
  display: table;
  margin: 0 auto;
  float: left;
  position: relative;
}
/* line 29, ../scss/modules/_profile.scss */
.profile-wrapper .profile-pic img {
  width: 175px;
  height: 175px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
/* line 34, ../scss/modules/_profile.scss */
.profile-wrapper .profile-pic #update-profile-button {
  margin: 0 auto;
  background: #fff;
  border: 0;
}
/* line 40, ../scss/modules/_profile.scss */
.profile-wrapper .profile-container {
  display: table;
  width: auto;
  margin: 0 auto;
}
/* line 48, ../scss/modules/_profile.scss */
.profile-wrapper .profile-info #profile-password-update .profile-container, .profile-wrapper .account-info #profile-password-update .profile-container {
  padding: 0;
}
/* line 55, ../scss/modules/_profile.scss */
.profile-wrapper #password-edit {
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}
/* line 59, ../scss/modules/_profile.scss */
.profile-wrapper #password-edit span {
  padding-bottom: 2px;
}
/* line 61, ../scss/modules/_profile.scss */
.profile-wrapper #password-edit span:hover {
  border-bottom: solid 1px white;
  cursor: pointer;
}
/* line 68, ../scss/modules/_profile.scss */
.profile-wrapper .fade-input .form-control {
  opacity: 0.5;
}
/* line 72, ../scss/modules/_profile.scss */
.profile-wrapper .form-label-static {
  opacity: 1;
}
/* line 75, ../scss/modules/_profile.scss */
.profile-wrapper .form-control {
  opacity: 1;
}
/* line 80, ../scss/modules/_profile.scss */
.profile-wrapper #label-avatar[for="uploadedfile"] #upload-profile:hover {
  cursor: pointer;
}
/* line 85, ../scss/modules/_profile.scss */
.profile-wrapper #avatar-container {
  width: 175px;
  height: 175px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto 2em auto;
}
/* line 97, ../scss/modules/_profile.scss */
.profile-wrapper .form-buttons {
  clear: both;
  height: 57px;
}
/* line 100, ../scss/modules/_profile.scss */
.profile-wrapper .form-buttons .form-group {
  float: left;
}
/* line 102, ../scss/modules/_profile.scss */
.profile-wrapper .form-buttons .form-group button {
  background: #fff;
  border: 0;
  color: #0680EB;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 18px;
  height: 48px;
  margin: 8px 15px 20px 0;
  padding: 0 15px;
  text-align: left;
}
/* line 113, ../scss/modules/_profile.scss */
.profile-wrapper .form-buttons .form-group .submit-txt {
  float: left;
  vertical-align: middle;
  line-height: 48px;
}
/* line 118, ../scss/modules/_profile.scss */
.profile-wrapper .form-buttons .form-group .submit-icon {
  text-align: center;
  height: 48px;
  width: 48px;
  cursor: pointer;
  transition: all 0.25s ease;
  float: left;
  transition: all 0.4s ease;
  position: relative;
  padding: 0 8px;
}
/* line 128, ../scss/modules/_profile.scss */
.profile-wrapper .form-buttons .form-group .submit-icon:after {
  content: url(../images/submit-loader.svg);
}
/* line 207, ../scss/partials/_mixins.scss */
.profile-wrapper .form-buttons .form-group .onclic:after {
  content: url(../images/submit-loader.svg);
  animation: rotating 1s 0.25s linear infinite;
  display: inline-block;
  transform-origin: 11px 25px;
}
/* line 215, ../scss/partials/_mixins.scss */
.profile-wrapper .form-buttons .form-group .validate:after {
  content: url(../images/submit-validate.svg);
}
/* line 220, ../scss/partials/_mixins.scss */
.profile-wrapper .form-buttons .form-group .error:after {
  content: url(../images/submit-error.svg);
}
/* line 137, ../scss/modules/_profile.scss */
.profile-wrapper #profile-password-update .header-wrapper {
  text-align: left;
  padding-left: 2em;
}
/* line 141, ../scss/modules/_profile.scss */
.profile-wrapper #profile-password-update .parsley-errors-list li, .profile-wrapper #profile-password-update .form-error-msg {
  text-align: left;
  padding: 0;
}
/* line 147, ../scss/modules/_profile.scss */
.profile-wrapper #profile-edit-form .form-error-msg {
  text-align: left;
  padding: 0;
  clear: both;
}

@media (max-width: 767px) {
  /* line 154, ../scss/modules/_profile.scss */
  .explore-container {
    padding: 21.66667px 0 21.66667px 0;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 154, ../scss/modules/_profile.scss */
  .explore-container {
    padding: 32.5px 0 32.5px 0;
  }
}
@media (min-width: 1030px) {
  /* line 154, ../scss/modules/_profile.scss */
  .explore-container {
    padding: 65px 0 65px 0;
  }
}

/* line 160, ../scss/modules/_profile.scss */
#switch h3 {
  margin: 1em 0;
  text-align: center;
}
/* line 164, ../scss/modules/_profile.scss */
#switch:hover {
  cursor: pointer;
}
/* line 167, ../scss/modules/_profile.scss */
#switch .switch-container {
  width: 155px;
  float: left;
  background-color: #fff;
  color: #2D3C8B;
}
/* line 172, ../scss/modules/_profile.scss */
#switch .switch-container.active {
  background-color: #2D3C8B;
  color: #fff;
}

/* line 184, ../scss/modules/_profile.scss */
.blog-stack-container .blog-stack {
  display: none;
}
/* line 186, ../scss/modules/_profile.scss */
.blog-stack-container .blog-stack.active {
  display: block;
}

/* line 191, ../scss/modules/_profile.scss */
.profile-container .canceled-form {
  -webkit-box-shadow: 0 0 0 50px #0680EB inset !important;
  -webkit-text-fill-color: #FFF !important;
}

/* line 198, ../scss/modules/_profile.scss */
.blog-empty h2 {
  margin: 0 auto;
  text-align: center;
}
/* line 202, ../scss/modules/_profile.scss */
.blog-empty #contribute-container {
  background: none;
}
/* line 204, ../scss/modules/_profile.scss */
.blog-empty #contribute-container button {
  background: #2D3C8B;
  color: #fff;
}
/* line 210, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class {
  background: #FCC90F;
}
/* line 212, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class .h8, .blog-empty .home-contribute-class .form-label, .blog-empty .home-contribute-class .form-label-static, .blog-empty .home-contribute-class input, .blog-empty .home-contribute-class .form-control, .blog-empty .home-contribute-class label,
.blog-empty .home-contribute-class #contribute-counter {
  color: #000 !important;
}
/* line 217, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class input, .blog-empty .home-contribute-class select, .blog-empty .home-contribute-class textarea {
  border-color: #000 !important;
}
/* line 220, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class input, .blog-empty .home-contribute-class select, .blog-empty .home-contribute-class textarea, .blog-empty .home-contribute-class label {
  color: #000 !important;
}
/* line 223, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class ::-webkit-input-placeholder {
  color: #000 !important;
}
/* line 226, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class :-moz-placeholder {
  color: #000 !important;
}
/* line 229, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class ::-moz-placeholder {
  color: #000 !important;
}
/* line 232, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class :-ms-input-placeholder {
  color: #000 !important;
}
/* line 235, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class select {
  color: #000;
  border-color: #000;
  background-image: url(../images/select-arrows-black.svg);
}
/* line 239, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class select:focus, .blog-empty .home-contribute-class select:active {
  outline: none;
  background-color: #fff;
  background-image: url(../images/select-arrows-black.svg);
  color: #000;
}
/* line 247, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class input[type=checkbox] + .checkbox::before {
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: transparent;
}
/* line 251, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class input[type=checkbox] + label {
  color: rgba(0, 0, 0, 0.5) !important;
}
/* line 254, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class input[type=checkbox]:checked + label {
  color: #000;
}
/* line 257, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class input[type=checkbox]:checked + .checkbox::before {
  background: transparent url(../images/checkbox-black.svg) no-repeat center center;
  background-size: 20px 15px;
  border: 2px solid #000;
}
/* line 262, ../scss/modules/_profile.scss */
.blog-empty .home-contribute-class button.contribute-submit {
  color: #000;
}

/* line 268, ../scss/modules/_profile.scss */
.hide {
  display: none;
}

/* line 271, ../scss/modules/_profile.scss */
.one-col.center {
  display: table;
  margin: 0 auto;
  position: relative;
}

/* line 275, ../scss/modules/_profile.scss */
#newsletter-box {
  width: 20px;
  height: 20px;
  background-color: #fff;
  float: left;
}
/* line 280, ../scss/modules/_profile.scss */
#newsletter-box :after {
  content: 'x';
}

/* line 285, ../scss/modules/_profile.scss */
.header-post {
  font-family: "Avenir LT STD", "Avenir", "Arial", "sans-serif";
  letter-spacing: .4px;
  margin: 0;
  font-size: 18px;
  line-height: 40px;
}

/* line 292, ../scss/modules/_profile.scss */
.post-more {
  font-size: 12px;
}

/* line 295, ../scss/modules/_profile.scss */
.table-display {
  position: relative;
  height: 40px;
}
/* line 298, ../scss/modules/_profile.scss */
.table-display input[type=checkbox] + label {
  position: absolute;
  left: 0;
  margin: 10px 0 10px 50px;
}
/* line 303, ../scss/modules/_profile.scss */
.table-display input[type=checkbox] + .checkbox::before {
  left: -50px;
}
/* line 306, ../scss/modules/_profile.scss */
.table-display input[type=checkbox]:checked + .checkbox::before {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 25px;
  background: #fff url(../images/checkbox.svg) no-repeat center center;
  background-size: 20px 15px;
}

/* line 317, ../scss/modules/_profile.scss */
.header-color,
.prof-name,
.post-num,
.post-more {
  color: #000;
}

/* line 324, ../scss/modules/_profile.scss */
.cup-logged-in .profile-pic div.form-group {
  display: none;
}

/* line 327, ../scss/modules/_profile.scss */
#password-container {
  display: none;
}
/* line 329, ../scss/modules/_profile.scss */
#password-container.update {
  display: block;
}

/* line 333, ../scss/modules/_profile.scss */
.update #update-profile-button {
  display: none;
}

/* line 336, ../scss/modules/_profile.scss */
.profile-wrapper .submit-arrow svg {
  fill: #0680EB !important;
}

/* line 339, ../scss/modules/_profile.scss */
#goToProfile {
  display: none;
}
/* line 341, ../scss/modules/_profile.scss */
#goToProfile button {
  margin: 1em auto;
}
/* line 344, ../scss/modules/_profile.scss */
#goToProfile span {
  float: left;
}

/* line 352, ../scss/modules/_profile.scss */
.loader-wrapper {
  position: fixed;
  top: 43%;
  left: 47.5%;
  margin: 0 auto;
  display: block;
  display: none;
  padding: 10px;
  height: 40px;
  width: 40px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.8);
}

/* line 372, ../scss/modules/_profile.scss */
.loader-wrapper.in {
  -webkit-transform: scale(1);
  opacity: 1;
  transition: -webkit-transform .3s ease, opacity .3s ease;
}

/* line 378, ../scss/modules/_profile.scss */
.loader {
  position: relative;
  width: 62px;
  height: 77px;
  margin: 0 auto;
  transform: scale(0.5);
  top: -18px;
  left: -11px;
}
/* line 386, ../scss/modules/_profile.scss */
.loader div {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  width: 10px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0);
  transform: scale(0.4);
  animation: fadeG 0.72s infinite linear;
  border-radius: 8px;
}
/* line 398, ../scss/modules/_profile.scss */
.loader div:nth-of-type(1) {
  left: 0;
  top: 28px;
  animation-delay: 0.27s;
  transform: rotate(-90deg);
}
/* line 405, ../scss/modules/_profile.scss */
.loader div:nth-of-type(2) {
  left: 8px;
  top: 10px;
  animation-delay: 0.36s;
  transform: rotate(-45deg);
}
/* line 412, ../scss/modules/_profile.scss */
.loader div:nth-of-type(3) {
  left: 26px;
  top: 3px;
  animation-delay: 0.45s;
  transform: rotate(0deg);
}
/* line 419, ../scss/modules/_profile.scss */
.loader div:nth-of-type(4) {
  right: 8px;
  top: 10px;
  animation-delay: 0.54s;
  transform: rotate(45deg);
}
/* line 426, ../scss/modules/_profile.scss */
.loader div:nth-of-type(5) {
  right: 0;
  top: 28px;
  animation-delay: 0.63s;
  transform: rotate(90deg);
}
/* line 433, ../scss/modules/_profile.scss */
.loader div:nth-of-type(6) {
  right: 8px;
  bottom: 7px;
  animation-delay: 0.72s;
  transform: rotate(135deg);
}
/* line 440, ../scss/modules/_profile.scss */
.loader div:nth-of-type(7) {
  bottom: 0;
  left: 26px;
  animation-delay: 0.8099999999999999s;
  transform: rotate(180deg);
}
/* line 447, ../scss/modules/_profile.scss */
.loader div:nth-of-type(8) {
  left: 8px;
  bottom: 7px;
  animation-delay: 0.9s;
  transform: rotate(-135deg);
}

@keyframes fadeG {
  0% {
    background-color: white;
  }
  100% {
    background-color: transparent;
  }
}
/* line 461, ../scss/modules/_profile.scss */
.password-info-msg {
  text-align: left;
  font-size: 14px;
  line-height: 16px;
}

/* line 1, ../scss/modules/_search.scss */
#content #searchform {
  display: table;
  margin: 0 auto;
  max-width: 350px;
}
/* line 5, ../scss/modules/_search.scss */
#content #searchform input[type=search] {
  margin: 0;
  border: none;
  background: transparent;
  padding: 10px 10px 5px;
  width: 70%;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  float: left;
  color: #000;
}
/* line 16, ../scss/modules/_search.scss */
#content #searchform input[type=search] + .submit-btn {
  display: none;
}
/* line 20, ../scss/modules/_search.scss */
#content #searchform .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
/* line 27, ../scss/modules/_search.scss */
#content #searchform #search-icon {
  height: 40px;
  padding: 9px 0 0;
  float: left;
}
/* line 32, ../scss/modules/_search.scss */
#content #searchform input[type=search]:focus {
  border-bottom: 3px solid #000;
}
/* line 34, ../scss/modules/_search.scss */
#content #searchform input[type=search]:focus + .submit-btn {
  display: inline-block;
}
/* line 38, ../scss/modules/_search.scss */
#content #searchform .submit-btn {
  width: 13px;
  padding: 10px 0 0;
  border: 0;
  background: transparent;
}
/* line 227, ../scss/partials/_mixins.scss */
#content #searchform input:-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: inherit;
}
/* line 232, ../scss/partials/_mixins.scss */
#content #searchform input::-webkit-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: inherit;
}
/* line 237, ../scss/partials/_mixins.scss */
#content #searchform ::-webkit-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: inherit;
}
/* line 242, ../scss/partials/_mixins.scss */
#content #searchform :-ms-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: inherit;
}
/* line 247, ../scss/partials/_mixins.scss */
#content #searchform ::-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: inherit;
}
/* line 252, ../scss/partials/_mixins.scss */
#content #searchform :-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: inherit;
}

/* line 47, ../scss/modules/_search.scss */
#content #searchform {
  padding-top: 3em;
}
/* line 49, ../scss/modules/_search.scss */
#content #searchform #search-icon {
  padding-right: 21px;
  display: block;
}
/* line 53, ../scss/modules/_search.scss */
#content #searchform .submit-icon svg {
  display: block;
}

/* line 59, ../scss/modules/_search.scss */
.searchphp h4 {
  font-weight: 500;
}
/* line 63, ../scss/modules/_search.scss */
.searchphp #main .filters {
  margin: 0;
}
/* line 67, ../scss/modules/_search.scss */
.searchphp #post-not-found {
  padding-bottom: 1.5em;
}
/* line 68, ../scss/modules/_search.scss */
.searchphp #post-not-found h4 {
  font-size: 2.5em;
  padding: 1.5em 0;
}
/* line 71, ../scss/modules/_search.scss */
.searchphp #post-not-found h4:first-child {
  padding-bottom: 0;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name: Better Learning
Author: eROI

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 17, ../scss/breakpoints/_base.scss */
* {
  min-width: 0;
  min-height: 0;
}

/* line 21, ../scss/breakpoints/_base.scss */
body {
  font-family: "Avenir LT STD", "Avenir", "Arial", "sans-serif";
  letter-spacing: .4px;
  margin: 0;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 100%;
  line-height: 1.8em;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 33, ../scss/breakpoints/_base.scss */
.center {
  text-align: center;
}

/* line 36, ../scss/breakpoints/_base.scss */
.table-center {
  display: table;
  margin: 0 auto;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 44, ../scss/breakpoints/_base.scss */
#content {
  position: relative;
}

/* line 47, ../scss/breakpoints/_base.scss */
#mobile-blog-logo {
  display: block !important;
  z-index: 9999;
  left: 50px;
  position: absolute;
  top: 7px;
  margin: 0 auto;
}
/* line 54, ../scss/breakpoints/_base.scss */
#mobile-blog-logo svg {
  margin: 0 auto;
  display: table;
  height: 53px;
}

/* line 60, ../scss/breakpoints/_base.scss */
.wrap {
  width: 100%;
  margin: 0 auto;
}

/* line 64, ../scss/breakpoints/_base.scss */
.green-bg {
  background-color: #19AA3C;
  color: #fff;
}

/* line 68, ../scss/breakpoints/_base.scss */
.white-button {
  display: inline-block;
  background-color: white;
  height: 52px;
  padding: 0 20px;
  border: none;
  position: relative;
  color: #000;
  line-height: 52px;
}
/* line 77, ../scss/breakpoints/_base.scss */
.white-button a {
  color: #000 !important;
}

/* line 81, ../scss/breakpoints/_base.scss */
.two-col input {
  float: left;
  margin: 0 1em;
  width: 200px;
}

/*********************
LINK STYLES
*********************/
/* line 90, ../scss/breakpoints/_base.scss */
a, a:visited {
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 104, ../scss/breakpoints/_base.scss */
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5, H6, H7, H8 STYLES
******************************************************************/
/* line 118, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
/* line 127, ../scss/breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 131, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 1.75em;
  line-height: 1.8em;
  font-family: "Avenir", "Arial", "sans-serif";
  font-size: 50px;
  font-weight: 500;
  line-height: 1.64;
  margin: 0;
}

/* line 137, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 1.5em;
  line-height: 1.25em;
}

/* line 142, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 2em;
  line-height: 1.5625em;
  margin: 0;
}

/* line 147, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.875em;
  font-weight: 500;
  line-height: 1.133333333333333em;
}

/* line 153, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 1.75em;
  line-height: 1.428571428571429em;
}

/* line 157, ../scss/breakpoints/_base.scss */
h6, .h6 {
  font-size: 1.125em;
  line-height: 2.222222222222222em;
}

/* line 161, ../scss/breakpoints/_base.scss */
.h7 {
  font-size: 0.8125em;
  line-height: 2em;
}

/* line 166, ../scss/breakpoints/_base.scss */
.h8 {
  font-size: 1.5em;
  line-height: 1.66em;
}

/* line 170, ../scss/breakpoints/_base.scss */
.h2a {
  font-size: 2.625em;
  line-height: 1.285714285714286em;
}

/*********************
HEADER STYLES
*********************/
/* line 178, ../scss/breakpoints/_base.scss */
.header {
  background-color: #000;
}

/* line 182, ../scss/breakpoints/_base.scss */
#logo {
  margin: 0.75em 0;
}
/* line 185, ../scss/breakpoints/_base.scss */
#logo a {
  color: #fff;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
/* line 202, ../scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 206, ../scss/breakpoints/_base.scss */
.nav li {
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
/* line 208, ../scss/breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
/* line 241, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
/* line 273, ../scss/breakpoints/_base.scss */
ul.submenu {
  z-index: 1;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 281, ../scss/breakpoints/_base.scss */
.media li {
  width: 100%;
  display: block;
}

/* line 287, ../scss/breakpoints/_base.scss */
.bottom-cta #bottom-cta_image {
  min-height: 16em;
  font-weight: 800;
}

/* post meta */
/* line 294, ../scss/breakpoints/_base.scss */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}

/* line 302, ../scss/breakpoints/_base.scss */
.add:hover, .saveArticle:hover {
  cursor: pointer;
}

/* Save article */
/* line 307, ../scss/breakpoints/_base.scss */
.overlay-container {
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
/* line 314, ../scss/breakpoints/_base.scss */
.overlay-container .add {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
}
/* line 320, ../scss/breakpoints/_base.scss */
.overlay-container .add svg {
  width: 50px;
  transform: rotate(45deg);
}
/* line 324, ../scss/breakpoints/_base.scss */
.overlay-container .add .check {
  display: none;
}
/* line 329, ../scss/breakpoints/_base.scss */
.overlay-container .login-overlay {
  width: 90%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 1em auto;
  background: #000;
  text-align: center;
  color: #fff;
}
/* line 341, ../scss/breakpoints/_base.scss */
.overlay-container .login-overlay h4 {
  font-size: 1.375em;
  line-height: 1.3em;
}
/* line 345, ../scss/breakpoints/_base.scss */
.overlay-container .login-overlay .white-button {
  color: #000;
  line-height: 52px;
  font-weight: 800;
  font-size: 1.125em;
  cursor: pointer;
}
/* line 351, ../scss/breakpoints/_base.scss */
.overlay-container .login-overlay .white-button:hover {
  cursor: pointer;
}
/* line 355, ../scss/breakpoints/_base.scss */
.overlay-container .login-overlay p {
  font-size: 1em;
  line-height: 1.5em;
  margin: 0;
}
/* line 360, ../scss/breakpoints/_base.scss */
.overlay-container .login-overlay a {
  color: #fff;
  text-decoration: none;
  border-bottom: solid 1px #fff;
}

/* line 371, ../scss/breakpoints/_base.scss */
.single .overlay-container {
  height: 400px;
  z-index: 9;
}

/* ------- POST STYLE -------- */
/* line 380, ../scss/breakpoints/_base.scss */
#featured-post:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%;
}
/* line 386, ../scss/breakpoints/_base.scss */
#featured-post > .wide-post {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em 1.5em;
}
/* line 395, ../scss/breakpoints/_base.scss */
#featured-post .title h1 {
  margin: 0.5em 0 0.2em;
  font-size: 1.5em;
  line-height: 1.9em;
}
/* line 401, ../scss/breakpoints/_base.scss */
#featured-post .saveArticle {
  width: 50px;
  height: 50px;
}
/* line 405, ../scss/breakpoints/_base.scss */
#featured-post .saveArticle .add svg {
  width: 50px;
}
/* line 410, ../scss/breakpoints/_base.scss */
#featured-post h4.prof-name, #featured-post h4.avatar {
  font-size: 17px;
  line-height: 25px;
}

/* line 415, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saveArticle:hover:after {
  height: 34px;
  line-height: 34px;
}

/* line 419, ../scss/breakpoints/_base.scss */
.post-header {
  padding: 40px 0;
}

@media all and (max-width: 600px) {
  /* line 423, ../scss/breakpoints/_base.scss */
  .single-post .entry-content .social-share .saveArticle:hover:after {
    right: 6px !important;
    top: 62px !important;
  }
}
@media all and (min-width: 601px) and (max-width: 767px) {
  /* line 430, ../scss/breakpoints/_base.scss */
  .single-post .entry-content .social-share .saveArticle:hover:after {
    right: 166px !important;
    top: 68px !important;
  }
}
/* line 436, ../scss/breakpoints/_base.scss */
.blog-preview-content {
  padding: 1em;
}
/* line 438, ../scss/breakpoints/_base.scss */
.blog-preview-content h4 {
  font-size: 1.5em;
  line-height: 1.75em;
}

/* line 443, ../scss/breakpoints/_base.scss */
.post-container .misc, #featured-post .misc, .square-col .misc, #featured-post .misc, .square-col .misc {
  left: 1em;
  right: 1em;
}

/* line 447, ../scss/breakpoints/_base.scss */
.post-container .more-tools .post-more, #featured-post .more-tools .post-more, .square-col .more-tools .post-more,
#featured-post .more-tools .post-more,
.square-col .more-tools .post-more,
.post-container .more-tools .post-num,
#featured-post .more-tools .post-num,
.square-col .more-tools .post-num,
#featured-post .more-tools .post-num,
.square-col .more-tools .post-num {
  margin: 18px 0;
}

/* line 455, ../scss/breakpoints/_base.scss */
label[for="concept"] {
  font-size: 12px;
}

@media screen and (max-width: 324px) {
  /* line 459, ../scss/breakpoints/_base.scss */
  label[for="concept"] {
    font-size: 9px;
  }

  /* line 462, ../scss/breakpoints/_base.scss */
  .bottom-cta #bottom-cta_text-container a {
    font-size: 12px;
  }
}
@media screen and (max-width: 332px) {
  /* line 467, ../scss/breakpoints/_base.scss */
  .bottom-cta #bottom-cta_text-container a {
    font-size: 12px;
  }
}
/* line 471, ../scss/breakpoints/_base.scss */
#bottom-cta_text-container h2 {
  font-size: 2.3em;
}

/* line 474, ../scss/breakpoints/_base.scss */
.log-nav, .log-subs, .log-sign {
  width: 100%;
}

/* line 477, ../scss/breakpoints/_base.scss */
.log-nav.hide {
  display: block !important;
}

/* line 481, ../scss/breakpoints/_base.scss */
.log-nav .logged-in #logged-in-nav-pic {
  position: absolute;
  right: 0;
  top: 0;
}

/* line 491, ../scss/breakpoints/_base.scss */
.posts-list {
  padding: 2em 0 0 0;
}
/* line 493, ../scss/breakpoints/_base.scss */
.posts-list h4 {
  font-size: 1.5em;
  line-height: 1.5em;
}
/* line 497, ../scss/breakpoints/_base.scss */
.posts-list .h7 {
  font-size: 1em;
  font-weight: 400;
  display: block;
  padding: 10px 0 0;
}
/* line 503, ../scss/breakpoints/_base.scss */
.posts-list .prof-pic {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  margin: 0 15px 0 0;
  float: left;
}
/* line 509, ../scss/breakpoints/_base.scss */
.posts-list .mobile {
  display: block;
  float: left;
}
/* line 513, ../scss/breakpoints/_base.scss */
.posts-list .desktop {
  display: none;
}
/* line 516, ../scss/breakpoints/_base.scss */
.posts-list .post-content {
  clear: both;
  padding: 1em 0;
  display: table;
}
/* line 522, ../scss/breakpoints/_base.scss */
.posts-list .written svg {
  height: 50px;
  float: left;
}
/* line 525, ../scss/breakpoints/_base.scss */
.posts-list .written svg .icon-outline {
  fill: #e1e1e1;
}
/* line 528, ../scss/breakpoints/_base.scss */
.posts-list .written svg .icon-fill {
  fill: transparent;
}
/* line 532, ../scss/breakpoints/_base.scss */
.posts-list .written .h8 {
  font-size: 1em;
  line-height: 50px;
  margin: 0 0 0 15px;
}
/* line 538, ../scss/breakpoints/_base.scss */
.posts-list .subcat_list {
  display: none;
}

/* line 542, ../scss/breakpoints/_base.scss */
.subcat_list {
  display: none;
}

/* line 543, ../scss/breakpoints/_base.scss */
.supercat_list {
  display: block;
}

/* line 545, ../scss/breakpoints/_base.scss */
.sub_category .subcat_list {
  display: block;
}
/* line 548, ../scss/breakpoints/_base.scss */
.sub_category .supercat_list {
  display: none;
}

/* line 552, ../scss/breakpoints/_base.scss */
#loadMore, #explore {
  margin: 25px 0;
}

/* line 557, ../scss/breakpoints/_base.scss */
.single-post #content .single-post-top {
  width: 86%;
  position: relative;
  margin: 0 auto;
  padding: 3em 0;
}
/* line 562, ../scss/breakpoints/_base.scss */
.single-post #content .single-post-top h1 {
  margin: 0.5em 0 0.2em;
  line-height: 2.3em;
}
/* line 565, ../scss/breakpoints/_base.scss */
.single-post #content .single-post-top h1 span {
  color: #fff;
  display: inline;
  padding: 0.45rem 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* line 576, ../scss/breakpoints/_base.scss */
.single-post .post-header .prof-pic {
  margin: 0 15px 0 0;
}
/* line 579, ../scss/breakpoints/_base.scss */
.single-post .post-header h4.avatar {
  font-size: 1.25em;
  line-height: 68px;
  font-weight: 500;
  margin: auto 0.5em;
}
/* line 586, ../scss/breakpoints/_base.scss */
.single-post .entry-content {
  margin: 0 auto;
  padding: 0;
}
/* line 589, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share {
  position: relative;
  clear: both;
  padding: 15px 0 0;
  display: table;
}
/* line 594, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share svg {
  display: block;
  width: 45px;
}
/* line 600, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saveArticle svg .plus {
  display: block;
}
/* line 603, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saveArticle svg .check {
  display: none;
}
/* line 609, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saveArticle:hover svg .social-bg, .single-post .entry-content .social-share .saveArticle:hover svg .social-fill {
  fill: #000;
}
/* line 612, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saveArticle:hover svg .social-plus {
  fill: #fff;
}
/* line 620, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saved svg .plus {
  display: none;
}
/* line 623, ../scss/breakpoints/_base.scss */
.single-post .entry-content .social-share .saved svg .check {
  display: block;
}
/* line 631, ../scss/breakpoints/_base.scss */
.single-post .entry-content .post-content {
  padding: 0;
}
/* line 633, ../scss/breakpoints/_base.scss */
.single-post .entry-content .post-content p {
  padding: 0 20px;
}
/* line 636, ../scss/breakpoints/_base.scss */
.single-post .entry-content .post-content p:first-of-type {
  font-size: 18px;
  font-weight: 800;
}
/* line 639, ../scss/breakpoints/_base.scss */
.single-post .entry-content .post-content p:first-of-type em {
  font-style: normal;
}

/*******************
SPECIFIC MODULES
*******************/
/* line 650, ../scss/breakpoints/_base.scss */
#learn-about h3 {
  font-size: 1.5em;
}
/* line 653, ../scss/breakpoints/_base.scss */
#learn-about .h7 {
  padding: 1em 0;
  display: inline-block;
}

/* line 660, ../scss/breakpoints/_base.scss */
#contribute-container .h8 {
  font-size: 1em;
  line-height: 1.3em;
}

/*******************
FORMS
********************/
/* line 669, ../scss/breakpoints/_base.scss */
#home-subscribe input {
  font-size: 18px;
  width: 100%;
  max-width: 300px;
}
/* line 674, ../scss/breakpoints/_base.scss */
#home-subscribe .cf, #home-subscribe .comment-respond {
  position: relative;
}
/* line 677, ../scss/breakpoints/_base.scss */
#home-subscribe .h2a {
  color: #fff;
  width: 306px;
  padding: 0;
}
/* line 682, ../scss/breakpoints/_base.scss */
#home-subscribe #subscribe-form-container {
  float: right;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
/* line 688, ../scss/breakpoints/_base.scss */
#home-subscribe #subscribe-form-container .form-label[for="email"] {
  position: absolute;
  top: -23px;
}
/* line 692, ../scss/breakpoints/_base.scss */
#home-subscribe #subscribe-form-container input[type="email"] {
  border-top: solid;
  border-left: solid;
  border-bottom: solid;
  margin: 0;
  height: 60px;
  padding: 10px;
}

/* line 702, ../scss/breakpoints/_base.scss */
.searchResults {
  color: #7c7c7c light grey;
  font-size: 24px;
  line-height: 1em;
  padding: 1em 0;
}
/* line 707, ../scss/breakpoints/_base.scss */
.searchResults .term {
  color: #000;
  font-weight: 800;
}

/* line 712, ../scss/breakpoints/_base.scss */
#revealFilters, #revealSearch {
  width: 100%;
  text-align: center;
  color: #2D3C8B;
  font-size: 16px;
  cursor: pointer;
}

/* line 719, ../scss/breakpoints/_base.scss */
#revealSearch {
  padding: 1.5em 0;
  display: block;
}

/* line 723, ../scss/breakpoints/_base.scss */
.filters, .revealSearch {
  display: none;
}
/* line 725, ../scss/breakpoints/_base.scss */
.filters #searchform, .revealSearch #searchform {
  padding: 0 0 1.5em;
}
/* line 727, ../scss/breakpoints/_base.scss */
.filters #searchform svg, .revealSearch #searchform svg {
  display: none;
}
/* line 730, ../scss/breakpoints/_base.scss */
.filters #searchform input[type=search], .revealSearch #searchform input[type=search] {
  float: none;
  width: auto;
  color: #2D3C8B;
  border-bottom: 2px solid #2D3C8B;
}

/* line 739, ../scss/breakpoints/_base.scss */
#post-not-found h4 {
  color: #7c7c7c light grey;
  margin: 0.5em 0 0;
}
/* line 742, ../scss/breakpoints/_base.scss */
#post-not-found h4:nth-of-type(2) {
  color: #000;
  font-weight: 800;
}
/* line 747, ../scss/breakpoints/_base.scss */
#post-not-found #searchform {
  padding: 0 0 1.5em;
}
/* line 750, ../scss/breakpoints/_base.scss */
#post-not-found #searchform svg path {
  fill: #000 !important;
}
/* line 754, ../scss/breakpoints/_base.scss */
#post-not-found #searchform input[type=search] {
  float: none;
  width: auto;
  max-width: 300px;
  color: #000;
  border-bottom: 3px solid black;
}

/*******************
FILTER
********************/
/* line 766, ../scss/breakpoints/_base.scss */
.filters {
  clear: both;
  margin: 2em 0;
}

/* line 770, ../scss/breakpoints/_base.scss */
.filter-label {
  text-align: center;
  color: #2D3C8B;
  text-transform: uppercase;
}

/* line 776, ../scss/breakpoints/_base.scss */
.one-col-filter {
  padding: 0 0 1.5em;
}

/* line 779, ../scss/breakpoints/_base.scss */
.two-col-filter {
  display: block;
  width: 100%;
}

/* line 784, ../scss/breakpoints/_base.scss */
.filter-options {
  display: table;
  margin: 0 auto;
}
/* line 787, ../scss/breakpoints/_base.scss */
.filter-options :hover {
  cursor: pointer;
}

/* line 792, ../scss/breakpoints/_base.scss */
.tax-filter {
  border-top: 3px solid #2D3C8B;
  border-right: 3px solid #2D3C8B;
  border-left: 3px solid #2D3C8B;
  border-bottom: 0;
  display: block;
}
/* line 798, ../scss/breakpoints/_base.scss */
.tax-filter:last-of-type {
  border-bottom: 3px solid #2D3C8B;
}
/* line 801, ../scss/breakpoints/_base.scss */
.tax-filter input {
  position: absolute;
  opacity: 0;
}
/* line 805, ../scss/breakpoints/_base.scss */
.tax-filter input[type=checkbox]:checked ~ label {
  border: 1px solid #fff;
  color: #fff;
  background-color: #2D3C8B;
}
/* line 809, ../scss/breakpoints/_base.scss */
.tax-filter input[type=checkbox]:checked ~ label.insights {
  background-color: #FF7501;
}
/* line 812, ../scss/breakpoints/_base.scss */
.tax-filter input[type=checkbox]:checked ~ label.tools {
  background-color: #E825BD;
}
/* line 815, ../scss/breakpoints/_base.scss */
.tax-filter input[type=checkbox]:checked ~ label.techniques {
  background-color: #19AA3C;
}
/* line 818, ../scss/breakpoints/_base.scss */
.tax-filter input[type=checkbox]:checked ~ label span {
  color: #fff;
}
/* line 822, ../scss/breakpoints/_base.scss */
.tax-filter input[type=checkbox] + label {
  margin: 0;
}
/* line 825, ../scss/breakpoints/_base.scss */
.tax-filter label {
  padding: 0 0.8em 0.4em 1.5em;
  border: 2px solid transparent;
  text-align: center;
  display: inline-block;
  height: 60px;
  background-color: #fff;
  width: 100%;
}
/* line 833, ../scss/breakpoints/_base.scss */
.tax-filter label span {
  color: #2D3C8B;
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  line-height: 58px;
}
/* line 839, ../scss/breakpoints/_base.scss */
.tax-filter label span:after {
  content: 'x';
  color: white;
  margin: 0 0 0 0.45em;
  font-size: 20px;
  vertical-align: top;
  line-height: 58px;
}

/* line 851, ../scss/breakpoints/_base.scss */
.table {
  display: table;
  margin: 0 auto;
  width: auto;
  float: none;
}

/* entry content */
/* line 858, ../scss/breakpoints/_base.scss */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
/* line 861, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 865, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #7c7c7c;
  margin-bottom: 1.5em;
}
/* line 870, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 879, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #7c7c7c;
}
/* line 882, ../scss/breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #7C7C7C;
}
/* line 887, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #7c7c7c;
}
/* line 891, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 896, ../scss/breakpoints/_base.scss */
.entry-content th {
  background-color: #7C7C7C;
  border-bottom: 1px solid #7c7c7c;
  border-right: 1px solid #7c7c7c;
}
/* line 901, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 906, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #0680EB;
  font-style: italic;
  color: #9fa6b4;
}
/* line 917, ../scss/breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 924, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
/* line 940, ../scss/breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
/* line 949, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #000;
  color: #7C7C7C;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 960, ../scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
/* line 966, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 972, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 1006, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 1014, ../scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

/* line 1018, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 1021, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 1030, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #7c7c7c;
}
/* line 1039, ../scss/breakpoints/_base.scss */
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #0680EB;
}
/* line 1051, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #0680EB;
  color: #fff;
}
/* line 1057, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #000;
}
/* line 1061, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #000;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 1074, ../scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 1078, ../scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 1089, ../scss/breakpoints/_base.scss */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #7C7C7C;
  /* number of comments span */
}

/* line 1109, ../scss/breakpoints/_base.scss */
.commentlist {
  margin: 0;
  list-style-type: none;
}

/* line 1114, ../scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #7C7C7C;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 1121, ../scss/breakpoints/_base.scss */
.comment .comment-author {
  padding: 7px;
  border: 0;
}
/* line 1127, ../scss/breakpoints/_base.scss */
.comment .vcard {
  margin-left: 50px;
}
/* line 1130, ../scss/breakpoints/_base.scss */
.comment .vcard cite.fn {
  font-style: normal;
}
/* line 1138, ../scss/breakpoints/_base.scss */
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
/* line 1143, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
/* line 1147, ../scss/breakpoints/_base.scss */
.comment .vcard time a:hover {
  text-decoration: underline;
}
/* line 1157, ../scss/breakpoints/_base.scss */
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
/* line 1165, ../scss/breakpoints/_base.scss */
.comment:last-child {
  margin-bottom: 0;
}
/* line 1169, ../scss/breakpoints/_base.scss */
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
/* line 1187, ../scss/breakpoints/_base.scss */
.comment[class*=depth-] {
  margin-top: 1.1em;
}
/* line 1191, ../scss/breakpoints/_base.scss */
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
/* line 1196, ../scss/breakpoints/_base.scss */
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
/* line 1209, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 1212, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #7C7C7C;
}

/* comment meta */
/* comment content */
/* line 1246, ../scss/breakpoints/_base.scss */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
/* line 1255, ../scss/breakpoints/_base.scss */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
/* line 1267, ../scss/breakpoints/_base.scss */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/* Profile Page */
/* line 1276, ../scss/breakpoints/_base.scss */
.profile-wrapper .standard-form {
  display: table;
}
/* line 1279, ../scss/breakpoints/_base.scss */
.profile-wrapper .header-wrapper {
  width: 100%;
}

/* line 1283, ../scss/breakpoints/_base.scss */
#stack-written .blog-empty h2 {
  width: 90%;
}

/* line 1286, ../scss/breakpoints/_base.scss */
#bottom-cta_image .white-button.bigbtn, #contribute-container button {
  font-size: 18px;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 1294, ../scss/breakpoints/_base.scss */
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #7C7C7C;
}

/* line 1300, ../scss/breakpoints/_base.scss */
#reply-title {
  margin: 0;
}

/* line 1304, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* line 1309, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #000;
}

/* line 1314, ../scss/breakpoints/_base.scss */
.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

/* line 1318, ../scss/breakpoints/_base.scss */
.form-allowed-tags {
  padding: 1.5em;
  background-color: #7C7C7C;
  font-size: 0.9em;
}

/* comment submit button */
/* line 1325, ../scss/breakpoints/_base.scss */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
/* line 1332, ../scss/breakpoints/_base.scss */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 1345, ../scss/breakpoints/_base.scss */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
/* line 1350, ../scss/breakpoints/_base.scss */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 1366, ../scss/breakpoints/_base.scss */
.widget ul li {
  /* deep nesting */
}

/* line 1383, ../scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

@media screen and (min-width: 401px) {
  /* line 1393, ../scss/breakpoints/_base.scss */
  .arrow-contain {
    margin: 10px;
  }
}
/*********************
FOOTER STYLES
*********************/
/* line 1401, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #000;
  color: #fff;
}
/* line 1405, ../scss/breakpoints/_base.scss */
.footer h5 {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  float: left;
  font-size: 1.5em;
  margin: 1em 0.25em 1em 0em;
}
/* line 1413, ../scss/breakpoints/_base.scss */
.footer .write {
  float: left;
  width: 50px;
  height: 50px;
  margin: 1em 0 0 0;
}
/* line 1419, ../scss/breakpoints/_base.scss */
.footer .social-icons {
  width: auto;
  margin: 0 auto 1em;
  display: table;
  height: 50px;
}
/* line 1424, ../scss/breakpoints/_base.scss */
.footer .social-icons li {
  float: left;
  width: 50px;
}
/* line 1427, ../scss/breakpoints/_base.scss */
.footer .social-icons li img {
  width: 35px;
  height: 35px;
}

/* line 1434, ../scss/breakpoints/_base.scss */
.wrapLowerFooter {
  background: #2c2c2c;
  padding: 20px 10px;
}
/* line 1437, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .row {
  display: table;
  margin: 0 auto;
  width: auto;
}
/* line 1441, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .row ul {
  margin: 0 auto;
}
/* line 1443, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .row ul li {
  font-size: 12px;
  float: left;
  padding: 0;
}
/* line 1447, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .row ul li .desktop-show {
  display: none;
}
/* line 1450, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .row ul li a {
  color: #898989;
  text-decoration: none;
}
/* line 1456, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .row #copyright-text {
  font-size: 12px;
  color: #898989;
  margin: 8px auto;
}
/* line 1462, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .backToTop {
  clear: both;
  display: block;
  text-align: center;
  font-size: 12px;
  color: #898989;
}
/* line 1468, ../scss/breakpoints/_base.scss */
.wrapLowerFooter .backToTop a {
  color: #898989;
  display: inline-block;
}
/* line 1473, ../scss/breakpoints/_base.scss */
.wrapLowerFooter a.icon-lifebuoy {
  background: url(../images/sprite@2x.png) -973px -888px no-repeat;
  -webkit-background-size: 1000px 1000px;
  -o-background-size: 1000px 1000px;
  -moz-background-size: 1000px 1000px;
  -ms-background-size: 1000px 1000px;
  background-size: 1000px 1000px;
  width: 20px;
  height: 20px;
  float: left;
  text-indent: -999em;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
@media screen and (max-width: 900px) {
  /* line 1511, ../scss/breakpoints/_base.scss */
  #home-subscribe .form-group {
    width: 100% !important;
  }
  /* line 1514, ../scss/breakpoints/_base.scss */
  #home-subscribe .h2a {
    width: 100%;
    text-align: center;
    float: none;
  }
  /* line 1519, ../scss/breakpoints/_base.scss */
  #home-subscribe #subscribe-form {
    display: block !important;
  }
  /* line 1522, ../scss/breakpoints/_base.scss */
  #home-subscribe #subscribe-form-container {
    position: relative;
    top: 6em;
    float: none;
    width: auto;
    margin: 1em auto;
    display: table;
    right: 0;
    left: 0;
  }
  /* line 1531, ../scss/breakpoints/_base.scss */
  #home-subscribe #subscribe-form-container input[type="email"] {
    border-right: solid;
    max-width: 100%;
    width: 100%;
  }
  /* line 1538, ../scss/breakpoints/_base.scss */
  #home-subscribe button.subscribe-submit {
    margin: 50px auto 10px auto;
    position: relative;
    top: 20px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1546, ../scss/breakpoints/_base.scss */
  .article-header {
    height: 500px !important;
  }

  /* line 1547, ../scss/breakpoints/_base.scss */
  .php404 .article-header {
    height: auto !important;
  }
  /* line 1549, ../scss/breakpoints/_base.scss */
  .php404 .article-header h1 {
    font-size: 30px;
  }

  /* line 1553, ../scss/breakpoints/_base.scss */
  #bottom-cta_text-container h2 {
    font-size: 1.5em;
  }

  /* line 1556, ../scss/breakpoints/_base.scss */
  .single-post .entry-content .post-content .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  /* line 1562, ../scss/breakpoints/_base.scss */
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 480px) {
  /* line 1573, ../scss/breakpoints/_base.scss */
  .nav-option-black ~ .submenu {
    width: 350px !important;
  }
}
@media screen and (max-width: 480px) {
  /* line 1578, ../scss/breakpoints/_base.scss */
  .dropdown4-menu {
    right: -51px !important;
  }

  /* line 1582, ../scss/breakpoints/_base.scss */
  .update-form-buttons .form-buttons {
    height: auto;
  }
  /* line 1585, ../scss/breakpoints/_base.scss */
  .update-form-buttons .center .form-group {
    float: none;
    margin: 0 auto;
    display: table;
  }

  /* line 1592, ../scss/breakpoints/_base.scss */
  .profile-wrapper .standard-form {
    padding: 1em;
  }
  /* line 1595, ../scss/breakpoints/_base.scss */
  .profile-wrapper .profile-container {
    float: none;
    padding: 0;
  }
  /* line 1598, ../scss/breakpoints/_base.scss */
  .profile-wrapper .profile-container h1 {
    font-size: 1.5em;
  }
  /* line 1601, ../scss/breakpoints/_base.scss */
  .profile-wrapper .profile-container h3 {
    font-size: 1em;
  }
  /* line 1604, ../scss/breakpoints/_base.scss */
  .profile-wrapper .profile-container .profile-pic {
    float: none;
    padding-bottom: 0;
  }
  /* line 1608, ../scss/breakpoints/_base.scss */
  .profile-wrapper .profile-container #update-profile-button {
    float: none;
  }
  /* line 1613, ../scss/breakpoints/_base.scss */
  .profile-wrapper #switch {
    width: auto;
  }
  /* line 1615, ../scss/breakpoints/_base.scss */
  .profile-wrapper #switch .switch-container {
    width: 80px;
  }
  /* line 1620, ../scss/breakpoints/_base.scss */
  .profile-wrapper .posts-list .written .h8 {
    float: left;
  }
  /* line 1623, ../scss/breakpoints/_base.scss */
  .profile-wrapper .posts-list .written svg {
    clear: both;
  }
  /* line 1627, ../scss/breakpoints/_base.scss */
  .profile-wrapper .profile-wrapper .profile-container {
    padding: 0;
  }
  /* line 1630, ../scss/breakpoints/_base.scss */
  .profile-wrapper .posts-list .post-container .full-width-col, .profile-wrapper .posts-list #featured-post .full-width-col, .profile-wrapper .posts-list .square-col .full-width-col, .profile-wrapper .posts-list #featured-post .full-width-col, .profile-wrapper .posts-list .square-col .full-width-col {
    padding: 15px 0;
  }
  /* line 1634, ../scss/breakpoints/_base.scss */
  .profile-wrapper #profile-password-update .header-wrapper {
    text-align: center;
    padding-left: 0;
  }
  /* line 1638, ../scss/breakpoints/_base.scss */
  .profile-wrapper #profile-password-update input {
    margin-bottom: 0;
  }
  /* line 1641, ../scss/breakpoints/_base.scss */
  .profile-wrapper #profile-password-update .parsley-errors-list li {
    padding-left: 5px !important;
    font-size: 14px;
  }

  /* line 1648, ../scss/breakpoints/_base.scss */
  .wrapLowerFooter {
    padding: 20px 0;
  }
  /* line 1650, ../scss/breakpoints/_base.scss */
  .wrapLowerFooter li {
    width: 100%;
    border-bottom: solid 1px #7c7c7c;
    padding: 7px;
  }
  /* line 1654, ../scss/breakpoints/_base.scss */
  .wrapLowerFooter li span {
    display: none;
  }
  /* line 1657, ../scss/breakpoints/_base.scss */
  .wrapLowerFooter li a {
    font-size: 11px;
    margin: 7px 10px;
  }
  /* line 1662, ../scss/breakpoints/_base.scss */
  .wrapLowerFooter #copyright-text {
    margin: 7px 10px !important;
    float: left;
  }
  /* line 1666, ../scss/breakpoints/_base.scss */
  .wrapLowerFooter .backToTop {
    float: right;
    margin-right: 10px;
    clear: none;
    display: inline-block;
  }

  /* line 1674, ../scss/breakpoints/_base.scss */
  .thank-you-for-contributing h1 {
    line-height: 1.1;
  }
  /* line 1678, ../scss/breakpoints/_base.scss */
  .thank-you-for-contributing .buttons-div .write-another, .thank-you-for-contributing .buttons-div .done {
    float: none !important;
  }
  /* line 1681, ../scss/breakpoints/_base.scss */
  .thank-you-for-contributing .buttons-div div {
    margin: 1em 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 1689, ../scss/breakpoints/_base.scss */
  .saveArticle:after {
    display: none !important;
  }
}
@media only screen and (max-width: 852px) {
  /* line 1695, ../scss/breakpoints/_base.scss */
  #wobl-logo {
    top: 0 !important;
  }
}
/* line 1699, ../scss/breakpoints/_base.scss */
#post-not-found {
  border: 0;
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-height: 600px) {
  /* line 1707, ../scss/breakpoints/_base.scss */
  .single .overlay-container {
    height: 300px;
    min-height: 100%;
  }

  /* line 1711, ../scss/breakpoints/_base.scss */
  .overlay-container .login-overlay {
    height: auto;
  }
}
/* line 1716, ../scss/breakpoints/_base.scss */
.header-wrapper {
  display: none;
}
/* line 1718, ../scss/breakpoints/_base.scss */
.header-wrapper.mobile-header {
  display: block;
}

@media screen and (max-width: 1000px) {
  /* line 1724, ../scss/breakpoints/_base.scss */
  #copyright-li {
    clear: both;
    text-align: center;
    float: none;
  }
  /* line 1728, ../scss/breakpoints/_base.scss */
  #copyright-li p {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 481px) {
  /* line 1738, ../scss/breakpoints/_base.scss */
  #subscribe-form button.subscribe-submit {
    margin: 50px auto 20px auto !important;
    position: relative;
    top: 20px;
  }

  /* line 1744, ../scss/breakpoints/_base.scss */
  .dropdown li {
    padding: 10px;
    margin: 0 !important;
  }
}
/* line 1751, ../scss/breakpoints/_base.scss */
.ie {
  padding-right: 12px;
  /* scrollbar */
  /* nav */
  /* post tiles */
  /* single post */
  /* profile stuff */
  /* other modules */
  /*footer */
}
/* line 1757, ../scss/breakpoints/_base.scss */
.ie .main-nav .search-nav #searchform input#s, .ie .main-nav .search-nav #searchform input#s:focus {
  width: 50%;
}
/* line 1760, ../scss/breakpoints/_base.scss */
.ie .main-nav .search-nav #searchform .submit-btn {
  float: left;
  margin-left: 5px;
}
/* line 1769, ../scss/breakpoints/_base.scss */
.ie .log-nav .log-subs a, .ie .log-nav .log-sign a {
  width: 15px;
  height: 13px;
  position: relative;
}
/* line 1777, ../scss/breakpoints/_base.scss */
.ie .log-nav .dropdown5-menu #forgot-pw-cancel2 .submit-arrow {
  height: 50px;
}
/* line 1783, ../scss/breakpoints/_base.scss */
.ie input {
  letter-spacing: 1px;
}
/* line 1786, ../scss/breakpoints/_base.scss */
.ie select::-ms-expand {
  display: none;
}
/* line 1789, ../scss/breakpoints/_base.scss */
.ie .search-nav #searchform #search-icon {
  width: 30px;
}
/* line 1792, ../scss/breakpoints/_base.scss */
.ie .parsley-errors-list li::before, .ie .form-error-msg li::before {
  zoom: 1;
}
/* line 1797, ../scss/breakpoints/_base.scss */
.ie .wide-post {
  height: 411px;
}
/* line 1800, ../scss/breakpoints/_base.scss */
.ie #featured-post, .ie .square-col {
  display: -ms-flexbox;
}
/* line 1803, ../scss/breakpoints/_base.scss */
.ie #featured-post {
  height: 500px;
}
/* line 1805, ../scss/breakpoints/_base.scss */
.ie #featured-post .saveArticle {
  right: -8px;
}
/* line 1809, ../scss/breakpoints/_base.scss */
.ie .square-col {
  height: 515px;
}
/* line 1812, ../scss/breakpoints/_base.scss */
.ie .post-container .blog-preview-content .header-arrow svg, .ie #featured-post .blog-preview-content .header-arrow svg, .ie .square-col .blog-preview-content .header-arrow svg, .ie #featured-post .blog-preview-content .header-arrow svg, .ie .square-col .blog-preview-content .header-arrow svg {
  height: 47px;
}
/* line 1815, ../scss/breakpoints/_base.scss */
.ie .post-container .saveArticle .add svg, .ie #featured-post .saveArticle .add svg, .ie .square-col .saveArticle .add svg, .ie #featured-post .saveArticle .add svg, .ie .square-col .saveArticle .add svg {
  height: 50px;
}
/* line 1824, ../scss/breakpoints/_base.scss */
.ie .post-container .more-tools .post-more, .ie #featured-post .more-tools .post-more, .ie .square-col .more-tools .post-more, .ie #featured-post .more-tools .post-more, .ie .square-col .more-tools .post-more, .ie #featured-post .more-tools .post-more, .ie .square-col .more-tools .post-more, .ie .post-container .more-tools .post-num, .ie #featured-post .more-tools .post-num, .ie .square-col .more-tools .post-num, .ie #featured-post .more-tools .post-num, .ie .square-col .more-tools .post-num, .ie #featured-post .more-tools .post-num, .ie .square-col .more-tools .post-num {
  height: 10px;
}
/* line 1827, ../scss/breakpoints/_base.scss */
.ie .single-post .entry-content .social-share .saveArticle:hover::after {
  top: 71px !important;
  right: -117px !important;
  height: 38px !important;
}
/* line 1834, ../scss/breakpoints/_base.scss */
.ie .posts-list .post-container .full-width-col .post-content .header-arrow, .ie .posts-list #featured-post .full-width-col .post-content .header-arrow, .ie .posts-list .square-col .full-width-col .post-content .header-arrow, .ie .posts-list #featured-post .full-width-col .post-content .header-arrow, .ie .posts-list .square-col .full-width-col .post-content .header-arrow {
  padding-top: 10px;
}
/* line 1837, ../scss/breakpoints/_base.scss */
.ie .social-share ul {
  width: 300px;
}
/* line 1841, ../scss/breakpoints/_base.scss */
.ie .single-post .entry-content .social-share svg {
  height: 55px;
}
/* line 1844, ../scss/breakpoints/_base.scss */
.ie .single-post .entry-content .social-share li {
  height: 30px;
}
/* line 1849, ../scss/breakpoints/_base.scss */
.ie .posts-list .post-container .full-width-col .post-content .header-arrow svg, .ie .posts-list #featured-post .full-width-col .post-content .header-arrow svg, .ie .posts-list .square-col .full-width-col .post-content .header-arrow svg, .ie .posts-list #featured-post .full-width-col .post-content .header-arrow svg, .ie .posts-list .square-col .full-width-col .post-content .header-arrow svg {
  height: 47px;
}
/* line 1853, ../scss/breakpoints/_base.scss */
.ie .profile-wrapper .profile-container {
  width: 850px;
}
/* line 1856, ../scss/breakpoints/_base.scss */
.ie .link-cat-arrow svg {
  height: 13px;
}
/* line 1860, ../scss/breakpoints/_base.scss */
.ie .media .icon {
  margin: 1em 0 !important;
}
/* line 1863, ../scss/breakpoints/_base.scss */
.ie .layout {
  height: 200px;
}
/* line 1866, ../scss/breakpoints/_base.scss */
.ie #post-not-found #search-icon {
  width: 51px;
}
/* line 1871, ../scss/breakpoints/_base.scss */
.ie .wrapLowerFooter .row #copyright-text {
  margin: 8px 0 0 0;
}

/* line 1876, ../scss/breakpoints/_base.scss */
.ie-10 svg, .ie-10 .main-header, .ie-10 input, .ie-11 svg, .ie-11 .main-header, .ie-11 input {
  transition: none !important;
}
/* line 1881, ../scss/breakpoints/_base.scss */
.ie-10 .loggedin .log-nav .log-subs, .ie-11 .loggedin .log-nav .log-subs {
  width: auto !important;
}
/* line 1885, ../scss/breakpoints/_base.scss */
.ie-10 .loggedin .log-nav .logged-in #logged-in-nav-pic, .ie-11 .loggedin .log-nav .logged-in #logged-in-nav-pic {
  top: 8px;
}
/* line 1891, ../scss/breakpoints/_base.scss */
.ie-10 .close-dropdown, .ie-11 .close-dropdown {
  top: -30px;
}
/* line 1894, ../scss/breakpoints/_base.scss */
.ie-10 .posi.main-header .main-nav li input, .ie-11 .posi.main-header .main-nav li input {
  font-size: 16px;
}
/* line 1898, ../scss/breakpoints/_base.scss */
.ie-10 .title-copy, .ie-11 .title-copy {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  padding: 0.45rem 0.45rem !important;
}
/* line 1903, ../scss/breakpoints/_base.scss */
.ie-10 .profile-container .submit-icon.validate:after,
.ie-10 .submenu .submit-icon.validate:after, .ie-11 .profile-container .submit-icon.validate:after,
.ie-11 .submenu .submit-icon.validate:after {
  top: 7px;
}
/* line 1909, ../scss/breakpoints/_base.scss */
.ie-10 .post-header .social-share li, .ie-10 .post-header .social-share .saveArticle, .ie-11 .post-header .social-share li, .ie-11 .post-header .social-share .saveArticle {
  height: 50px;
}
/* line 1913, ../scss/breakpoints/_base.scss */
.ie-10 .post-header .saveArticle:hover::after, .ie-11 .post-header .saveArticle:hover::after {
  top: 19px !important;
  right: -108px !important;
  height: 42px !important;
}
/* line 1920, ../scss/breakpoints/_base.scss */
.ie-10 .article-footer .saveArticle:hover::after, .ie-11 .article-footer .saveArticle:hover::after {
  top: 58px !important;
  right: -97px !important;
  height: 33px !important;
}
/* line 1928, ../scss/breakpoints/_base.scss */
.ie-10 .posts-list .written span, .ie-11 .posts-list .written span {
  color: black;
}
/* line 1935, ../scss/breakpoints/_base.scss */
.ie-10 .single .social-share .saveArticle.saved, .ie-11 .single .social-share .saveArticle.saved {
  position: relative;
  left: -35px;
}
/* line 1938, ../scss/breakpoints/_base.scss */
.ie-10 .single .social-share .saveArticle.saved span.add, .ie-11 .single .social-share .saveArticle.saved span.add {
  position: relative;
  left: 35px;
}
/* line 1945, ../scss/breakpoints/_base.scss */
.ie-10 .single .entry-content .social-share .saveArticle.saved, .ie-11 .single .entry-content .social-share .saveArticle.saved {
  top: -15px;
}
/* line 1947, ../scss/breakpoints/_base.scss */
.ie-10 .single .entry-content .social-share .saveArticle.saved span.add, .ie-11 .single .entry-content .social-share .saveArticle.saved span.add {
  top: 15px;
}
/* line 1953, ../scss/breakpoints/_base.scss */
.ie-10 .single footer .social-share .saveArticle.saved, .ie-11 .single footer .social-share .saveArticle.saved {
  top: 0;
}
/* line 1955, ../scss/breakpoints/_base.scss */
.ie-10 .single footer .social-share .saveArticle.saved span.add, .ie-11 .single footer .social-share .saveArticle.saved span.add {
  top: 0;
}
/* line 1964, ../scss/breakpoints/_base.scss */
.ie-10 #post-not-found .searchform, .ie-11 #post-not-found .searchform {
  width: 360px;
  max-width: auto;
}
/* line 1967, ../scss/breakpoints/_base.scss */
.ie-10 #post-not-found .searchform #search-icon, .ie-10 #post-not-found .searchform #s, .ie-11 #post-not-found .searchform #search-icon, .ie-11 #post-not-found .searchform #s {
  float: left;
}
/* line 1970, ../scss/breakpoints/_base.scss */
.ie-10 #post-not-found .searchform #s, .ie-11 #post-not-found .searchform #s {
  max-width: 250px;
}
/* line 1973, ../scss/breakpoints/_base.scss */
.ie-10 #post-not-found .searchform .submit-btn, .ie-11 #post-not-found .searchform .submit-btn {
  height: 28px;
  float: left;
}

/* line 1980, ../scss/breakpoints/_base.scss */
#disqus-integration {
  width: 97%;
  padding: 2em 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  /* line 1986, ../scss/breakpoints/_base.scss */
  .single-post #content .single-post-top h1 {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  /* line 1991, ../scss/breakpoints/_base.scss */
  .single-post #content .single-post-top h1 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 852px) {
  /* line 1999, ../scss/breakpoints/_base.scss */
  .ie-10 .loggedin .log-subs, .ie-11 .loggedin .log-subs {
    top: -69px !important;
  }
  /* line 2003, ../scss/breakpoints/_base.scss */
  .ie-10 .log-sign, .ie-11 .log-sign {
    top: -69px !important;
  }
}
@media screen and (max-width: 1079px) {
  /* line 2011, ../scss/breakpoints/_base.scss */
  .ie-10 .loggedin #wobl-logo, .ie-11 .loggedin #wobl-logo {
    top: 4px !important;
  }
}
@media screen and (min-width: 768px) {
  /* line 2019, ../scss/breakpoints/_base.scss */
  .ie-10 .single-post .post-header, .ie-11 .single-post .post-header {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1030x) {
  /* line 2026, ../scss/breakpoints/_base.scss */
  .ie-10 .single-post .post-header, .ie-11 .single-post .post-header {
    padding: 40px 80px;
  }
}
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* wide post styles */
  /* line 32, ../scss/breakpoints/_481up.scss */
  #featured-post:before {
    padding-top: 50%;
  }
  /* line 35, ../scss/breakpoints/_481up.scss */
  #featured-post .wide-post {
    padding: 1em 2em;
  }
  /* line 40, ../scss/breakpoints/_481up.scss */
  #featured-post .title a h1 {
    margin: 0.67em 0 0.2em;
    font-size: 1.2em;
    line-height: 2.5em;
  }
  /* line 49, ../scss/breakpoints/_481up.scss */
  #featured-post .saveArticle .add svg {
    width: 50px;
  }

  /*end .wide-post */
  /* entry content */
  /* line 60, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 64, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 69, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 74, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /* line 83, ../scss/breakpoints/_481up.scss */
  #subscribe-form {
    float: right;
  }
  /* line 85, ../scss/breakpoints/_481up.scss */
  #subscribe-form input {
    width: 400px;
  }

  /* line 91, ../scss/breakpoints/_481up.scss */
  .overlay-container .login-overlay h4 {
    font-size: 1.875em;
  }

  /* line 97, ../scss/breakpoints/_481up.scss */
  .posts-list .overlay-container {
    top: -35px;
    left: 0;
    height: 114%;
  }
  /* line 101, ../scss/breakpoints/_481up.scss */
  .posts-list .overlay-container .add {
    top: 32px;
  }
  /* line 105, ../scss/breakpoints/_481up.scss */
  .posts-list .login-overlay {
    height: 68%;
  }

  /* line 111, ../scss/breakpoints/_481up.scss */
  #inner-footer .m-all.t-1of2.d-1of2 {
    width: auto;
    margin: 0 auto;
    display: table;
    padding-right: 0;
  }
  /* line 117, ../scss/breakpoints/_481up.scss */
  #inner-footer .float-right {
    float: none;
  }
}
@media only screen and (min-width: 481px) and (min-width: 630px) {
  /* line 123, ../scss/breakpoints/_481up.scss */
  .post-container, #featured-post, .square-col {
    flex: 1 50%;
  }
  /* line 127, ../scss/breakpoints/_481up.scss */
  .post-container .square-col:last-of-type:before, #featured-post .square-col:last-of-type:before, .square-col .square-col:last-of-type:before {
    width: 100%;
    padding-top: 50%;
  }

  /* line 134, ../scss/breakpoints/_481up.scss */
  .blog-preview-content h4 {
    font-size: 1.15em;
  }
}
@media only screen and (min-width: 481px) {
  /* .post-container .more-tools .post-more, 
  #featured-post .more-tools .post-more, 
  .square-col .more-tools .post-more, 
  .post-container .more-tools .post-num, 
  #featured-post .more-tools .post-num, 
  .square-col .more-tools .post-num {
      margin: 23px 0 23px 23px;
  } */
  /* line 149, ../scss/breakpoints/_481up.scss */
  label[for="concept"] {
    font-size: 14px;
  }

  /* line 155, ../scss/breakpoints/_481up.scss */
  .profile-wrapper .profile-container {
    width: 350px;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  /******************************************************************
  H1, H2, H3, H4, H5, H6, H7, H8 STYLES
  ******************************************************************/
  /*********************
  POST STYLES
  *********************/
  /* line 48, ../scss/breakpoints/_768up.scss */
  .post-container .misc, #featured-post .misc, .square-col .misc, #featured-post .misc, .square-col .misc {
    left: 2em;
  }

  /* line 53, ../scss/breakpoints/_768up.scss */
  #featured-post:before {
    padding-top: 50%;
  }
  /* line 56, ../scss/breakpoints/_768up.scss */
  #featured-post .wide-post {
    padding: 3em 2em;
  }
  /* line 61, ../scss/breakpoints/_768up.scss */
  #featured-post .title a h1 {
    margin: 0.67em 0 0.2em;
    font-size: 2em;
    line-height: 1.9em;
  }
  /* line 68, ../scss/breakpoints/_768up.scss */
  #featured-post .saveArticle {
    width: 70px;
    height: 70px;
  }
  /* line 72, ../scss/breakpoints/_768up.scss */
  #featured-post .saveArticle .add svg {
    width: 70px;
  }
  /* line 78, ../scss/breakpoints/_768up.scss */
  #featured-post .title-arrow svg {
    width: 58px;
  }

  /* line 83, ../scss/breakpoints/_768up.scss */
  .article-footer .social-share ul li .saveArticle:hover:after {
    top: 0;
    right: -45px;
  }

  /* line 87, ../scss/breakpoints/_768up.scss */
  .blog-preview-content {
    padding: 2em 2em;
  }
  /* line 89, ../scss/breakpoints/_768up.scss */
  .blog-preview-content h4 {
    font-size: 1.75em;
    line-height: 1.9em;
  }
  /* line 93, ../scss/breakpoints/_768up.scss */
  .blog-preview-content .misc {
    left: 2em;
    right: 2em;
  }

  /* line 98, ../scss/breakpoints/_768up.scss */
  .posts-list {
    padding: 6em 0 0;
    clear: both;
  }
  /* line 101, ../scss/breakpoints/_768up.scss */
  .posts-list h4 {
    font-size: 1.75em;
    line-height: 1.75em;
  }
  /* line 105, ../scss/breakpoints/_768up.scss */
  .posts-list .h7 {
    font-size: 21px;
    display: block;
    clear: left;
    padding: 20px 0 0;
  }
  /* line 111, ../scss/breakpoints/_768up.scss */
  .posts-list .author {
    float: left;
    width: 13%;
  }
  /* line 115, ../scss/breakpoints/_768up.scss */
  .posts-list .prof-pic {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    height: 75px;
    width: 75px;
    margin: 0 15px 0 0;
  }
  /* line 120, ../scss/breakpoints/_768up.scss */
  .posts-list .mobile {
    display: none;
  }
  /* line 123, ../scss/breakpoints/_768up.scss */
  .posts-list .desktop {
    display: block;
  }
  /* line 126, ../scss/breakpoints/_768up.scss */
  .posts-list .post-content {
    padding: 0;
    width: 77%;
    float: left;
    clear: none;
  }
  /* line 132, ../scss/breakpoints/_768up.scss */
  .posts-list .written {
    float: right;
    width: 10%;
    margin: 53px 0 0;
  }
  /* line 136, ../scss/breakpoints/_768up.scss */
  .posts-list .written svg {
    height: 88px;
    margin: 0 auto 10px;
    display: block;
    float: none;
  }
  /* line 141, ../scss/breakpoints/_768up.scss */
  .posts-list .written svg .icon-outline {
    fill: #e1e1e1;
  }
  /* line 144, ../scss/breakpoints/_768up.scss */
  .posts-list .written svg .icon-fill {
    fill: transparent;
  }
  /* line 148, ../scss/breakpoints/_768up.scss */
  .posts-list .written .h8 {
    font-size: 14px;
    line-height: 14px;
    clear: both;
    display: block;
    text-align: center;
    margin: 0;
  }

  /* line 158, ../scss/breakpoints/_768up.scss */
  #loadMore, #explore {
    margin: 0 0 50px;
  }

  /* line 161, ../scss/breakpoints/_768up.scss */
  .tax-filter {
    border-top: 4px solid #2D3C8B;
    border-bottom: 4px solid #2D3C8B;
    border-left: 4px solid #2D3C8B;
    border-right: 0;
    display: inline-block;
    float: left;
    width: auto;
  }
  /* line 169, ../scss/breakpoints/_768up.scss */
  .tax-filter:last-of-type {
    border-right: 4px solid #2D3C8B;
    border-bottom: 4px solid #2D3C8B;
  }
  /* line 173, ../scss/breakpoints/_768up.scss */
  .tax-filter label {
    width: auto;
  }

  /* line 178, ../scss/breakpoints/_768up.scss */
  .single-post .single-post-top {
    width: 86%;
    position: relative;
    margin: 0 auto;
    padding: 6em 0;
  }
  /* line 183, ../scss/breakpoints/_768up.scss */
  .single-post .single-post-top h1 {
    margin: 0.67em 0 0.2em;
    font-size: 2em;
    line-height: 1.9em;
  }
  /* line 189, ../scss/breakpoints/_768up.scss */
  .single-post .post-header {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 40px 80px;
  }
  /* line 194, ../scss/breakpoints/_768up.scss */
  .single-post .post-header h4.avatar {
    display: inline-flex;
    font-size: 1.875em;
  }
  /* line 200, ../scss/breakpoints/_768up.scss */
  .single-post .entry-content .social-share {
    float: right;
    margin: 0;
    position: relative;
  }
  /* line 204, ../scss/breakpoints/_768up.scss */
  .single-post .entry-content .social-share svg {
    width: 55px;
  }
  /* line 209, ../scss/breakpoints/_768up.scss */
  .single-post .entry-content .post-content p:first-of-type {
    font-size: 24px;
  }

  /* line 217, ../scss/breakpoints/_768up.scss */
  .square-col .overlay-container .login-overlay {
    height: 68%;
  }

  /* line 228, ../scss/breakpoints/_768up.scss */
  .article-footer .social-share ul li .saved:hover:after {
    content: "SAVED";
    right: 15px;
  }

  /*******************
  FORMS
  ********************/
  /* line 242, ../scss/breakpoints/_768up.scss */
  #home-subscribe .form-group {
    width: auto;
  }
  /* line 245, ../scss/breakpoints/_768up.scss */
  #home-subscribe #subscribe-form {
    align-items: center;
    justify-content: center;
  }
  /* line 249, ../scss/breakpoints/_768up.scss */
  #home-subscribe #subscribe-form input {
    font-size: 24px;
    width: 300px;
    max-width: none;
    align-self: flex-end;
  }
  /* line 255, ../scss/breakpoints/_768up.scss */
  #home-subscribe #subscribe-form button {
    align-self: flex-end;
  }
  /* line 259, ../scss/breakpoints/_768up.scss */
  #home-subscribe .cf, #home-subscribe .comment-respond {
     /*
	.h2a {
		width: 100%;
		text-align: center;
		padding: 0;
	}
	#subscribe-form-container {
		float: none;
		margin: 0 auto;
	}*/
  }

  /* line 272, ../scss/breakpoints/_768up.scss */
  .searchResults {
    font-size: 36px;
  }

  /* line 275, ../scss/breakpoints/_768up.scss */
  #revealFilters, #revealSearch {
    display: none;
  }

  /* line 278, ../scss/breakpoints/_768up.scss */
  .filters, .revealSearch {
    display: block;
  }
  /* line 280, ../scss/breakpoints/_768up.scss */
  .filters #searchform, .revealSearch #searchform {
    display: none;
  }

  /* line 286, ../scss/breakpoints/_768up.scss */
  #post-not-found #searchform input[type=search] {
    font-size: 24px;
  }

  /*********************
  SPECIFIC MODULES
  *********************/
  /* line 295, ../scss/breakpoints/_768up.scss */
  #learn-about h3 {
    font-size: 1.5em;
  }

  /* line 302, ../scss/breakpoints/_768up.scss */
  .media li {
    width: auto;
    float: left;
    display: inline-block;
  }

  /* line 310, ../scss/breakpoints/_768up.scss */
  .bottom-cta #bottom-cta_image {
    min-height: 20em;
  }

  /* line 315, ../scss/breakpoints/_768up.scss */
  .logo-name {
    float: left;
  }

  /* PROFILE */
  /* line 321, ../scss/breakpoints/_768up.scss */
  .profile-wrapper .standard-form {
    display: inline-flex;
  }

  /* line 325, ../scss/breakpoints/_768up.scss */
  #contribute-container button {
    font-size: 24px;
  }

  /* line 329, ../scss/breakpoints/_768up.scss */
  .header-wrapper {
    display: block;
  }
  /* line 331, ../scss/breakpoints/_768up.scss */
  .header-wrapper.mobile-header {
    display: none;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  /* line 347, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer {
    padding: 0 30px;
    width: 100%;
  }
  /* line 350, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer h5:hover, .footer #inner-footer img:hover {
    cursor: pointer;
  }
  /* line 353, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer .table {
    float: left;
  }
  /* line 356, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer .float-right {
    float: right;
  }
  /* line 360, ../scss/breakpoints/_768up.scss */
  .footer h5 {
    font-size: 28px;
    margin: 1.7em 0;
  }
  /* line 364, ../scss/breakpoints/_768up.scss */
  .footer .write {
    margin: 42px 0 0 15px;
  }
  /* line 367, ../scss/breakpoints/_768up.scss */
  .footer .social-icons {
    width: auto;
    height: auto;
    float: right;
  }
  /* line 371, ../scss/breakpoints/_768up.scss */
  .footer .social-icons li {
    float: left;
    margin: 42px 15px 0;
    width: auto;
  }
  /* line 375, ../scss/breakpoints/_768up.scss */
  .footer .social-icons li img {
    width: 35px;
  }

  /* line 384, ../scss/breakpoints/_768up.scss */
  .profile-wrapper .profile-container {
    width: 600px;
  }

  /* line 393, ../scss/breakpoints/_768up.scss */
  .wrapLowerFooter .row ul li .desktop-show {
    display: inline;
  }
  /* line 398, ../scss/breakpoints/_768up.scss */
  .wrapLowerFooter .row .icon-lifebuoy {
    position: relative;
    top: 4px;
  }
  /* line 402, ../scss/breakpoints/_768up.scss */
  .wrapLowerFooter .row #copyright-text {
    padding-left: 20px;
  }

  /* line 408, ../scss/breakpoints/_768up.scss */
  #wobl-logo {
    margin: 0 auto;
    display: block;
  }
  /* line 411, ../scss/breakpoints/_768up.scss */
  #wobl-logo svg {
    width: 150px;
    max-height: 75px;
  }

  /* line 416, ../scss/breakpoints/_768up.scss */
  .nav-col-2 {
    clear: both;
  }

  /* line 419, ../scss/breakpoints/_768up.scss */
  .nav-option-black ~ .submenu {
    top: 52px;
  }

  /* line 422, ../scss/breakpoints/_768up.scss */
  .log-sign .nav-option-black ~ .submenu {
    top: 58px;
  }

  /* line 427, ../scss/breakpoints/_768up.scss */
  .log-subs {
    right: 0;
    right: 80px;
    top: -22px;
    top: -13px;
  }

  /* line 436, ../scss/breakpoints/_768up.scss */
  .log-sign {
    right: 10px;
    right: 46px;
    top: -24px;
    top: -20px;
  }

  /* line 443, ../scss/breakpoints/_768up.scss */
  .log-subs svg, .log-sign svg {
    width: 40px;
  }

  /* Navigation breakpoint for desktop */
}
@media only screen and (min-width: 768px) and (min-width: 853px) {
  /* line 450, ../scss/breakpoints/_768up.scss */
  #wobl-logo {
    position: relative;
    left: 0;
    top: 0;
  }
  /* line 454, ../scss/breakpoints/_768up.scss */
  #wobl-logo svg {
    width: 210px;
  }

  /* line 459, ../scss/breakpoints/_768up.scss */
  .log-subs .nav-option-black svg, .log-sign .nav-option-black svg {
    width: 21px;
  }

  /* line 462, ../scss/breakpoints/_768up.scss */
  #search-icon {
    padding: 10px 0px 10px 0;
  }

  /* line 465, ../scss/breakpoints/_768up.scss */
  .main-nav {
    margin: 0;
  }

  /* line 468, ../scss/breakpoints/_768up.scss */
  .cat-nav, .media-nav {
    float: none;
  }

  /* line 471, ../scss/breakpoints/_768up.scss */
  .mobile-nav-button {
    display: none;
  }

  /* line 474, ../scss/breakpoints/_768up.scss */
  #wobl-logo {
    flex: 1;
    margin: 0;
  }

  /* line 475, ../scss/breakpoints/_768up.scss */
  div.log-nav {
    width: 100% !important;
    padding: 10px 0 !important;
    position: relative;
  }

  /* line 480, ../scss/breakpoints/_768up.scss */
  .log-subs, .log-sign {
    background: #000 !important;
    width: 100% !important;
    float: none;
    right: 0;
    top: 0;
  }
  /* line 486, ../scss/breakpoints/_768up.scss */
  .log-subs .nav-option-black span, .log-sign .nav-option-black span {
    display: inline;
  }
  /* line 489, ../scss/breakpoints/_768up.scss */
  .log-subs a, .log-sign a {
    background-color: #000 !important;
  }

  /* line 493, ../scss/breakpoints/_768up.scss */
  .log-sign .dropdown {
    margin: 36px 0 0;
  }

  /* line 496, ../scss/breakpoints/_768up.scss */
  .log-subs-icon, .log-sign-icon {
    fill: #fff !important;
  }

  /* line 500, ../scss/breakpoints/_768up.scss */
  ul.main-nav {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex: 2;
    flex-direction: row;
    justify-content: space-between;
    top: 0;
    opacity: 1;
  }
  /* line 513, ../scss/breakpoints/_768up.scss */
  ul.main-nav li {
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  /* line 227, ../scss/partials/_mixins.scss */
  .search-nav #searchform input:-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
  }
  /* line 232, ../scss/partials/_mixins.scss */
  .search-nav #searchform input::-webkit-input-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
  }
  /* line 237, ../scss/partials/_mixins.scss */
  .search-nav #searchform ::-webkit-input-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
  }
  /* line 242, ../scss/partials/_mixins.scss */
  .search-nav #searchform :-ms-input-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
  }
  /* line 247, ../scss/partials/_mixins.scss */
  .search-nav #searchform ::-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
  }
  /* line 252, ../scss/partials/_mixins.scss */
  .search-nav #searchform :-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
  }

  /* line 524, ../scss/breakpoints/_768up.scss */
  .search-nav input#s::-webkit-input-placeholder {
    text-align: left;
  }
  /* line 527, ../scss/breakpoints/_768up.scss */
  .search-nav input#s::-moz-placeholder {
    text-align: left;
  }
  /* line 530, ../scss/breakpoints/_768up.scss */
  .search-nav input#s:-ms-input-placeholder {
    text-align: left;
  }
  /* line 533, ../scss/breakpoints/_768up.scss */
  .search-nav input#s:-moz-placeholder {
    text-align: left;
  }

  /* line 538, ../scss/breakpoints/_768up.scss */
  .main-nav li {
    margin: 0;
    padding: 17px 0 10px 0;
  }
  /* line 541, ../scss/breakpoints/_768up.scss */
  .main-nav li a {
    font-size: 18px;
  }

  /* line 546, ../scss/breakpoints/_768up.scss */
  .main-header {
    width: 100%;
    top: 0;
    padding: 0 10px;
    margin: 0 auto;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
  }

  /* line 559, ../scss/breakpoints/_768up.scss */
  .posi.main-header {
    padding: 0 10px;
  }

  /* line 562, ../scss/breakpoints/_768up.scss */
  .fix-nav {
    position: fixed;
  }

  /* line 565, ../scss/breakpoints/_768up.scss */
  .search-nav #searchform input[type=search] {
    border-bottom: solid 3px white;
  }

  /* line 569, ../scss/breakpoints/_768up.scss */
  .dropdown4, .dropdown5 {
    margin: 0 0 0 -100px;
  }

  /* line 572, ../scss/breakpoints/_768up.scss */
  .log-nav {
    margin: 0;
    max-width: 400px;
  }
  /* line 575, ../scss/breakpoints/_768up.scss */
  .log-nav .log-subs, .log-nav .log-sign {
    height: 40px;
    padding: 6px 8px 10px 6px;
    width: 100%;
  }
  /* line 579, ../scss/breakpoints/_768up.scss */
  .log-nav .log-subs img, .log-nav .log-sign img {
    padding: 0 5px;
  }
  /* line 582, ../scss/breakpoints/_768up.scss */
  .log-nav .log-subs a, .log-nav .log-sign a {
    position: initial;
  }

  /* line 587, ../scss/breakpoints/_768up.scss */
  .dropdown4-menu {
    right: 0 !important;
  }

  /* line 590, ../scss/breakpoints/_768up.scss */
  .logo-name a {
    text-align: left;
  }

  /* line 593, ../scss/breakpoints/_768up.scss */
  .logo-name {
    font-size: 1.7em;
  }

  /* line 596, ../scss/breakpoints/_768up.scss */
  .logo-name img {
    width: 206px;
    height: 70px;
  }

  /* line 600, ../scss/breakpoints/_768up.scss */
  ul.submenu {
    position: absolute;
    right: 0;
    top: 46px !important;
  }
  /* line 606, ../scss/breakpoints/_768up.scss */
  ul.submenu .dropdown li {
    padding: 0;
    width: 100%;
  }

  /* line 615, ../scss/breakpoints/_768up.scss */
  #invisible-dropdown-nav ul.submenu {
    top: 0 !important;
  }

  /* line 623, ../scss/breakpoints/_768up.scss */
  .log-nav .standard-form button {
    float: right;
  }

  /* line 628, ../scss/breakpoints/_768up.scss */
  .log-nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    max-width: 165px;
  }
  /* line 637, ../scss/breakpoints/_768up.scss */
  .log-nav .log-subs,
  .log-nav .log-sign {
    margin: 5px 10px 10px 0;
  }
  /* line 641, ../scss/breakpoints/_768up.scss */
  .log-nav .dropdown4 {
    margin: 0 0 0 0;
  }
  /* line 644, ../scss/breakpoints/_768up.scss */
  .log-nav .dropdown5 {
    margin: 0 0 0 0;
  }
  /* line 647, ../scss/breakpoints/_768up.scss */
  .log-nav .logged-in #logged-in-nav-pic {
    position: initial;
  }
}
@media only screen and (min-width: 768px) {
  /* line 655, ../scss/breakpoints/_768up.scss */
  .single-campaign_page #featured-post .wide-post {
    padding: 3em 4.6875em;
  }
  /* line 657, ../scss/breakpoints/_768up.scss */
  .single-campaign_page #featured-post .wide-post .title {
    padding-top: 4.375em;
  }
  /* line 659, ../scss/breakpoints/_768up.scss */
  .single-campaign_page #featured-post .wide-post .title h1 {
    font-size: 50px;
  }

  /* line 667, ../scss/breakpoints/_768up.scss */
  .social-share ul {
    width: 350px;
  }

  /* line 671, ../scss/breakpoints/_768up.scss */
  .post-header .social-share li:last-child {
    clear: none;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (min-width: 853px) and (max-width: 1079px) {
  /* line 676, ../scss/breakpoints/_768up.scss */
  #wobl-logo {
    top: 30px;
  }

  /* line 681, ../scss/breakpoints/_768up.scss */
  #invisible-dropdown-nav ul.submenu {
    top: 46px !important;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1080px) {
  /* line 687, ../scss/breakpoints/_768up.scss */
  .log-nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    max-width: 350px;
  }

  /* line 698, ../scss/breakpoints/_768up.scss */
  .loggedin div.log-nav {
    max-width: 220px;
  }
  /* line 701, ../scss/breakpoints/_768up.scss */
  .loggedin ul.log-nav {
    max-width: 200px;
  }

  /* line 705, ../scss/breakpoints/_768up.scss */
  .main-header {
    padding: 20px 30px;
  }

  /* line 709, ../scss/breakpoints/_768up.scss */
  .posi.main-header {
    padding: 0 30px;
  }
  /* line 712, ../scss/breakpoints/_768up.scss */
  .posi #wobl-logo {
    top: 4px !important;
  }
}
@media only screen and (min-width: 768px) {
  /* line 719, ../scss/breakpoints/_768up.scss */
  .php404 .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  /* line 725, ../scss/breakpoints/_768up.scss */
  .php404 .hentry header, .php404 .hentry footer {
    border: 0 !important;
  }
  /* line 729, ../scss/breakpoints/_768up.scss */
  .php404 a {
    color: #0680EB;
    position: relative;
    z-index: 1;
    text-decoration: none;
    border-bottom: solid 2px #0680EB;
    padding: 3px 3px 0px 3px;
  }
  /* line 737, ../scss/breakpoints/_768up.scss */
  .php404 a:hover {
    color: white !important;
    text-decoration: none;
  }
  /* line 741, ../scss/breakpoints/_768up.scss */
  .php404 a:before {
    content: "";
    position: absolute;
    background: #0680EB;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    -webkit-transition: top 0.09s ease-in;
  }
  /* line 752, ../scss/breakpoints/_768up.scss */
  .php404 a:hover:before {
    top: 0;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 13, ../scss/breakpoints/_1030up.scss */
  .entry-content p {
    line-height: 1.5 !important;
  }

  /*****************
  h1,h2,h3,h4,h5,h6,h7,h8 styles
  *****************/
  /*
  
  
  */
  /* line 24, ../scss/breakpoints/_1030up.scss */
  h1, .h1 {
    font-size: 3.125em;
    line-height: 1.64em;
  }

  /* line 28, ../scss/breakpoints/_1030up.scss */
  h2, .h2 {
    font-size: 2.625em;
    line-height: 1.25em;
  }

  /* line 33, ../scss/breakpoints/_1030up.scss */
  h3, .h3 {
    font-size: 2em;
    line-height: 1.5625em;
  }

  /* line 37, ../scss/breakpoints/_1030up.scss */
  h4, .h4 {
    font-size: 1.875em;
    line-height: 1.5em;
  }

  /* line 42, ../scss/breakpoints/_1030up.scss */
  h5, .h5 {
    font-size: 1.75em;
    line-height: 1.428571428571429em;
  }

  /* line 46, ../scss/breakpoints/_1030up.scss */
  h6, .h6 {
    font-size: 1.125em;
    line-height: 1.5em;
  }

  /* line 50, ../scss/breakpoints/_1030up.scss */
  .h7 {
    font-size: 1.666666666666667em;
    line-height: 2em;
  }

  /* line 54, ../scss/breakpoints/_1030up.scss */
  .h8 {
    font-size: 1.5em;
    line-height: 1.66em;
  }

  /* line 58, ../scss/breakpoints/_1030up.scss */
  .post-container, #featured-post, .square-col {
    flex: 1 33%;
  }

  /* line 62, ../scss/breakpoints/_1030up.scss */
  #featured-post:before {
    padding-top: 40%;
  }
  /* line 65, ../scss/breakpoints/_1030up.scss */
  #featured-post .wide-post {
    padding: 5em 6em;
  }
  /* line 69, ../scss/breakpoints/_1030up.scss */
  #featured-post .wide-post .title a h1 {
    margin: 0.67em 0 0.2em;
    font-size: 3.15em;
    line-height: 1.6em;
  }
  /* line 76, ../scss/breakpoints/_1030up.scss */
  #featured-post .wide-post .prof-pic {
    height: 60px;
    width: 60px;
  }
  /* line 80, ../scss/breakpoints/_1030up.scss */
  #featured-post .wide-post h4.prof-name, #featured-post .wide-post h4.avatar {
    font-size: 1.85em;
  }

  /* line 86, ../scss/breakpoints/_1030up.scss */
  .hb_description {
    width: 60%;
  }

  /* line 90, ../scss/breakpoints/_1030up.scss */
  .posts-list .author {
    width: 13%;
  }
  /* line 93, ../scss/breakpoints/_1030up.scss */
  .posts-list .prof-pic {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    height: 100px;
    width: 100px;
    margin: 0 15px 0 0;
  }
  /* line 98, ../scss/breakpoints/_1030up.scss */
  .posts-list .post-content {
    width: 74%;
  }
  /* line 101, ../scss/breakpoints/_1030up.scss */
  .posts-list .written {
    float: right;
    width: 13%;
    margin: 5px 0 0;
  }

  /* line 108, ../scss/breakpoints/_1030up.scss */
  #learn-about h3 {
    font-size: 2em;
  }

  /* line 113, ../scss/breakpoints/_1030up.scss */
  #contribute-container .h8 {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  /* line 120, ../scss/breakpoints/_1030up.scss */
  #home-subscribe #subscribe-form input {
    width: 400px;
  }

  /* line 127, ../scss/breakpoints/_1030up.scss */
  .single-post .single-post-top h1 {
    font-size: 3.125em;
  }
  /* line 131, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content {
    margin: -6em auto 0;
  }
  /* line 133, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content .post-content {
    margin: 0 0 0 90px;
  }
  /* line 136, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content p {
    line-height: 1.8em;
  }
  /* line 139, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content .social-share {
    float: right;
    margin: 0 40px 0 0;
    position: relative;
  }
  /* line 143, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content .social-share svg {
    width: 55px;
  }
  /* line 148, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content .social-share .saveArticle:hover:after {
    background: #000;
    content: "SAVE ARTICLE";
    color: white;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: -54px;
    padding: 0px 10px;
    height: 41px;
    line-height: 41px;
    vertical-align: middle;
    font-family: "Avenir", "Arial", "sans-serif";
  }
  /* line 165, ../scss/breakpoints/_1030up.scss */
  .single-post .entry-content .social-share .saveArticle.saved:hover:after {
    content: "SAVED";
    right: 3px;
  }

  /* line 176, ../scss/breakpoints/_1030up.scss */
  .two-col-filter {
    float: left;
    display: inline-block;
    width: 50%;
  }

  /* line 182, ../scss/breakpoints/_1030up.scss */
  .bottom-cta #bottom-cta_image {
    min-height: 35em;
  }

  /* line 188, ../scss/breakpoints/_1030up.scss */
  .wrapLowerFooter .row ul {
    margin: 0;
    float: left;
  }
  /* line 192, ../scss/breakpoints/_1030up.scss */
  .wrapLowerFooter .row ul li .desktop-show {
    display: inline;
  }
  /* line 197, ../scss/breakpoints/_1030up.scss */
  .wrapLowerFooter .row #copyright-text {
    margin: 8px 0 0 0;
    float: left;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 1260px) {
  /* line 205, ../scss/breakpoints/_1030up.scss */
  #wobl-logo {
    width: 20%;
  }

  /* line 209, ../scss/breakpoints/_1030up.scss */
  .main-header #cup_logo,
  .main-nav #cup_logo,
  .log-nav #cup_logo {
    width: 248px;
  }
  /* line 213, ../scss/breakpoints/_1030up.scss */
  .main-header ul.submenu li,
  .main-nav ul.submenu li,
  .log-nav ul.submenu li {
    margin: 0 10px;
    padding: 10px 20px;
  }
  /* line 216, ../scss/breakpoints/_1030up.scss */
  .main-header ul.submenu li a,
  .main-nav ul.submenu li a,
  .log-nav ul.submenu li a {
    font-size: 18px;
  }

  /* line 227, ../scss/partials/_mixins.scss */
  .search-nav #searchform input:-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
  }
  /* line 232, ../scss/partials/_mixins.scss */
  .search-nav #searchform input::-webkit-input-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
  }
  /* line 237, ../scss/partials/_mixins.scss */
  .search-nav #searchform ::-webkit-input-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
  }
  /* line 242, ../scss/partials/_mixins.scss */
  .search-nav #searchform :-ms-input-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
  }
  /* line 247, ../scss/partials/_mixins.scss */
  .search-nav #searchform ::-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
  }
  /* line 252, ../scss/partials/_mixins.scss */
  .search-nav #searchform :-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
  }

  /* line 227, ../scss/breakpoints/_1030up.scss */
  input#s {
    padding-top: 10px !important;
  }

  /* line 230, ../scss/breakpoints/_1030up.scss */
  #main-header {
    padding: 0 20px;
  }

  /* line 234, ../scss/breakpoints/_1030up.scss */
  .main-nav ul.submenu {
    width: 100%;
    left: 0;
    right: 0;
    margin: 2.2em 0 0;
  }
  /* line 239, ../scss/breakpoints/_1030up.scss */
  .main-nav ul.submenu li {
    margin: 0 10px;
    padding: 20px 30px;
  }

  /* line 246, ../scss/breakpoints/_1030up.scss */
  .log-nav ul.submenu {
    width: auto;
    top: auto;
  }
  /* line 250, ../scss/breakpoints/_1030up.scss */
  .log-nav ul.submenu .dropdown li {
    padding: 20px;
    display: table;
  }
}
@media only screen and (min-width: 1030px) {
  /* line 258, ../scss/breakpoints/_1030up.scss */
  .post-container, #featured-post, .square-col, #featured-post, .square-col {
    flex: 1 33%;
  }

  /* line 263, ../scss/breakpoints/_1030up.scss */
  .profile-wrapper .profile-container {
    width: 900px;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 1230px) {
  /* line 270, ../scss/breakpoints/_1030up.scss */
  .log-nav {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1030px) and (max-width: 1200px) {
  /* line 277, ../scss/breakpoints/_1030up.scss */
  .blog-preview-content h4 {
    font-size: 1.15em;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 1200px) and (max-width: 1350px) {
  /* line 281, ../scss/breakpoints/_1030up.scss */
  .blog-preview-content h4 {
    font-size: 1.35em;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1300px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 15, ../scss/breakpoints/_1240up.scss */
  #home-subscribe #subscribe-form input {
    width: 500px;
  }
}
@media only screen and (min-width: 1300px) and (min-width: 1700px) {
  /* line 21, ../scss/breakpoints/_1240up.scss */
  .wrap {
    width: 1700px;
  }

  /* line 26, ../scss/breakpoints/_1240up.scss */
  #home-subscribe #subscribe-form input {
    width: 800px;
  }
}
@media only screen and (min-width: 1300px) {
  /* line 33, ../scss/breakpoints/_1240up.scss */
  .posts-list .author {
    width: 10%;
  }

  /* line 37, ../scss/breakpoints/_1240up.scss */
  .posts-list .post-content {
    width: 77%;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
