@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 12, ../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 31, ../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 42, ../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 52, ../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 67, ../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 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

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

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../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 119, ../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 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../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 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

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

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../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 197, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

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

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

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

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

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

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

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

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

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

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

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../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 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

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

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

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../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 336, ../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 347, ../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 361, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../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 386, ../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 398, ../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 408, ../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).
 */
/* line 420, ../scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 441, ../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 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

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

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
/* line 490, ../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 497, ../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/
*********************/
/* line 58, ../scss/partials/_variables.scss */
::-webkit-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

/* line 59, ../scss/partials/_variables.scss */
:-moz-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

/* line 60, ../scss/partials/_variables.scss */
::-moz-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

/* line 61, ../scss/partials/_variables.scss */
:-ms-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

/* ====================
   SLICKJS
   ==================== */
/* line 4, ../scss/partials/_plugins.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 18, ../scss/partials/_plugins.scss */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* line 25, ../scss/partials/_plugins.scss */
.slick-list:focus {
  outline: none;
}

/* line 28, ../scss/partials/_plugins.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 32, ../scss/partials/_plugins.scss */
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 39, ../scss/partials/_plugins.scss */
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

/* line 45, ../scss/partials/_plugins.scss */
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}

/* line 49, ../scss/partials/_plugins.scss */
.slick-track:after {
  clear: both;
}

/* line 52, ../scss/partials/_plugins.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 55, ../scss/partials/_plugins.scss */
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

/* line 61, ../scss/partials/_plugins.scss */
[dir='rtl'] .slick-slide {
  float: right;
}

/* line 64, ../scss/partials/_plugins.scss */
.slick-slide img {
  display: block;
}

/* line 67, ../scss/partials/_plugins.scss */
.slick-slide.slick-loading img {
  display: none;
}

/* line 70, ../scss/partials/_plugins.scss */
.slick-slide.dragging img {
  pointer-events: none;
}

/* line 73, ../scss/partials/_plugins.scss */
.slick-initialized .slick-slide {
  display: block;
}

/* line 76, ../scss/partials/_plugins.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}

/* line 79, ../scss/partials/_plugins.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 84, ../scss/partials/_plugins.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* ====================
   RESPONSIVE NAV JS
   ==================== */
/* line 90, ../scss/partials/_plugins.scss */
.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

/* line 97, ../scss/partials/_plugins.scss */
.nav-collapse li {
  width: 100%;
  display: block;
}

/* line 101, ../scss/partials/_plugins.scss */
.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

/* line 109, ../scss/partials/_plugins.scss */
.nav-collapse.opened {
  max-height: 9999px;
}

/* line 112, ../scss/partials/_plugins.scss */
.nav-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 768px) {
  /* line 123, ../scss/partials/_plugins.scss */
  .js .nav-collapse {
    position: relative;
  }

  /* line 126, ../scss/partials/_plugins.scss */
  .js .nav-collapse.closed {
    max-height: none;
  }

  /* line 129, ../scss/partials/_plugins.scss */
  .nav-toggle {
    display: none;
  }
}
/* ====================
   JQUERY MODAL
   ==================== */
/* line 136, ../scss/partials/_plugins.scss */
.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

/* line 152, ../scss/partials/_plugins.scss */
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

/* line 159, ../scss/partials/_plugins.scss */
.blocker.behind {
  background-color: transparent;
}

/* line 162, ../scss/partials/_plugins.scss */
.modal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  width: 400px;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

/* line 182, ../scss/partials/_plugins.scss */
.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAABGdBTUEAANjr9RwUqgAAACBjSFJNAABtmAAAc44AAPJxAACDbAAAg7sAANTIAAAx7AAAGbyeiMU/AAAG7ElEQVR42mJkwA8YoZjBwcGB6fPnz4w/fvxg/PnzJ2N6ejoLFxcX47Rp036B5Dk4OP7z8vL+P3DgwD+o3v9QjBUABBALHguZoJhZXV2dVUNDgxNIcwEtZnn27Nl/ZmZmQRYWFmag5c90dHQY5OXl/z98+PDn1atXv79+/foPUN9fIP4HxRgOAAggRhyWMoOwqKgoq6GhIZe3t7eYrq6uHBDb8/Pz27Gysloga/jz588FYGicPn/+/OapU6deOnXq1GdgqPwCOuA31AF/0S0HCCB0xAQNBU4FBQWB0NBQublz59oADV37Hw28ePHi74MHD/6ii3/8+HEFMGQUgQ6WEhQU5AeZBTWTCdkigABC9ylIAZeMjIxQTEyMysaNG/3+/v37AGTgr1+//s2cOfOXm5vbN6Caz8jY1NT0a29v76/v37//g6q9sHfv3khjY2M5YAgJgsyEmg0PYYAAQreUk4+PT8jd3V1l1apVgUAzfoIM2rlz5x9gHH5BtxAdA9PB1zNnzvyB+R6oLxoopgC1nBPZcoAAgiFQnLIDMb+enp5iV1eXBzDeHoI0z58//xcwIX0mZCkMg9S2trb+hFk+ffr0QCkpKVmQ2VA7QHYxAgQQzLesQMwjIiIilZWVZfPu3bstMJ+SYikyBmUzkBnA9HEMyNcCYgmQHVC7mAACCJagOEBBbGdnp7lgwYJEkIavX7/+BcY1SvAaGRl9tba2xohjMTGxL8nJyT+AWQsuxsbG9vnp06e/QWYdPHiwHmiWKlBcCGQXyNcAAQSzmBuoSQqYim3u37+/EKR48uTJv5ANB+bVr7Dga2xs/AkTV1JS+gq0AJyoQIkPWU9aWtoPkPibN2/2A/l6QCwJ9TULQADB4hcY//xKXl5eHt++fbsAUmxhYYHiM1DiAsr9R7ZcVVUVbikIdHd3/0TWIyws/AWYVsByAgICdkAxRSAWAGI2gACClV7C4uLiOv7+/lEgRZ8+ffqLLd6ABck3ZMuB6uCWrlu37je29HDx4kVwQisvL88FFqkaQDERUHADBBAomBl5eHiYgQmLE1hSgQQZgIUD1lJm69atf4HR8R1YKoH5QIPAWWP9+vV/gOI/gHkeQw+wGAXTwAJJ5t+/f/BUDRBA4NIEKMDMyMjICtQIiniG379/4yza7t69+//Lly8oDrty5co/bJaCAEwcZCkwwTJDLWYCCCCwxcDgY3z16hXDnTt3voP4EhISWA0BFgZMwNqHExh3jMiG1tbWsgHjnA2bHmAeBtdWwOL1MycnJ7wAAQggBmi+kgIW/OaKiorJwOLuFShO0LMSMPF9AUYBSpz6+vqixHlOTs4P9MIEWHaDsxSwYMoE2mEGFJcG5SKAAGJCqjv/AbPUn8ePH98ACQQHB6NUmZqamkzABIgSp5s3bwbHORCA1QDLAWZkPc7OzszA8oHl5cuXVy5duvQBGIXwWgoggGA+FgO6xkBNTS28r69vDrT2+Y1cIMDyJchX6KkXVEmAshd6KB06dAic94EO3AzkBwGxPhCLg8ptgACCZyeQp9jZ2b2AmsuAefM8tnxJCk5ISPgOLTKfAdNEOVDMA2QHLDsBBBC8AAFlbmCLwlZISCg5JSVlJizeQAaQaimoWAUFK0g/sGGwHiiWCMS2yAUIQAAxI7c4gEmeFZi4OJ48ecLMzc39CRiEmgEBASxA/QzA8vYvAxEgNjaWZc2aNezAsprp2LFjp4FpZRdQ+AkQvwLij0AMSoC/AQIIXklAC3AVUBoBxmE8sPXQAiyvN8J8fuPGjR/h4eHf0eMdhkENhOPHj8OT+NGjR88BxZuBOA5kJtRseCUBEECMSI0AdmgBDooDaaDl8sASTSkyMlKzpqZGU1paGlS7MABLrX83b978A6zwwakTmE0YgIkSnHpBfGCV+gxYh98qKSk5CeTeAxVeQPwUiN8AMSjxgdLNX4AAYkRqCLBAXcMHtVwSaLkMMMHJAvOq9IQJE9R8fHxElJWV1bEF8aNHj+7t27fvLTDlXwXGLyhoH0OD+DnU0k/QYAa1QP8BBBAjWsuSFWo5LzRYxKFYAljqiAHzqxCwIBEwMTERBdZeoOYMA7Bl+RFYEbwB5oS3IA9D4/IFEL+E4nfQ6IDFLTgvAwQQI5ZmLRtSsINSuyA0uwlBUyQPMPWD20/AKo8ByP4DTJTfgRgUjB+gFoEc8R6amGDB+wu5mQsQQIxYmrdMUJ+zQTM6NzQEeKGO4UJqOzFADQMZ/A1qCSzBfQXi71ALfyM17sEAIIAY8fQiWKAYFgIwzIbWTv4HjbdfUAf8RPLhH1icojfoAQKIEU8bG9kRyF0aRiz6YP0k5C4LsmUY9TtAADEyEA+IVfufGEUAAQYABejinPr4dLEAAAAASUVORK5CYII=") no-repeat 0 0;
}

/* line 192, ../scss/partials/_plugins.scss */
.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url("data:image/gif;base64,R0lGODlhIAAgAPMAABEREf///0VFRYKCglRUVG5ubsvLy62trTQ0NCkpKU5OTuLi4vr6+gAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQACgABACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQACgACACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkEAAoAAwAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkEAAoABAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAAKAAUALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAAKAAYALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQACgAHACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAAKAAgALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAAKAAkALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQACgAKACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkEAAoACwAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==") #111 no-repeat center center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

/******************************************************************
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;
  }
*/
/*
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.
*/
/* Google Font added in functions.php */
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 60, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}

/******************************************************************
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%;
  }
}
/*********************
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: #e8dc59;
  background: #ebe16f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

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

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/******************************************************************
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: "Source Sans Pro", 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;
}

/*
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 62, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9;
}
/* line 66, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #2574a8;
}
/* line 71, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #2472a4;
}

/******************************************************************
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 22, ../scss/modules/_forms.scss */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #5c6b80;
}

/* line 25, ../scss/modules/_forms.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: #5c6b80;
}

/* line 28, ../scss/modules/_forms.scss */
:-ms-input-placeholder {
  /* IE 10+ */
  color: #5c6b80;
}

/* line 31, ../scss/modules/_forms.scss */
:-moz-placeholder {
  /* Firefox 18- */
  color: #5c6b80;
}

/* line 38, ../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="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #a5a5a5;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #d9d9d9;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
/* line 73, ../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="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #e3e3e3;
  outline: none;
}
/* line 80, ../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="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  background-color: #fbe3e4;
}
/* line 87, ../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="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  background-color: #e6efc2;
}
/* line 93, ../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="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 99, ../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="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].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,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.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: #d5edf8;
}

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

/* line 114, ../scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/* line 121, ../scss/modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/* line 131, ../scss/modules/_forms.scss */
#gform_fields_5 {
  float: left;
  margin-bottom: 40px !important;
  width: 100%;
}

/* line 137, ../scss/modules/_forms.scss */
.gform_body .full-width-field {
  width: 100%;
}

/* line 142, ../scss/modules/_forms.scss */
.ginput_container_address input {
  margin-bottom: 0;
}
/* line 146, ../scss/modules/_forms.scss */
.ginput_container_address label {
  font-weight: 300;
  margin-top: 0;
  text-transform: none;
}

/*********************
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:
Author:

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.

******************************************************************/
/* Magnific Popup CSS */
/* line 15, ../scss/breakpoints/_base.scss */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

/* line 26, ../scss/breakpoints/_base.scss */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

/* line 36, ../scss/breakpoints/_base.scss */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

/* line 46, ../scss/breakpoints/_base.scss */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 52, ../scss/breakpoints/_base.scss */
.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 55, ../scss/breakpoints/_base.scss */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

/* line 63, ../scss/breakpoints/_base.scss */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 68, ../scss/breakpoints/_base.scss */
.mfp-ajax-cur {
  cursor: progress;
}

/* line 71, ../scss/breakpoints/_base.scss */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* line 76, ../scss/breakpoints/_base.scss */
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 82, ../scss/breakpoints/_base.scss */
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 85, ../scss/breakpoints/_base.scss */
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 93, ../scss/breakpoints/_base.scss */
.mfp-loading.mfp-figure {
  display: none;
}

/* line 96, ../scss/breakpoints/_base.scss */
.mfp-hide {
  display: none !important;
}

/* line 99, ../scss/breakpoints/_base.scss */
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

/* line 109, ../scss/breakpoints/_base.scss */
.mfp-preloader a {
  color: #CCC;
}

/* line 111, ../scss/breakpoints/_base.scss */
.mfp-preloader a:hover {
  color: #FFF;
}

/* line 114, ../scss/breakpoints/_base.scss */
.mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 117, ../scss/breakpoints/_base.scss */
.mfp-s-error .mfp-content {
  display: none;
}

/* line 120, ../scss/breakpoints/_base.scss */
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

/* line 134, ../scss/breakpoints/_base.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 138, ../scss/breakpoints/_base.scss */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

/* line 153, ../scss/breakpoints/_base.scss */
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

/* line 156, ../scss/breakpoints/_base.scss */
.mfp-close:active {
  top: 1px;
}

/* line 159, ../scss/breakpoints/_base.scss */
.mfp-close-btn-in .mfp-close {
  color: #333;
}

/* line 162, ../scss/breakpoints/_base.scss */
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

/* line 170, ../scss/breakpoints/_base.scss */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

/* line 179, ../scss/breakpoints/_base.scss */
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

/* line 189, ../scss/breakpoints/_base.scss */
.mfp-arrow:active {
  margin-top: -54px;
}

/* line 191, ../scss/breakpoints/_base.scss */
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

/* line 194, ../scss/breakpoints/_base.scss */
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

/* line 206, ../scss/breakpoints/_base.scss */
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

/* line 210, ../scss/breakpoints/_base.scss */
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

/* line 215, ../scss/breakpoints/_base.scss */
.mfp-arrow-left {
  left: 0;
}

/* line 217, ../scss/breakpoints/_base.scss */
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

/* line 220, ../scss/breakpoints/_base.scss */
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

/* line 224, ../scss/breakpoints/_base.scss */
.mfp-arrow-right {
  right: 0;
}

/* line 226, ../scss/breakpoints/_base.scss */
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

/* line 229, ../scss/breakpoints/_base.scss */
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

/* line 232, ../scss/breakpoints/_base.scss */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 235, ../scss/breakpoints/_base.scss */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

/* line 239, ../scss/breakpoints/_base.scss */
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* line 242, ../scss/breakpoints/_base.scss */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

/* line 247, ../scss/breakpoints/_base.scss */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
/* line 258, ../scss/breakpoints/_base.scss */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
/* line 269, ../scss/breakpoints/_base.scss */
.mfp-figure {
  line-height: 0;
}

/* line 271, ../scss/breakpoints/_base.scss */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

/* line 284, ../scss/breakpoints/_base.scss */
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

/* line 289, ../scss/breakpoints/_base.scss */
.mfp-figure figure {
  margin: 0;
}

/* line 292, ../scss/breakpoints/_base.scss */
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 300, ../scss/breakpoints/_base.scss */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

/* line 307, ../scss/breakpoints/_base.scss */
.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 310, ../scss/breakpoints/_base.scss */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  /* line 317, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 320, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  /* line 322, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  /* line 325, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  /* line 328, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  /* line 336, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  /* line 338, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  /* line 341, ../scss/breakpoints/_base.scss */
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  /* line 353, ../scss/breakpoints/_base.scss */
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  /* line 356, ../scss/breakpoints/_base.scss */
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  /* line 359, ../scss/breakpoints/_base.scss */
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  /* line 362, ../scss/breakpoints/_base.scss */
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*********************
GENERAL STYLES
*********************/
/* line 369, ../scss/breakpoints/_base.scss */
html.no-scroll,
html.no-scroll body,
html.js-nav-active,
html.js-nav-active body {
  overflow-x: hidden;
}

/* line 375, ../scss/breakpoints/_base.scss */
body.no-scroll {
  position: relative;
}

/* line 378, ../scss/breakpoints/_base.scss */
.admin-bar .header {
  top: 32px !important;
}

/* line 379, ../scss/breakpoints/_base.scss */
html, body {
  height: 100%;
}

/* line 383, ../scss/breakpoints/_base.scss */
body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 393, ../scss/breakpoints/_base.scss */
p, li {
  letter-spacing: 0.01em;
}

/* line 396, ../scss/breakpoints/_base.scss */
.hr, hr {
  width: 100%;
  clear: both;
  border: 0;
  height: 1px;
  background: #d9d9d9;
  margin: 25px 0;
}

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

/* line 407, ../scss/breakpoints/_base.scss */
.clear {
  clear: both;
}

/* line 410, ../scss/breakpoints/_base.scss */
.orange {
  color: #f8971d;
}

/* line 413, ../scss/breakpoints/_base.scss */
img {
  height: auto;
  max-width: 100%;
}

/* line 417, ../scss/breakpoints/_base.scss */
.bg-cover {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* line 425, ../scss/breakpoints/_base.scss */
.mobile-show {
  display: block;
}

/* line 428, ../scss/breakpoints/_base.scss */
.mobile-hide {
  display: none;
}

/* line 432, ../scss/breakpoints/_base.scss */
ul, ol {
  margin-left: 20px;
}

/* line 435, ../scss/breakpoints/_base.scss */
.centered {
  text-align: center;
}
/* line 437, ../scss/breakpoints/_base.scss */
.centered p {
  text-align: center;
}
/* line 440, ../scss/breakpoints/_base.scss */
.centered .button {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}

/* line 446, ../scss/breakpoints/_base.scss */
.button, input[type=submit], .blue-btn, .comment-reply-link, #submit, #submit, .comment-reply-link, #searchsubmit, .page-numbers li a,
.malinky-load-more a {
  background: transparent !important;
  border: 2px solid #000;
  text-transform: uppercase;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 10px 30px !important;
  line-height: 15px !important;
  color: #000 !important;
  text-decoration: none;
  white-space: nowrap;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}
/* line 461, ../scss/breakpoints/_base.scss */
.button:hover, input[type=submit]:hover, .blue-btn:hover, .comment-reply-link:hover, #submit:hover, #submit:hover, .comment-reply-link:hover, #searchsubmit:hover, .page-numbers li a:hover,
.malinky-load-more a:hover {
  border-color: #000 !important;
  background-color: #000 !important;
  color: #fff !important;
}

/* line 467, ../scss/breakpoints/_base.scss */
.white-button {
  color: #fff !important;
  border-color: #fff;
}
/* line 470, ../scss/breakpoints/_base.scss */
.white-button:hover {
  border-color: #000 !important;
  background-color: #000 !important;
  color: #fff !important;
}

/* line 476, ../scss/breakpoints/_base.scss */
.orange-button {
  color: #f8971d;
  border: 2px solid #f8971d;
}
/* line 479, ../scss/breakpoints/_base.scss */
.orange-button:hover {
  color: #000 !important;
  border-color: #f8971d !important;
  background-color: #f8971d !important;
}

/* line 485, ../scss/breakpoints/_base.scss */
.tribe-utility {
  /*&:hover {
      border-color:$gerber-orange!important;
      background-color:$gerber-orange!important;
      a {
        color:$black!important;
      }
  }*/
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 498, ../scss/breakpoints/_base.scss */
.wrap {
  width: 96%;
  margin: 0 auto;
}

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

/* line 506, ../scss/breakpoints/_base.scss */
.text-left {
  text-align: left;
}

/* line 509, ../scss/breakpoints/_base.scss */
.text-right {
  text-align: right;
}

/*********************
LINK STYLES
*********************/
/* line 518, ../scss/breakpoints/_base.scss */
a, a:visited {
  color: #f8971d;
  outline: none !important;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 522, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #e08007;
  cursor: pointer;
}
/* line 533, ../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 STYLES
******************************************************************/
/* line 547, ../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 556, ../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 561, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
}

/* line 569, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* line 576, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 25px 0;
  padding: 0;
  color: #000;
  letter-spacing: 0.08em;
}

/* line 585, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* line 591, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER STYLES
*********************/
/* line 601, ../scss/breakpoints/_base.scss */
.blocker {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
}

@media (max-width: 767px) {
  /* line 606, ../scss/breakpoints/_base.scss */
  .single-badassador .custom-header h1,
  .single-partner .custom-header h1 {
    display: none;
  }
}
/* line 611, ../scss/breakpoints/_base.scss */
.custom-header {
  float: left;
  position: relative;
  width: 100%;
  max-height: 435px;
  overflow: hidden;
}
/* line 618, ../scss/breakpoints/_base.scss */
.custom-header h1 {
  text-align: left;
  color: #fff;
  width: 70%;
}
/* line 624, ../scss/breakpoints/_base.scss */
.custom-header .header-img {
  float: left;
  position: relative;
  width: 150%;
  max-width: none;
  left: -25%;
}
/* line 631, ../scss/breakpoints/_base.scss */
.custom-header .header-content {
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 100%;
}
/* line 640, ../scss/breakpoints/_base.scss */
.custom-header .header-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin: 0 auto 0 auto;
  width: 80%;
  display: none;
}

/* line 650, ../scss/breakpoints/_base.scss */
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input, .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin-top: 1px !important;
}

/* line 654, ../scss/breakpoints/_base.scss */
header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  background: #000;
}
/* line 661, ../scss/breakpoints/_base.scss */
header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:hover a.mega-menu-link, header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:hover {
  font-weight: bold;
}

/* line 665, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav #mega-menu-mobile-main-nav > li ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  display: block;
  background: #f1f1f1;
  color: #666;
  font-family: inherit;
  font-size: 14px;
  padding: 0px 10px 0px 10px;
  line-height: 35px;
  text-decoration: none;
  text-transform: none;
  vertical-align: baseline;
  font-weight: bold;
  text-transform: uppercase;
}

/* line 680, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav .recent-posts-widget-with-thumbnails {
  display: none !important;
}
/* line 682, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav .recent-posts-widget-with-thumbnails .textwidget p {
  display: none;
}
/* line 685, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav .recent-posts-widget-with-thumbnails .textwidget > a {
  display: block;
}

/* line 697, ../scss/breakpoints/_base.scss */
.home .more-link {
  position: relative;
  top: -25px;
}

/* line 702, ../scss/breakpoints/_base.scss */
.fixed-header {
  background-color: #000 !important;
  display: none;
}

/* line 707, ../scss/breakpoints/_base.scss */
#desktop-nav,
#desktop-utility {
  display: none;
}

/* line 710, ../scss/breakpoints/_base.scss */
#mobile-search-button {
  right: 0;
  position: absolute;
  top: 0;
}

/* line 715, ../scss/breakpoints/_base.scss */
.search-button a {
  outline: none;
}

/* line 716, ../scss/breakpoints/_base.scss */
.header {
  background-color: #000;
  top: 0px;
  width: 100%;
  z-index: 100;
}
/* line 722, ../scss/breakpoints/_base.scss */
.header .wrap {
  min-height: 58px;
  position: relative;
  width: 100%;
}

/* line 729, ../scss/breakpoints/_base.scss */
#logo {
  text-align: center;
  margin-top: 5px;
  height: 53px;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 729, ../scss/breakpoints/_base.scss */
  #logo {
    margin-left: 80px;
    width: auto;
  }
}
/* line 739, ../scss/breakpoints/_base.scss */
#logo p {
  margin: 0;
}
/* line 740, ../scss/breakpoints/_base.scss */
#logo a {
  align-items: center;
  color: #fff;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  text-decoration: none;
}
/* line 751, ../scss/breakpoints/_base.scss */
#logo .header-shop-link {
  display: none;
}
/* line 752, ../scss/breakpoints/_base.scss */
#logo span {
  display: inline-block;
  font-size: 28px;
  margin-left: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  /* line 752, ../scss/breakpoints/_base.scss */
  #logo span {
    font-size: 20px;
  }
}

/* line 764, ../scss/breakpoints/_base.scss */
.utility-list {
  font-size: 14px;
  list-style: none;
  margin-left: 0;
  text-transform: uppercase;
}
/* line 769, ../scss/breakpoints/_base.scss */
.utility-list .tribe-utility a {
  font-weight: 700;
}
/* line 772, ../scss/breakpoints/_base.scss */
.utility-list a {
  color: #fff;
  text-decoration: none;
}
/* line 775, ../scss/breakpoints/_base.scss */
.utility-list a:hover {
  color: #fff !important;
  text-decoration: underline;
}
/* line 778, ../scss/breakpoints/_base.scss */
.utility-list a:hover .c-gerber-orange {
  color: #fff !important;
}
/* line 784, ../scss/breakpoints/_base.scss */
.utility-list .header-shop-link .c-gerber-orange {
  font-weight: 600;
}

/* line 791, ../scss/breakpoints/_base.scss */
#mobile-utility .badassador-utility {
  padding: 19px 0 18px 0;
}
/* line 793, ../scss/breakpoints/_base.scss */
#mobile-utility .badassador-utility a:hover {
  color: #fff;
}
/* line 795, ../scss/breakpoints/_base.scss */
#mobile-utility .tribe-utility a {
  background-color: #363636;
  display: inline-block;
  max-width: 299px;
  padding: 10px 0;
  width: 100%;
}
/* line 801, ../scss/breakpoints/_base.scss */
#mobile-utility .tribe-utility a:hover {
  color: #fff;
}
/* line 804, ../scss/breakpoints/_base.scss */
#mobile-utility .header-shop-link {
  padding: 16px 0;
}
/* line 806, ../scss/breakpoints/_base.scss */
#mobile-utility .header-shop-link a {
  background-color: #f8971d;
  color: #000;
  display: inline-block;
  font-weight: 700;
  max-width: 299px;
  padding: 10px 0;
  width: 100%;
}

/* line 818, ../scss/breakpoints/_base.scss */
.badassador-utility a {
  background-image: url("../images/icon-badassador.png");
  background-repeat: no-repeat;
  background-size: 27px auto;
  display: inline-block;
  height: 32px;
  padding-left: 38px;
  padding-top: 5px;
}

/* line 828, ../scss/breakpoints/_base.scss */
#search-form {
  background: transparent none repeat scroll 0% 0%;
  box-shadow: none;
  left: 0px;
  padding-top: 150px;
  position: absolute;
  top: 0px;
  width: 100%;
}
/* line 837, ../scss/breakpoints/_base.scss */
#search-form input {
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
/* line 843, ../scss/breakpoints/_base.scss */
#search-form form {
  width: 75%;
  margin: 0 auto;
  position: relative;
}
/* line 848, ../scss/breakpoints/_base.scss */
#search-form label {
  display: none;
}
/* line 852, ../scss/breakpoints/_base.scss */
#search-form input {
  background: transparent;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  max-width: 100%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 0 0 15px 0 !important;
  line-height: normal !important;
  height: auto !important;
  -webkit-appearance: none;
}
/* line 869, ../scss/breakpoints/_base.scss */
#search-form #searchsubmit {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 24px !important;
  height: 25px;
}
/* line 879, ../scss/breakpoints/_base.scss */
#search-form #searchsubmit:before {
  font-family: "FontAwesome";
  content: "\f002";
  color: #838383;
}
/* line 885, ../scss/breakpoints/_base.scss */
#search-form.modal a.close-modal {
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  height: auto;
  right: 0px;
  text-decoration: none;
  text-indent: 0;
  top: -120px;
  width: auto;
  display: none;
}
/* line 897, ../scss/breakpoints/_base.scss */
#search-form.modal a.close-modal:after {
  font-family: "FontAwesome";
  content: "\f00d";
  font-size: 24px;
  padding-left: 10px;
  position: relative;
  top: 2px;
}

/* line 907, ../scss/breakpoints/_base.scss */
.inside-modal {
  display: block !important;
}

/* line 910, ../scss/breakpoints/_base.scss */
#search-cats {
  color: #838383;
  font-size: 14px;
  margin-top: 10x;
}
/* line 914, ../scss/breakpoints/_base.scss */
#search-cats ul {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 917, ../scss/breakpoints/_base.scss */
#search-cats ul li {
  list-style-type: none;
  margin-right: 30px !important;
  padding: 0;
}
/* line 922, ../scss/breakpoints/_base.scss */
#search-cats ul li a {
  margin: 0 !important;
  font-size: 14px;
  padding: 0 !important;
}

/* line 931, ../scss/breakpoints/_base.scss */
.mobile-nav-search {
  border-bottom: 1px solid #838383;
  float: left;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
}
/* line 938, ../scss/breakpoints/_base.scss */
.mobile-nav-search form {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
}
/* line 947, ../scss/breakpoints/_base.scss */
.mobile-nav-search input[type=search] {
  background-color: #fff;
  color: #000;
  height: 32px;
  margin-bottom: 0;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* line 957, ../scss/breakpoints/_base.scss */
.mobile-nav-search input[type=search]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000 !important;
}
/* line 960, ../scss/breakpoints/_base.scss */
.mobile-nav-search input[type=search]::-moz-placeholder {
  /* Firefox 19+ */
  color: #000 !important;
}
/* line 963, ../scss/breakpoints/_base.scss */
.mobile-nav-search input[type=search]:-ms-input-placeholder {
  /* IE 10+ */
  color: #000 !important;
}
/* line 966, ../scss/breakpoints/_base.scss */
.mobile-nav-search input[type=search]:-moz-placeholder {
  /* Firefox 18- */
  color: #000 !important;
}
/* line 971, ../scss/breakpoints/_base.scss */
.mobile-nav-search button {
  background: none;
  border: none;
  margin-left: 7px;
  margin-top: 6px;
  padding: 0;
  width: 19px;
}

/*********************
SEARCH RESULTS
*********************/
/* line 985, ../scss/breakpoints/_base.scss */
.search-results .result {
  margin: 25px 0;
  padding: 25px 0 0 0;
  border-top: 1px solid #d9d9d9;
}
/* line 989, ../scss/breakpoints/_base.scss */
.search-results .result header {
  height: 250px;
}
/* line 992, ../scss/breakpoints/_base.scss */
.search-results .result header.bg-cover {
  display: none !important;
}
/* line 995, ../scss/breakpoints/_base.scss */
.search-results .result section {
  text-align: left;
}
/* line 997, ../scss/breakpoints/_base.scss */
.search-results .result section .read-more {
  color: #000;
  font-weight: 700;
}
/* line 1001, ../scss/breakpoints/_base.scss */
.search-results .result section h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 0;
}
/* line 1008, ../scss/breakpoints/_base.scss */
.search-results .result section h2 {
  font-size: 25px;
  line-height: 33px;
  font-weight: 600;
  margin: 5px 0 0 0;
  padding: 0;
}
/* line 1014, ../scss/breakpoints/_base.scss */
.search-results .result section h2 a {
  color: #000;
}

/* line 1021, ../scss/breakpoints/_base.scss */
.page-numbers {
  margin-top: 45px !important;
}
/* line 1024, ../scss/breakpoints/_base.scss */
.page-numbers li {
  list-style-type: none;
  padding: 0 5px !important;
  border: 0 !important;
}
/* line 1028, ../scss/breakpoints/_base.scss */
.page-numbers li a {
  padding: 12px !important;
}
/* line 1032, ../scss/breakpoints/_base.scss */
.page-numbers li:before {
  content: " " !important;
}

/* line 1036, ../scss/breakpoints/_base.scss */
.malinky-load-more {
  clear: both;
  position: relative;
}

/*********************
PAGE BANNER STYLES
*********************/
/* line 1044, ../scss/breakpoints/_base.scss */
#page-banner {
  position: relative;
  background-color: #000;
}
/* line 1047, ../scss/breakpoints/_base.scss */
#page-banner h1 {
  margin: 0;
  padding: 90px 0;
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 9;
}

/* line 1058, ../scss/breakpoints/_base.scss */
.banner-overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  background-image: url(../images/post-overlay-wide.png);
}

/*********************
NAVIGATION STYLES
*********************/
/* line 1070, ../scss/breakpoints/_base.scss */
.js header .nav-collapse-0.opened {
  max-height: none !important;
}

/* line 1073, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav {
  background: #000 !important;
}

/* line 1076, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav #mega-menu-mobile-main-nav > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  color: #000 !important;
}
/* line 1078, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav #mega-menu-mobile-main-nav > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
  background: transparent !important;
  text-decoration: underline !important;
}

/* line 1083, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav #mega-menu-mobile-main-nav a {
  font-weight: bold !important;
  text-transform: uppercase !important;
}

/* line 1087, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav #mega-menu-mobile-main-nav > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item,
#mobile-nav #mega-menu-main-nav > li.mega-menu-item ul li {
  border-bottom: 1px solid #ccc !important;
}

/* line 1091, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-mobile-main-nav #mega-menu-mobile-main-nav > li.mega-menu-item,
#mobile-nav #mega-menu-main-nav > li.mega-menu-item {
  border-bottom: 1px solid #838383 !important;
}

/* line 1098, ../scss/breakpoints/_base.scss */
#mobile-nav #mega-menu-main-nav ul.mega-sub-menu {
  min-height: 0 !important;
  padding: 0 !important;
}
/* line 1101, ../scss/breakpoints/_base.scss */
#mobile-nav #mega-menu-main-nav ul.mega-sub-menu .mega-menu-item {
  width: 100% !important;
}
/* line 1103, ../scss/breakpoints/_base.scss */
#mobile-nav #mega-menu-main-nav ul.mega-sub-menu .mega-menu-item a:focus {
  background: #ddd;
}
/* line 1107, ../scss/breakpoints/_base.scss */
#mobile-nav #mega-menu-main-nav ul.mega-sub-menu .widget_text {
  display: none !important;
}

/* line 1114, ../scss/breakpoints/_base.scss */
.nav-toggle {
  background-image: url("../images/mobile-menu-thick.jpg");
  background-position: center;
  background-size: cover;
  border-right: 1px solid #505050;
  height: 58px;
  position: absolute;
  left: 0;
  text-indent: -9999px;
  top: 0;
  width: 68px;
}

/* line 1127, ../scss/breakpoints/_base.scss */
#home-nav {
  display: none;
}

/* line 1131, ../scss/breakpoints/_base.scss */
#mobile-nav {
  background-color: #000;
  border-top: 1px solid #252525;
  clip: auto;
  position: absolute !important;
  width: 100%;
  z-index: 1000;
}
/* line 1138, ../scss/breakpoints/_base.scss */
#mobile-nav .mobile-nav li {
  border-bottom: 1px solid #252525;
}
/* line 1141, ../scss/breakpoints/_base.scss */
#mobile-nav li {
  text-align: center;
}

/* line 1145, ../scss/breakpoints/_base.scss */
.ssba img {
  margin-top: 15px !important;
  margin-left: 10px !important;
}

/*
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 1158, ../scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 1162, ../scss/breakpoints/_base.scss */
.nav li {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  /*
  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 1166, ../scss/breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 17px 12px 17px;
  /*
  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 1199, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
/*********************
FEATURED CONTENT BLOCK
*********************/
/* line 1234, ../scss/breakpoints/_base.scss */
.featured-content-blocks {
  margin: 45px 0;
}
/* line 1236, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block {
  width: 100%;
  position: relative;
  margin-bottom: 1.5%;
}
/* line 1240, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .fa-plus {
  color: #f8971d;
  position: absolute;
  right: 20px;
  bottom: 22px;
  font-size: 24px;
}
/* line 1246, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .fa-plus a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 1252, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
}
/* line 1257, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap .button {
  width: 100%;
  display: block;
  text-align: center;
}
/* line 1262, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap h2 {
  font-size: 31px;
  line-height: 31px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 5px 0 0 0;
  padding: 0 30px 0 0;
  color: #fff;
}
/* line 1270, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap h2 a {
  color: #fff;
}
/* line 1274, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap h4 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #f8971d;
}
/* line 1281, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap h4 a {
  color: #f8971d;
}
/* line 1285, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-title-wrap p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  padding: 0 30px 0 0;
  margin: 20px 0 10px 0;
}
/* line 1294, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .featured-image-wrap {
  height: 430px;
  width: 100%;
  display: block;
  background-position: top center;
  background-color: #000;
  overflow: hidden;
}
/* line 1302, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block .no-featured {
  background-image: url(../images/default-image.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #cccccc;
}
/* line 1310, ../scss/breakpoints/_base.scss */
.featured-content-blocks .featured-content-block:hover .post-overlay,
.featured-content-blocks .featured-content-block:hover .post-overlay-dark {
  background: url(../images/post-overlay-hover.png) !important;
}

/* line 1317, ../scss/breakpoints/_base.scss */
.post-overlay,
.post-overlay-link,
.post-overlay-dark {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  background: url(../images/post-overlay.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* line 1334, ../scss/breakpoints/_base.scss */
.post-overlay-link {
  background: url(../images/post-overlay.png) !important;
}

/* line 1337, ../scss/breakpoints/_base.scss */
.post-overlay-dark {
  background: url(../images/post-overlay-dark.png) !important;
}

/*********************
HOME STYLES
*********************/
/* line 1344, ../scss/breakpoints/_base.scss */
.home .header-byline {
  font-size: 2em;
  font-weight: bold;
}
/* line 1348, ../scss/breakpoints/_base.scss */
.home .header-bar {
  margin: 5px auto 10px;
  width: 45px;
  height: 5px;
  background: #f8971d;
  border-radius: 5px;
}
/* line 1355, ../scss/breakpoints/_base.scss */
.home .header-subtitle {
  font-size: 13px;
  font-weight: 300;
}
/* line 1360, ../scss/breakpoints/_base.scss */
.home #grid-top {
  margin: 15px 0 45px 0;
}
/* line 1367, ../scss/breakpoints/_base.scss */
.home #grid-bottom .featured-title-wrap {
  padding: 40px 50px;
}
/* line 1369, ../scss/breakpoints/_base.scss */
.home #grid-bottom .featured-title-wrap h2 {
  padding: 0 0 20px 0;
  margin: 0 0 15px 0;
}

/* line 1376, ../scss/breakpoints/_base.scss */
.highlight {
  font-size: 40px;
  line-height: 40px;
  padding: 0 0 20px 0;
  margin: 0 0 15px 0;
  display: block;
  background: url(../images/bg-headline.png) no-repeat bottom left;
}

/*********************
STORIES
*********************/
/* line 1387, ../scss/breakpoints/_base.scss */
.featured-title-wrap,
.featured-content-wrap {
  padding-right: 25px;
}

/* line 1392, ../scss/breakpoints/_base.scss */
#stories h3 {
  text-align: center;
  text-transform: uppercase;
  margin: 40px 0 45px 0;
}
/* line 1397, ../scss/breakpoints/_base.scss */
#stories .featured-content-block {
  padding: 0 0 25px 0;
}
/* line 1399, ../scss/breakpoints/_base.scss */
#stories .featured-content-block .zoom-middle {
  height: 220px;
}
/* line 1402, ../scss/breakpoints/_base.scss */
#stories .featured-content-block .featured-image-wrap {
  height: 220px;
  position: relative;
}
/* line 1405, ../scss/breakpoints/_base.scss */
#stories .featured-content-block .featured-image-wrap a {
  width: 100%;
  height: 100%;
  display: block;
}
/* line 1411, ../scss/breakpoints/_base.scss */
#stories .featured-content-block p, #stories .featured-content-block span {
  font-family: "Source Sans Pro", sans-serif !important;
}
/* line 1414, ../scss/breakpoints/_base.scss */
#stories .featured-content-block h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 0;
  color: #f8971d;
}
/* line 1421, ../scss/breakpoints/_base.scss */
#stories .featured-content-block h4 a {
  color: #f8971d;
}
/* line 1423, ../scss/breakpoints/_base.scss */
#stories .featured-content-block h4 a:hover {
  color: #000;
}
/* line 1428, ../scss/breakpoints/_base.scss */
#stories .featured-content-block h2 {
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  margin: 5px 0 0 0;
  padding: 0;
}
/* line 1434, ../scss/breakpoints/_base.scss */
#stories .featured-content-block h2 a {
  color: #000;
}
/* line 1438, ../scss/breakpoints/_base.scss */
#stories .featured-content-block .read-more {
  color: #000;
}
/* line 1440, ../scss/breakpoints/_base.scss */
#stories .featured-content-block .read-more:hover {
  color: #f8971d;
}
/* line 1445, ../scss/breakpoints/_base.scss */
#stories .featured-content-block .post-overlay {
  background: none;
}

/*********************
GETCANDID
*********************/
/* line 1454, ../scss/breakpoints/_base.scss */
#getcandid {
  background: #f5f5f5;
  padding: 45px 0 0 0;
}
/* line 1457, ../scss/breakpoints/_base.scss */
#getcandid h3 {
  text-align: center;
}
/* line 1459, ../scss/breakpoints/_base.scss */
#getcandid h3 span {
  color: #f8971d;
}

/*********************
BADASSADORS
*********************/
/* line 1471, ../scss/breakpoints/_base.scss */
.single-partner .more-posts-button,
.single-badassador .more-posts-button,
.single-featured .more-posts-button {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}
/* line 1478, ../scss/breakpoints/_base.scss */
.single-partner #stories .featured-content-block,
.single-badassador #stories .featured-content-block,
.single-featured #stories .featured-content-block {
  display: none;
}
/* line 1481, ../scss/breakpoints/_base.scss */
.single-partner #stories .block-1,
.single-partner #stories .block-2,
.single-partner #stories .block-3,
.single-badassador #stories .block-1,
.single-badassador #stories .block-2,
.single-badassador #stories .block-3,
.single-featured #stories .block-1,
.single-featured #stories .block-2,
.single-featured #stories .block-3 {
  display: block !important;
}

/* line 1490, ../scss/breakpoints/_base.scss */
.credentials {
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 21px !important;
  margin: 10px 0 0 0 !important;
  padding: 0;
}

/* line 1499, ../scss/breakpoints/_base.scss */
.page-template-page-badassadors .custom-header h1 {
  background: url(../images/icon-badassador.png) no-repeat;
  padding-left: 75px;
  min-height: 70px;
  line-height: 50px;
}
/* line 1507, ../scss/breakpoints/_base.scss */
.page-template-page-badassadors #grid-bottom {
  background: #f5f5f5;
  padding: 75px 0;
  margin: 0;
}

/* line 1514, ../scss/breakpoints/_base.scss */
#badassador-intro {
  margin: 75px 0 45px 0;
}
/* line 1516, ../scss/breakpoints/_base.scss */
#badassador-intro h3 {
  font-weight: 700 !important;
}

/* line 1522, ../scss/breakpoints/_base.scss */
.small-block {
  width: 49.25% !important;
  margin-right: 1.5%;
}
/* line 1525, ../scss/breakpoints/_base.scss */
.small-block .bg-cover {
  height: 220px !important;
}

/* line 1530, ../scss/breakpoints/_base.scss */
.small-block:nth-of-type(2n) {
  margin-right: 0 !important;
}

/*.zoom-hover {
 transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  overflow:hidden;
}
.zoom-hover:hover {
  background-size:125% auto;
}  */
/* line 1550, ../scss/breakpoints/_base.scss */
.small-block {
  float: left;
  margin-bottom: 45px;
  min-height: 220px;
}
/* line 1554, ../scss/breakpoints/_base.scss */
.small-block h2 {
  margin: 5px 0;
  padding: 0;
  line-height: 18px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
/* line 1562, ../scss/breakpoints/_base.scss */
.small-block p {
  color: #000;
  font-size: 14px;
  font-style: italic;
  padding: 0;
  margin: 0 0 15px 0;
}

/* line 1573, ../scss/breakpoints/_base.scss */
.single-badassador .article-header,
.single-partner .article-header,
.single-featured .article-header {
  background: #000;
  padding: 25px 0 15px 0;
}
/* line 1576, ../scss/breakpoints/_base.scss */
.single-badassador .article-header h1, .single-badassador .article-header p,
.single-partner .article-header h1,
.single-partner .article-header p,
.single-featured .article-header h1,
.single-featured .article-header p {
  color: #f5f5f5;
}
/* line 1580, ../scss/breakpoints/_base.scss */
.single-badassador .badassador-icon,
.single-partner .badassador-icon,
.single-featured .badassador-icon {
  background: url(../images/icon-badassador.png) no-repeat;
  height: 70px;
  margin-bottom: 15px;
  width: 100%;
}
/* line 1586, ../scss/breakpoints/_base.scss */
.single-badassador #more-badassadors,
.single-partner #more-badassadors,
.single-featured #more-badassadors {
  padding: 45px 0;
}
/* line 1588, ../scss/breakpoints/_base.scss */
.single-badassador #more-badassadors h3,
.single-partner #more-badassadors h3,
.single-featured #more-badassadors h3 {
  text-transform: uppercase;
  text-align: center;
}
/* line 1592, ../scss/breakpoints/_base.scss */
.single-badassador #more-badassadors .center,
.single-partner #more-badassadors .center,
.single-featured #more-badassadors .center {
  padding-top: 45px;
}
/* line 1596, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack,
.single-partner #badassador-pack,
.single-featured #badassador-pack {
  padding: 75px 0 0 0;
}
/* line 1598, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack h3,
.single-partner #badassador-pack h3,
.single-featured #badassador-pack h3 {
  text-align: center;
  text-transform: uppercase;
}
/* line 1602, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack img,
.single-partner #badassador-pack img,
.single-featured #badassador-pack img {
  display: none;
}
/* line 1605, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack ol,
.single-partner #badassador-pack ol,
.single-featured #badassador-pack ol {
  padding: 45px 0 0 45px;
  margin: 45px 0;
}
/* line 1608, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack ol li,
.single-partner #badassador-pack ol li,
.single-featured #badassador-pack ol li {
  width: 100%;
  padding: 0;
  margin-left: 0;
}
/* line 1612, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack ol li a,
.single-partner #badassador-pack ol li a,
.single-featured #badassador-pack ol li a {
  color: #000;
  text-decoration: none;
}
/* line 1615, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack ol li a:hover,
.single-partner #badassador-pack ol li a:hover,
.single-featured #badassador-pack ol li a:hover {
  text-decoration: underline;
}
/* line 1619, ../scss/breakpoints/_base.scss */
.single-badassador #badassador-pack ol li p,
.single-partner #badassador-pack ol li p,
.single-featured #badassador-pack ol li p {
  margin: 0;
  padding: 0;
}
/* line 1628, ../scss/breakpoints/_base.scss */
.single-badassador ol.square-numbers,
.single-partner ol.square-numbers,
.single-featured ol.square-numbers {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}
/* line 1632, ../scss/breakpoints/_base.scss */
.single-badassador ol.square-numbers li,
.single-partner ol.square-numbers li,
.single-featured ol.square-numbers li {
  box-sizing: border-box;
  position: relative;
  margin: 0 0 21px 2em;
  padding: 4px 8px;
  list-style: none;
}
/* line 1638, ../scss/breakpoints/_base.scss */
.single-badassador ol.square-numbers li:before,
.single-partner ol.square-numbers li:before,
.single-featured ol.square-numbers li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: 0;
  left: -2em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 15px;
  height: 25px;
  width: 25px;
  margin-right: 8px;
  padding-top: 2px;
  color: #fff;
  background: #000000;
  font-weight: bold;
  text-align: center;
}
/* line 1660, ../scss/breakpoints/_base.scss */
.single-badassador #main,
.single-partner #main,
.single-featured #main {
  float: none !important;
}
/* line 1663, ../scss/breakpoints/_base.scss */
.single-badassador .section-left,
.single-partner .section-left,
.single-featured .section-left {
  width: 100%;
  float: none;
}
/* line 1666, ../scss/breakpoints/_base.scss */
.single-badassador .section-left h2,
.single-partner .section-left h2,
.single-featured .section-left h2 {
  font-size: 32px;
  margin-top: 0;
  padding-top: 0;
}
/* line 1671, ../scss/breakpoints/_base.scss */
.single-badassador .section-left p,
.single-partner .section-left p,
.single-featured .section-left p {
  font-size: 17px;
  line-height: 23px;
}
/* line 1676, ../scss/breakpoints/_base.scss */
.single-badassador .section-right,
.single-partner .section-right,
.single-featured .section-right {
  width: 100%;
  float: left;
  margin-top: 75px;
}

/* line 1684, ../scss/breakpoints/_base.scss */
.gallery-slider img {
  margin: 0 !important;
  width: 100%;
  height: auto;
}

/* line 1691, ../scss/breakpoints/_base.scss */
figcaption {
  text-align: center;
  font-style: italic;
}

/* line 1696, ../scss/breakpoints/_base.scss */
.slick-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 80px;
}
@media (max-width: 767px) {
  /* line 1696, ../scss/breakpoints/_base.scss */
  .slick-dots {
    bottom: 45px;
  }
}
/* line 1704, ../scss/breakpoints/_base.scss */
.slick-dots button {
  display: none;
}
/* line 1707, ../scss/breakpoints/_base.scss */
.slick-dots li {
  cursor: pointer;
  width: auto !important;
  padding: 0 !important;
  margin: 0 6px !important;
  text-indent: 0 !important;
  display: inline-block !important;
  float: none !important;
  text-align: center !important;
}
/* line 1716, ../scss/breakpoints/_base.scss */
.slick-dots li:before {
  margin-right: 0 !important;
  color: #fff !important;
}
/* line 1723, ../scss/breakpoints/_base.scss */
.slick-dots li.slick-active:before {
  color: #f8971d !important;
}

/* line 1728, ../scss/breakpoints/_base.scss */
.top-rated-products {
  text-decoration: none;
}
/* line 1730, ../scss/breakpoints/_base.scss */
.top-rated-products h4 {
  font-size: 24px;
  line-height: normal;
  letter-spacing: normal;
  text-decoration: none;
}
/* line 1735, ../scss/breakpoints/_base.scss */
.top-rated-products h4 a {
  text-decoration: none;
  color: #000;
}
/* line 1738, ../scss/breakpoints/_base.scss */
.top-rated-products h4 a:hover {
  color: #f8971d;
}

/* line 1745, ../scss/breakpoints/_base.scss */
.top-rated .slick-dots {
  display: none !important;
}

/* line 1749, ../scss/breakpoints/_base.scss */
.top-rated,
.section-right,
.section-left {
  position: relative;
}
/* line 1754, ../scss/breakpoints/_base.scss */
.top-rated .gallery-slider-nav,
.top-rated .top-rated-nav,
.section-right .gallery-slider-nav,
.section-right .top-rated-nav,
.section-left .gallery-slider-nav,
.section-left .top-rated-nav {
  position: absolute;
  width: 100%;
  top: 48%;
  transform: translateY(-48%);
}
@media (max-width: 767px) {
  /* line 1754, ../scss/breakpoints/_base.scss */
  .top-rated .gallery-slider-nav,
  .top-rated .top-rated-nav,
  .section-right .gallery-slider-nav,
  .section-right .top-rated-nav,
  .section-left .gallery-slider-nav,
  .section-left .top-rated-nav {
    bottom: 60px;
    transform: none;
  }
}
/* line 1766, ../scss/breakpoints/_base.scss */
.top-rated .top-rated-nav,
.section-right .top-rated-nav,
.section-left .top-rated-nav {
  left: 0;
}
/* line 1769, ../scss/breakpoints/_base.scss */
.top-rated .gallery-slider-prev,
.section-right .gallery-slider-prev,
.section-left .gallery-slider-prev {
  left: 25px;
  position: absolute;
}
/* line 1773, ../scss/breakpoints/_base.scss */
.top-rated .gallery-slider-next,
.section-right .gallery-slider-next,
.section-left .gallery-slider-next {
  right: 25px;
  position: absolute;
}
/* line 1777, ../scss/breakpoints/_base.scss */
.top-rated .top-rated-prev,
.section-right .top-rated-prev,
.section-left .top-rated-prev {
  left: 0;
  position: absolute;
}
/* line 1781, ../scss/breakpoints/_base.scss */
.top-rated .top-rated-next,
.section-right .top-rated-next,
.section-left .top-rated-next {
  right: 0;
  position: absolute;
}

/* line 1787, ../scss/breakpoints/_base.scss */
.gallery-slider-prev,
.gallery-slider-next,
.top-rated-prev,
.top-rated-next {
  background: white !important;
  border: 2px solid #000 !important;
  text-transform: uppercase;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 10px 15px !important;
  line-height: 15px !important;
  color: #000 !important;
  text-decoration: none;
  white-space: nowrap;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  display: inline-block;
  cursor: pointer;
}
@media (hover: hover) {
  /* line 1807, ../scss/breakpoints/_base.scss */
  .gallery-slider-prev:hover,
  .gallery-slider-next:hover,
  .top-rated-prev:hover,
  .top-rated-next:hover {
    color: #000 !important;
    background-color: #fff !important;
    border-color: #000 !important;
  }
}

/* line 1814, ../scss/breakpoints/_base.scss */
.gallery-slider-prev,
.gallery-slider-next {
  border: 2px solid #dedede !important;
  color: #dedede !important;
  background: transparent !important;
}
@media (hover: hover) {
  /* line 1820, ../scss/breakpoints/_base.scss */
  .gallery-slider-prev:hover,
  .gallery-slider-next:hover {
    color: #000 !important;
    background: transparent !important;
    border-color: #000 !important;
  }
}

/* line 1827, ../scss/breakpoints/_base.scss */
.top-rated {
  padding: 45px 25px;
}
/* line 1829, ../scss/breakpoints/_base.scss */
.top-rated .product {
  padding: 0 45px;
  text-align: center;
}
/* line 1833, ../scss/breakpoints/_base.scss */
.top-rated .slick-dots {
  position: static;
  margin-bottom: 75px;
}
/* line 1837, ../scss/breakpoints/_base.scss */
.top-rated .slick-dots li:before {
  color: #d9d9d9 !important;
}
/* line 1842, ../scss/breakpoints/_base.scss */
.top-rated .slick-dots .slick-active:before {
  color: #f8971d !important;
}

/* line 1849, ../scss/breakpoints/_base.scss */
.video-wrapper {
  position: relative;
}
/* line 1851, ../scss/breakpoints/_base.scss */
.video-wrapper .play-icon {
  text-align: center;
  width: 75px;
  height: 75px;
  background: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  left: 0;
  right: 0;
}
/* line 1865, ../scss/breakpoints/_base.scss */
.video-wrapper .play-icon:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 999;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  top: 23px;
  left: 30px;
}
/* line 1877, ../scss/breakpoints/_base.scss */
.video-wrapper .play-icon:hover {
  cursor: pointer;
}
/* line 1881, ../scss/breakpoints/_base.scss */
.video-wrapper .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  display: none;
}
/* line 1889, ../scss/breakpoints/_base.scss */
.video-wrapper .embed-container iframe,
.video-wrapper .embed-container object,
.video-wrapper .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 1898, ../scss/breakpoints/_base.scss */
.video-wrapper:hover {
  cursor: pointer;
}

/* line 1903, ../scss/breakpoints/_base.scss */
.video-thumbnails {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: center;
  flex-flow: row wrap;
}
/* line 1912, ../scss/breakpoints/_base.scss */
.video-thumbnails .play-icon {
  text-align: center;
  width: 25px;
  height: 25px;
  background: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  left: 0;
  right: 0;
}
/* line 1926, ../scss/breakpoints/_base.scss */
.video-thumbnails .play-icon:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 999;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
  top: 7px;
  left: 10px;
}
/* line 1938, ../scss/breakpoints/_base.scss */
.video-thumbnails .play-icon:hover {
  cursor: pointer;
}

/* line 1943, ../scss/breakpoints/_base.scss */
.video-previews {
  display: inline-block;
  margin: 6px;
  max-width: 104px;
  vertical-align: top;
}
/* line 1950, ../scss/breakpoints/_base.scss */
.video-previews .thumbnail-video:hover {
  cursor: pointer;
}
/* line 1954, ../scss/breakpoints/_base.scss */
.video-previews .thumbnail-video.active-video img {
  border: 2px solid #000;
}
/* line 1959, ../scss/breakpoints/_base.scss */
.video-previews .thumbnail-video img {
  border: 2px solid #fff;
  display: inline-block;
  max-width: 94px;
}
/* line 1966, ../scss/breakpoints/_base.scss */
.video-previews .fa-play-circle {
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  height: 20px;
  position: relative;
  width: 20px;
}
/* line 1973, ../scss/breakpoints/_base.scss */
.video-previews .fa-play-circle:before {
  left: -2px;
  position: absolute;
  top: -3px;
}

/* line 1980, ../scss/breakpoints/_base.scss */
.video-caption {
  font-size: 14px;
  line-height: 1.2;
}

/*********************
BREADCRUMBS
*********************/
/* line 1989, ../scss/breakpoints/_base.scss */
#bread-wrapper {
  border-bottom: 1px solid #d9d9d9;
  text-transform: uppercase;
  font-size: 13px;
  background: #f5f5f5;
}
/* line 1994, ../scss/breakpoints/_base.scss */
#bread-wrapper a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: normal;
  text-decoration: none;
  font-weight: 300;
  color: #000;
}
/* line 2002, ../scss/breakpoints/_base.scss */
#bread-wrapper p {
  margin: 0;
  padding: 10px 0;
}

/*********************
SIDEBAR
*********************/
/* line 2011, ../scss/breakpoints/_base.scss */
.sidebar {
  margin: 0;
  padding: 0 0px 0 0 !important;
  float: right;
}
/* line 2015, ../scss/breakpoints/_base.scss */
.sidebar #category-list {
  font-size: 13px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 25px;
}
/* line 2020, ../scss/breakpoints/_base.scss */
.sidebar #category-list a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
}
/* line 2025, ../scss/breakpoints/_base.scss */
.sidebar #category-list p {
  margin: 0;
  padding: 0;
}
/* line 2030, ../scss/breakpoints/_base.scss */
.sidebar h3 {
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
}
/* line 2035, ../scss/breakpoints/_base.scss */
.sidebar ul {
  margin: 20px 0 0 0;
  padding: 0;
  list-style-type: none;
}
/* line 2039, ../scss/breakpoints/_base.scss */
.sidebar ul li {
  margin: 0 0 40px 0;
  padding: 0;
  list-style-type: none;
  font-size: 20px;
  line-height: 23px;
  font-weight: 600;
}
/* line 2046, ../scss/breakpoints/_base.scss */
.sidebar ul li a {
  font-size: 20px;
  text-decoration: none;
  color: #000;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 2059, ../scss/breakpoints/_base.scss */
.single #post-navigation {
  background: #f5f5f5;
  padding: 45px 0;
  display: none;
}
/* line 2063, ../scss/breakpoints/_base.scss */
.single #post-navigation .wrap {
  position: relative;
}
/* line 2066, ../scss/breakpoints/_base.scss */
.single #post-navigation .prev-post,
.single #post-navigation .next-post {
  width: 50%;
}
/* line 2069, ../scss/breakpoints/_base.scss */
.single #post-navigation .prev-post p,
.single #post-navigation .next-post p {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
/* line 2075, ../scss/breakpoints/_base.scss */
.single #post-navigation .prev-post p span,
.single #post-navigation .next-post p span {
  display: block;
  clear: both;
}
/* line 2080, ../scss/breakpoints/_base.scss */
.single #post-navigation .prev-post a,
.single #post-navigation .next-post a {
  color: #000;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
/* line 2089, ../scss/breakpoints/_base.scss */
.single #post-navigation .next-post {
  float: right;
  text-align: right;
  padding-right: 45px;
}
/* line 2094, ../scss/breakpoints/_base.scss */
.single #post-navigation .next-post a:after {
  color: #d9d9d9;
  font-family: "FontAwesome";
  content: "\f054";
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 46px;
}
/* line 2105, ../scss/breakpoints/_base.scss */
.single #post-navigation .prev-post {
  float: left;
  text-align: left;
  padding-left: 45px;
}
/* line 2110, ../scss/breakpoints/_base.scss */
.single #post-navigation .prev-post a:before {
  color: #d9d9d9;
  font-family: "FontAwesome";
  content: "\f053";
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 46px;
}
/* line 2122, ../scss/breakpoints/_base.scss */
.single #inner-content {
  padding-top: 45px;
}
/* line 2125, ../scss/breakpoints/_base.scss */
.single .comment {
  padding: 25px 0 0 0;
  background: transparent !important;
  border-top: 1px solid #f5f5f5;
}
/* line 2129, ../scss/breakpoints/_base.scss */
.single .comment .avatar {
  left: 0 !important;
  margin-top: 5px;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
/* line 2139, ../scss/breakpoints/_base.scss */
.single .comment .comment-reply-link {
  margin-bottom: 30px;
}
/* line 2142, ../scss/breakpoints/_base.scss */
.single .comment .comment-edit-link {
  margin-left: 0;
}
/* line 2145, ../scss/breakpoints/_base.scss */
.single .comment .comment-author {
  padding: 0 !important;
}
/* line 2148, ../scss/breakpoints/_base.scss */
.single .comment cite {
  display: block;
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  line-height: 20px;
}
/* line 2155, ../scss/breakpoints/_base.scss */
.single .comment cite a {
  color: #000;
  text-decoration: none;
}
/* line 2161, ../scss/breakpoints/_base.scss */
.single .comment time a {
  text-decoration: none;
  color: #000;
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
}
/* line 2170, ../scss/breakpoints/_base.scss */
.single #comments-title {
  padding: 15px 0 !important;
  border: 0 !important;
}

/* line 2178, ../scss/breakpoints/_base.scss */
.single-post .entry-content blockquote {
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
}
/* line 2182, ../scss/breakpoints/_base.scss */
.single-post .entry-content blockquote:before {
  margin-right: 5px;
}
/* line 2185, ../scss/breakpoints/_base.scss */
.single-post .entry-content blockquote:after {
  margin-left: 5px;
}
/* line 2189, ../scss/breakpoints/_base.scss */
.single-post .entry-content blockquote p {
  display: inline;
}

/* line 2196, ../scss/breakpoints/_base.scss */
time, .byline {
  font-style: normal !important;
  font-size: 13px;
  text-transform: uppercase;
}

/* line 2205, ../scss/breakpoints/_base.scss */
#content main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 2211, ../scss/breakpoints/_base.scss */
#content main li {
  padding-left: 20px;
  position: relative;
}
/* line 2216, ../scss/breakpoints/_base.scss */
#content main li:before {
  content: "\f04d";
  font-family: "FontAwesome";
  color: #000;
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 8px;
}

/* line 2232, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* end .hentry */
/* line 2239, ../scss/breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* line 2247, ../scss/breakpoints/_base.scss */
.page-title {
  margin-top: 45px;
}

/* line 2253, ../scss/breakpoints/_base.scss */
a.post-category,
.post-category-separator {
  font-size: 13px;
}

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

/* entry content */
/* line 2269, ../scss/breakpoints/_base.scss */
.entry-content {
  /*
  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 2271, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 2296, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #d9d9d9;
  margin-bottom: 1.5em;
}
/* line 2301, ../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 2310, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #d9d9d9;
}
/* line 2313, ../scss/breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #f5f5f5;
}
/* line 2318, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #d9d9d9;
}
/* line 2322, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 2327, ../scss/breakpoints/_base.scss */
.entry-content th {
  background-color: #f5f5f5;
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
/* line 2332, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 2337, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  font-size: 23px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  border-left: 0;
  font-style: normal;
  margin: 18px 0 15px 0;
}
/* line 2345, ../scss/breakpoints/_base.scss */
.entry-content blockquote:before {
  background: url(../images/left-quote.png) no-repeat;
  width: 17px;
  height: 14px;
  content: " ";
  display: inline-block;
  position: relative;
  top: -7px;
}
/* line 2354, ../scss/breakpoints/_base.scss */
.entry-content blockquote:after {
  background: url(../images/right-quote.png) no-repeat;
  width: 17px;
  height: 14px;
  content: " ";
  display: inline-block;
  position: relative;
  top: -7px;
}
/* line 2364, ../scss/breakpoints/_base.scss */
.entry-content .source {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 10px;
}
/* line 2375, ../scss/breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 2382, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
/* line 2398, ../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 2407, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #000;
  color: #f5f5f5;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 2418, ../scss/breakpoints/_base.scss */
.wp-caption {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 15px;
  max-width: 100%;
  /* images inside wp-caption */
}
/* line 2424, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 2430, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  color: #9fa6b4;
  font-size: 15px;
  font-style: italic;
  margin: 15px 0 23px;
  /*&:before {
    color: $black;
    content: 'Caption: ';
    font-weight: 700;
  }*/
}

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

/* line 2473, ../scss/breakpoints/_base.scss */
.page-template-page-join #container {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* line 2481, ../scss/breakpoints/_base.scss */
.signup-wrapper {
  padding: 40px 0 60px 0;
  background-size: cover;
  color: #fff;
  min-height: 550px;
}
/* line 2486, ../scss/breakpoints/_base.scss */
.signup-wrapper .signup-left {
  padding: 25px 0 0 0;
}
/* line 2488, ../scss/breakpoints/_base.scss */
.signup-wrapper .signup-left p {
  font-size: 22px;
  font-weight: 300;
  line-height: 29px;
}
/* line 2493, ../scss/breakpoints/_base.scss */
.signup-wrapper .signup-left li {
  margin: 15px 0 20px;
  font-size: 20px;
  font-weight: 600;
}
/* line 2499, ../scss/breakpoints/_base.scss */
.signup-wrapper .signup-right {
  background: #fff;
  padding: 35px;
}
/* line 2502, ../scss/breakpoints/_base.scss */
.signup-wrapper .signup-right h3 {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
}

/* line 2510, ../scss/breakpoints/_base.scss */
form {
  width: 100%;
}
/* line 2512, ../scss/breakpoints/_base.scss */
form label {
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}
/* line 2518, ../scss/breakpoints/_base.scss */
form input[type=text], form textarea, form input[type=email], form input[type=url], form input[type=search], form select {
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  max-width: none;
}
/* line 2527, ../scss/breakpoints/_base.scss */
form input.error {
  background: #fbe3e4;
}
/* line 2530, ../scss/breakpoints/_base.scss */
form label.error {
  display: none !important;
}
/* line 2533, ../scss/breakpoints/_base.scss */
form .button {
  margin-top: 20px;
}

/* line 2537, ../scss/breakpoints/_base.scss */
#newsletter-benefits {
  padding: 45px 0 80px 0;
}
/* line 2539, ../scss/breakpoints/_base.scss */
#newsletter-benefits .intro {
  padding: 0 0 45px 0;
}
/* line 2541, ../scss/breakpoints/_base.scss */
#newsletter-benefits .intro strong {
  font-size: 21px;
}
/* line 2544, ../scss/breakpoints/_base.scss */
#newsletter-benefits .intro p {
  font-size: 18px;
  line-height: 23px;
}
/* line 2549, ../scss/breakpoints/_base.scss */
#newsletter-benefits #benefit-listing {
  padding: 0 0 45px 0;
}
/* line 2551, ../scss/breakpoints/_base.scss */
#newsletter-benefits #benefit-listing .benefit {
  width: 100%;
  clear: both;
  margin: 0  0 25px 0;
}
/* line 2556, ../scss/breakpoints/_base.scss */
#newsletter-benefits #benefit-listing .benefit .benefit-image img {
  position: relative;
  top: 8px;
  text-align: center;
  max-width: 100%;
  display: inherit;
  margin: 20px auto;
}
/* line 2565, ../scss/breakpoints/_base.scss */
#newsletter-benefits #benefit-listing .benefit .benefit-text {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
/* line 2569, ../scss/breakpoints/_base.scss */
#newsletter-benefits #benefit-listing .benefit .benefit-text h4 {
  padding: 0;
  margin: 0;
  font-size: 20px;
}
/* line 2574, ../scss/breakpoints/_base.scss */
#newsletter-benefits #benefit-listing .benefit .benefit-text p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 21px;
}

/******************************************************************
Single Basaddaor
*******************************************************************/
/* line 2588, ../scss/breakpoints/_base.scss */
header.badassador-header {
  float: left;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 2594, ../scss/breakpoints/_base.scss */
.single-partner .section-left h2,
.single-badassador .section-left h2,
.single-featured .section-left h2 {
  float: left;
}

/* line 2600, ../scss/breakpoints/_base.scss */
.bio-area {
  float: left;
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  margin: 20px 0 25px;
}

/* line 2609, ../scss/breakpoints/_base.scss */
#content main ul.list-items {
  list-style: none;
  font-size: 18px;
}
/* line 2612, ../scss/breakpoints/_base.scss */
#content main ul.list-items li {
  list-style: none;
  padding-left: 0;
  padding-right: 20px;
  margin-left: 0;
  float: left;
}
/* line 2618, ../scss/breakpoints/_base.scss */
#content main ul.list-items li:before {
  content: '';
}
/* line 2621, ../scss/breakpoints/_base.scss */
#content main ul.list-items li img {
  margin: 0;
}

/******************************************************************
Single Challenge
*******************************************************************/
/* line 2631, ../scss/breakpoints/_base.scss */
.single-challenge #bread-wrapper {
  background-color: #000;
  border-color: #1c1c1c;
}
/* line 2634, ../scss/breakpoints/_base.scss */
.single-challenge #bread-wrapper a, .single-challenge #bread-wrapper span {
  color: #8c8c8c;
}
/* line 2638, ../scss/breakpoints/_base.scss */
.single-challenge .custom-header {
  background-color: #000;
  font-size: 20px;
}
/* line 2641, ../scss/breakpoints/_base.scss */
.single-challenge .custom-header .header-content {
  display: none;
}
/* line 2644, ../scss/breakpoints/_base.scss */
.single-challenge .custom-header h2, .single-challenge .custom-header h3 {
  font-weight: 800;
}
/* line 2647, ../scss/breakpoints/_base.scss */
.single-challenge .custom-header video {
  display: none;
}
/* line 2651, ../scss/breakpoints/_base.scss */
.single-challenge .article-header {
  background: #000;
  padding: 26px 0;
}
/* line 2654, ../scss/breakpoints/_base.scss */
.single-challenge .article-header h1.highlight {
  font-size: 32px;
}
/* line 2657, ../scss/breakpoints/_base.scss */
.single-challenge .article-header h1, .single-challenge .article-header p {
  color: #fff;
}
/* line 2663, ../scss/breakpoints/_base.scss */
.single-challenge .article-header .chalenge-cta-link,
.single-challenge .custom-header .chalenge-cta-link {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  margin-top: 24px;
  padding: 15px 34px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
/* line 2677, ../scss/breakpoints/_base.scss */
.single-challenge .article-header .chalenge-cta-link:hover,
.single-challenge .custom-header .chalenge-cta-link:hover {
  border: 1px solid #f7961d;
  color: #f7961d;
}
/* line 2683, ../scss/breakpoints/_base.scss */
.single-challenge .challenges-header h2 {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 45px;
}
/* line 2691, ../scss/breakpoints/_base.scss */
.single-challenge #inner-content > .challenges-header h2 {
  margin-top: 0;
}
/* line 2695, ../scss/breakpoints/_base.scss */
.single-challenge #main > .challenges-header {
  display: none;
}
/* line 2698, ../scss/breakpoints/_base.scss */
.single-challenge .gallery-slider {
  border-bottom: 1px solid #cccccc;
}
/* line 2702, ../scss/breakpoints/_base.scss */
.single-challenge .gallery-slider.caption .slick-dots {
  bottom: 109px;
}
/* line 2706, ../scss/breakpoints/_base.scss */
.single-challenge .gallery-container {
  position: relative;
  margin-top: 50px;
}
/* line 2709, ../scss/breakpoints/_base.scss */
.single-challenge .gallery-container span.icon-star {
  background-image: url("../images/icon-star.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 24px;
  height: 22px;
  margin-bottom: -3px;
}
/* line 2719, ../scss/breakpoints/_base.scss */
.single-challenge .gallery-container figcaption {
  padding-bottom: 20px;
}
/* line 2722, ../scss/breakpoints/_base.scss */
.single-challenge .gallery-container .gallery-slider-nav.caption {
  bottom: 124px;
}
/* line 2726, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge {
  background-color: #f5f5f5;
  padding: 54px 0;
}
/* line 2729, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge .mision-container {
  font-size: 21px;
  text-align: center;
  max-width: 1050px;
}
/* line 2733, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge .mision-container p {
  font-weight: bold;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: keep-all;
}
/* line 2740, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge .ssba > div {
  text-align: center !important;
  font-size: 0;
}
/* line 2744, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge .ssba:before {
  content: "Share This Challenge:";
  text-transform: uppercase;
}
/* line 2749, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark {
  background-color: #000;
}
/* line 2751, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .challenges-header h2 {
  color: #fff;
}
/* line 2754, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .mision-container {
  color: #a6a6a6;
}
/* line 2757, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container {
  padding-top: 50px;
}
/* line 2759, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats {
  background-color: #141414;
  padding: 22px 36px;
  margin: 0 0 22px 0;
}
/* line 2763, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats li {
  display: inline-block;
  list-style: none;
  margin-bottom: 20px;
  padding: 10px 0px 11px 18px;
  width: 100%;
  min-width: 200px;
  vertical-align: top;
}
/* line 2771, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats li .label {
  color: #f7961d;
  text-transform: uppercase;
  display: inline-block;
  font-size: 15px;
  border-bottom: solid 1px #434343;
  padding-bottom: 22px;
  width: 100%;
}
/* line 2780, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats li .value {
  color: #fff;
  display: block;
  font-size: 19px;
  font-weight: bold;
  margin-top: 10px;
  text-align: left;
  text-transform: uppercase;
}
/* line 2788, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats li .value .lrg {
  font-size: 40px;
}
/* line 2794, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats li:last-child {
  margin-right: 0;
}
/* line 2799, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li {
  padding: 0px;
  border-bottom: none;
  overflow: hidden;
}
/* line 2803, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li::before {
  display: none;
}
/* line 2806, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li .stat {
  line-height: 45px;
  position: relative;
  height: 50px;
  width: 100%;
}
/* line 2811, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li .stat::before {
  background-color: #353535;
  content: " ";
  display: block;
  position: absolute;
  bottom: 3px;
  height: 5px;
  width: 100%;
  z-index: 1;
}
/* line 2821, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li .stat .bar {
  background-color: #f7961d;
  display: block;
  position: absolute;
  bottom: 3px;
  height: 5px;
  z-index: 2;
}
/* line 2830, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li .value {
  font-size: 40px;
  margin-top: 3px;
}
/* line 2833, ../scss/breakpoints/_base.scss */
.single-challenge #mission-challenge.dark .stats-container ul.stats.graph li .value .desc {
  color: #8b8b8b;
  font-size: 12px;
}
/* line 2842, ../scss/breakpoints/_base.scss */
.single-challenge .stripe-bg {
  background-color: #f5f5f5;
}
/* line 2845, ../scss/breakpoints/_base.scss */
.single-challenge #inner-content {
  position: relative;
}
/* line 2848, ../scss/breakpoints/_base.scss */
.single-challenge #main {
  position: relative;
  z-index: 5;
}
/* line 2852, ../scss/breakpoints/_base.scss */
.single-challenge #map-key {
  background-color: #f5f5f5;
  box-shadow: 0px 0px 5px #dfdfdf;
  color: #000;
  display: none;
  width: 100%;
  padding: 25px 30px;
  margin-bottom: 80px;
}
/* line 2860, ../scss/breakpoints/_base.scss */
.single-challenge #map-key h4 {
  margin-top: 0;
  text-transform: uppercase;
}
/* line 2864, ../scss/breakpoints/_base.scss */
.single-challenge #map-key li {
  height: 34px;
  margin-bottom: 18px;
  font-size: 18px;
  padding-left: 57px;
  line-height: 34px;
}
/* line 2873, ../scss/breakpoints/_base.scss */
.single-challenge .point-article,
.single-challenge .point-road-block,
.single-challenge .point-major-obstacle {
  position: relative;
  list-style: none;
}
/* line 2878, ../scss/breakpoints/_base.scss */
.single-challenge .point-article::before,
.single-challenge .point-road-block::before,
.single-challenge .point-major-obstacle::before {
  background-color: #000;
  display: block;
  font-weight: bold;
  font-family: "Source Sans Pro", sans-serif !important;
  font-size: 18px !important;
  color: #fff !important;
  line-height: 31px;
  position: absolute;
  top: 0 !important;
  left: 0;
  height: 34px;
  width: 34px;
  text-align: center;
}
/* line 2894, ../scss/breakpoints/_base.scss */
.single-challenge .point-article:before {
  content: attr(data-line) !important;
}
/* line 2897, ../scss/breakpoints/_base.scss */
.single-challenge .point-major-obstacle:before {
  content: '★' !important;
  line-height: 33px;
}
/* line 2901, ../scss/breakpoints/_base.scss */
.single-challenge .point-road-block:before {
  content: "!" !important;
  background-color: transparent !important;
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 33px solid #f7961d;
  line-height: 41px;
  text-indent: -3px;
}
/* line 2912, ../scss/breakpoints/_base.scss */
.single-challenge #travel-map {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
}
/* line 2918, ../scss/breakpoints/_base.scss */
.single-challenge #travel-map img {
  width: 100%;
}
/* line 2922, ../scss/breakpoints/_base.scss */
.single-challenge #path-container {
  position: relative;
  z-index: 1;
}
/* line 2926, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log {
  z-index: 10;
  margin: 0;
  list-style: none;
}
/* line 2930, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li {
  position: absolute;
  z-index: 3;
}
/* line 2933, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li .marker {
  cursor: pointer;
  width: 34px !important;
  height: 34px !important;
  top: 0;
  position: absolute;
}
/* line 2940, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li .article-preview {
  display: none;
}
/* line 2944, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li.road-block {
  display: none;
}
/* line 2947, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li.active {
  z-index: 10;
}
/* line 2949, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li.active .marker::before {
  content: '\00d7' !important;
  font-size: 30px !important;
  text-indent: 0 !important;
  background-color: #555555 !important;
  border: 0 !important;
  line-height: 31px !important;
  width: 34px !important;
  height: 34px !important;
}
/* line 2963, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log li.active .article-preview {
  display: block;
}
/* line 2967, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log .article-preview {
  background-color: #fff;
  box-shadow: 0px 0px 5px #dfdfdf;
  width: 300px;
  top: 34px;
  left: 34px;
  position: absolute;
}
/* line 2974, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log .article-preview .description {
  font-size: 16px;
  padding: 20px;
}
/* line 2977, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log .article-preview .description h4 {
  font-size: 21px;
  font-weight: bold;
  line-height: 22px;
  margin: 0;
  padding-left: 44px;
}
/* line 2986, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log .article-preview .description h4::before {
  top: -7px !important;
}
/* line 2993, ../scss/breakpoints/_base.scss */
.single-challenge #travel-log .article-preview .description a.excerpt-read-more {
  display: none;
}
/* line 3000, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul {
  list-style: none;
  margin: 0;
}
/* line 3003, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul li {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
/* line 3007, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul li::before {
  display: none;
}
/* line 3011, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul .article-preview {
  background-color: #fff;
  box-shadow: 0px 0px 5px #dfdfdf;
}
/* line 3014, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul .article-preview .description {
  font-size: 16px;
  padding: 20px;
}
/* line 3017, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul .article-preview .description h4 {
  font-size: 21px;
  font-weight: bold;
  line-height: 22px;
  margin: 0;
  padding-left: 54px;
}
/* line 3023, ../scss/breakpoints/_base.scss */
.single-challenge #mobile-travel-log ul .article-preview .description h4::before {
  top: 2px !important;
}
/* line 3031, ../scss/breakpoints/_base.scss */
.single-challenge #path-container.where-the-road-ends,
.single-challenge #travel-log.where-the-road-ends {
  position: absolute;
  width: 66.8%;
  left: 17.8%;
  top: 4.5%;
}
/* line 3037, ../scss/breakpoints/_base.scss */
.single-challenge #path-container.where-the-road-ends svg,
.single-challenge #travel-log.where-the-road-ends svg {
  width: 100%;
  height: auto;
}
/* line 3044, ../scss/breakpoints/_base.scss */
.single-challenge #path-container.where-the-road-ends .over-fifty .article-preview,
.single-challenge #path-container.where-the-road-ends .over-seventy .article-preview,
.single-challenge #path-container.where-the-road-ends .over-eighty .article-preview,
.single-challenge #travel-log.where-the-road-ends .over-fifty .article-preview,
.single-challenge #travel-log.where-the-road-ends .over-seventy .article-preview,
.single-challenge #travel-log.where-the-road-ends .over-eighty .article-preview {
  left: -300px;
}
/* line 3049, ../scss/breakpoints/_base.scss */
.single-challenge #challenge-cta {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  min-height: 483px;
  padding: 75px 14px;
  text-align: center;
}
/* line 3058, ../scss/breakpoints/_base.scss */
.single-challenge #challenge-cta h3 {
  color: #fff;
  background: url(../images/bg-headline.png) no-repeat bottom center;
  font-size: 31px;
  font-weight: bold;
  line-height: 35px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
/* line 3068, ../scss/breakpoints/_base.scss */
.single-challenge #challenge-cta .description {
  font-size: 23px;
  max-width: 810px;
  margin: 0 auto 34px auto;
}
/* line 3073, ../scss/breakpoints/_base.scss */
.single-challenge #challenge-cta .chalenge-cta-link {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  padding: 15px 34px;
  text-decoration: none;
  text-transform: uppercase;
}
/* line 3084, ../scss/breakpoints/_base.scss */
.single-challenge #challenge-cta .chalenge-cta-link:hover {
  border: 1px solid #f7961d;
  color: #f7961d;
}
/* line 3089, ../scss/breakpoints/_base.scss */
.single-challenge #getcandid {
  background: #c7c7c7;
}

/* line 3098, ../scss/breakpoints/_base.scss */
.chrome.single-challenge #travel-log li.active .marker::before {
  line-height: 33px !important;
}

/* line 3107, ../scss/breakpoints/_base.scss */
.safari.single-challenge #travel-log li.active .marker::before {
  line-height: 33px !important;
  text-indent: 1px;
}

/* line 3118, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge,
.tax-travel-log-type #poll-challenge,
.post-type-archive-travel-log #poll-challenge {
  background-image: url("../images/bg-poll-challenge.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 0;
}
/* line 3124, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_confirmation_message,
.tax-travel-log-type #poll-challenge .gform_confirmation_message,
.post-type-archive-travel-log #poll-challenge .gform_confirmation_message {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
/* line 3128, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_confirmation_message .gpoll_container,
.tax-travel-log-type #poll-challenge .gform_confirmation_message .gpoll_container,
.post-type-archive-travel-log #poll-challenge .gform_confirmation_message .gpoll_container {
  padding-top: 30px;
}
/* line 3132, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper, .single-challenge #poll-challenge .gpoll_container,
.tax-travel-log-type #poll-challenge .gform_wrapper,
.tax-travel-log-type #poll-challenge .gpoll_container,
.post-type-archive-travel-log #poll-challenge .gform_wrapper,
.post-type-archive-travel-log #poll-challenge .gpoll_container {
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  /* end .gpoll_wrapper */
}
/* line 3136, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_confirmation_message, .single-challenge #poll-challenge .gpoll_container .gform_confirmation_message,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_confirmation_message,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_confirmation_message,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_confirmation_message,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_confirmation_message {
  color: #fff;
  text-align: center;
}
/* line 3140, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll, .single-challenge #poll-challenge .gform_wrapper form, .single-challenge #poll-challenge .gpoll_container .gpoll, .single-challenge #poll-challenge .gpoll_container form,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll,
.tax-travel-log-type #poll-challenge .gform_wrapper form,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll,
.tax-travel-log-type #poll-challenge .gpoll_container form,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll,
.post-type-archive-travel-log #poll-challenge .gform_wrapper form,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll,
.post-type-archive-travel-log #poll-challenge .gpoll_container form {
  display: flex;
  flex-direction: column;
}
/* line 3143, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll .gform_heading, .single-challenge #poll-challenge .gform_wrapper form .gform_heading, .single-challenge #poll-challenge .gpoll_container .gpoll .gform_heading, .single-challenge #poll-challenge .gpoll_container form .gform_heading,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll .gform_heading,
.tax-travel-log-type #poll-challenge .gform_wrapper form .gform_heading,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll .gform_heading,
.tax-travel-log-type #poll-challenge .gpoll_container form .gform_heading,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll .gform_heading,
.post-type-archive-travel-log #poll-challenge .gform_wrapper form .gform_heading,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll .gform_heading,
.post-type-archive-travel-log #poll-challenge .gpoll_container form .gform_heading {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  order: 3;
}
/* line 3149, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll .gform_heading .gform_description, .single-challenge #poll-challenge .gform_wrapper form .gform_heading .gform_description, .single-challenge #poll-challenge .gpoll_container .gpoll .gform_heading .gform_description, .single-challenge #poll-challenge .gpoll_container form .gform_heading .gform_description,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll .gform_heading .gform_description,
.tax-travel-log-type #poll-challenge .gform_wrapper form .gform_heading .gform_description,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll .gform_heading .gform_description,
.tax-travel-log-type #poll-challenge .gpoll_container form .gform_heading .gform_description,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll .gform_heading .gform_description,
.post-type-archive-travel-log #poll-challenge .gform_wrapper form .gform_heading .gform_description,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll .gform_heading .gform_description,
.post-type-archive-travel-log #poll-challenge .gpoll_container form .gform_heading .gform_description {
  max-width: 370px;
  margin: 0 auto;
  padding: 0 12px;
}
/* line 3155, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll .gform_body, .single-challenge #poll-challenge .gform_wrapper form .gform_body, .single-challenge #poll-challenge .gpoll_container .gpoll .gform_body, .single-challenge #poll-challenge .gpoll_container form .gform_body,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll .gform_body,
.tax-travel-log-type #poll-challenge .gform_wrapper form .gform_body,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll .gform_body,
.tax-travel-log-type #poll-challenge .gpoll_container form .gform_body,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll .gform_body,
.post-type-archive-travel-log #poll-challenge .gform_wrapper form .gform_body,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll .gform_body,
.post-type-archive-travel-log #poll-challenge .gpoll_container form .gform_body {
  order: 1;
}
/* line 3156, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll .gform_footer, .single-challenge #poll-challenge .gform_wrapper form .gform_footer, .single-challenge #poll-challenge .gpoll_container .gpoll .gform_footer, .single-challenge #poll-challenge .gpoll_container form .gform_footer,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll .gform_footer,
.tax-travel-log-type #poll-challenge .gform_wrapper form .gform_footer,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll .gform_footer,
.tax-travel-log-type #poll-challenge .gpoll_container form .gform_footer,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll .gform_footer,
.post-type-archive-travel-log #poll-challenge .gform_wrapper form .gform_footer,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll .gform_footer,
.post-type-archive-travel-log #poll-challenge .gpoll_container form .gform_footer {
  order: 2;
  margin-top: 0;
}
/* line 3162, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child {
  text-align: center;
  padding: 0;
  margin-top: 0;
}
/* line 3166, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label {
  display: block;
  color: #fff !important;
  font-size: 25px !important;
  margin: 0 auto 25px auto;
  width: 95%;
}
/* line 3172, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label .gfield_required, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label .gfield_required,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label .gfield_required,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label .gfield_required,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label .gfield_required,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label .gfield_required {
  display: none;
}
/* line 3176, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio {
  width: 100% !important;
}
/* line 3179, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li input, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li input,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li input,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li input,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li input,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li input {
  opacity: 0;
  position: absolute;
}
/* line 3183, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label {
  border: 1px solid #fff;
  color: #fff;
  font-size: 22px;
  margin: 0;
  line-height: 50px;
  height: 50px;
}
/* line 3191, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label:hover,
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label.active, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label:hover,
.single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label.active,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label:hover,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label.active,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label:hover,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label.active,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label:hover,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label.active,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label:hover,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label.active {
  border: 1px solid #f7961d;
  color: #f7961d;
  background: #000;
}
/* line 3200, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield {
  padding: 0;
  position: relative;
}
/* line 3203, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .gfield_label, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .gfield_label,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield .gfield_label,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield .gfield_label,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield .gfield_label,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield .gfield_label {
  display: none;
}
/* line 3206, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email {
  margin: 0 auto !important;
  width: 85%;
}
/* line 3209, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email input, .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email input::placeholder, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email input, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email input::placeholder,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email input,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email input::placeholder,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email input,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email input::placeholder,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email input,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email input::placeholder,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email input,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email input::placeholder {
  color: #898989 !important;
  width: 100%;
  padding: 4px 10px;
}
/* line 3215, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .validation_message, .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .validation_message,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield .validation_message,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield .validation_message,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield .validation_message,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield .validation_message {
  display: block !important;
  text-align: center;
  color: #f8971d;
}
/* line 3222, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields #field_6_1.gfield_error, .single-challenge #poll-challenge .gpoll_container .gform_fields #field_6_1.gfield_error,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields #field_6_1.gfield_error,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields #field_6_1.gfield_error,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields #field_6_1.gfield_error,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields #field_6_1.gfield_error {
  padding-bottom: 19px;
}
/* line 3225, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_fields #field_6_1.gfield_error .validation_message, .single-challenge #poll-challenge .gpoll_container .gform_fields #field_6_1.gfield_error .validation_message,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields #field_6_1.gfield_error .validation_message,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_fields #field_6_1.gfield_error .validation_message,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields #field_6_1.gfield_error .validation_message,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields #field_6_1.gfield_error .validation_message {
  bottom: 17px;
  position: absolute;
}
/* line 3232, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .single-challenge #poll-challenge .gpoll_container li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.tax-travel-log-type #poll-challenge .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.tax-travel-log-type #poll-challenge .gpoll_container li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.post-type-archive-travel-log #poll-challenge .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.post-type-archive-travel-log #poll-challenge .gpoll_container li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none !important;
  background: #fff !important;
}
/* line 3237, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_footer, .single-challenge #poll-challenge .gpoll_container .gform_footer,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_footer,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_footer,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_footer,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_footer {
  text-align: center;
}
/* line 3239, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_footer .gform_button, .single-challenge #poll-challenge .gpoll_container .gform_footer .gform_button,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_footer .gform_button,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_footer .gform_button,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_footer .gform_button,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_footer .gform_button {
  border: 1px solid #fff;
  color: #fff !important;
  margin: 0;
  max-width: 85%;
}
/* line 3245, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gform_footer .gform_button:hover, .single-challenge #poll-challenge .gpoll_container .gform_footer .gform_button:hover,
.tax-travel-log-type #poll-challenge .gform_wrapper .gform_footer .gform_button:hover,
.tax-travel-log-type #poll-challenge .gpoll_container .gform_footer .gform_button:hover,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_footer .gform_button:hover,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gform_footer .gform_button:hover {
  border: 1px solid #f7961d !important;
  color: #f7961d !important;
}
/* line 3251, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_field_label, .single-challenge #poll-challenge .gpoll_container .gpoll_field_label,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_field_label,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_field_label,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_field_label,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_field_label {
  color: #fff;
  font-size: 22px;
  margin-bottom: 35px;
  text-align: center;
  text-transform: uppercase;
}
/* line 3258, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper, .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper {
  display: block;
  margin-bottom: 20px;
}
/* line 3262, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_value_selected, .single-challenge #poll-challenge .gpoll_container .gpoll_value_selected,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_value_selected,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_value_selected,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_value_selected,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_value_selected {
  background: none;
  padding: 0;
}
/* line 3266, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_choice_label, .single-challenge #poll-challenge .gpoll_container .gpoll_choice_label,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_choice_label,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_choice_label,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_choice_label,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_choice_label {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
}
/* line 3276, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_field, .single-challenge #poll-challenge .gpoll_container .gpoll_field,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_field,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_field,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_field,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_field {
  padding: 0 15px;
}
/* line 3281, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar, .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar {
  box-shadow: none;
  height: 30px;
  margin: 0;
  max-height: 50px;
}
/* line 3286, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar .gpoll_bar_juice, .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar .gpoll_bar_juice,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar .gpoll_bar_juice,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar .gpoll_bar_juice,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar .gpoll_bar_juice,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar .gpoll_bar_juice {
  background: #f7961d;
  box-shadow: none;
  border-radius: 0;
  min-width: 55px;
}
/* line 3291, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar .gpoll_bar_juice::after, .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar .gpoll_bar_juice::after,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar .gpoll_bar_juice::after,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar .gpoll_bar_juice::after,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar .gpoll_bar_juice::after,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar .gpoll_bar_juice::after {
  content: attr(data-origwidth) "%";
  background: none;
  color: #000;
  font-size: 22px;
  top: -2px;
}
/* line 3300, ../scss/breakpoints/_base.scss */
.single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_ratio_box, .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_ratio_box,
.tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_ratio_box,
.tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_ratio_box,
.post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_ratio_box,
.post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_ratio_box {
  display: none;
}

/******************************************************************
Travel Log
*******************************************************************/
/* line 3313, ../scss/breakpoints/_base.scss */
.tax-travel-log-type #page-banner,
.post-type-archive-travel-log #page-banner {
  min-height: 450px;
  overflow: hidden;
}
/* line 3316, ../scss/breakpoints/_base.scss */
.tax-travel-log-type #page-banner h1,
.post-type-archive-travel-log #page-banner h1 {
  padding-bottom: 35px;
  padding-top: 150px;
  margin-bottom: 25px;
}
/* line 3321, ../scss/breakpoints/_base.scss */
.tax-travel-log-type #page-banner p,
.post-type-archive-travel-log #page-banner p {
  color: #fff;
  font-size: 22px;
  position: relative;
  z-index: 9;
}
/* line 3329, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .entry-content .quote-container,
.post-type-archive-travel-log .entry-content .quote-container {
  margin-top: 30px;
  margin-bottom: 40px;
}
/* line 3334, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .product-area,
.post-type-archive-travel-log .product-area {
  margin: 45px 0;
}
/* line 3336, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .product-area .product,
.post-type-archive-travel-log .product-area .product {
  background: #f5f5f5;
  padding: 24px 22px;
  margin-bottom: 20px;
}
/* line 3341, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .product-area .product .prd-details h4,
.post-type-archive-travel-log .product-area .product .prd-details h4 {
  margin: 0 0 10px 0;
}
/* line 3343, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .product-area .product .prd-details h4 .logo,
.post-type-archive-travel-log .product-area .product .prd-details h4 .logo {
  background-image: url("../images/logo-gerber-products.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 8px;
  height: 40px;
  width: 95px;
  vertical-align: bottom;
}
/* line 3353, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .product-area .product .prd-details h4 a,
.post-type-archive-travel-log .product-area .product .prd-details h4 a {
  color: #000;
  display: inline-block;
  height: 40px;
  vertical-align: bottom;
  line-height: 40px;
}
/* line 3362, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .product-area .product .prd-img,
.post-type-archive-travel-log .product-area .product .prd-img {
  border: 1px solid #e7e7e7;
  background-color: #fff;
  max-width: 108px;
  float: left;
  margin-right: 31px;
}
/* line 3372, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-playlist,
.post-type-archive-travel-log .wp-playlist {
  padding: 24px;
  background-color: #f5f5f5;
  border: none;
}
/* line 3376, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-playlist .wp-playlist-item-title,
.post-type-archive-travel-log .wp-playlist .wp-playlist-item-title {
  font-size: 16px;
  font-weight: bold;
}
/* line 3380, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-playlist .wp-playlist-item-artist,
.post-type-archive-travel-log .wp-playlist .wp-playlist-item-artist {
  font-size: 14px;
}
/* line 3383, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-playlist .mejs-controls .mejs-time-rail .mejs-time-current,
.post-type-archive-travel-log .wp-playlist .mejs-controls .mejs-time-rail .mejs-time-current {
  background-color: #f8971d;
}
/* line 3387, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-video,
.post-type-archive-travel-log .wp-video {
  width: 100% !important;
  margin-bottom: 35px;
}
/* line 3390, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-video .mejs-video,
.post-type-archive-travel-log .wp-video .mejs-video {
  width: 100%;
}
/* line 3393, ../scss/breakpoints/_base.scss */
.tax-travel-log-type .wp-video .mejs-controls .mejs-time-rail .mejs-time-current,
.post-type-archive-travel-log .wp-video .mejs-controls .mejs-time-rail .mejs-time-current {
  background-color: #f8971d;
}

/* line 3399, ../scss/breakpoints/_base.scss */
#travel-log {
  position: relative;
}
/* line 3401, ../scss/breakpoints/_base.scss */
#travel-log .article-anchor {
  display: block;
  position: relative;
  top: -95px;
}
/* line 3406, ../scss/breakpoints/_base.scss */
#travel-log h3 {
  font-size: 21px;
  max-width: 800px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1029px) {
  /* line 3406, ../scss/breakpoints/_base.scss */
  #travel-log h3 {
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 3416, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry {
  max-width: 800px;
}
@media screen and (min-width: 942px) and (max-width: 1029px) {
  /* line 3416, ../scss/breakpoints/_base.scss */
  #travel-log article.travel-entry {
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 3422, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .travel-info {
  margin: 0 auto;
  max-width: 175px;
  list-style: none;
  text-align: center;
}
/* line 3427, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .travel-info .date {
  font-size: 16px;
  text-transform: uppercase;
}
/* line 3431, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .travel-info .map {
  margin: 23px 0;
}
/* line 3434, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .travel-info span {
  font-weight: bold;
}
/* line 3438, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav {
  margin-bottom: 35px;
  text-align: center;
}
/* line 3441, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav .jump-nav-inner {
  background: #F5F5F5;
  padding: 16px 24px;
  display: inline-block;
}
/* line 3446, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
/* line 3452, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav span::after {
  content: '\f107';
  font-family: fontawesome;
  display: inline-block;
  font-size: 18px;
  margin-left: 8px;
  transition: transform .2s ease;
}
/* line 3461, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav span.active::after {
  transform: rotate(-180deg);
}
/* line 3466, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  text-align: left;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .2s ease, opacity .3s ease;
}
/* line 3475, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul.active {
  height: 90px;
  opacity: 1;
}
/* line 3479, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul li {
  margin-top: 4px;
}
/* line 3481, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul li a {
  color: #000;
  font-size: 13px;
  padding: 0 0 0 31px;
  position: relative;
}
/* line 3487, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul li a.jts::before {
  background-image: url("../images/icon-c-rewind.png");
}
/* line 3492, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul li a.cursta::before {
  background-image: url("../images/icon-c-up.png");
}
/* line 3497, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul li a.backmap::before {
  background-image: url("../images/icon-c-map.png");
}
/* line 3501, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry .jump-nav ul li a::before {
  content: " ";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
/* line 3525, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry header.entry-header h4 {
  color: #adadad;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  display: none;
}
/* line 3532, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry header.entry-header h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 30px;
}
/* line 3542, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry section.entry-content iframe {
  margin-top: 20px;
  display: block;
  float: none;
  max-width: 100%;
}
@media screen and (max-width: 420px) {
  /* line 3542, ../scss/breakpoints/_base.scss */
  #travel-log article.travel-entry section.entry-content iframe {
    max-height: 240px;
  }
}
@media screen and (min-width: 421px) and (max-width: 520px) {
  /* line 3542, ../scss/breakpoints/_base.scss */
  #travel-log article.travel-entry section.entry-content iframe {
    max-height: 320px;
  }
}
@media screen and (min-width: 521px) and (max-width: 640px) {
  /* line 3542, ../scss/breakpoints/_base.scss */
  #travel-log article.travel-entry section.entry-content iframe {
    max-height: 360px;
  }
}
/* line 3558, ../scss/breakpoints/_base.scss */
#travel-log article.travel-entry section.entry-content .entry-meta {
  margin-top: 60px;
}
/* line 3565, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container {
  display: none;
  position: absolute;
  left: 0;
  top: 130px;
  height: calc(100% - 130px);
  border-left: dashed 2px #ccc;
}
/* line 3572, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller {
  width: 190px;
  position: absolute;
  padding-left: 25px;
}
/* line 3576, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller::before {
  content: ' ';
  display: block;
  background: #000;
  border: 7px solid #f8971d;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: -13px;
}
/* line 3587, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller .date {
  font-size: 16px;
  text-transform: uppercase;
}
/* line 3591, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller .map {
  margin: 23px 0;
}
/* line 3594, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller span {
  font-weight: bold;
}
/* line 3597, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller ul {
  list-style: none;
  margin: 0;
}
/* line 3600, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller ul li {
  font-size: 14px;
}
/* line 3604, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls {
  background-color: #f5f5f5;
  box-shadow: 0px 0px 5px #dfdfdf;
  color: #000;
  width: 100%;
  padding: 18px 20px;
}
/* line 3610, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls span {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* line 3615, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls li {
  margin-bottom: 12px;
}
/* line 3618, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls a {
  color: #000;
  font-size: 13px;
  padding: 0 0 0 31px;
  position: relative;
}
/* line 3624, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls a:before {
  content: " ";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
/* line 3636, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls .jts:before {
  background-image: url("../images/icon-c-rewind.png");
}
/* line 3639, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls .cursta:before {
  background-image: url("../images/icon-c-up.png");
}
/* line 3642, ../scss/breakpoints/_base.scss */
#travel-log #timeline-container .log-scroller nav.controls .backmap:before {
  background-image: url("../images/icon-c-map.png");
}

/******************************************************************
Social Feeds
*******************************************************************/
/* line 3653, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds {
  list-style: none;
  float: left;
  font-size: 18px;
  width: 100%;
}
/* line 3658, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds span {
  font-size: 16px;
  color: #5c6b80;
  text-transform: uppercase;
}
/* line 3664, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds li:before {
  content: '';
}
/* line 3667, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds li {
  float: left;
  margin-left: 10px;
  padding-left: 5px;
  margin-right: 5px;
}
/* line 3672, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds li:first-of-type {
  margin-left: 0;
  padding-left: 0;
}
/* line 3677, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds li a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/* line 3682, ../scss/breakpoints/_base.scss */
#content main ul.follow-feeds li a img {
  margin-bottom: 0;
  margin-top: 6px;
  width: 17px;
}

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

/* line 3704, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 3707, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 3720, ../scss/breakpoints/_base.scss */
.pagination ul .page-numbers {
  margin-top: 20px !important;
}
/* line 3723, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #d9d9d9;
}
/* line 3732, ../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 0;
  min-width: 1em;
  display: block;
  color: #000;
}
/* line 3748, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #5c6b80;
  font-size: 15px;
  padding-top: 14px;
}
/* line 3754, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #5c6b80;
}

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

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

/* line 3800, ../scss/breakpoints/_base.scss */
.desktop-only {
  display: none !important;
}

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

/* line 3809, ../scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 3815, ../scss/breakpoints/_base.scss */
.comment .comment-author {
  padding: 7px;
  border: 0;
}
/* line 3821, ../scss/breakpoints/_base.scss */
.comment .vcard {
  margin-left: 50px;
}
/* line 3824, ../scss/breakpoints/_base.scss */
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
/* line 3832, ../scss/breakpoints/_base.scss */
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
/* line 3837, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
/* line 3841, ../scss/breakpoints/_base.scss */
.comment .vcard time a:hover {
  text-decoration: underline;
}
/* line 3851, ../scss/breakpoints/_base.scss */
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
/* line 3859, ../scss/breakpoints/_base.scss */
.comment:last-child {
  margin-bottom: 0;
}
/* line 3863, ../scss/breakpoints/_base.scss */
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
/* line 3881, ../scss/breakpoints/_base.scss */
.comment[class*=depth-] {
  margin-top: 1.1em;
}
/* line 3885, ../scss/breakpoints/_base.scss */
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
/* line 3890, ../scss/breakpoints/_base.scss */
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 45px;
  padding: 20px 0 0 0;
}
/* line 3903, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 3906, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #f5f5f5;
}

/* comment meta */
/* comment content */
/* line 3940, ../scss/breakpoints/_base.scss */
.comment_content p {
  margin: 5px 0 1.5em;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
}

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

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

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 3974, ../scss/breakpoints/_base.scss */
.badassador-author {
  margin-left: 0 !important;
  min-height: 111px;
}
/* line 3977, ../scss/breakpoints/_base.scss */
.badassador-author .comment_content {
  margin-left: 88px !important;
}

/* line 3981, ../scss/breakpoints/_base.scss */
.comment-respond {
  padding: 45px 0;
  border-top: 1px solid #f5f5f5;
}

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

/* line 3991, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* line 3996, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #5c6b80;
}

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

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

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

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

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

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

@media screen and (max-width: 479px) {
  /* line 4042, ../scss/breakpoints/_base.scss */
  .form-submit {
    text-align: center;
  }
  /* line 4045, ../scss/breakpoints/_base.scss */
  .form-submit #submit {
    float: none;
  }
}
/*********************
SIDEBARS & ASIDES
*********************/
/* line 4059, ../scss/breakpoints/_base.scss */
.sidebar .widget {
  background: #f5f5f5;
  margin-top: 0;
  padding: 20px;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 4067, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_sp_image {
  padding: 0;
  line-height: 0;
}
/* line 4070, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_sp_image img {
  width: 100%;
  height: auto;
}
/* line 4077, ../scss/breakpoints/_base.scss */
.sidebar .widget ul li {
  /* deep nesting */
}
/* line 4091, ../scss/breakpoints/_base.scss */
.sidebar .widget .cat-link {
  font-size: 13px;
  color: #f8971d;
}
/* line 4095, ../scss/breakpoints/_base.scss */
.sidebar .widget .image-area {
  float: left;
  width: 30%;
}
/* line 4099, ../scss/breakpoints/_base.scss */
.sidebar .widget .text-area {
  float: left;
  width: 65%;
  margin-left: 5%;
}
/* line 4103, ../scss/breakpoints/_base.scss */
.sidebar .widget .text-area a {
  font-size: 18px;
}

/* line 4110, ../scss/breakpoints/_base.scss */
.full {
  float: left;
  width: 100%;
}

/* line 4114, ../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;
}

/* line 4126, ../scss/breakpoints/_base.scss */
.widget.wtpsw_post_list_widget h6 {
  margin-top: 10px !important;
  line-height: 1;
}
/* line 4128, ../scss/breakpoints/_base.scss */
.widget.wtpsw_post_list_widget h6 a {
  font-size: 20px;
  color: #000;
}
/* line 4134, ../scss/breakpoints/_base.scss */
.widget.wtpsw_post_list_widget .cat-link {
  line-height: 1;
}
/* line 4138, ../scss/breakpoints/_base.scss */
.widget.wtpsw_post_list_widget li {
  border-bottom: 0;
}

/* line 4143, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget {
  background: center center url("../images/newsletter-widget-bg.png") no-repeat;
  background-size: cover;
  padding: 20px 20px;
}
/* line 4146, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget label {
  display: none !important;
}
/* line 4149, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget .textInput {
  background: #f5f5f5;
}
/* line 4152, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget .textInput::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000 !important;
}
/* line 4155, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget .textInput::-moz-placeholder {
  /* Firefox 19+ */
  color: #000 !important;
}
/* line 4158, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget .textInput:-ms-input-placeholder {
  /* IE 10+ */
  color: #000 !important;
}
/* line 4161, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget .textInput:-moz-placeholder {
  /* Firefox 18- */
  color: #000 !important;
}
/* line 4166, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget h3 {
  color: white;
  text-transform: uppercase;
}
/* line 4170, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget p {
  font-size: 15px;
  line-height: 1.15;
}
/* line 4175, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget button.gerber-button {
  background: #f8971d !important;
  width: 100%;
  color: black;
}
/* line 4179, ../scss/breakpoints/_base.scss */
.widget.newsletter-signup-widget button.gerber-button:hover {
  background: #000 !important;
  color: #f8971d !important;
  border-color: #f8971d;
}

/* line 4187, ../scss/breakpoints/_base.scss */
.gf_full {
  float: left;
  width: calc(100% ) !important;
}

/* line 4193, ../scss/breakpoints/_base.scss */
.widget_sp_image {
  position: relative;
  top: 0;
  left: 0;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}
/* line 4200, ../scss/breakpoints/_base.scss */
.widget_sp_image .content {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 20px;
  font-size: 31px;
  line-height: 33px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 5px 0 0 0;
  color: #fff;
}
/* line 4213, ../scss/breakpoints/_base.scss */
.widget_sp_image .title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #f8971d;
}
/* line 4221, ../scss/breakpoints/_base.scss */
.widget_sp_image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/post-overlay.png) no-repeat transparent;
  background-size: cover;
  height: 100%;
  width: 100%;
}
/* line 4230, ../scss/breakpoints/_base.scss */
.widget_sp_image .fa-plus {
  position: absolute;
  right: 15px;
  bottom: 20px;
  font-size: 20px;
  color: #f8971d;
}
/* line 4238, ../scss/breakpoints/_base.scss */
.widget_sp_image:hover .image-overlay {
  background: url(../images/post-overlay-hover.png) !important;
  cursor: pointer;
}

/*********************
FOOTER STYLES
*********************/
/* line 4250, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #000;
  color: #f5f5f5;
  padding-bottom: 10px;
}

/* line 4257, ../scss/breakpoints/_base.scss */
.footer-nav {
  float: left;
  margin-left: 0;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}
/* line 4263, ../scss/breakpoints/_base.scss */
.footer-nav li {
  color: #838383;
  display: inline-block;
}
/* line 4266, ../scss/breakpoints/_base.scss */
.footer-nav li a {
  color: #838383;
  padding-right: 5px;
  text-decoration: none;
}
/* line 4270, ../scss/breakpoints/_base.scss */
.footer-nav li a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 4275, ../scss/breakpoints/_base.scss */
.footer-nav li a:after {
  content: '|';
  display: inline-block;
  padding-left: 5px;
  color: #838383 !important;
}
/* line 4283, ../scss/breakpoints/_base.scss */
.footer-nav li:last-child a {
  color: #fff;
}
/* line 4286, ../scss/breakpoints/_base.scss */
.footer-nav li:last-child a .c-gerber-orange {
  font-weight: 600;
}
/* line 4289, ../scss/breakpoints/_base.scss */
.footer-nav li:last-child a:hover {
  color: #fff;
}
/* line 4291, ../scss/breakpoints/_base.scss */
.footer-nav li:last-child a:hover .c-gerber-orange {
  color: #fff !important;
}
/* line 4296, ../scss/breakpoints/_base.scss */
.footer-nav li:last-child a:after {
  content: '';
}

/* line 4304, ../scss/breakpoints/_base.scss */
.gerber-arrow a:after {
  font-family: "FontAwesome";
  content: '\f04b ';
  font-size: 7px;
  margin-left: 5px;
  position: relative;
  top: -2px;
}

/* line 4313, ../scss/breakpoints/_base.scss */
.social-links-title {
  margin-top: -2px;
  margin-right: 4px;
  margin-left: 0 !important;
}

/* line 4319, ../scss/breakpoints/_base.scss */
.social-links {
  float: left;
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
  text-align: center;
  width: 100%;
}
/* line 4327, ../scss/breakpoints/_base.scss */
.social-links li {
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
/* line 4331, ../scss/breakpoints/_base.scss */
.social-links li a {
  background-repeat: no-repeat;
  display: block;
  height: 19px;
  outline: none;
  text-indent: -9999px;
  width: 19px;
  position: absolute;
  top: 0;
}
/* line 4341, ../scss/breakpoints/_base.scss */
.social-links li:before {
  color: #838383;
  font-size: 20px;
}
/* line 4345, ../scss/breakpoints/_base.scss */
.social-links li.footer-facebook a {
  background-image: url("../images/icon-facebook.png");
}
/* line 4348, ../scss/breakpoints/_base.scss */
.social-links li.footer-twitter a {
  background-image: url("../images/icon-twitter.png");
}
/* line 4351, ../scss/breakpoints/_base.scss */
.social-links li.footer-instagram a {
  background-image: url("../images/icon-instagram.png");
}

/* line 4356, ../scss/breakpoints/_base.scss */
.social-links li:hover:before {
  color: #fff !important;
}

/*
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 */
/* line 4379, ../scss/breakpoints/_base.scss */
.copyright {
  clear: both;
  color: #585858;
  font-size: 14px;
  font-weight: 700;
  padding-top: 10px;
  text-align: center;
}
/* line 4387, ../scss/breakpoints/_base.scss */
.copyright a {
  color: #585858;
  text-decoration: none;
}
/* line 4390, ../scss/breakpoints/_base.scss */
.copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

/*********************
STICKY FOOTER
*********************/
/* line 4401, ../scss/breakpoints/_base.scss */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* line 4407, ../scss/breakpoints/_base.scss */
#container {
  min-height: 100%;
  position: relative;
}

/* line 4416, ../scss/breakpoints/_base.scss */
.footer {
  width: 100%;
}

/* line 4425, ../scss/breakpoints/_base.scss */
.page-content .alignright {
  clear: both;
  width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
}

/* ====================
   GRAVITY FORM STYLES
   ==================== */
/* line 4436, ../scss/breakpoints/_base.scss */
.gform_confirmation_message {
  font-size: 25px;
  margin-bottom: 45px;
}

/* line 4442, ../scss/breakpoints/_base.scss */
.gform_body li {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
}
/* line 4446, ../scss/breakpoints/_base.scss */
.gform_body li:before, .gform_body li .validation_message {
  display: none !important;
}
/* line 4450, ../scss/breakpoints/_base.scss */
.gform_body .gfield_label {
  font-size: 13px !important;
}

/* line 4454, ../scss/breakpoints/_base.scss */
.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error select, .gform_wrapper li.gfield_error textarea {
  border: 1px solid #d9d9d9 !important;
  background: #fbe3e4 !important;
}

/* line 4458, ../scss/breakpoints/_base.scss */
.gform_wrapper .gfield_error .gfield_label {
  color: #000 !important;
}

/* line 4461, ../scss/breakpoints/_base.scss */
.gform_wrapper div.validation_error {
  display: none;
}

/* line 4465, ../scss/breakpoints/_base.scss */
.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  border: none !important;
}

/* line 4475, ../scss/breakpoints/_base.scss */
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label,
.gform_wrapper .gfield_description + .gform_wrapper .gfield_description.validation_message,
.gform_wrapper .ginput_container + .gfield_description.validation_message {
  margin-top: 0 !important;
}

/* line 4482, ../scss/breakpoints/_base.scss */
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-left: 0 !important;
}

/* line 4489, ../scss/breakpoints/_base.scss */
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* line 4494, ../scss/breakpoints/_base.scss */
body .gform_wrapper .gfield_description.validation_message,
body .gform_wrapper .top_label .gfield_description.validation_message {
  padding: 0 !important;
}

/* line 4499, ../scss/breakpoints/_base.scss */
body img.gform_ajax_spinner {
  display: none !important;
}

/* line 4502, ../scss/breakpoints/_base.scss */
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 4512, ../scss/breakpoints/_base.scss */
.archive-category-listing {
  font-size: 18px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  font-weight: bold;
  margin: 30px 0 60px;
}
/* line 4522, ../scss/breakpoints/_base.scss */
.archive-category-listing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 4527, ../scss/breakpoints/_base.scss */
.archive-category-listing ul li {
  float: left;
  margin-right: 40px;
}
/* line 4530, ../scss/breakpoints/_base.scss */
.archive-category-listing ul li a {
  border-bottom: 5px solid #fff;
}
/* line 4533, ../scss/breakpoints/_base.scss */
.archive-category-listing ul li.active a, .archive-category-listing ul li:hover a {
  border-bottom: 5px solid #000;
  color: #f8971d;
}
/* line 4537, ../scss/breakpoints/_base.scss */
.archive-category-listing ul li a {
  padding: 20px 0;
  display: inline-block;
  color: #898989;
  text-decoration: none;
}
/* line 4544, ../scss/breakpoints/_base.scss */
.archive-category-listing ul li.active a {
  color: #000;
}

/* line 4553, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .rpwwt-widget ul {
  margin: 0;
}
/* line 4556, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
  width: 50% !important;
  float: left !important;
}
/* line 4561, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .mega-menu-item-type-widget {
  float: right !important;
  position: absolute !important;
  right: 10px !important;
  width: 50% !important;
}
/* line 4567, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .mega-menu-item-has-children {
  position: relative !important;
}
/* line 4569, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .mega-menu-item-has-children ul.mega-sub-menu {
  padding: 10px !important;
}
/* line 4571, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .mega-menu-item-has-children ul.mega-sub-menu .image-overlay:hover {
  background: url(../images/post-overlay-hover.png) !important;
}
/* line 4575, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .mega-menu-item-has-children li {
  padding: 0 !important;
}
/* line 4578, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .mega-menu-item-has-children li:hover .image-overlay {
  background: url(../images/post-overlay-hover.png) !important;
  cursor: pointer;
}
/* line 4586, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  padding: 0px 10px 0 !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  color: #000 !important;
  line-height: 35px !important;
  font-size: 14px !important;
}
/* line 4593, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
  text-decoration: underline !important;
}
/* line 4597, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:focus {
  font-weight: bold !important;
}
/* line 4602, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-megamenu .mega-sub-menu,
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-megamenu .mega-sub-menu {
  min-height: 360px;
}
/* line 4607, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .rpwwt-widget .featured-image-wrap {
  height: 340px !important;
  position: relative;
}
/* line 4611, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .rpwwt-content {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
}
/* line 4618, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .rpwwt-post-categories {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}
/* line 4623, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .rpwwt-post-title {
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
/* line 4630, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/post-overlay.png) no-repeat transparent;
  background-size: cover;
  height: 100%;
  width: 100%;
}
/* line 4640, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav .fa-plus {
  position: absolute;
  right: 15px;
  bottom: 20px;
  font-size: 20px;
  color: #f8971d;
}

/* line 4649, ../scss/breakpoints/_base.scss */
#mobile-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
  width: 100% !important;
  float: none !important;
}

/* line 4653, ../scss/breakpoints/_base.scss */
#related-stories li {
  clear: both;
  width: 100%;
  margin-bottom: 15px;
}
/* line 4657, ../scss/breakpoints/_base.scss */
#related-stories li:after {
  content: "";
  display: table;
  clear: both;
}

/* line 4663, ../scss/breakpoints/_base.scss */
.wtpsw-post-thumb-left {
  min-width: 75px;
  width: 75px !important;
  display: block;
  float: left;
}

/* line 4669, ../scss/breakpoints/_base.scss */
.wtpsw-post-thumb-right {
  display: block;
  float: left;
}

/* line 4673, ../scss/breakpoints/_base.scss */
.sidebar .margin-sm-top {
  font-size: 21px;
  line-height: normal;
}

/* line 4677, ../scss/breakpoints/_base.scss */
.mega-menu-item .textwidget p {
  display: none;
}

/*********************
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.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 33, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 34, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 35, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 36, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 81, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 85, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 90, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 95, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
  /* line 122, ../scss/breakpoints/_481up.scss */
  .single-badassador #badassador-pack img, .single-partner #badassador-pack img, .single-featured #badassador-pack img {
    display: block !important;
  }
  /* line 126, ../scss/breakpoints/_481up.scss */
  .single-badassador #badassador-pack ol li, .single-partner #badassador-pack ol li, .single-featured #badassador-pack ol li {
    width: 50%;
    float: left;
  }

  /* line 136, ../scss/breakpoints/_481up.scss */
  #search-cats li {
    float: left;
  }

  /* line 142, ../scss/breakpoints/_481up.scss */
  #search-form input {
    font-size: 35px;
  }

  /* line 147, ../scss/breakpoints/_481up.scss */
  .social-links li {
    margin-left: 19px;
  }

  /* line 154, ../scss/breakpoints/_481up.scss */
  #page-banner {
    position: relative;
    background-color: #000;
  }
  /* line 157, ../scss/breakpoints/_481up.scss */
  #page-banner h1 {
    font-size: 48px;
  }

  /* line 164, ../scss/breakpoints/_481up.scss */
  .single-challenge .custom-header video {
    display: block;
  }
  /* line 167, ../scss/breakpoints/_481up.scss */
  .single-challenge .custom-header .header-img {
    display: none;
  }
  /* line 177, ../scss/breakpoints/_481up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label {
    font-size: 40px !important;
  }
  /* line 180, ../scss/breakpoints/_481up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li {
    display: inline-block;
  }
  /* line 182, ../scss/breakpoints/_481up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label {
    width: 270px;
  }
  /* line 188, ../scss/breakpoints/_481up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email {
    width: 350px !important;
  }
  /* line 194, ../scss/breakpoints/_481up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_footer .gform_button,
  .single-challenge #poll-challenge .gpoll_container .gform_footer .gform_button {
    width: auto;
  }
}
/*********************
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
  *********************/
  /* line 21, ../scss/breakpoints/_768up.scss */
  .desktop-only {
    display: block !important;
  }

  /* line 24, ../scss/breakpoints/_768up.scss */
  .mobile-show {
    display: none;
  }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 30, ../scss/breakpoints/_768up.scss */
  .wrap {
    max-width: 1360px;
    width: 85%;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 40, ../scss/breakpoints/_768up.scss */
  #desktop-nav {
    display: block;
    width: 85%;
    float: left;
    height: 71px;
  }

  /* line 46, ../scss/breakpoints/_768up.scss */
  #logo {
    float: left;
    height: auto;
  }

  /* line 51, ../scss/breakpoints/_768up.scss */
  .home .header-byline {
    font-size: 3em;
  }
  /* line 55, ../scss/breakpoints/_768up.scss */
  .home .header-bar {
    width: 55px;
  }
  /* line 59, ../scss/breakpoints/_768up.scss */
  .home .header-subtitle {
    font-size: 19px;
  }

  /* line 78, ../scss/breakpoints/_768up.scss */
  .home .fixed-header {
    position: fixed;
  }
  /* line 80, ../scss/breakpoints/_768up.scss */
  .home .fixed-header #logo,
  .home .fixed-header #desktop-nav {
    opacity: 1;
  }
  /* line 87, ../scss/breakpoints/_768up.scss */
  .home .fixed-header #desktop-utility {
    top: 0;
  }
  /* line 90, ../scss/breakpoints/_768up.scss */
  .home .fixed-header #desktop-utility ul li {
    float: none;
  }
  /* line 94, ../scss/breakpoints/_768up.scss */
  .home .fixed-header #desktop-utility .badassador-utility {
    margin-top: -6px;
    margin-bottom: 8px;
  }
  /* line 98, ../scss/breakpoints/_768up.scss */
  .home .fixed-header #desktop-utility .tribe-utility {
    margin-left: 0;
  }

  /* line 105, ../scss/breakpoints/_768up.scss */
  .admin-bar .fixed-header {
    top: 30px;
  }

  /* line 108, ../scss/breakpoints/_768up.scss */
  .header {
    position: fixed;
  }
  /* line 110, ../scss/breakpoints/_768up.scss */
  .header .wrap {
    max-width: 1360px;
    width: 85%;
  }

  /* line 116, ../scss/breakpoints/_768up.scss */
  #logo {
    margin: 13px 0 0;
  }
  /* line 118, ../scss/breakpoints/_768up.scss */
  #logo .header-shop-link {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: -4px;
    padding-bottom: 14px;
    text-transform: uppercase;
  }
  /* line 125, ../scss/breakpoints/_768up.scss */
  #logo .header-shop-link a {
    text-decoration: none;
  }
  /* line 129, ../scss/breakpoints/_768up.scss */
  #logo img {
    width: auto;
  }

  /* line 132, ../scss/breakpoints/_768up.scss */
  #desktop-utility {
    display: block;
    text-align: right;
    background: #151818;
    width: 100%;
    border-bottom: 1px solid #252525;
  }
  /* line 134, ../scss/breakpoints/_768up.scss */
  #desktop-utility a:hover {
    color: #fff;
  }
  /* line 140, ../scss/breakpoints/_768up.scss */
  #desktop-utility #inner-header {
    min-height: 0;
  }
  /* line 143, ../scss/breakpoints/_768up.scss */
  #desktop-utility .utility-list {
    margin: 10px 0;
  }
  /* line 146, ../scss/breakpoints/_768up.scss */
  #desktop-utility .badassador-utility {
    margin-top: -6px;
    margin-bottom: 8px;
  }
  /* line 150, ../scss/breakpoints/_768up.scss */
  #desktop-utility .tribe-utility {
    border: 2px solid #fff;
    display: inline-block;
    margin-top: -2px;
    padding: 5px 18px 7px 18px;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 162, ../scss/breakpoints/_768up.scss */
  #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:focus {
    background: transparent !important;
  }

  /* line 165, ../scss/breakpoints/_768up.scss */
  #mega-menu-wrap-main-nav {
    background: transparent !important;
  }

  /* line 171, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav {
    position: static !important;
  }
  /* line 174, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav {
    position: static !important;
  }
  /* line 178, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    padding: 0 10px;
    width: 100%;
  }
  /* line 187, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .mega-menu-item {
    padding: 10px 0 0 0;
  }
  /* line 189, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .mega-menu-item.mega-menu-columns-1-of-5 {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1029px) {
  /* line 189, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .mega-menu-item.mega-menu-columns-1-of-5 {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 197, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .rpwwt-widget {
    height: 100%;
  }
  /* line 199, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .rpwwt-widget ul {
    height: 100%;
  }
  /* line 201, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .rpwwt-widget ul li {
    height: 100%;
    margin: 0;
  }
  /* line 204, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .rpwwt-widget ul li .featured-image-wrap {
    height: 100%;
  }
  /* line 210, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .rpwwt-widget:hover .image-overlay {
    background: url(../images/post-overlay-hover.png) !important;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1029px) {
  /* line 217, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 221, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 .textwidget {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    height: 100%;
  }
  /* line 230, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 .textwidget a {
    background-color: #d1d1d0;
    color: #000;
    display: inline-block;
    float: left;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    margin-right: 1%;
    padding: 19px 24px;
    width: 24%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1029px) {
  /* line 230, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 .textwidget a {
    margin-right: 2%;
    width: 48%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 246, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 .textwidget a p {
    line-height: 18px;
    margin: 0 0 6px 0;
  }
  /* line 251, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 .textwidget a strong {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
  }
  /* line 258, ../scss/breakpoints/_768up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-menu-columns-4-of-5 .textwidget a:hover strong {
    text-decoration: underline;
  }

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

  /* line 273, ../scss/breakpoints/_768up.scss */
  #desktop-nav, #home-nav {
    padding-left: 10px;
  }
  /* line 276, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav, #home-nav nav {
    float: left;
  }
  /* line 279, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-megamenu .mega-sub-menu, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-megamenu .mega-sub-menu {
    width: 560px;
  }
  /* line 283, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item {
    height: 69px;
  }
  /* line 288, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul {
    left: 0;
    min-width: 200px;
    padding: 20px 0;
  }
  /* line 292, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul li a, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul li a {
    padding: 0px 20px 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
  }
  /* line 297, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul li a:hover, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul li a:hover {
    background: transparent;
    text-decoration: underline;
  }
  /* line 305, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:hover, #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:focus, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:hover, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:focus {
    background: #222;
  }
  /* line 310, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link {
    height: 69px;
    line-height: 69px;
    text-transform: uppercase;
    padding: 0px 10px 0px 10px;
  }
  /* line 315, ../scss/breakpoints/_768up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:hover, #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:focus, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:hover, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:focus {
    background: transparent;
  }

  /* line 331, ../scss/breakpoints/_768up.scss */
  #mobile-nav .widget_nav_menu .menu, #home-nav .widget_nav_menu .menu, #desktop-nav .widget_nav_menu .menu {
    margin: 0;
    padding: 0;
  }
  /* line 334, ../scss/breakpoints/_768up.scss */
  #mobile-nav .widget_nav_menu .menu .menu-item a, #home-nav .widget_nav_menu .menu .menu-item a, #desktop-nav .widget_nav_menu .menu .menu-item a {
    color: inherit;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    color: #000;
  }
  /* line 343, ../scss/breakpoints/_768up.scss */
  #mobile-nav .widget_nav_menu .menu > .menu-item, #home-nav .widget_nav_menu .menu > .menu-item, #desktop-nav .widget_nav_menu .menu > .menu-item {
    margin-bottom: 20px;
  }
  /* line 346, ../scss/breakpoints/_768up.scss */
  #mobile-nav .widget_nav_menu .menu .sub-menu, #home-nav .widget_nav_menu .menu .sub-menu, #desktop-nav .widget_nav_menu .menu .sub-menu {
    margin: 0;
    padding: 0;
  }
  /* line 349, ../scss/breakpoints/_768up.scss */
  #mobile-nav .widget_nav_menu .menu .sub-menu .menu-item a, #home-nav .widget_nav_menu .menu .sub-menu .menu-item a, #desktop-nav .widget_nav_menu .menu .sub-menu .menu-item a {
    font-weight: normal;
    text-transform: none;
    font-size: 14px;
    color: #5c6b80;
  }

  /* line 368, ../scss/breakpoints/_768up.scss */
  #desktop-nav .search-button a,
  #home-nav .search-button a {
    background-image: url("../images/icon-search-button.png");
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: unset;
    height: 16px;
    padding-top: 33px;
    text-indent: -9999px;
    width: 16px;
  }
  /* line 380, ../scss/breakpoints/_768up.scss */
  #desktop-nav .more-button a,
  #home-nav .more-button a {
    background-image: url("../images/icon-plus.png");
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: unset;
    height: 13px;
    padding-top: 33px;
    text-indent: -9999px;
    width: 16px;
  }

  /* line 395, ../scss/breakpoints/_768up.scss */
  .ie .more-button a, .ie .search-button a {
    padding-top: 46px !important;
    padding-right: 25px !important;
  }
  /* line 401, ../scss/breakpoints/_768up.scss */
  .ie .nav .search-button {
    position: relative;
    left: 0;
  }

  /* line 407, ../scss/breakpoints/_768up.scss */
  .home-header {
    margin-top: 0;
  }
  /* line 410, ../scss/breakpoints/_768up.scss */
  .home-header .header-content {
    top: 50%;
  }
  /* line 412, ../scss/breakpoints/_768up.scss */
  .home-header .header-content img {
    display: inline;
    width: 200px;
  }
  /* line 416, ../scss/breakpoints/_768up.scss */
  .home-header .header-content p {
    margin-top: -16px;
    min-width: 400px;
    width: 23%;
  }

  /* line 424, ../scss/breakpoints/_768up.scss */
  #home-nav {
    background-image: url("../images/bg-home-nav.png");
    background-repeat: repeat;
    bottom: 0;
    display: block;
    position: absolute;
    width: 100%;
  }
  /* line 432, ../scss/breakpoints/_768up.scss */
  #home-nav .nav .search-button {
    position: relative;
    right: 0;
  }

  /* line 439, ../scss/breakpoints/_768up.scss */
  .nav {
    margin-left: -17px;
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 442, ../scss/breakpoints/_768up.scss */
  .nav ul {
    background: #000;
    margin-top: 0;
  }
  /* line 446, ../scss/breakpoints/_768up.scss */
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 449, ../scss/breakpoints/_768up.scss */
  .nav li a {
    border-bottom: 0;
    padding: 15px 10px 0 10px;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* line 456, ../scss/breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus {
    color: #fff;
    text-decoration: underline;
  }
  /* line 468, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  /* line 477, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  /* line 479, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  /* line 496, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  /* line 506, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  /* line 521, ../scss/breakpoints/_768up.scss */
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }

  /* end .nav */
  /* ============================================
   Header Search Bar
   ============================================ */
  /* line 542, ../scss/breakpoints/_768up.scss */
  ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #5c6b80 !important;
  }

  /* line 545, ../scss/breakpoints/_768up.scss */
  ::-moz-placeholder {
    /* Firefox 19+ */
    color: #5c6b80 !important;
  }

  /* line 548, ../scss/breakpoints/_768up.scss */
  :-ms-input-placeholder {
    /* IE 10+ */
    color: #5c6b80 !important;
  }

  /* line 552, ../scss/breakpoints/_768up.scss */
  :-moz-placeholder {
    /* Firefox 18- */
    color: #5c6b80 !important;
  }

  /* line 556, ../scss/breakpoints/_768up.scss */
  .desktop-search-text {
    display: block;
    float: right;
    margin-top: 21px;
    position: absolute;
    right: 0;
  }
  /* line 562, ../scss/breakpoints/_768up.scss */
  .desktop-search-text a {
    color: #fff;
    background: transparent;
    text-decoration: none;
  }
  /* line 566, ../scss/breakpoints/_768up.scss */
  .desktop-search-text a span {
    margin-right: 10px;
    display: block;
    float: left;
    text-indent: 0;
  }
  /* line 573, ../scss/breakpoints/_768up.scss */
  .desktop-search-text a img {
    margin-top: 4px;
    float: left;
    display: block;
  }

  /* line 580, ../scss/breakpoints/_768up.scss */
  .desktop-nav-search {
    display: none;
    float: right;
    width: 181px;
    padding: 10px 0;
    margin-top: 8px;
  }
  /* line 586, ../scss/breakpoints/_768up.scss */
  .desktop-nav-search input[type="search"] {
    float: left;
    margin: 0;
    padding: 0 10px;
    height: 32px;
    max-width: 150px;
    min-width: 150px;
    box-sizing: border-box;
  }
  /* line 596, ../scss/breakpoints/_768up.scss */
  .desktop-nav-search button {
    float: right;
    width: 30px;
    background: transparent;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    height: 32px;
    line-height: 32px;
  }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* line 623, ../scss/breakpoints/_768up.scss */
  #container {
    padding-top: 169px;
  }

  /* line 631, ../scss/breakpoints/_768up.scss */
  .home #content {
    margin-top: 0;
  }

  /* line 635, ../scss/breakpoints/_768up.scss */
  #content main ul.follow-feeds {
    float: right;
    width: auto;
  }
  /* line 639, ../scss/breakpoints/_768up.scss */
  #content main ul.follow-feeds li:first-of-type {
    margin-left: 10px;
    padding-left: 5px;
  }

  /* line 647, ../scss/breakpoints/_768up.scss */
  .pagination ul {
    display: inline-block;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 656, ../scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 10px;
    padding: 0 40px 0 0 !important;
  }

  /* line 661, ../scss/breakpoints/_768up.scss */
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }

  /* line 666, ../scss/breakpoints/_768up.scss */
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  /* line 671, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  /* line 679, ../scss/breakpoints/_768up.scss */
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /* line 779, ../scss/breakpoints/_768up.scss */
  .footer-left,
  .footer-right {
    float: left;
    width: 50%;
  }

  /* line 785, ../scss/breakpoints/_768up.scss */
  .footer-nav {
    width: auto;
  }
  /* line 787, ../scss/breakpoints/_768up.scss */
  .footer-nav li {
    float: left;
  }
  /* line 789, ../scss/breakpoints/_768up.scss */
  .footer-nav li a {
    font-size: 14px;
  }

  /* line 795, ../scss/breakpoints/_768up.scss */
  .social-links {
    float: right;
    margin-top: 16px;
    width: auto;
  }
  /* line 799, ../scss/breakpoints/_768up.scss */
  .social-links li {
    float: left;
  }

  /* line 804, ../scss/breakpoints/_768up.scss */
  .copyright {
    float: right;
  }

  /*
  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 815, ../scss/breakpoints/_768up.scss */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }

  /* end .footer-links */
  /*********************
  STICKY FOOTER
  *********************/
  /* line 833, ../scss/breakpoints/_768up.scss */
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
  }

  /* line 839, ../scss/breakpoints/_768up.scss */
  #container {
    min-height: 100%;
    position: relative;
  }

  /* line 844, ../scss/breakpoints/_768up.scss */
  #content {
    padding-bottom: 80px;
    /* Height of the footer */
  }

  /* line 848, ../scss/breakpoints/_768up.scss */
  .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    /* Height of the footer */
  }

  /* line 856, ../scss/breakpoints/_768up.scss */
  .single-partner .footer {
    position: relative;
  }

  /*********************
  FEATURED CONTENT BLOCK
  *********************/
  /* line 864, ../scss/breakpoints/_768up.scss */
  #grid-top .featured-content-block {
    width: 32.3%;
    float: left;
    margin-right: 1.5%;
    min-height: 270px;
  }
  /* line 870, ../scss/breakpoints/_768up.scss */
  #grid-top .featured-content-block:nth-of-type(3n) {
    margin-right: 0;
  }

  /* line 878, ../scss/breakpoints/_768up.scss */
  .archive #stories, .blog #stories, .single-badassador #stories, .single-partner #stories, .single-featured #stories {
    /*.featured-content-block:nth-of-type(3n)  {
       margin-right:0;
     }*/
  }

  /* line 886, ../scss/breakpoints/_768up.scss */
  .home #stories {
    /*.featured-content-block:nth-of-type(3n+1)  {
       margin-right:0;
     } */
  }
  /* line 891, ../scss/breakpoints/_768up.scss */
  .home #grid-top {
    margin: 45px 0;
  }

  /* line 898, ../scss/breakpoints/_768up.scss */
  #grid-bottom .featured-content-block {
    width: 49.25%;
    float: left;
    margin-right: 1.5%;
  }

  /* line 907, ../scss/breakpoints/_768up.scss */
  .home #grid-bottom .featured-content-block:nth-child(even) {
    margin-right: 0;
  }

  /* line 912, ../scss/breakpoints/_768up.scss */
  .custom-header {
    max-height: none;
    overflow: visible;
  }
  /* line 917, ../scss/breakpoints/_768up.scss */
  .custom-header h1 {
    display: block;
  }

  /* line 922, ../scss/breakpoints/_768up.scss */
  .sidebar {
    float: left;
  }

  /* line 925, ../scss/breakpoints/_768up.scss */
  main {
    float: right !important;
    width: 100%;
  }

  /* line 929, ../scss/breakpoints/_768up.scss */
  .has-featured-image {
    display: none !important;
  }

  /* line 934, ../scss/breakpoints/_768up.scss */
  .small-block {
    width: 32.33% !important;
  }
  /* line 936, ../scss/breakpoints/_768up.scss */
  .small-block .bg-cover {
    height: 300px !important;
  }

  /* line 940, ../scss/breakpoints/_768up.scss */
  .small-block:nth-of-type(2n) {
    margin-right: 1.5% !important;
  }

  /* line 943, ../scss/breakpoints/_768up.scss */
  .small-block:nth-of-type(3n) {
    margin-right: 0 !important;
  }

  /* line 950, ../scss/breakpoints/_768up.scss */
  .home .header-content {
    display: block;
  }
  /* line 956, ../scss/breakpoints/_768up.scss */
  .home .custom-header p {
    display: block;
  }

  /* line 962, ../scss/breakpoints/_768up.scss */
  .custom-header .header-img {
    position: relative;
    width: 100%;
    left: 0;
    max-width: 100%;
  }

  /* line 969, ../scss/breakpoints/_768up.scss */
  .mobile-hide {
    display: block;
  }

  /* line 974, ../scss/breakpoints/_768up.scss */
  .header-content p {
    display: block !important;
    text-align: left !important;
    width: 100% !important;
  }

  /* line 983, ../scss/breakpoints/_768up.scss */
  .home .header-content p {
    text-align: center !important;
  }

  /* line 993, ../scss/breakpoints/_768up.scss */
  .single-badassador #badassador-pack img,
  .single-partner #badassador-pack img,
  .single-featured #badassador-pack img {
    display: block !important;
  }
  /* line 997, ../scss/breakpoints/_768up.scss */
  .single-badassador #badassador-pack ol li,
  .single-partner #badassador-pack ol li,
  .single-featured #badassador-pack ol li {
    width: 50%;
    float: left;
  }

  /* line 1005, ../scss/breakpoints/_768up.scss */
  .related-stories #stories .featured-content-block:nth-of-type(even) {
    margin-right: 0 !important;
    margin-left: 1.5% !important;
  }

  /* line 1013, ../scss/breakpoints/_768up.scss */
  .related-stories #stories .featured-content-block:nth-of-type(odd) {
    margin-right: 0% !important;
    clear: left;
    margin-left: 0% !important;
  }

  /* line 1021, ../scss/breakpoints/_768up.scss */
  #stories .featured-content-block {
    width: 49.25%;
    float: left;
    margin-right: 1.5%;
    min-height: 450px;
  }
  /* line 1029, ../scss/breakpoints/_768up.scss */
  #stories .featured-content-block:nth-of-type(even) {
    margin-right: 1.5% !important;
  }
  /* line 1032, ../scss/breakpoints/_768up.scss */
  #stories .featured-content-block:nth-of-type(odd) {
    margin-right: 0 !important;
  }

  /* line 1040, ../scss/breakpoints/_768up.scss */
  .archive #stories .featured-content-block:nth-of-type(odd), .blog #stories .featured-content-block:nth-of-type(odd), .single-badassador #stories .featured-content-block:nth-of-type(odd), .single-partner #stories .featured-content-block:nth-of-type(odd), .single-featured #stories .featured-content-block:nth-of-type(odd) {
    margin-right: 1.5% !important;
  }
  /* line 1043, ../scss/breakpoints/_768up.scss */
  .archive #stories .featured-content-block:nth-of-type(even), .blog #stories .featured-content-block:nth-of-type(even), .single-badassador #stories .featured-content-block:nth-of-type(even), .single-partner #stories .featured-content-block:nth-of-type(even), .single-featured #stories .featured-content-block:nth-of-type(even) {
    margin-right: 0 !important;
  }

  /* line 1048, ../scss/breakpoints/_768up.scss */
  .featured-title-wrap .button {
    width: auto !important;
    display: inline-block !important;
  }

  /* line 1055, ../scss/breakpoints/_768up.scss */
  .signup-wrapper .signup-left {
    padding: 60px 80px 0 0;
  }

  /* line 1059, ../scss/breakpoints/_768up.scss */
  h1, .h1 {
    font-size: 48px;
    line-height: 50px;
  }

  /* line 1065, ../scss/breakpoints/_768up.scss */
  .small-block .bg-cover {
    height: 300px !important;
  }

  /* line 1072, ../scss/breakpoints/_768up.scss */
  .search-results .result header {
    width: 25%;
    float: left;
    height: 150px;
  }
  /* line 1077, ../scss/breakpoints/_768up.scss */
  .search-results .result section {
    float: left;
    width: 75%;
    padding-left: 25px;
  }
  /* line 1083, ../scss/breakpoints/_768up.scss */
  .search-results .no-featured {
    padding-left: 0 !important;
  }

  /* ====================
     ZOOM EFFECT
     ==================== */
  /*.zoom-outer {
    position: relative;
    overflow: hidden;
  }
  .zoom-middle {
    overflow:hidden;
  }
  .zoom-inner {
    transition-duration: 0.3s;
  }
  .zoom-outer:hover .zoom-inner {
    transform: scale(1.05);
  }*/
  /* ====================
     Vertical Social Share
     ==================== */
  /* line 1109, ../scss/breakpoints/_768up.scss */
  .content-container-single {
    padding-right: 95px;
  }

  /* line 1112, ../scss/breakpoints/_768up.scss */
  .vertical-share {
    width: 70px;
    text-align: center !important;
    position: absolute;
    right: 0;
    top: 0;
  }
  /* line 1118, ../scss/breakpoints/_768up.scss */
  .vertical-share * {
    text-align: center !important;
  }

  /* line 1126, ../scss/breakpoints/_768up.scss */
  .search-results .result header.bg-cover {
    display: block !important;
  }

  /* line 1132, ../scss/breakpoints/_768up.scss */
  .wtpsw-post-thumb-left {
    min-width: 30%;
    width: 30%;
    display: block;
    float: none;
  }

  /* line 1138, ../scss/breakpoints/_768up.scss */
  .wtpsw-post-thumb-right {
    min-width: 65%;
    width: 65%;
    display: block;
    float: none;
  }
  /* line 1143, ../scss/breakpoints/_768up.scss */
  .wtpsw-post-thumb-right:after {
    content: "";
    display: table;
    clear: both;
  }

  /* line 1153, ../scss/breakpoints/_768up.scss */
  .top-rated .top-rated-prev,
  .section-right .top-rated-prev,
  .section-left .top-rated-prev {
    left: 25px;
  }
  /* line 1156, ../scss/breakpoints/_768up.scss */
  .top-rated .top-rated-next,
  .section-right .top-rated-next,
  .section-left .top-rated-next {
    right: 25px;
  }

  /******************************************************************
  Single Challenge
  *******************************************************************/
  /* line 1166, ../scss/breakpoints/_768up.scss */
  .single-challenge .custom-header .chalenge-cta-link {
    width: auto;
  }
  /* line 1173, ../scss/breakpoints/_768up.scss */
  .single-challenge #mission-challenge.dark .stats-container ul.stats li {
    margin-right: 6%;
    margin-bottom: 0px;
    width: 20%;
  }
  /* line 1177, ../scss/breakpoints/_768up.scss */
  .single-challenge #mission-challenge.dark .stats-container ul.stats li .value {
    font-size: 23px;
  }
  /* line 1179, ../scss/breakpoints/_768up.scss */
  .single-challenge #mission-challenge.dark .stats-container ul.stats li .value .lrg {
    font-size: 60px;
    line-height: 60px;
  }
  /* line 1188, ../scss/breakpoints/_768up.scss */
  .single-challenge #mission-challenge.dark .stats-container ul.stats.graph li .stat {
    float: left;
    width: 62% !important;
  }
  /* line 1196, ../scss/breakpoints/_768up.scss */
  .single-challenge .section-left {
    width: 50%;
    float: left;
    padding-right: 45px;
  }
  /* line 1201, ../scss/breakpoints/_768up.scss */
  .single-challenge #inner-content > .challenges-header {
    display: none;
  }
  /* line 1204, ../scss/breakpoints/_768up.scss */
  .single-challenge #main > .challenges-header {
    display: block;
  }
  /* line 1206, ../scss/breakpoints/_768up.scss */
  .single-challenge #main > .challenges-header h2 {
    color: #fff;
  }
  /* line 1210, ../scss/breakpoints/_768up.scss */
  .single-challenge main {
    float: none !important;
  }
  /* line 1213, ../scss/breakpoints/_768up.scss */
  .single-challenge #travel-map {
    position: absolute;
  }
  /* line 1218, ../scss/breakpoints/_768up.scss */
  .single-challenge #main.where-the-road-ends #map-key {
    display: block;
    max-width: 275px;
    margin-top: 500px;
  }
  /* line 1225, ../scss/breakpoints/_768up.scss */
  .single-challenge #challenge-cta {
    padding: 110px 0;
  }
  /* line 1227, ../scss/breakpoints/_768up.scss */
  .single-challenge #challenge-cta h3 {
    font-size: 40px;
    line-height: 44px;
  }
  /* line 1231, ../scss/breakpoints/_768up.scss */
  .single-challenge #challenge-cta .description {
    font-size: 20px;
  }
  /* line 1234, ../scss/breakpoints/_768up.scss */
  .single-challenge #challenge-cta .chalenge-cta-link {
    font-size: 24px;
  }

  /******************************************************************
  Travel Log
  *******************************************************************/
  /* line 1245, ../scss/breakpoints/_768up.scss */
  #travel-log li.road-block {
    display: block !important;
  }
  /* line 1250, ../scss/breakpoints/_768up.scss */
  #travel-log article.travel-entry header.entry-header h4 {
    display: block;
  }
  /* line 1253, ../scss/breakpoints/_768up.scss */
  #travel-log article.travel-entry header.entry-header h2 {
    font-size: 48px;
    line-height: 50px;
  }
  /* line 1262, ../scss/breakpoints/_768up.scss */
  #travel-log .product-area .product .prd-details {
    margin-left: 209px;
  }
  /* line 1265, ../scss/breakpoints/_768up.scss */
  #travel-log .product-area .product .prd-img {
    max-width: 188px;
    margin-right: 0;
  }

  /* line 1272, ../scss/breakpoints/_768up.scss */
  #mobile-travel-log {
    display: none;
  }
}
/*********************
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 14, ../scss/breakpoints/_1030up.scss */
  .home .header-byline {
    font-size: 4em;
  }
  /* line 17, ../scss/breakpoints/_1030up.scss */
  .home .header-subtitle {
    font-size: 23px;
  }

  /* line 24, ../scss/breakpoints/_1030up.scss */
  #logo {
    margin-top: 10px;
    text-align: left;
    width: 20%;
  }

  /* line 30, ../scss/breakpoints/_1030up.scss */
  #desktop-nav {
    display: block;
    width: 80%;
    float: left;
    height: 69px;
  }

  /* line 37, ../scss/breakpoints/_1030up.scss */
  .desktop-nav-search {
    display: block;
  }

  /* line 40, ../scss/breakpoints/_1030up.scss */
  .desktop-search-text {
    display: none;
  }

  /* line 43, ../scss/breakpoints/_1030up.scss */
  #home-nav {
    min-height: 69px;
  }
  /* line 45, ../scss/breakpoints/_1030up.scss */
  #home-nav .nav {
    padding-top: 19px;
  }

  /* line 58, ../scss/breakpoints/_1030up.scss */
  body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .mega-menu-item .rpwwt-post-title, body #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav #mega-menu-item-9615 .mega-sub-menu .mega-menu-item .rpwwt-post-author {
    font-size: 18px;
    line-height: 18px;
  }

  /* ============================================
   Header Search Bar
   ============================================ */
  /* line 81, ../scss/breakpoints/_1030up.scss */
  .desktop-nav-search {
    width: 150px;
  }
  /* line 83, ../scss/breakpoints/_1030up.scss */
  .desktop-nav-search input[type="search"] {
    max-width: 148px;
    min-width: 148px;
  }
  /* line 87, ../scss/breakpoints/_1030up.scss */
  .desktop-nav-search button {
    position: absolute;
    width: 30px;
  }

  /* line 95, ../scss/breakpoints/_1030up.scss */
  .home-header .header-content img {
    width: auto;
  }

  /* line 101, ../scss/breakpoints/_1030up.scss */
  #getcandid {
    padding: 45px 0;
  }

  /* line 107, ../scss/breakpoints/_1030up.scss */
  #newsletter-benefits #benefit-listing .benefit {
    width: 30%;
    float: left;
    margin: 0 1.5%;
    clear: none;
  }
  /* line 112, ../scss/breakpoints/_1030up.scss */
  #newsletter-benefits #benefit-listing .benefit .benefit-image {
    float: left;
    width: 40%;
  }
  /* line 115, ../scss/breakpoints/_1030up.scss */
  #newsletter-benefits #benefit-listing .benefit .benefit-image img {
    padding-right: 15px;
    text-align: left;
    margin: 0;
  }
  /* line 121, ../scss/breakpoints/_1030up.scss */
  #newsletter-benefits #benefit-listing .benefit .benefit-text {
    float: left;
    margin: 0;
    text-align: left;
  }

  /* line 129, ../scss/breakpoints/_1030up.scss */
  .small-block {
    width: 11.1875% !important;
  }
  /* line 131, ../scss/breakpoints/_1030up.scss */
  .small-block .bg-cover {
    height: 150px !important;
  }

  /* line 135, ../scss/breakpoints/_1030up.scss */
  .small-block:nth-of-type(3n) {
    margin-right: 1.5% !important;
  }

  /* line 138, ../scss/breakpoints/_1030up.scss */
  .small-block:nth-of-type(8n) {
    margin-right: 0 !important;
  }

  /* line 143, ../scss/breakpoints/_1030up.scss */
  .single-badassador .section-left, .single-partner .section-left, .single-featured .section-left, .single-challenge .section-left {
    width: 50%;
    float: left;
    padding-right: 45px;
  }
  /* line 148, ../scss/breakpoints/_1030up.scss */
  .single-badassador .section-right, .single-partner .section-right, .single-featured .section-right, .single-challenge .section-right {
    width: 50%;
    float: left;
    margin-top: 0;
    margin-bottom: 45px;
  }

  /* line 158, ../scss/breakpoints/_1030up.scss */
  .single-challenge .section-right {
    float: right !important;
  }

  /* line 163, ../scss/breakpoints/_1030up.scss */
  .related-stories #stories .featured-content-block:nth-of-type(even) {
    margin-right: 1.5% !important;
    margin-left: 1.5% !important;
  }

  /* line 171, ../scss/breakpoints/_1030up.scss */
  .related-stories #stories .featured-content-block:nth-of-type(odd) {
    margin-right: 0% !important;
    margin-left: 0% !important;
    clear: none;
  }

  /* line 179, ../scss/breakpoints/_1030up.scss */
  #stories .featured-content-block {
    width: 32.3%;
    float: left;
    margin-right: 1.5%;
    min-height: 475px;
  }
  /* line 185, ../scss/breakpoints/_1030up.scss */
  #stories .featured-content-block,
  #stories .featured-content-block:nth-of-type(odd) {
    margin-right: 1.5% !important;
  }
  /* line 189, ../scss/breakpoints/_1030up.scss */
  #stories .featured-content-block:nth-of-type(3n + 1) {
    margin-right: 0 !important;
  }

  /* line 195, ../scss/breakpoints/_1030up.scss */
  .archive #stories .featured-content-block:nth-of-type(even), .blog #stories .featured-content-block:nth-of-type(even), .single-badassador #stories .featured-content-block:nth-of-type(even), .single-partner #stories .featured-content-block:nth-of-type(even), .single-featured #stories .featured-content-block:nth-of-type(even) {
    margin-right: 1.5% !important;
  }
  /* line 198, ../scss/breakpoints/_1030up.scss */
  .archive #stories .featured-content-block:nth-of-type(3n), .blog #stories .featured-content-block:nth-of-type(3n), .single-badassador #stories .featured-content-block:nth-of-type(3n), .single-partner #stories .featured-content-block:nth-of-type(3n), .single-featured #stories .featured-content-block:nth-of-type(3n) {
    margin-right: 0 !important;
  }

  /* line 207, ../scss/breakpoints/_1030up.scss */
  .single-badassador #badassador-pack ol,
  .single-partner #badassador-pack ol,
  .single-featured #badassador-pack ol {
    padding-left: 75px;
  }
  /* line 209, ../scss/breakpoints/_1030up.scss */
  .single-badassador #badassador-pack ol li,
  .single-partner #badassador-pack ol li,
  .single-featured #badassador-pack ol li {
    width: 33.3%;
    float: left;
    padding-right: 45px;
  }

  /* line 218, ../scss/breakpoints/_1030up.scss */
  .single #post-navigation {
    display: block;
  }

  /* line 224, ../scss/breakpoints/_1030up.scss */
  .page-content .gform_wrapper {
    width: 75%;
  }
  /* line 227, ../scss/breakpoints/_1030up.scss */
  .page-content .alignright {
    clear: none !important;
    width: auto !important;
    float: right !important;
    margin-left: 1.5em !important;
  }

  /* line 235, ../scss/breakpoints/_1030up.scss */
  .gform_body li {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
  }
  /* line 239, ../scss/breakpoints/_1030up.scss */
  .gform_body li input {
    width: 100% !important;
  }
  /* line 243, ../scss/breakpoints/_1030up.scss */
  .gform_body .full-width {
    clear: both !important;
    width: 100% !important;
    float: none !important;
  }

  /* line 250, ../scss/breakpoints/_1030up.scss */
  #container {
    padding-top: 111px;
  }

  /* line 255, ../scss/breakpoints/_1030up.scss */
  .wtpsw-post-thumb-left {
    min-width: 75px;
    width: 75px !important;
    display: block;
    float: left;
  }

  /* line 261, ../scss/breakpoints/_1030up.scss */
  .wtpsw-post-thumb-right {
    display: block;
    float: left;
  }

  /******************************************************************
  Single Challenge
  *******************************************************************/
  /* line 271, ../scss/breakpoints/_1030up.scss */
  .single-challenge .custom-header .header-content {
    display: block;
  }
  /* line 276, ../scss/breakpoints/_1030up.scss */
  .single-challenge .article-header {
    display: none;
  }
  /* line 280, ../scss/breakpoints/_1030up.scss */
  .single-challenge .custom-header .header-content {
    text-align: left !important;
  }
  /* line 283, ../scss/breakpoints/_1030up.scss */
  .single-challenge .custom-header .chalenge-cta-link {
    font-size: 19px;
    margin-top: 37px;
    padding: 15px 34px;
  }
  /* line 289, ../scss/breakpoints/_1030up.scss */
  .single-challenge .gallery-slider-nav {
    bottom: auto !important;
  }
  /* line 293, ../scss/breakpoints/_1030up.scss */
  .single-challenge #mission-challenge .mision-container {
    font-size: 26px;
  }
  /* line 296, ../scss/breakpoints/_1030up.scss */
  .single-challenge #mission-challenge .stats-container {
    overflow: hidden;
  }
  /* line 298, ../scss/breakpoints/_1030up.scss */
  .single-challenge #mission-challenge .stats-container ul.stats {
    margin-bottom: 0 !important;
  }
  /* line 301, ../scss/breakpoints/_1030up.scss */
  .single-challenge #mission-challenge .stats-container ul.stats:first-child {
    margin-right: 4%;
  }
  /* line 307, ../scss/breakpoints/_1030up.scss */
  .single-challenge #main.where-the-road-ends #map-key {
    margin-top: 750px;
  }
  /* line 312, ../scss/breakpoints/_1030up.scss */
  .single-challenge #challenge-cta h3 {
    font-size: 40px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    line-height: 45px;
  }

  /* line 329, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label,
  .tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_label,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_label {
    font-size: 40px !important;
  }
  /* line 332, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li,
  .tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li {
    display: inline-block;
  }
  /* line 334, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label,
  .tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield:first-child .gfield_radio li label,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield:first-child .gfield_radio li label {
    width: 270px;
  }
  /* line 340, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email,
  .single-challenge #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email,
  .tax-travel-log-type #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gform_fields .gfield .ginput_container_email,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gform_fields .gfield .ginput_container_email {
    width: 350px !important;
  }
  /* line 345, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gpoll_field_label,
  .single-challenge #poll-challenge .gpoll_container .gpoll_field_label,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_field_label,
  .tax-travel-log-type #poll-challenge .gpoll_container .gpoll_field_label,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_field_label,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_field_label {
    font-size: 40px;
  }
  /* line 348, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gpoll_choice_label,
  .single-challenge #poll-challenge .gpoll_container .gpoll_choice_label,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_choice_label,
  .tax-travel-log-type #poll-challenge .gpoll_container .gpoll_choice_label,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_choice_label,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_choice_label {
    width: 23%;
    margin-left: 17%;
  }
  /* line 352, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper, .single-challenge #poll-challenge .gform_wrapper .gpoll_choice_label,
  .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper,
  .single-challenge #poll-challenge .gpoll_container .gpoll_choice_label,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_choice_label,
  .tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper,
  .tax-travel-log-type #poll-challenge .gpoll_container .gpoll_choice_label,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_choice_label,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_choice_label {
    height: 30px;
    display: block;
    float: left;
    margin-bottom: 30px;
  }
  /* line 358, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper,
  .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper,
  .tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper {
    width: 60%;
  }
  /* line 360, ../scss/breakpoints/_1030up.scss */
  .single-challenge #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar,
  .single-challenge #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar,
  .tax-travel-log-type #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar,
  .tax-travel-log-type #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar,
  .post-type-archive-travel-log #poll-challenge .gform_wrapper .gpoll_wrapper .gpoll_bar,
  .post-type-archive-travel-log #poll-challenge .gpoll_container .gpoll_wrapper .gpoll_bar {
    height: 30px;
  }

  /******************************************************************
  Travel Log
  *******************************************************************/
  /* line 372, ../scss/breakpoints/_1030up.scss */
  .tax-travel-log-type #travel-log,
  .post-type-archive-travel-log #travel-log {
    padding-left: 275px;
  }
  /* line 375, ../scss/breakpoints/_1030up.scss */
  .tax-travel-log-type #travel-log article.travel-entry .travel-info,
  .post-type-archive-travel-log #travel-log article.travel-entry .travel-info {
    display: none;
  }
  /* line 378, ../scss/breakpoints/_1030up.scss */
  .tax-travel-log-type #travel-log article.travel-entry .jump-nav,
  .post-type-archive-travel-log #travel-log article.travel-entry .jump-nav {
    display: none;
  }
  /* line 383, ../scss/breakpoints/_1030up.scss */
  .tax-travel-log-type #travel-log #timeline-container,
  .post-type-archive-travel-log #travel-log #timeline-container {
    display: block;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  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 12, ../scss/breakpoints/_1240up.scss */
  .nav {
    /*@media screen and (min-width: 1278px) and (max-width:1494px) {
      .search-button {
        position: absolute;
        right: -35px;
      }
    }*/
  }
}
@media only screen and (min-width: 1240px) and (min-width: 1278px) {
  /* line 12, ../scss/breakpoints/_1240up.scss */
  .nav {
    padding-top: 19px;
  }
}

@media only screen and (min-width: 1240px) {
  /* line 28, ../scss/breakpoints/_1240up.scss */
  #desktop-nav nav, #home-nav nav {
    /*#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-megamenu {
        padding-left: 20px; 
        padding-right: 30px; 
        .mega-sub-menu { 
            width: 800px;
        }
    }*/
  }
  /* line 37, ../scss/breakpoints/_1240up.scss */
  #desktop-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link, #home-nav nav #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 15px 0px 15px;
  }

  /* ============================================
   Header Search Bar
   ============================================ */
  /* line 48, ../scss/breakpoints/_1240up.scss */
  .desktop-nav-search {
    width: 250px;
  }
  /* line 50, ../scss/breakpoints/_1240up.scss */
  .desktop-nav-search input[type="search"] {
    max-width: 210px;
    min-width: 180px;
  }
  /* line 54, ../scss/breakpoints/_1240up.scss */
  .desktop-nav-search button {
    width: 30px;
  }

  /* line 61, ../scss/breakpoints/_1240up.scss */
  .sidebar .margin-sm-top {
    font-size: 28px;
    line-height: 31px;
  }
}
/*********************
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. 
  
  */
}
/*********************
Utility STYLESHEET
*********************/
/* line 5, ../scss/modules/_utility.scss */
.c-black {
  color: #000 !important;
}

/* line 9, ../scss/modules/_utility.scss */
.c-white {
  color: #fff !important;
}

/* line 13, ../scss/modules/_utility.scss */
.c-gerber-orange {
  color: #f8971d !important;
}

/* line 17, ../scss/modules/_utility.scss */
.c-light-gray {
  color: #f5f5f5 !important;
}

/* line 22, ../scss/modules/_utility.scss */
.c-gray {
  color: #d9d9d9 !important;
}

/* line 26, ../scss/modules/_utility.scss */
.c-text {
  color: #5c6b80 !important;
}

/* line 30, ../scss/modules/_utility.scss */
.c-meta-gray {
  color: #9fa6b4 !important;
}

/* line 34, ../scss/modules/_utility.scss */
.c-dark-gray {
  color: #838383 !important;
}

/* line 38, ../scss/modules/_utility.scss */
.c-utility-gray {
  color: #151818 !important;
}

/* line 42, ../scss/modules/_utility.scss */
.c-tan {
  color: #eceee5 !important;
}

/* line 46, ../scss/modules/_utility.scss */
.c-green {
  color: #7dd667 !important;
}

/* line 50, ../scss/modules/_utility.scss */
.c-bones-pink {
  color: #f8971d !important;
}

/* line 54, ../scss/modules/_utility.scss */
.c-blue {
  color: #2980b9 !important;
}

/* line 63, ../scss/modules/_utility.scss */
.bg-black {
  background: #000 !important;
}

/* line 67, ../scss/modules/_utility.scss */
.bg-white {
  background: #fff !important;
}

/* line 71, ../scss/modules/_utility.scss */
.bg-gerber-orange {
  background: #f8971d !important;
}

/* line 75, ../scss/modules/_utility.scss */
.bg-light-gray {
  background: #f5f5f5 !important;
}

/* line 80, ../scss/modules/_utility.scss */
.bg-gray {
  background: #d9d9d9 !important;
}

/* line 84, ../scss/modules/_utility.scss */
.bg-text {
  background: #5c6b80 !important;
}

/* line 88, ../scss/modules/_utility.scss */
.bg-meta-gray {
  background: #9fa6b4 !important;
}

/* line 92, ../scss/modules/_utility.scss */
.bg-dark-gray {
  background: #838383 !important;
}

/* line 96, ../scss/modules/_utility.scss */
.bg-utility-gray {
  background: #151818 !important;
}

/* line 100, ../scss/modules/_utility.scss */
.bg-tan {
  background: #eceee5 !important;
}

/* line 104, ../scss/modules/_utility.scss */
.bg-green {
  background: #7dd667 !important;
}

/* line 108, ../scss/modules/_utility.scss */
.bg-bones-pink {
  background: #f8971d !important;
}

/* line 112, ../scss/modules/_utility.scss */
.bg-blue {
  background: #2980b9 !important;
}

/* line 120, ../scss/modules/_utility.scss */
.text-center {
  text-align: center !important;
}

/* line 123, ../scss/modules/_utility.scss */
.text-left {
  text-align: left !important;
}

/* line 126, ../scss/modules/_utility.scss */
.text-right {
  text-align: right !important;
}

/* line 129, ../scss/modules/_utility.scss */
.text-bold {
  font-weight: bold !important;
}

/* line 133, ../scss/modules/_utility.scss */
.text-normal {
  font-weight: normal !important;
}

/* line 136, ../scss/modules/_utility.scss */
.text-18 {
  font-size: 18px !important;
}

/* line 139, ../scss/modules/_utility.scss */
.text-lg {
  font-size: 28px !important;
}

/* line 142, ../scss/modules/_utility.scss */
.no-decoration {
  text-decoration: none !important;
}

/* line 146, ../scss/modules/_utility.scss */
.text-14 {
  font-size: 14px !important;
}

/* line 149, ../scss/modules/_utility.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 157, ../scss/modules/_utility.scss */
.padding-top {
  padding-top: 20px;
}

/* line 161, ../scss/modules/_utility.scss */
.padding-bottom {
  padding-bottom: 20px;
}

/* line 164, ../scss/modules/_utility.scss */
.padding-lg-top {
  padding-top: 50px;
}

/* line 168, ../scss/modules/_utility.scss */
.padding-lg-bottom {
  padding-bottom: 50px;
}

/* line 172, ../scss/modules/_utility.scss */
.margin-top {
  margin-top: 20px !important;
}

/* line 175, ../scss/modules/_utility.scss */
.margin-sm-top {
  margin-top: 10px !important;
}

/* line 178, ../scss/modules/_utility.scss */
.margin-sm-bottom {
  margin-bottom: 10px !important;
}

/* line 181, ../scss/modules/_utility.scss */
.margin-bottom {
  margin-bottom: 20px !important;
}

/* line 184, ../scss/modules/_utility.scss */
.margin-right {
  margin-right: 20px !important;
}

/* line 188, ../scss/modules/_utility.scss */
.no-margin-top {
  margin-top: 0 !important;
}

/* line 192, ../scss/modules/_utility.scss */
.no-margin {
  margin: 0 !important;
}

/* line 196, ../scss/modules/_utility.scss */
.relative {
  position: relative;
}

/* line 200, ../scss/modules/_utility.scss */
.f-left {
  float: left;
}

/*********************
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;
  }
}
