/******************************************************************
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/
*********************/
/*CORE BRAFTON COLORS*/
/*End core brafton colors...*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/* Color Options
--------------------------------------------- */
.has-off-black-color {
  color: #424143;
}
.has-off-black-color a {
  color: #424143 !important;
}
.has-off-black-color a:visited, .has-off-black-color a:hover {
  color: #424143;
}

.has-off-black-background-color {
  background-color: #424143;
}

.has-light-gray-color {
  color: #eaedf2;
}
.has-light-gray-color a {
  color: #eaedf2 !important;
}
.has-light-gray-color a:visited, .has-light-gray-color a:hover {
  color: #eaedf2;
}

.has-light-gray-background-color {
  background-color: #eaedf2;
}

.has-meta-gray-color {
  color: #9fa6b4;
}
.has-meta-gray-color a {
  color: #9fa6b4 !important;
}
.has-meta-gray-color a:visited, .has-meta-gray-color a:hover {
  color: #9fa6b4;
}

.has-meta-gray-background-color {
  background-color: #9fa6b4;
}

.has-mid-gray-color {
  color: #e6e7e8;
}
.has-mid-gray-color a {
  color: #e6e7e8 !important;
}
.has-mid-gray-color a:visited, .has-mid-gray-color a:hover {
  color: #e6e7e8;
}

.has-mid-gray-background-color {
  background-color: #e6e7e8;
}

.has-dark-gray, #BCBEC0-color {
  color: "brafton-dark-green", #7BA532;
}
.has-dark-gray a, #BCBEC0-color a {
  color: "brafton-dark-green", #7BA532 !important;
}
.has-dark-gray a:visited, .has-dark-gray a:hover, #BCBEC0-color a:visited, #BCBEC0-color a:hover {
  color: "brafton-dark-green", #7BA532;
}

.has-dark-gray, #BCBEC0-background-color {
  background-color: "brafton-dark-green", #7BA532;
}

.has-navy-blue-color {
  color: #344754;
}
.has-navy-blue-color a {
  color: #344754 !important;
}
.has-navy-blue-color a:visited, .has-navy-blue-color a:hover {
  color: #344754;
}

.has-navy-blue-background-color {
  background-color: #344754;
}

.has-aquamarine-color {
  color: #AFE2E3;
}
.has-aquamarine-color a {
  color: #AFE2E3 !important;
}
.has-aquamarine-color a:visited, .has-aquamarine-color a:hover {
  color: #AFE2E3;
}

.has-aquamarine-background-color {
  background-color: #AFE2E3;
}

.has-aquamans-pants-color {
  color: #87c1bf;
}
.has-aquamans-pants-color a {
  color: #87c1bf !important;
}
.has-aquamans-pants-color a:visited, .has-aquamans-pants-color a:hover {
  color: #87c1bf;
}

.has-aquamans-pants-background-color {
  background-color: #87c1bf;
}

.has-brafton-green-color {
  color: #8CC040;
}
.has-brafton-green-color a {
  color: #8CC040 !important;
}
.has-brafton-green-color a:visited, .has-brafton-green-color a:hover {
  color: #8CC040;
}

.has-brafton-green-background-color {
  background-color: #8CC040;
}

.has-white-color {
  color: #fff;
}
.has-white-color a {
  color: #fff !important;
}
.has-white-color a:visited, .has-white-color a:hover {
  color: #fff;
}

.has-white-background-color {
  background-color: #fff;
}

/******************************************************************
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? */
.brafton-block__list {
  padding: 0;
}
.brafton-block__list .wrap .gray-bar {
  background: transparent;
  text-align: center;
}

.list-type-interactive-reveal {
  display: none;
}
@media only screen and (min-width: 786px) {
  .list-type-interactive-reveal {
    display: block;
  }
}
.list-type-interactive-reveal ol {
  margin-left: 3em;
  margin-top: 0;
}
.list-type-interactive-reveal table td {
  vertical-align: baseline;
}
.list-type-interactive-reveal table img {
  max-height: 50px;
  width: auto;
}
.list-type-interactive-reveal table img ~ * {
  line-height: 50px;
}
.list-type-interactive-reveal .container {
  position: relative;
  overflow: hidden;
}
.list-type-interactive-reveal .container:after {
  position: absolute;
  bottom: 0;
  display: block;
  background: #EAEDF2;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(73%, #eaedf2), color-stop(92%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #eaedf2 73%, rgba(255, 255, 255, 0) 92%);
  width: 100%;
  height: 60px;
  content: "";
  z-index: 1;
}
.list-type-interactive-reveal .container .list-item {
  margin-bottom: 40px;
}
.list-type-interactive-reveal .container .list-item h3 {
  color: white;
  background-color: #B8BABC;
  margin-bottom: 0;
  padding: 0.5em 0.25em;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (min-width: 1030px) {
  .list-type-interactive-reveal .container .list-item h3 {
    padding: 0.5em 1.25em;
    font-size: 24px;
  }
}
.list-type-interactive-reveal .container .list-item h3.active {
  background-color: #8CC040;
}
.list-type-interactive-reveal .container .list-item .text {
  height: 201px;
  min-height: 275px;
  -webkit-transition: 1.2s all ease-in-out;
  transition: 1.2s all ease-in-out;
  margin-right: 2em;
}
.list-type-interactive-reveal .container .list-item .text h3.active ~ .reveal-content {
  z-index: 1;
}
.list-type-interactive-reveal .container .list-item .text .reveal-content, .list-type-interactive-reveal .container .list-item .text .spacer {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  background-color: #EAEDF2;
  padding: 2em 3em;
  min-height: 275px;
  -webkit-transition: 1.2s all ease-in-out;
  transition: 1.2s all ease-in-out;
}
.list-type-interactive-reveal .container .list-item .text .spacer {
  opacity: 1;
}
.list-type-interactive-reveal .container .list-item:first-child .text .reveal-content {
  opacity: 1;
}
.list-type-interactive-reveal .container .list-item:last-of-type .text {
  margin-right: 0;
}
.list-type-interactive-reveal img.open-this-interactive {
  margin: auto;
  display: block;
  position: relative;
  bottom: 50px;
  z-index: 1;
  cursor: pointer;
}
.list-type-interactive-reveal img.open-this-interactive.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.infographics {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.infographics .infographic {
  padding: 0 !important;
}
.infographics .infographic .thumb {
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: top center;
  -webkit-filter: grayscale(70%);
  /* Chrome, Safari, Opera */
  filter: grayscale(70%);
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7) inset;
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7) inset;
}
.infographics .infographic .thumb:hover {
  -webkit-filter: grayscale(0%);
  /* Chrome, Safari, Opera */
  filter: grayscale(0%);
}
.infographics .more {
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.fancybox-inner .fancybox-image {
  margin-top: 40px !important;
}

.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title {
  left: 0;
  right: 20px !important;
  margin: 0 auto;
  max-width: 755px;
  padding: 10px 0px;
  background: rgba(255, 255, 255, 0.7);
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child {
  margin-right: 0 !important;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child .share {
  display: block;
  width: 100%;
  color: #404040;
  font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: none;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child .share a {
  color: #fff;
  height: 22px;
  width: 22px;
  border-radius: 3px;
  margin: 0px 5px;
  display: inline-block;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child .share a.ssb-facebook {
  background: #4267B2;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child .share a.ssb-twitter {
  background: #00ACED;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child .share a.ssb-linked {
  background: #007BB6;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-title span.child .share a:hover {
  opacity: 0.8;
}

.fancybox-title-float-wrap {
  top: 130px;
  bottom: auto !important;
  position: fixed !important;
}
.fancybox-title-float-wrap .child {
  background: transparent !important;
}