@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, basic classes, 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.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
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.
 */
[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.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
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.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

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

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

/**ol,
ul {
	padding: 0;
}**/
/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          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).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

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

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

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: block;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

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

/******************************************************************
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: 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/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
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? */
/*********************
ANIMATION
*********************/
/*********************
CIRCLE & TRIANGLE
*********************/
/*********************
MEDIA QUERIES
*********************/
/******************************************************************
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('../fonts/font-name.eot');
		src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
			 url('../fonts/font-name.woff') format('woff'),
			 url('../fonts/font-name.ttf') format('truetype'),
			 url('../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.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
  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 */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

h3, .h3 {
  font-size: 1.125em;
}

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/******************************************************************
PARAGRAPH STYLES
******************************************************************/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #5c6b80;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #475262;
}
a:focus, a:visited:focus {
  outline: dotted #5c6b80 2px;
  outline-offset: 2px;
}
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);
}

[tabindex]:focus {
  outline: dotted 2px;
  outline-offset: 2px;
}

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

Stylesheet: Accessibility Stylesheet

******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/******************************************************************
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.

******************************************************************/
.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 only screen and (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2, .m-2of4, .m-3of6, .m-4of8, .m-5of10, .m-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3, .m-2of6, .m-3of9, .m-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3, .m-4of6, .m-6of9, .m-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4, .m-2of8, .m-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4, .m-6of8, .m-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .m-1of5, .m-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .m-2of5, .m-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .m-3of5, .m-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .m-4of5, .m-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .m-1of6, .m-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .m-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .m-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .m-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .m-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .m-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .m-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .m-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .m-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%;
  }
  .m-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%;
  }
  .m-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%;
  }
  .m-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .m-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%;
  }
  .m-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%;
  }
  .m-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%;
  }
  .m-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%;
  }
  .m-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%;
  }
  .m-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .m-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .m-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%;
  }
  .m-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%;
  }
  .m-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .m-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.1818181818%;
  }
  .m-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.2727272727%;
  }
  .m-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.3636363636%;
  }
  .m-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.4545454546%;
  }
  .m-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.5454545455%;
  }
  .m-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.6363636364%;
  }
  .m-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.7272727273%;
  }
  .m-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.8181818182%;
  }
  .m-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%;
  }
  .m-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
  .m-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%;
  }
  .m-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%;
  }
  .m-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%;
  }
  .m-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .h-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .h-1of2, .h-2of4, .h-3of6, .h-4of8, .h-5of10, .h-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .h-1of3, .h-2of6, .h-3of9, .h-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .h-2of3, .h-4of6, .h-6of9, .h-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .h-1of4, .h-2of8, .h-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .h-3of4, .h-6of8, .h-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .h-1of5, .h-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .h-2of5, .h-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .h-3of5, .h-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .h-4of5, .h-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .h-1of6, .h-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .h-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .h-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .h-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .h-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .h-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .h-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .h-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .h-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%;
  }
  .h-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%;
  }
  .h-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%;
  }
  .h-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .h-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%;
  }
  .h-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%;
  }
  .h-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%;
  }
  .h-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%;
  }
  .h-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%;
  }
  .h-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .h-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .h-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%;
  }
  .h-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%;
  }
  .h-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .h-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.1818181818%;
  }
  .h-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.2727272727%;
  }
  .h-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.3636363636%;
  }
  .h-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.4545454546%;
  }
  .h-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.5454545455%;
  }
  .h-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.6363636364%;
  }
  .h-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.7272727273%;
  }
  .h-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.8181818182%;
  }
  .h-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%;
  }
  .h-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
  .h-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%;
  }
  .h-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%;
  }
  .h-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%;
  }
  .h-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%;
  }
}
/* Portrait tablet to landscape */
@media only screen and (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2, .t-2of4, .t-3of6, .t-4of8, .t-5of10, .t-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3, .t-2of6, .t-3of9, .t-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3, .t-4of6, .t-6of9, .t-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4, .t-2of8, .t-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4, .t-6of8, .t-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5, .t-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5, .t-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5, .t-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5, .t-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .t-1of6, .t-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .t-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .t-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .t-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .t-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .t-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .t-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .t-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .t-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%;
  }
  .t-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%;
  }
  .t-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%;
  }
  .t-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .t-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%;
  }
  .t-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%;
  }
  .t-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%;
  }
  .t-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%;
  }
  .t-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%;
  }
  .t-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .t-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%;
  }
  .t-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%;
  }
  .t-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .t-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.1818181818%;
  }
  .t-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.2727272727%;
  }
  .t-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.3636363636%;
  }
  .t-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.4545454546%;
  }
  .t-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.5454545455%;
  }
  .t-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.6363636364%;
  }
  .t-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.7272727273%;
  }
  .t-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.8181818182%;
  }
  .t-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%;
  }
  .t-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
  .t-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%;
  }
  .t-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%;
  }
  .t-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%;
  }
  .t-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%;
  }
}
/* Landscape to small desktop */
@media only screen and (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5, .d-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5, .d-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5, .d-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5, .d-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6, .d-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%;
  }
  .d-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%;
  }
  .d-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%;
  }
  .d-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%;
  }
  .d-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%;
  }
  .d-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%;
  }
  .d-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%;
  }
  .d-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.1818181818%;
  }
  .d-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.2727272727%;
  }
  .d-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.3636363636%;
  }
  .d-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.4545454546%;
  }
  .d-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.5454545455%;
  }
  .d-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.6363636364%;
  }
  .d-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.7272727273%;
  }
  .d-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.8181818182%;
  }
  .d-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%;
  }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%;
  }
  .d-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%;
  }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Basic Classes

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

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #5c6b80;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#content, #signup-content {
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.shortcode-tab-description-wrapper,
.shortcode-tab-sdg-wrapper,
.wrap {
  width: 96%;
  max-width: 1040px;
  max-width: 65em;
  margin: 0 auto;
}

.shortcode-graph-tab-wrapper {
  width: 96%;
  margin: 0 auto;
}

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  max-width: 75em;
  margin: 0 auto;
}

.text-wrapper,
.wp-activate-container {
  width: 100%;
  max-width: 700px;
  max-width: 43.75em;
  margin: 0 auto;
}

.wp-activate-container {
  padding: 50px 0;
}

/*********************
BACKGROUNDS
*********************/
.bg-alternate:nth-of-type(odd) {
  background-color: #f8f9fa;
}
.bg-alternate:nth-of-type(odd) input[type=text],
.bg-alternate:nth-of-type(odd) input[type=password],
.bg-alternate:nth-of-type(odd) input[type=datetime],
.bg-alternate:nth-of-type(odd) input[type=datetime-local],
.bg-alternate:nth-of-type(odd) input[type=date],
.bg-alternate:nth-of-type(odd) input[type=month],
.bg-alternate:nth-of-type(odd) input[type=time],
.bg-alternate:nth-of-type(odd) input[type=week],
.bg-alternate:nth-of-type(odd) input[type=number],
.bg-alternate:nth-of-type(odd) input[type=email],
.bg-alternate:nth-of-type(odd) input[type=url],
.bg-alternate:nth-of-type(odd) input[type=search],
.bg-alternate:nth-of-type(odd) input[type=tel],
.bg-alternate:nth-of-type(odd) input[type=color],
.bg-alternate:nth-of-type(odd) select,
.bg-alternate:nth-of-type(odd) textarea,
.bg-alternate:nth-of-type(odd) .field {
  background-color: white;
}
.bg-alternate:nth-of-type(odd).listing-item {
  background-color: transparent;
}
.bg-alternate:nth-of-type(odd).listing-item > article {
  background-color: #f8f9fa;
}
.bg-alternate:nth-of-type(even) {
  background-color: #fff;
}
.bg-alternate:nth-of-type(even).listing-item {
  background-color: transparent;
}
.bg-alternate:nth-of-type(even).listing-item > article {
  background-color: #fff;
}

/*********************
OVERLAYS
*********************/
video.bg, img.bg, video.cover, img.cover, .cover, .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  max-height: none;
  opacity: 0.5;
  z-index: 5;
  margin: 0;
}

video.cover, img.cover, .cover {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  visibility: visible;
  opacity: 1;
}
.overlay.black {
  background-color: rgba(51, 51, 51, 0.8);
  color: #fff;
}
.overlay.white {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

/*********************
TOGGLE TERMS
*********************/
.toggle-terms h3:after {
  padding-left: 0.25em;
}
.toggle-terms h3.up:after {
  content: "▴";
}
.toggle-terms h3.down:after {
  content: "▾";
}

/*********************
PLUGIN STYLES
*********************/
#geoc-tool-header {
  background: #f8f9fa;
  z-index: 4;
}

@media only screen and (min-width: 768px) {
  #geoc-tool-header {
    position: absolute;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    background: none;
    width: 100%;
  }
  #geoc-tool-header .header-tab {
    margin-right: 10px;
    font-size: 0.95rem;
    font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
  }
  #geoc-tool-header .header-tab:last-of-type {
    margin-right: 0px;
  }
  section.entry-content #geoc-tool-header {
    -webkit-transform: none;
            transform: none;
    position: static;
  }
}
#geoc-tool-frontend-sdg h2 {
  margin-top: 0px;
}

#sdg-tab-contents .each-sdg-wrapper {
  border: 0px;
  max-width: 47%;
  margin-right: 3%;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  #sdg-tab-contents .each-sdg-wrapper {
    max-width: 30%;
  }
}
@media only screen and (min-width: 1030px) {
  #sdg-tab-contents .each-sdg-wrapper {
    max-width: 17%;
  }
}
#sdg-tab-contents .each-sdg-wrapper .each-parent-sdg-icon-wrapper img {
  width: 100%;
}

#geoc-tool-frontend, #geoc-tool-frontend-sdg {
  z-index: 0;
}

#content #geoc-sidebar-filter {
  z-index: 15;
  position: absolute;
  max-height: 100%;
}
#content #geoc-sidebar-filter h4 {
  margin-top: 0px;
}
#content #geoc-indicators-wrapper {
  position: absolute;
  top: 0px;
  height: 100%;
  max-height: 100%;
}
#content #geoc-indicators-wrapper .each-filter-indicator-wrapper {
  max-height: 100%;
  position: absolute;
  top: 0px;
  height: 100%;
  width: 300px;
}

@media only screen and (min-width: 768px) {
  .single-indicator_post #geoc-sidebar-filter #geoc-tax-filter {
    top: -3px;
    height: calc(100% + 3px);
  }
}

.logged-in #content #geoc-sidebar-filter {
  top: 0px;
}
.logged-in #content #geoc-indicators-wrapper {
  position: absolute;
  top: 0px;
}
.logged-in #content #geoc-indicators-wrapper .each-filter-indicator-wrapper {
  top: 0px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.gallery dl.gallery-item {
  display: inline-block;
}
.gallery.gallery-columns-1 dl.gallery-item {
  width: 100%;
}
.gallery.gallery-columns-2 dl.gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 dl.gallery-item {
  width: 33%;
}
.gallery.gallery-columns-4 dl.gallery-item {
  width: 25%;
}
.gallery.gallery-columns-5 dl.gallery-item {
  width: 20%;
}
.gallery.gallery-columns-6 dl.gallery-item {
  width: 18%;
}
.gallery.gallery-columns-7 dl.gallery-item {
  width: 14%;
}
.gallery.gallery-columns-8 dl.gallery-item {
  width: 12%;
}
.gallery.gallery-columns-9 dl.gallery-item {
  width: 10%;
}

.hentry {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 1.5em;
}
.hentry header {
  padding: 1.5em 1.5em 0 1.5em;
}
.hentry footer {
  padding: 0 1.5em 1.5em 1.5em;
}
.hentry footer p {
  margin: 0;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content ul {
  list-style-type: disc;
  list-style-position: outside;
}
.entry-content ul.none, .entry-content ul.none ul {
  list-style-type: none;
  list-style-position: outside;
}
.entry-content ul.none li, .entry-content ul.none ul li {
  margin-left: 0;
}
.entry-content ul.disc, .entry-content ul.disc ul {
  list-style-type: disc;
  list-style-position: outside;
}
.entry-content ul.circle, .entry-content ul.circle ul {
  list-style-type: circle;
  list-style-position: outside;
}
.entry-content ul.square, .entry-content ul.square ul {
  list-style-type: square;
  list-style-position: outside;
}
.entry-content ul ul {
  margin-top: 0;
}
.entry-content ul li {
  margin-bottom: 0em;
  margin-left: 18px;
}
.entry-content ol {
  list-style-type: decimal;
  list-style-position: outside;
}
.entry-content ol.none, .entry-content ol.none ol {
  list-style-type: none;
  list-style-position: outside;
}
.entry-content ol.none li, .entry-content ol.none ol li {
  margin-left: 0;
}
.entry-content ol.alpha, .entry-content ol.alpha ol {
  list-style-type: upper-alpha;
  list-style-position: outside;
}
.entry-content ol.num, .entry-content ol.num ol {
  list-style-type: decimal;
  list-style-position: outside;
}
.entry-content ol ol {
  margin-top: 0;
}
.entry-content ol li {
  margin-bottom: 0em;
  margin-left: 18px;
}
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 481px) {
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
}
.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;
}
.entry-content pre {
  background: #333;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

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

/* end .wp-caption */
.tags {
  margin: 0;
}

.taxonomies .separator:last-of-type {
  display: none;
}

.listing-item {
  margin: 1em 0;
  width: 100%;
}
.listing-item > article {
  margin: 0;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .half-listing .listing-item, .third-listing .listing-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin: 1%;
    width: 48%;
    float: left;
  }
  .half-listing .listing-item > article, .third-listing .listing-item > article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .half-listing .listing-item > article > *, .third-listing .listing-item > article > * {
    width: 100%;
  }
  .half-listing .listing-item > article footer, .third-listing .listing-item > article footer {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .half-listing .listing-item.bg-alternate:nth-of-type(4n) > article, .half-listing .listing-item.bg-alternate:nth-of-type(4n-3) > article, .third-listing .listing-item.bg-alternate:nth-of-type(4n) > article, .third-listing .listing-item.bg-alternate:nth-of-type(4n-3) > article {
    background-color: #f8f9fa;
  }
  .half-listing .listing-item.bg-alternate:nth-of-type(4n-1) > article, .half-listing .listing-item.bg-alternate:nth-of-type(4n-2) > article, .third-listing .listing-item.bg-alternate:nth-of-type(4n-1) > article, .third-listing .listing-item.bg-alternate:nth-of-type(4n-2) > article {
    background-color: #fff;
  }
}
@media only screen and (min-width: 1030px) {
  .third-listing .listing-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin: 1%;
    width: 31%;
    float: left;
  }
  .third-listing .listing-item > article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .third-listing .listing-item > article > * {
    width: 100%;
  }
  .third-listing .listing-item > article footer {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .third-listing .listing-item.bg-alternate {
    margin: 0;
  }
  .third-listing .listing-item.bg-alternate:nth-of-type(odd) > article {
    background-color: #f8f9fa;
  }
  .third-listing .listing-item.bg-alternate:nth-of-type(even) > article {
    background-color: #fff;
  }
}
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: var(--accent-color, #2980b9);
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: var(--accent-color, #2980b9);
  color: var(--accent-text-color, #fff);
}
.pagination .current {
  cursor: default;
  color: #5c6b80;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #5c6b80;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*********************
TEXT ALIGNS
*********************/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/*********************
NO MARGINS
*********************/
.no-margin, .no-margins {
  margin: 0 !important;
}

.no-margin-top, .no-top-margin {
  margin-top: 0 !important;
}

.no-margin-right, .no-right-margin {
  margin-right: 0 !important;
}

.no-margin-bottom, .no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-margin-left, .no-left-margin {
  margin-left: 0 !important;
}

/*********************
FLOATS
*********************/
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.clear-both {
  clear: both;
}

hr.clear-both {
  height: 0px;
  overflow: hidden;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0;
}

/*********************
POSITION STICKY
*********************/
.sticky {
  position: fixed;
}
.sticky.sticky-fixed {
  position: fixed;
}

.mobile .sticky, .tablet .sticky, .firefox .sticky {
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
}
.mobile .sticky.sticky-fixed, .tablet .sticky.sticky-fixed, .firefox .sticky.sticky-fixed {
  position: fixed;
}

/*********************
DISPLAYS
*********************/
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.mobile-show, .m-show {
  display: block;
}

@media only screen and (min-width: 768px) {
  .mobile-show, .m-show {
    display: none;
  }
}
@media only screen and (max-width: 1029px) {
  .mobile-hide {
    display: none !important;
  }
  .m-hide {
    display: none;
  }
}
.flex-wrap, .flex-stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.flex-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.flex-center, .flex-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-left, .flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-right, .flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-centre, .flex-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-around, .flex-saround, .flex-space-around, .flex-sparound {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-space-between, .flex-sbetween, .flex-between, .flex-justify {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-vert, .flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*********************
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.

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

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.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

*********************/
.blue-btn, #submit, .comment-reply-link,
input.button,
input.button:visited,
.button,
.button:visited,
.btn,
.btn:visited,
button,
button:visited,
input[type=image],
input[type=image]:visited,
input[type=submit],
input[type=submit]:visited,
input[type=button],
input[type=button]:visited {
  display: inline-block;
  position: relative;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  font-weight: normal;
  margin-bottom: 0.5em;
  padding: 0.25em 1em;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.disabled.blue-btn, .disabled#submit, .disabled.comment-reply-link, [disabled].blue-btn, [disabled]#submit, [disabled].comment-reply-link,
input.button.disabled,
input.button[disabled],
input.button:visited.disabled,
input.button:visited[disabled],
.button.disabled,
.button[disabled],
.button:visited.disabled,
.button:visited[disabled],
.btn.disabled,
.btn[disabled],
.btn:visited.disabled,
.btn:visited[disabled],
button.disabled,
button[disabled],
button:visited.disabled,
button:visited[disabled],
input[type=image].disabled,
input[type=image][disabled],
input[type=image]:visited.disabled,
input[type=image]:visited[disabled],
input[type=submit].disabled,
input[type=submit][disabled],
input[type=submit]:visited.disabled,
input[type=submit]:visited[disabled],
input[type=button].disabled,
input[type=button][disabled],
input[type=button]:visited.disabled,
input[type=button]:visited[disabled] {
  opacity: 0.7;
  cursor: no-drop;
  cursor: not-allowed;
}
.disabled.blue-btn:before, .disabled#submit:before, .disabled.comment-reply-link:before, [disabled].blue-btn:before, [disabled]#submit:before, [disabled].comment-reply-link:before,
input.button.disabled:before,
input.button[disabled]:before,
input.button:visited.disabled:before,
input.button:visited[disabled]:before,
.button.disabled:before,
.button[disabled]:before,
.button:visited.disabled:before,
.button:visited[disabled]:before,
.btn.disabled:before,
.btn[disabled]:before,
.btn:visited.disabled:before,
.btn:visited[disabled]:before,
button.disabled:before,
button[disabled]:before,
button:visited.disabled:before,
button:visited[disabled]:before,
input[type=image].disabled:before,
input[type=image][disabled]:before,
input[type=image]:visited.disabled:before,
input[type=image]:visited[disabled]:before,
input[type=submit].disabled:before,
input[type=submit][disabled]:before,
input[type=submit]:visited.disabled:before,
input[type=submit]:visited[disabled]:before,
input[type=button].disabled:before,
input[type=button][disabled]:before,
input[type=button]:visited.disabled:before,
input[type=button]:visited[disabled]:before {
  display: none;
}
.disabled.blue-btn span, .disabled#submit span, .disabled.comment-reply-link span, [disabled].blue-btn span, [disabled]#submit span, [disabled].comment-reply-link span,
input.button.disabled span,
input.button[disabled] span,
input.button:visited.disabled span,
input.button:visited[disabled] span,
.button.disabled span,
.button[disabled] span,
.button:visited.disabled span,
.button:visited[disabled] span,
.btn.disabled span,
.btn[disabled] span,
.btn:visited.disabled span,
.btn:visited[disabled] span,
button.disabled span,
button[disabled] span,
button:visited.disabled span,
button:visited[disabled] span,
input[type=image].disabled span,
input[type=image][disabled] span,
input[type=image]:visited.disabled span,
input[type=image]:visited[disabled] span,
input[type=submit].disabled span,
input[type=submit][disabled] span,
input[type=submit]:visited.disabled span,
input[type=submit]:visited[disabled] span,
input[type=button].disabled span,
input[type=button][disabled] span,
input[type=button]:visited.disabled span,
input[type=button]:visited[disabled] span {
  -webkit-transform: none;
          transform: none;
}
.disabled.blue-btn, .disabled#submit, .disabled.comment-reply-link, .disabled.blue-btn:hover, .disabled#submit:hover, .disabled.comment-reply-link:hover, .disabled.blue-btn:focus, .disabled#submit:focus, .disabled.comment-reply-link:focus, [disabled].blue-btn, [disabled]#submit, [disabled].comment-reply-link, [disabled].blue-btn:hover, [disabled]#submit:hover, [disabled].comment-reply-link:hover, [disabled].blue-btn:focus, [disabled]#submit:focus, [disabled].comment-reply-link:focus, .blue-btn:visited.disabled, #submit:visited.disabled, .comment-reply-link:visited.disabled, .blue-btn:visited.disabled:hover, #submit:visited.disabled:hover, .comment-reply-link:visited.disabled:hover, .blue-btn:visited.disabled:focus, #submit:visited.disabled:focus, .comment-reply-link:visited.disabled:focus, .blue-btn:visited[disabled], #submit:visited[disabled], .comment-reply-link:visited[disabled], .blue-btn:visited[disabled]:hover, #submit:visited[disabled]:hover, .comment-reply-link:visited[disabled]:hover, .blue-btn:visited[disabled]:focus, #submit:visited[disabled]:focus, .comment-reply-link:visited[disabled]:focus,
input.button.disabled,
input.button.disabled:hover,
input.button.disabled:focus,
input.button[disabled],
input.button[disabled]:hover,
input.button[disabled]:focus,
input.button:visited.disabled,
input.button:visited.disabled:hover,
input.button:visited.disabled:focus,
input.button:visited[disabled],
input.button:visited[disabled]:hover,
input.button:visited[disabled]:focus,
.button.disabled,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus,
.button:visited.disabled,
.button:visited.disabled:hover,
.button:visited.disabled:focus,
.button:visited[disabled],
.button:visited[disabled]:hover,
.button:visited[disabled]:focus,
.btn.disabled,
.btn.disabled:hover,
.btn.disabled:focus,
.btn[disabled],
.btn[disabled]:hover,
.btn[disabled]:focus,
.btn:visited.disabled,
.btn:visited.disabled:hover,
.btn:visited.disabled:focus,
.btn:visited[disabled],
.btn:visited[disabled]:hover,
.btn:visited[disabled]:focus,
button.disabled,
button.disabled:hover,
button.disabled:focus,
button[disabled],
button[disabled]:hover,
button[disabled]:focus,
button:visited.disabled,
button:visited.disabled:hover,
button:visited.disabled:focus,
button:visited[disabled],
button:visited[disabled]:hover,
button:visited[disabled]:focus,
input[type=image].disabled,
input[type=image].disabled:hover,
input[type=image].disabled:focus,
input[type=image][disabled],
input[type=image][disabled]:hover,
input[type=image][disabled]:focus,
input[type=image]:visited.disabled,
input[type=image]:visited.disabled:hover,
input[type=image]:visited.disabled:focus,
input[type=image]:visited[disabled],
input[type=image]:visited[disabled]:hover,
input[type=image]:visited[disabled]:focus,
input[type=submit].disabled,
input[type=submit].disabled:hover,
input[type=submit].disabled:focus,
input[type=submit][disabled],
input[type=submit][disabled]:hover,
input[type=submit][disabled]:focus,
input[type=submit]:visited.disabled,
input[type=submit]:visited.disabled:hover,
input[type=submit]:visited.disabled:focus,
input[type=submit]:visited[disabled],
input[type=submit]:visited[disabled]:hover,
input[type=submit]:visited[disabled]:focus,
input[type=button].disabled,
input[type=button].disabled:hover,
input[type=button].disabled:focus,
input[type=button][disabled],
input[type=button][disabled]:hover,
input[type=button][disabled]:focus,
input[type=button]:visited.disabled,
input[type=button]:visited.disabled:hover,
input[type=button]:visited.disabled:focus,
input[type=button]:visited[disabled],
input[type=button]:visited[disabled]:hover,
input[type=button]:visited[disabled]:focus {
  color: #f8f9fa;
}
.blue-btn:hover, #submit:hover, .comment-reply-link:hover, .blue-btn:focus, #submit:focus, .comment-reply-link:focus,
input.button:hover,
input.button:focus,
input.button:visited:hover,
input.button:visited:focus,
.button:hover,
.button:focus,
.button:visited:hover,
.button:visited:focus,
.btn:hover,
.btn:focus,
.btn:visited:hover,
.btn:visited:focus,
button:hover,
button:focus,
button:visited:hover,
button:visited:focus,
input[type=image]:hover,
input[type=image]:focus,
input[type=image]:visited:hover,
input[type=image]:visited:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:visited:hover,
input[type=submit]:visited:focus,
input[type=button]:hover,
input[type=button]:focus,
input[type=button]:visited:hover,
input[type=button]:visited:focus {
  color: #fff;
  background-color: #4d4d4d;
  text-decoration: none;
}
.blue-btn:focus, #submit:focus, .comment-reply-link:focus,
input.button:focus,
input.button:visited:focus,
.button:focus,
.button:visited:focus,
.btn:focus,
.btn:visited:focus,
button:focus,
button:visited:focus,
input[type=image]:focus,
input[type=image]:visited:focus,
input[type=submit]:focus,
input[type=submit]:visited:focus,
input[type=button]:focus,
input[type=button]:visited:focus {
  outline: dotted #333 2px;
  outline-offset: 2px;
}
.blue-btn:active, #submit:active, .comment-reply-link:active,
input.button:active,
input.button:visited:active,
.button:active,
.button:visited:active,
.btn:active,
.btn:visited:active,
button:active,
button:visited:active,
input[type=image]:active,
input[type=image]:visited:active,
input[type=submit]:active,
input[type=submit]:visited:active,
input[type=button]:active,
input[type=button]:visited:active {
  top: 1px;
}
.solid-button.blue-btn, .solid-button#submit, .solid-button.comment-reply-link,
input.button.solid-button,
.button.solid-button,
.btn.solid-button,
button.solid-button,
input[type=image].solid-button,
input[type=submit].solid-button,
input[type=button].solid-button {
  background-color: #333;
  color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.solid-button.blue-btn:hover, .solid-button#submit:hover, .solid-button.comment-reply-link:hover, .solid-button.blue-btn:focus, .solid-button#submit:focus, .solid-button.comment-reply-link:focus,
input.button.solid-button:hover,
input.button.solid-button:focus,
.button.solid-button:hover,
.button.solid-button:focus,
.btn.solid-button:hover,
.btn.solid-button:focus,
button.solid-button:hover,
button.solid-button:focus,
input[type=image].solid-button:hover,
input[type=image].solid-button:focus,
input[type=submit].solid-button:hover,
input[type=submit].solid-button:focus,
input[type=button].solid-button:hover,
input[type=button].solid-button:focus {
  color: #fff;
  background-color: #4d4d4d;
  outline-color: #333;
}
.solid-button.blue-btn:focus, .solid-button#submit:focus, .solid-button.comment-reply-link:focus,
input.button.solid-button:focus,
.button.solid-button:focus,
.btn.solid-button:focus,
button.solid-button:focus,
input[type=image].solid-button:focus,
input[type=submit].solid-button:focus,
input[type=button].solid-button:focus {
  outline: dotted #333 2px;
  outline-offset: 2px;
}
.ghost-button.blue-btn, .ghost-button#submit, .ghost-button.comment-reply-link,
input.button.ghost-button,
.button.ghost-button,
.btn.ghost-button,
button.ghost-button,
input[type=image].ghost-button,
input[type=submit].ghost-button,
input[type=button].ghost-button {
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ghost-button.blue-btn:hover, .ghost-button#submit:hover, .ghost-button.comment-reply-link:hover, .ghost-button.blue-btn:focus, .ghost-button#submit:focus, .ghost-button.comment-reply-link:focus,
input.button.ghost-button:hover,
input.button.ghost-button:focus,
.button.ghost-button:hover,
.button.ghost-button:focus,
.btn.ghost-button:hover,
.btn.ghost-button:focus,
button.ghost-button:hover,
button.ghost-button:focus,
input[type=image].ghost-button:hover,
input[type=image].ghost-button:focus,
input[type=submit].ghost-button:hover,
input[type=submit].ghost-button:focus,
input[type=button].ghost-button:hover,
input[type=button].ghost-button:focus {
  color: #fff;
  background-color: #333;
  -webkit-filter: none;
          filter: none;
  outline-color: #333;
}
.ghost-button.blue-btn:focus, .ghost-button#submit:focus, .ghost-button.comment-reply-link:focus,
input.button.ghost-button:focus,
.button.ghost-button:focus,
.btn.ghost-button:focus,
button.ghost-button:focus,
input[type=image].ghost-button:focus,
input[type=submit].ghost-button:focus,
input[type=button].ghost-button:focus {
  outline: dotted #333 2px;
  outline-offset: 2px;
}
.accent-button.blue-btn, .accent-button#submit, .accent-button.comment-reply-link,
input.button.accent-button,
.button.accent-button,
.btn.accent-button,
button.accent-button,
input[type=image].accent-button,
input[type=submit].accent-button,
input[type=button].accent-button {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.accent-button.blue-btn, .accent-button#submit, .accent-button.comment-reply-link,
input.button.accent-button,
input.button.accent-button.solid-button,
.button.accent-button,
.button.accent-button.solid-button,
.btn.accent-button,
.btn.accent-button.solid-button,
button.accent-button,
button.accent-button.solid-button,
input[type=image].accent-button,
input[type=image].accent-button.solid-button,
input[type=submit].accent-button,
input[type=submit].accent-button.solid-button,
input[type=button].accent-button,
input[type=button].accent-button.solid-button {
  background-color: var(--accent-color, #333);
  color: var(--accent-text-color, #fff);
}
.accent-button.blue-btn:hover, .accent-button#submit:hover, .accent-button.comment-reply-link:hover, .accent-button.blue-btn:focus, .accent-button#submit:focus, .accent-button.comment-reply-link:focus,
input.button.accent-button:hover,
input.button.accent-button:focus,
input.button.accent-button.solid-button:hover,
input.button.accent-button.solid-button:focus,
.button.accent-button:hover,
.button.accent-button:focus,
.button.accent-button.solid-button:hover,
.button.accent-button.solid-button:focus,
.btn.accent-button:hover,
.btn.accent-button:focus,
.btn.accent-button.solid-button:hover,
.btn.accent-button.solid-button:focus,
button.accent-button:hover,
button.accent-button:focus,
button.accent-button.solid-button:hover,
button.accent-button.solid-button:focus,
input[type=image].accent-button:hover,
input[type=image].accent-button:focus,
input[type=image].accent-button.solid-button:hover,
input[type=image].accent-button.solid-button:focus,
input[type=submit].accent-button:hover,
input[type=submit].accent-button:focus,
input[type=submit].accent-button.solid-button:hover,
input[type=submit].accent-button.solid-button:focus,
input[type=button].accent-button:hover,
input[type=button].accent-button:focus,
input[type=button].accent-button.solid-button:hover,
input[type=button].accent-button.solid-button:focus {
  color: var(--accent-text-color, #fff);
  -webkit-filter: brightness(var(--accent-hover-brightness, 1.1));
          filter: brightness(var(--accent-hover-brightness, 1.1));
  outline-color: var(--accent-color, #333);
}
.accent-button.blue-btn:focus, .accent-button#submit:focus, .accent-button.comment-reply-link:focus,
input.button.accent-button:focus,
input.button.accent-button.solid-button:focus,
.button.accent-button:focus,
.button.accent-button.solid-button:focus,
.btn.accent-button:focus,
.btn.accent-button.solid-button:focus,
button.accent-button:focus,
button.accent-button.solid-button:focus,
input[type=image].accent-button:focus,
input[type=image].accent-button.solid-button:focus,
input[type=submit].accent-button:focus,
input[type=submit].accent-button.solid-button:focus,
input[type=button].accent-button:focus,
input[type=button].accent-button.solid-button:focus {
  outline: dotted var(--accent-color, #333) 2px;
  outline-offset: 2px;
}
.accent-button.ghost-button.blue-btn, .accent-button.ghost-button#submit, .accent-button.ghost-button.comment-reply-link,
input.button.accent-button.ghost-button,
.button.accent-button.ghost-button,
.btn.accent-button.ghost-button,
button.accent-button.ghost-button,
input[type=image].accent-button.ghost-button,
input[type=submit].accent-button.ghost-button,
input[type=button].accent-button.ghost-button {
  background-color: transparent;
  border: 1px solid var(--accent-color, #333);
  color: var(--accent-color, #333);
}
.accent-button.ghost-button.blue-btn:hover, .accent-button.ghost-button#submit:hover, .accent-button.ghost-button.comment-reply-link:hover, .accent-button.ghost-button.blue-btn:focus, .accent-button.ghost-button#submit:focus, .accent-button.ghost-button.comment-reply-link:focus,
input.button.accent-button.ghost-button:hover,
input.button.accent-button.ghost-button:focus,
.button.accent-button.ghost-button:hover,
.button.accent-button.ghost-button:focus,
.btn.accent-button.ghost-button:hover,
.btn.accent-button.ghost-button:focus,
button.accent-button.ghost-button:hover,
button.accent-button.ghost-button:focus,
input[type=image].accent-button.ghost-button:hover,
input[type=image].accent-button.ghost-button:focus,
input[type=submit].accent-button.ghost-button:hover,
input[type=submit].accent-button.ghost-button:focus,
input[type=button].accent-button.ghost-button:hover,
input[type=button].accent-button.ghost-button:focus {
  color: var(--accent-text-color, #fff);
  background-color: var(--accent-color, #333);
  -webkit-filter: none;
          filter: none;
  outline-color: var(--accent-color, #333);
}
.accent-button.ghost-button.blue-btn:focus, .accent-button.ghost-button#submit:focus, .accent-button.ghost-button.comment-reply-link:focus,
input.button.accent-button.ghost-button:focus,
.button.accent-button.ghost-button:focus,
.btn.accent-button.ghost-button:focus,
button.accent-button.ghost-button:focus,
input[type=image].accent-button.ghost-button:focus,
input[type=submit].accent-button.ghost-button:focus,
input[type=button].accent-button.ghost-button:focus {
  outline: dotted var(--accent-color, #333) 2px;
  outline-offset: 2px;
}
.black-button.blue-btn, .black-button#submit, .black-button.comment-reply-link,
input.button.black-button,
.button.black-button,
.btn.black-button,
button.black-button,
input[type=image].black-button,
input[type=submit].black-button,
input[type=button].black-button {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.black-button.blue-btn, .black-button#submit, .black-button.comment-reply-link,
input.button.black-button,
input.button.black-button.solid-button,
.button.black-button,
.button.black-button.solid-button,
.btn.black-button,
.btn.black-button.solid-button,
button.black-button,
button.black-button.solid-button,
input[type=image].black-button,
input[type=image].black-button.solid-button,
input[type=submit].black-button,
input[type=submit].black-button.solid-button,
input[type=button].black-button,
input[type=button].black-button.solid-button {
  background-color: #333;
  color: #fff;
}
.black-button.blue-btn:hover, .black-button#submit:hover, .black-button.comment-reply-link:hover, .black-button.blue-btn:focus, .black-button#submit:focus, .black-button.comment-reply-link:focus,
input.button.black-button:hover,
input.button.black-button:focus,
input.button.black-button.solid-button:hover,
input.button.black-button.solid-button:focus,
.button.black-button:hover,
.button.black-button:focus,
.button.black-button.solid-button:hover,
.button.black-button.solid-button:focus,
.btn.black-button:hover,
.btn.black-button:focus,
.btn.black-button.solid-button:hover,
.btn.black-button.solid-button:focus,
button.black-button:hover,
button.black-button:focus,
button.black-button.solid-button:hover,
button.black-button.solid-button:focus,
input[type=image].black-button:hover,
input[type=image].black-button:focus,
input[type=image].black-button.solid-button:hover,
input[type=image].black-button.solid-button:focus,
input[type=submit].black-button:hover,
input[type=submit].black-button:focus,
input[type=submit].black-button.solid-button:hover,
input[type=submit].black-button.solid-button:focus,
input[type=button].black-button:hover,
input[type=button].black-button:focus,
input[type=button].black-button.solid-button:hover,
input[type=button].black-button.solid-button:focus {
  color: #fff;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  outline-color: #333;
}
.black-button.blue-btn:focus, .black-button#submit:focus, .black-button.comment-reply-link:focus,
input.button.black-button:focus,
input.button.black-button.solid-button:focus,
.button.black-button:focus,
.button.black-button.solid-button:focus,
.btn.black-button:focus,
.btn.black-button.solid-button:focus,
button.black-button:focus,
button.black-button.solid-button:focus,
input[type=image].black-button:focus,
input[type=image].black-button.solid-button:focus,
input[type=submit].black-button:focus,
input[type=submit].black-button.solid-button:focus,
input[type=button].black-button:focus,
input[type=button].black-button.solid-button:focus {
  outline: dotted #333 2px;
  outline-offset: 2px;
}
.black-button.ghost-button.blue-btn, .black-button.ghost-button#submit, .black-button.ghost-button.comment-reply-link,
input.button.black-button.ghost-button,
.button.black-button.ghost-button,
.btn.black-button.ghost-button,
button.black-button.ghost-button,
input[type=image].black-button.ghost-button,
input[type=submit].black-button.ghost-button,
input[type=button].black-button.ghost-button {
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
}
.black-button.ghost-button.blue-btn:hover, .black-button.ghost-button#submit:hover, .black-button.ghost-button.comment-reply-link:hover, .black-button.ghost-button.blue-btn:focus, .black-button.ghost-button#submit:focus, .black-button.ghost-button.comment-reply-link:focus,
input.button.black-button.ghost-button:hover,
input.button.black-button.ghost-button:focus,
.button.black-button.ghost-button:hover,
.button.black-button.ghost-button:focus,
.btn.black-button.ghost-button:hover,
.btn.black-button.ghost-button:focus,
button.black-button.ghost-button:hover,
button.black-button.ghost-button:focus,
input[type=image].black-button.ghost-button:hover,
input[type=image].black-button.ghost-button:focus,
input[type=submit].black-button.ghost-button:hover,
input[type=submit].black-button.ghost-button:focus,
input[type=button].black-button.ghost-button:hover,
input[type=button].black-button.ghost-button:focus {
  color: #fff;
  background-color: #333;
  -webkit-filter: none;
          filter: none;
  outline-color: #333;
}
.black-button.ghost-button.blue-btn:focus, .black-button.ghost-button#submit:focus, .black-button.ghost-button.comment-reply-link:focus,
input.button.black-button.ghost-button:focus,
.button.black-button.ghost-button:focus,
.btn.black-button.ghost-button:focus,
button.black-button.ghost-button:focus,
input[type=image].black-button.ghost-button:focus,
input[type=submit].black-button.ghost-button:focus,
input[type=button].black-button.ghost-button:focus {
  outline: dotted #333 2px;
  outline-offset: 2px;
}
.white-button.blue-btn, .white-button#submit, .white-button.comment-reply-link,
input.button.white-button,
.button.white-button,
.btn.white-button,
button.white-button,
input[type=image].white-button,
input[type=submit].white-button,
input[type=button].white-button {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.white-button.blue-btn, .white-button#submit, .white-button.comment-reply-link,
input.button.white-button,
input.button.white-button.solid-button,
.button.white-button,
.button.white-button.solid-button,
.btn.white-button,
.btn.white-button.solid-button,
button.white-button,
button.white-button.solid-button,
input[type=image].white-button,
input[type=image].white-button.solid-button,
input[type=submit].white-button,
input[type=submit].white-button.solid-button,
input[type=button].white-button,
input[type=button].white-button.solid-button {
  background-color: #fff;
  color: #333;
}
.white-button.blue-btn:hover, .white-button#submit:hover, .white-button.comment-reply-link:hover, .white-button.blue-btn:focus, .white-button#submit:focus, .white-button.comment-reply-link:focus,
input.button.white-button:hover,
input.button.white-button:focus,
input.button.white-button.solid-button:hover,
input.button.white-button.solid-button:focus,
.button.white-button:hover,
.button.white-button:focus,
.button.white-button.solid-button:hover,
.button.white-button.solid-button:focus,
.btn.white-button:hover,
.btn.white-button:focus,
.btn.white-button.solid-button:hover,
.btn.white-button.solid-button:focus,
button.white-button:hover,
button.white-button:focus,
button.white-button.solid-button:hover,
button.white-button.solid-button:focus,
input[type=image].white-button:hover,
input[type=image].white-button:focus,
input[type=image].white-button.solid-button:hover,
input[type=image].white-button.solid-button:focus,
input[type=submit].white-button:hover,
input[type=submit].white-button:focus,
input[type=submit].white-button.solid-button:hover,
input[type=submit].white-button.solid-button:focus,
input[type=button].white-button:hover,
input[type=button].white-button:focus,
input[type=button].white-button.solid-button:hover,
input[type=button].white-button.solid-button:focus {
  color: #333;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  outline-color: #fff;
}
.white-button.blue-btn:focus, .white-button#submit:focus, .white-button.comment-reply-link:focus,
input.button.white-button:focus,
input.button.white-button.solid-button:focus,
.button.white-button:focus,
.button.white-button.solid-button:focus,
.btn.white-button:focus,
.btn.white-button.solid-button:focus,
button.white-button:focus,
button.white-button.solid-button:focus,
input[type=image].white-button:focus,
input[type=image].white-button.solid-button:focus,
input[type=submit].white-button:focus,
input[type=submit].white-button.solid-button:focus,
input[type=button].white-button:focus,
input[type=button].white-button.solid-button:focus {
  outline: dotted #fff 2px;
  outline-offset: 2px;
}
.white-button.ghost-button.blue-btn, .white-button.ghost-button#submit, .white-button.ghost-button.comment-reply-link,
input.button.white-button.ghost-button,
.button.white-button.ghost-button,
.btn.white-button.ghost-button,
button.white-button.ghost-button,
input[type=image].white-button.ghost-button,
input[type=submit].white-button.ghost-button,
input[type=button].white-button.ghost-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.white-button.ghost-button.blue-btn:hover, .white-button.ghost-button#submit:hover, .white-button.ghost-button.comment-reply-link:hover, .white-button.ghost-button.blue-btn:focus, .white-button.ghost-button#submit:focus, .white-button.ghost-button.comment-reply-link:focus,
input.button.white-button.ghost-button:hover,
input.button.white-button.ghost-button:focus,
.button.white-button.ghost-button:hover,
.button.white-button.ghost-button:focus,
.btn.white-button.ghost-button:hover,
.btn.white-button.ghost-button:focus,
button.white-button.ghost-button:hover,
button.white-button.ghost-button:focus,
input[type=image].white-button.ghost-button:hover,
input[type=image].white-button.ghost-button:focus,
input[type=submit].white-button.ghost-button:hover,
input[type=submit].white-button.ghost-button:focus,
input[type=button].white-button.ghost-button:hover,
input[type=button].white-button.ghost-button:focus {
  color: #333;
  background-color: #fff;
  -webkit-filter: none;
          filter: none;
  outline-color: #fff;
}
.white-button.ghost-button.blue-btn:focus, .white-button.ghost-button#submit:focus, .white-button.ghost-button.comment-reply-link:focus,
input.button.white-button.ghost-button:focus,
.button.white-button.ghost-button:focus,
.btn.white-button.ghost-button:focus,
button.white-button.ghost-button:focus,
input[type=image].white-button.ghost-button:focus,
input[type=submit].white-button.ghost-button:focus,
input[type=button].white-button.ghost-button:focus {
  outline: dotted #fff 2px;
  outline-offset: 2px;
}

.button + .button {
  margin-left: 0.5em;
}

p[style*="text-align: left"] .button, p[style*="text-align:left"] .button {
  margin-left: 0;
  margin-right: 0.5em;
}
p[style*="text-align: center"] .button, p[style*="text-align:center"] .button {
  margin-left: 0.25em;
  margin-right: 0.25em;
}
p[style*="text-align: right"] .button, p[style*="text-align:right"] .button {
  margin-left: 0.5em;
  margin-right: 0;
}

.g-btn,
.g-btn:visited,
.g-button,
.g-button:visited,
.recent-posts-widget a.excerpt-read-more,
.recent-posts-widget a.excerpt-read-more:visited {
  display: inline-block;
  position: relative;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  background-color: none;
  border: 2px solid #5c6b80;
  color: #5c6b80;
  font-weight: normal;
  padding: 0.25em 1em;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.g-btn.disabled,
.g-btn[disabled],
.g-btn:visited.disabled,
.g-btn:visited[disabled],
.g-button.disabled,
.g-button[disabled],
.g-button:visited.disabled,
.g-button:visited[disabled],
.recent-posts-widget a.excerpt-read-more.disabled,
.recent-posts-widget a.excerpt-read-more[disabled],
.recent-posts-widget a.excerpt-read-more:visited.disabled,
.recent-posts-widget a.excerpt-read-more:visited[disabled] {
  opacity: 0.7;
  cursor: no-drop;
  cursor: not-allowed;
}
.g-btn.disabled:before,
.g-btn[disabled]:before,
.g-btn:visited.disabled:before,
.g-btn:visited[disabled]:before,
.g-button.disabled:before,
.g-button[disabled]:before,
.g-button:visited.disabled:before,
.g-button:visited[disabled]:before,
.recent-posts-widget a.excerpt-read-more.disabled:before,
.recent-posts-widget a.excerpt-read-more[disabled]:before,
.recent-posts-widget a.excerpt-read-more:visited.disabled:before,
.recent-posts-widget a.excerpt-read-more:visited[disabled]:before {
  display: none;
}
.g-btn.disabled span,
.g-btn[disabled] span,
.g-btn:visited.disabled span,
.g-btn:visited[disabled] span,
.g-button.disabled span,
.g-button[disabled] span,
.g-button:visited.disabled span,
.g-button:visited[disabled] span,
.recent-posts-widget a.excerpt-read-more.disabled span,
.recent-posts-widget a.excerpt-read-more[disabled] span,
.recent-posts-widget a.excerpt-read-more:visited.disabled span,
.recent-posts-widget a.excerpt-read-more:visited[disabled] span {
  -webkit-transform: none;
          transform: none;
}
.g-btn.disabled,
.g-btn.disabled:hover,
.g-btn.disabled:focus,
.g-btn[disabled],
.g-btn[disabled]:hover,
.g-btn[disabled]:focus,
.g-btn:visited.disabled,
.g-btn:visited.disabled:hover,
.g-btn:visited.disabled:focus,
.g-btn:visited[disabled],
.g-btn:visited[disabled]:hover,
.g-btn:visited[disabled]:focus,
.g-button.disabled,
.g-button.disabled:hover,
.g-button.disabled:focus,
.g-button[disabled],
.g-button[disabled]:hover,
.g-button[disabled]:focus,
.g-button:visited.disabled,
.g-button:visited.disabled:hover,
.g-button:visited.disabled:focus,
.g-button:visited[disabled],
.g-button:visited[disabled]:hover,
.g-button:visited[disabled]:focus,
.recent-posts-widget a.excerpt-read-more.disabled,
.recent-posts-widget a.excerpt-read-more.disabled:hover,
.recent-posts-widget a.excerpt-read-more.disabled:focus,
.recent-posts-widget a.excerpt-read-more[disabled],
.recent-posts-widget a.excerpt-read-more[disabled]:hover,
.recent-posts-widget a.excerpt-read-more[disabled]:focus,
.recent-posts-widget a.excerpt-read-more:visited.disabled,
.recent-posts-widget a.excerpt-read-more:visited.disabled:hover,
.recent-posts-widget a.excerpt-read-more:visited.disabled:focus,
.recent-posts-widget a.excerpt-read-more:visited[disabled],
.recent-posts-widget a.excerpt-read-more:visited[disabled]:hover,
.recent-posts-widget a.excerpt-read-more:visited[disabled]:focus {
  color: #f8f9fa;
}
.g-btn:hover,
.g-btn:focus,
.g-btn:visited:hover,
.g-btn:visited:focus,
.g-button:hover,
.g-button:focus,
.g-button:visited:hover,
.g-button:visited:focus,
.recent-posts-widget a.excerpt-read-more:hover,
.recent-posts-widget a.excerpt-read-more:focus,
.recent-posts-widget a.excerpt-read-more:visited:hover,
.recent-posts-widget a.excerpt-read-more:visited:focus {
  color: #fff;
  background: #5c6b80;
  text-decoration: none;
}
.g-btn:active,
.g-btn:visited:active,
.g-button:active,
.g-button:visited:active,
.recent-posts-widget a.excerpt-read-more:active,
.recent-posts-widget a.excerpt-read-more:visited:active {
  top: 1px;
}
.g-btn.btn--white,
.g-btn.btn--white:visited,
.g-button.btn--white,
.g-button.btn--white:visited,
.recent-posts-widget a.excerpt-read-more.btn--white,
.recent-posts-widget a.excerpt-read-more.btn--white:visited {
  border: 2px solid #fff;
  color: #fff;
}
.g-btn.btn--white:hover,
.g-btn.btn--white:focus,
.g-btn.btn--white:visited:hover,
.g-btn.btn--white:visited:focus,
.g-button.btn--white:hover,
.g-button.btn--white:focus,
.g-button.btn--white:visited:hover,
.g-button.btn--white:visited:focus,
.recent-posts-widget a.excerpt-read-more.btn--white:hover,
.recent-posts-widget a.excerpt-read-more.btn--white:focus,
.recent-posts-widget a.excerpt-read-more.btn--white:visited:hover,
.recent-posts-widget a.excerpt-read-more.btn--white:visited:focus {
  color: #333;
  background: #fff;
  text-decoration: none;
}

.recent-posts-widget a.excerpt-read-more {
  float: right;
  clear: both;
}

/*
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.
*/
.blue-btn, #submit, .comment-reply-link {
  background-color: #2980b9;
}
.blue-btn:hover, #submit:hover, .comment-reply-link:hover, .blue-btn:focus, #submit:focus, .comment-reply-link:focus {
  background-color: #2574a8;
}
.blue-btn:active, #submit:active, .comment-reply-link: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
*********************/
#searchform div.search-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#searchform div.search-flex #s {
  margin-bottom: 0px;
}

#search-form {
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  background: #f8f9fa;
  text-align: right;
  position: fixed;
  -webkit-transition: max-height ease-in-out 0.5s;
  transition: max-height ease-in-out 0.5s;
  top: 0%;
  z-index: 103;
}
@media only screen and (min-width: 768px) {
  #search-form {
    z-index: 13;
    top: 100%;
    position: absolute;
  }
}
#search-form.active {
  max-height: 100px;
}
#search-form #searchform {
  margin: 15px 5px;
}
#search-form #searchform div.search-flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#search-form #searchform div.search-flex #s {
  margin-bottom: 0px;
  border: 0px;
  background: #fff;
  border-bottom: 3px solid #333;
}
#search-form #searchform div.search-flex #s,
#search-form #searchform div.search-flex #searchsubmit {
  border-radius: 0;
}

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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  vertical-align: middle;
  margin-bottom: 14px;
  padding: 0.25em 0.5em;
  border: 1px solid #eaedf2;
  border-radius: 3px;
  width: 100%;
  max-width: 400px;
  min-height: 40px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #f8f9fa;
  color: #5c6b80;
  font-size: 1em;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1em;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
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: white;
}
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 {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
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 {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
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;
}
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;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/*********************
GRAVITY FORMS
*********************/
.gform_wrapper input[type=text],
.gform_wrapper input[type=password],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=date],
.gform_wrapper input[type=month],
.gform_wrapper input[type=time],
.gform_wrapper input[type=week],
.gform_wrapper input[type=number],
.gform_wrapper input[type=email],
.gform_wrapper input[type=url],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=color],
.gform_wrapper select,
.gform_wrapper textarea,
.gform_wrapper .field {
  max-width: none;
}
/******************************************************************
Site Name:
Author:

Stylesheet: Owl Carousel

******************************************************************/
/* 
 *	Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *	Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

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

Stylesheet: fancyBox

******************************************************************/
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("../images/fancyBox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancyBox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancyBox/blank.gif"); /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancyBox/fancybox_overlay.png");
  background: rgba(0, 0, 0, 0.75);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent; /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
}

/*Retina graphics!*/
@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) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancyBox/fancybox_sprite@2x.png");
    background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("../images/fancyBox/fancybox_loading@2x.gif");
    background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Woocommerce Styles

******************************************************************/
@-webkit-keyframes rotate-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 1.5rem;
  border: 1px solid #eaedf2;
  border-left-width: 5px;
  padding: 1em 1em 1em 1.5em;
  margin: 1.5rem;
  font-size: 1.25rem;
}
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  content: "";
  position: absolute;
  top: 50%;
  top: calc(50% - 0.5em);
  left: 0;
  border-top: 0.5em solid transparent;
  border-left: 0.5em solid #eaedf2;
  border-bottom: 0.5em solid transparent;
}
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  min-width: 150px;
  width: 100%;
  max-width: 30%;
  margin-left: 1em;
  text-align: center;
}

.woocommerce-message {
  border-color: #7dd667;
}
.woocommerce-message:before {
  border-left-color: #7dd667;
}

.woocommerce-error {
  border-color: #FF1437;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-error:before {
  border-left-color: #FF1437;
}
.woocommerce-error li {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0.25em 0;
  width: 100%;
}

.woocommerce-checkout .woocommerce-error {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-error li {
  display: block;
  margin: 0;
  padding: 0.25em 0;
}
.woocommerce-checkout .woocommerce-info {
  display: block;
}

.woocommerce-cart .woocommerce-message {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.woocommerce .woocommerce-result-count {
  float: left;
}
.woocommerce .woocommerce-ordering {
  width: initial;
  float: right;
}
.woocommerce .woocommerce-ordering select {
  width: initial;
}
.woocommerce .woocommerce-breadcrumb {
  display: none;
  font-size: 1.2rem;
  margin: 1em 0;
}
.woocommerce .cart:not(table) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce .cart:not(table) .quantity {
  float: left;
}
.woocommerce table.cart .actions-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce table.cart .actions-flex label {
  width: 100%;
  font-size: 1.2rem;
  padding: 0 0 0.25em;
}
.woocommerce table.cart .product-remove .remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  border-radius: 5em;
  padding: 0.16em 0.3em 0.25em;
  background-color: #FF1437;
  color: #fff;
  font-size: 1.25em;
  text-decoration: none;
  line-height: 1;
}
.woocommerce table.cart .product-remove .remove:hover, .woocommerce table.cart .product-remove .remove:focus {
  background-color: #ff2e4d;
}
.woocommerce #content .images {
  overflow: hidden;
  padding-bottom: 2em;
}
.woocommerce .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce .coupon .input-text {
  width: initial;
}
.woocommerce .product_meta {
  font-size: 1.2rem;
  margin: 1em 0;
}
.woocommerce .woocommerce-tabs {
  display: block;
  width: 100%;
  clear: both;
  float: none;
}
.woocommerce .woocommerce-tabs .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
}
.woocommerce .woocommerce-tabs .tabs li {
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 0;
}
.woocommerce .woocommerce-tabs .tabs li a {
  display: block;
  padding: 1em 1.5em;
  background-color: #eaedf2;
  color: #fff;
  text-decoration: none;
}
.woocommerce .woocommerce-tabs .tabs li.active a {
  background-color: #333;
}
.woocommerce .woocommerce-tabs .wc-tab {
  background-color: #f8f9fa;
  border: 1px solid #eaedf2;
}
.woocommerce .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch-around;
      -ms-flex-align: stretch-around;
          align-items: stretch-around;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 1em 0;
  width: 100%;
  clear: both;
  float: none;
}
.woocommerce .products a {
  text-decoration: none;
}
.woocommerce .products:before, .woocommerce .products:after {
  display: none;
}
.woocommerce .products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 1em 1%;
  width: 100%;
  max-width: 300px;
}
.woocommerce .products .product > * {
  width: 100%;
}
.woocommerce .products .product a:not(.button):not(.added_to_cart) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.woocommerce .products .product a:not(.button):not(.added_to_cart) > * {
  width: 100%;
}
.woocommerce .products .product .price {
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 1em;
}
.woocommerce .products .product .added_to_cart {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0.25em 0;
  display: block;
  text-align: center;
}
.woocommerce .products .product .button {
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  text-align: center;
  text-transform: capitalize;
}
.woocommerce .products .product .button.loading {
  position: relative;
  cursor: no-drop;
  cursor: not-allowed;
  cursor: wait;
}
.woocommerce .products .product .button.loading:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  margin: 0 auto;
  border: 2.5px solid #eaedf2;
  border-radius: 2em;
  border-top-color: #fff;
  width: 0.6em;
  height: 0.6em;
  -webkit-animation: rotate-spin 2s linear infinite;
  animation: rotate-spin 2s linear infinite;
}
.woocommerce .products .product .button.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7dd667;
  z-index: 4;
}
.woocommerce .products .product .image-wrapper {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.woocommerce .products .product .image-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: 0;
}
.woocommerce .products > *:not(.product) {
  width: 100%;
}
.woocommerce .products.related {
  clear: both;
  float: none;
}
.woocommerce .products.related .product h2 {
  font-size: 1.5em;
}
@media only screen and (min-width: 300px) {
  .woocommerce .products.related .product {
    width: 48%;
  }
}
.woocommerce .blockOverlay {
  background-image: url("../images/ajax-loader.gif") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: auto;
}
.woocommerce #payment .payment_methods {
  margin: 1em 0;
}
.woocommerce #payment .payment_methods li {
  list-style-image: none;
  list-style-position: inside;
  list-style-type: none;
  margin: 1em 0;
  padding: 1.5em;
  border: 1px solid #eaedf2;
  background-color: #f8f9fa;
}
.woocommerce #payment .payment_methods li p {
  margin: 0.5em 0 0;
}
.woocommerce #payment img {
  margin: 0 0.75em;
  max-height: 50px;
}
.woocommerce #payment .place-order {
  text-align: center;
  font-size: 1.25em;
}

.checkout.woocommerce-checkout.processing {
  background-image: url("../images/ajax-loader.gif") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: auto;
  opacity: 0.5;
}

.single-product .product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .product-gallery .woocommerce-product-gallery__image {
  padding: 0.5em;
}
.single-product .product-gallery .woocommerce-product-gallery__image, .single-product .product-gallery .woocommerce-product-gallery__image * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .product-gallery .woocommerce-product-gallery__image a {
  height: 75px;
  width: 75px;
  border: 1px solid #eaedf2;
}
.single-product .product-gallery .woocommerce-product-gallery__image a.active {
  border-color: #FF1437;
}
.single-product .product-gallery .woocommerce-product-gallery__image img {
  margin: 0;
  width: auto;
  height: auto;
}
.single-product .product-gallery .woocommerce-product-gallery__image.portrait img {
  max-width: none;
  height: 100%;
  max-height: 150px;
}
.single-product .product-gallery .woocommerce-product-gallery__image.landscape img {
  width: 100%;
  max-width: 150px;
  max-height: none;
}
.single-product .image-wrapper {
  padding-bottom: 1em;
  width: 100%;
}
.single-product .image-wrapper, .single-product .image-wrapper * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .image-wrapper img {
  margin: 0 auto;
}
.single-product .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.single-product .owl-item *:not(img) {
  height: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  display: block;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  float: right;
  width: 100%;
  background-color: #f8f9fa;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 1rem 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation:before {
  content: "My Account";
  display: block;
  margin: 0;
  padding: 0.5rem 1.5rem;
  padding: calc(0.5rem + 7px) 1.5rem;
  background-color: #333333;
  color: #fff;
  font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 2em;
  font-weight: 700;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: left;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.woocommerce-account article {
  position: relative;
}
.woocommerce-account .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  min-height: 300px;
}

#yith-wacp-popup .yith-wacp-wrapper .yith-wacp-close {
  color: #fff;
  background-color: #333333;
  text-decoration: none;
}

@media only screen and (min-width: 481px) {
  .woocommerce .products .product {
    width: 48%;
  }
  .woocommerce .products.related .product {
    width: 31%;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce .col2-set {
    width: 100%;
  }
  .woocommerce .col2-set:after {
    content: "";
    display: block;
    clear: both;
    float: none;
  }
  .woocommerce .col2-set .col-1 {
    float: left;
    width: 48%;
  }
  .woocommerce .col2-set .col-2 {
    float: right;
    width: 48%;
  }
  .woocommerce #content {
    width: 100%;
  }
  .woocommerce #content .images {
    float: left;
    width: 48%;
    padding-bottom: 0;
  }
  .woocommerce #content .summary {
    float: right;
    width: 48%;
  }
  .woocommerce .products.related .product {
    width: 23%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: absolute;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: 0;
    left: 0;
    width: 33.3333333333%;
    width: 33.33%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 1.5em 0 0 1.5em;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 33.3333333333%;
    padding-left: 33.33%;
    padding-left: calc(33.3333333333% + 3em);
    padding-left: calc(33.33% + 3em);
  }
}
@media only screen and (min-width: 1030px) {
  .woocommerce .products .product {
    width: 31%;
  }
  .woocommerce .products.related .product {
    width: 18%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 28.5714285714%;
    width: 28.5714286%;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 28.5714285714%;
    padding-left: 28.5714286%;
    padding-left: calc(28.5714285714% + 3em);
    padding-left: calc(28.5714286% + 3em);
  }
}
@media only screen and (max-width: 480px) {
  .woocommerce-thankyou-order-details {
    margin: 0;
    list-style-type: none;
    list-style-position: inside;
  }
  .woocommerce-thankyou-order-details li {
    margin: 0;
    padding: 0.5em;
    list-style-type: none;
    list-style-position: inside;
    border: 1px solid #eaedf2;
    border-top: none;
  }
  .woocommerce-thankyou-order-details li:first-of-type {
    border-top: 1px solid #eaedf2;
  }
  .woocommerce-thankyou-order-details li:nth-of-type(even) {
    background-color: #f8f9fa;
  }
  .shop_table {
    width: 100%;
    border-top: none;
    border-right: 1px solid #eaedf2;
    border-bottom: none;
    border-left: 1px solid #eaedf2;
    margin-bottom: 1.5em;
  }
  .shop_table .product-remove .remove {
    float: right;
  }
  .shop_table thead {
    display: none;
  }
  .shop_table tbody,
  .shop_table tr,
  .shop_table td,
  .shop_table th,
  .shop_table tfoot {
    display: block;
    border: none;
  }
  .shop_table tr {
    border-bottom: 1px solid #eaedf2;
  }
  .shop_table tr:first-of-type, .shop_table tr:first-child {
    border-top: 1px solid #eaedf2;
  }
  .shop_table tr:nth-of-type(even), .shop_table tr:nth-child(even) {
    background-color: #f8f9fa;
  }
  .shop_table td {
    padding: 0.5em;
    border-bottom: 1px solid #eaedf2;
  }
  .shop_table td:last-of-type, .shop_table td:last-child {
    border-right: 0;
  }
  .shop_table th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaedf2;
  }
  .shop_table th:last-of-type, .shop_table th:last-child {
    border-right: 0;
  }
  .shop_table .product-thumbnail {
    text-align: center;
  }
  .shop_table .product-thumbnail img {
    margin: 0 auto;
  }
  .shop_table .product-name,
  .shop_table .product-price,
  .shop_table .product-quantity,
  .shop_table .product-subtotal,
  .shop_table .product-total {
    position: relative;
    padding-left: 40%;
    border-top: 1px solid #eaedf2;
  }
  .shop_table .product-name:before,
  .shop_table .product-price:before,
  .shop_table .product-quantity:before,
  .shop_table .product-subtotal:before,
  .shop_table .product-total:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 35%;
    width: calc(40% - 0.5em);
    max-width: 35%;
    max-width: calc(40% - 0.5em);
    height: 100%;
    padding: 0 0.5em;
    border-right: 1px solid #eaedf2;
    font-weight: 700;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .shop_table .product-name .product-name,
  .shop_table .product-name .product-price,
  .shop_table .product-name .product-quantity,
  .shop_table .product-name .product-subtotal,
  .shop_table .product-name .product-total,
  .shop_table .product-price .product-name,
  .shop_table .product-price .product-price,
  .shop_table .product-price .product-quantity,
  .shop_table .product-price .product-subtotal,
  .shop_table .product-price .product-total,
  .shop_table .product-quantity .product-name,
  .shop_table .product-quantity .product-price,
  .shop_table .product-quantity .product-quantity,
  .shop_table .product-quantity .product-subtotal,
  .shop_table .product-quantity .product-total,
  .shop_table .product-subtotal .product-name,
  .shop_table .product-subtotal .product-price,
  .shop_table .product-subtotal .product-quantity,
  .shop_table .product-subtotal .product-subtotal,
  .shop_table .product-subtotal .product-total,
  .shop_table .product-total .product-name,
  .shop_table .product-total .product-price,
  .shop_table .product-total .product-quantity,
  .shop_table .product-total .product-subtotal,
  .shop_table .product-total .product-total {
    padding: 0;
    border: none;
  }
  .shop_table .product-name .product-name:before,
  .shop_table .product-name .product-price:before,
  .shop_table .product-name .product-quantity:before,
  .shop_table .product-name .product-subtotal:before,
  .shop_table .product-name .product-total:before,
  .shop_table .product-price .product-name:before,
  .shop_table .product-price .product-price:before,
  .shop_table .product-price .product-quantity:before,
  .shop_table .product-price .product-subtotal:before,
  .shop_table .product-price .product-total:before,
  .shop_table .product-quantity .product-name:before,
  .shop_table .product-quantity .product-price:before,
  .shop_table .product-quantity .product-quantity:before,
  .shop_table .product-quantity .product-subtotal:before,
  .shop_table .product-quantity .product-total:before,
  .shop_table .product-subtotal .product-name:before,
  .shop_table .product-subtotal .product-price:before,
  .shop_table .product-subtotal .product-quantity:before,
  .shop_table .product-subtotal .product-subtotal:before,
  .shop_table .product-subtotal .product-total:before,
  .shop_table .product-total .product-name:before,
  .shop_table .product-total .product-price:before,
  .shop_table .product-total .product-quantity:before,
  .shop_table .product-total .product-subtotal:before,
  .shop_table .product-total .product-total:before {
    content: "";
    padding: 0;
    border: none;
  }
  .shop_table .product-name:before {
    content: "Product: ";
  }
  .shop_table .product-price:before {
    content: "Price: ";
  }
  .shop_table .product-quantity:before {
    content: "Quantity: ";
  }
  .shop_table .product-subtotal:before {
    content: "Subtotal: ";
  }
  .shop_table .product-total:before {
    content: "Total: ";
  }
}
/*********************
IMPORTING COMPONENTS
This are the component styles. 
Components compose of the different theme templates.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: 404 Stylesheet

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

Stylesheet: Archive Stylesheet

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

Stylesheet: Author Stylesheet

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

Stylesheet: Comments Stylesheet

******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #f8f9fa;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
} /* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #5c6b80;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

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

Stylesheet: Header Stylesheet

******************************************************************/
#main {
  min-height: 400px;
}

.home #main {
  min-height: 0;
}

@media only screen and (min-width: 1030px) {
  #main {
    min-height: 700px;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Footer Stylesheet

******************************************************************/
#sharing-bar {
  float: right;
  text-align: right;
  position: fixed;
  right: 0;
  width: 50px;
  width: 3.125em;
  bottom: 50px;
  z-index: 10;
  text-align: center;
  line-height: 1;
  background: #f8f9fa;
}
#sharing-bar a:link {
  font-size: 1.75rem;
  width: 100%;
  float: left;
}
#sharing-bar span {
  font-size: 0.65rem;
  width: 100%;
  text-transform: uppercase;
  margin: 5px 0;
  float: left;
}
#sharing-bar #close-social-sharing {
  margin-left: 5px;
  margin-right: 5px;
}

#contact-bar {
  background: #f8f9fa;
}
#contact-bar h4 {
  margin-top: 0px;
}
#contact-bar .contact-wrapper {
  margin: 25px 0;
}
@media only screen and (min-width: 768px) {
  #contact-bar .contact-wrapper {
    margin: 50px 0;
  }
}
#contact-bar .contact-wrapper .contact-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-top;
      -ms-flex-align: flex-top;
          align-items: flex-top;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact-bar .contact-wrapper .contact-flex svg {
  margin-right: 5px;
}
#contact-bar .contact-wrapper .contact-flex a:link, #contact-bar .contact-wrapper .contact-flex a:visited {
  color: #5c6b80;
  text-decoration: none;
}
#contact-bar .contact-wrapper .contact-flex .phone-email.text-align-center {
  text-align: center;
}

#footer, .footer {
  clear: both;
  background-color: #333;
  color: #fff;
  padding: 1em 0;
  position: relative;
  z-index: 1;
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer p, .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer p {
  color: #fff;
}
#footer a, #footer a:hover, #footer a:focus, #footer a:active, #footer a:visited, #footer a:visited:hover, #footer a:visited:focus, #footer a:visited:active, .footer a, .footer a:hover, .footer a:focus, .footer a:active, .footer a:visited, .footer a:visited:hover, .footer a:visited:focus, .footer a:visited:active {
  color: #fff;
}
#footer #social-sharing.social, .footer #social-sharing.social {
  text-align: center;
  position: relative;
  margin-top: 15px;
  top: 0px;
}
#footer nav[role=navigation] .nav.footer-nav, .footer nav[role=navigation] .nav.footer-nav {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#footer nav[role=navigation] .nav.footer-nav li, .footer nav[role=navigation] .nav.footer-nav li {
  width: 50%;
}
#footer nav[role=navigation] .nav.footer-nav li a, .footer nav[role=navigation] .nav.footer-nav li a {
  -webkit-transition: background ease-in-out 0.2s;
  transition: background ease-in-out 0.2s;
}
#footer nav[role=navigation] .nav.footer-nav li a:hover, .footer nav[role=navigation] .nav.footer-nav li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
#footer nav[role=navigation] .nav.footer-nav li ul.sub-menu, .footer nav[role=navigation] .nav.footer-nav li ul.sub-menu {
  z-index: auto;
  position: relative;
  visibility: visible;
  border: 0px;
  background: none;
}
#footer nav[role=navigation] .nav.footer-nav li ul.sub-menu li, .footer nav[role=navigation] .nav.footer-nav li ul.sub-menu li {
  width: 100%;
}
#footer nav[role=navigation] .nav.footer-nav li ul.sub-menu li a, .footer nav[role=navigation] .nav.footer-nav li ul.sub-menu li a {
  width: 100%;
}

#site-funders {
  text-align: center;
}
#site-funders h4 {
  margin-top: 0px;
}
#site-funders .site-funders-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* end .footer-links */
.copyright {
  margin: 15px 0 0 0;
  text-align: center;
  font-size: 0.75rem;
}
.copyright a:link, .copyright a:visited {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  #footer nav[role=navigation], .footer nav[role=navigation] {
    margin: 25px 0;
  }
  #footer nav[role=navigation] .nav.footer-nav, .footer nav[role=navigation] .nav.footer-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer nav[role=navigation] .nav.footer-nav li, .footer nav[role=navigation] .nav.footer-nav li {
    width: 25%;
  }
  #footer nav[role=navigation] .nav.footer-nav li .sub-menu, .footer nav[role=navigation] .nav.footer-nav li .sub-menu {
    width: 80%;
    margin: 0 10%;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Front Page Stylesheet

******************************************************************/
#home-hero {
  position: relative;
  text-align: center;
}
#home-hero #scroll-down {
  position: absolute;
  bottom: 15px;
  left: 0px;
  right: 0px;
  margin: auto;
  color: #fff;
  z-index: 9;
  font-size: 2em;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #home-hero #scroll-down {
    font-size: 3em;
  }
}
#home-hero #scroll-down:hover {
  color: #f8f9fa;
}

#hero-image,
.owl-carousel {
  position: relative;
}
#hero-image .slide-wrapper-bg,
.owl-carousel .slide-wrapper-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
}
#hero-image .slide-wrapper-content,
.owl-carousel .slide-wrapper-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero-image,
.each-home-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 85vh;
}
#hero-image .slide-wrapper,
.each-home-slide .slide-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
#hero-image .slide-wrapper img,
.each-home-slide .slide-wrapper img {
  width: auto;
  height: auto;
  max-height: none;
  float: none;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero-image .slide-wrapper .slide-title,
#hero-image .slide-wrapper .slide-sub-title,
.each-home-slide .slide-wrapper .slide-title,
.each-home-slide .slide-wrapper .slide-sub-title {
  margin: 20px auto;
  padding: 2px 5px;
  width: auto;
  max-width: 900px;
  color: #fff;
}
#hero-image .slide-wrapper .slide-title > *,
#hero-image .slide-wrapper .slide-sub-title > *,
.each-home-slide .slide-wrapper .slide-title > *,
.each-home-slide .slide-wrapper .slide-sub-title > * {
  margin-top: 0;
  margin-bottom: 0;
}
#hero-image .slide-wrapper .slide-title,
.each-home-slide .slide-wrapper .slide-title {
  font-size: 1.75rem;
  clear: both;
  font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
}
#hero-image .slide-wrapper .slide-sub-title,
.each-home-slide .slide-wrapper .slide-sub-title {
  font-size: 1.25rem;
  clear: both;
}
#hero-image.horz-left .slide-wrapper,
.each-home-slide.horz-left .slide-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
#hero-image.horz-left .slide-wrapper .slide-title,
#hero-image.horz-left .slide-wrapper .slide-sub-title,
.each-home-slide.horz-left .slide-wrapper .slide-title,
.each-home-slide.horz-left .slide-wrapper .slide-sub-title {
  text-align: left;
}
#hero-image.horz-left .slide-wrapper img,
.each-home-slide.horz-left .slide-wrapper img {
  margin-left: 0;
}
#hero-image.horz-center .slide-wrapper,
.each-home-slide.horz-center .slide-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
#hero-image.horz-center .slide-wrapper .slide-title,
#hero-image.horz-center .slide-wrapper .slide-sub-title,
.each-home-slide.horz-center .slide-wrapper .slide-title,
.each-home-slide.horz-center .slide-wrapper .slide-sub-title {
  text-align: center;
}
#hero-image.horz-right .slide-wrapper,
.each-home-slide.horz-right .slide-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
#hero-image.horz-right .slide-wrapper .slide-title,
#hero-image.horz-right .slide-wrapper .slide-sub-title,
.each-home-slide.horz-right .slide-wrapper .slide-title,
.each-home-slide.horz-right .slide-wrapper .slide-sub-title {
  text-align: right;
}
#hero-image.horz-right .slide-wrapper img,
.each-home-slide.horz-right .slide-wrapper img {
  margin-right: 0;
}
#hero-image.vert-top .slide-wrapper,
.each-home-slide.vert-top .slide-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#hero-image.vert-middle .slide-wrapper,
.each-home-slide.vert-middle .slide-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#hero-image.vert-bottom .slide-wrapper,
.each-home-slide.vert-bottom .slide-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.owl-controls {
  position: absolute;
  bottom: 15px;
  right: 25px;
}
.owl-controls .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px 0 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.owl-controls .owl-dots .owl-dot.active {
  background: #fff;
}

#above-home-widgets {
  margin-top: 25px;
}

.recent-posts-widget {
  width: 100%;
  margin-bottom: 25px;
  float: left;
  position: relative;
}
.recent-posts-widget::after {
  content: "";
  height: 1px;
  width: 80%;
  margin: 1rem 10%;
  float: left;
  display: block;
  background: #f8f9fa;
}
.recent-posts-widget h2 {
  text-align: center;
}
.recent-posts-widget .cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2.2em 0;
}
.recent-posts-widget .cta-wrap .reverse-widget-text {
  padding: 25px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background: #f8f9fa;
}
.recent-posts-widget .cta-wrap .reverse-widget-text h3 {
  font-size: 1.5rem;
  margin-top: 0px;
}
.recent-posts-widget .cta-wrap .reverse-widget-text .btn-wrap {
  text-align: right;
}
.recent-posts-widget .cta-wrap .color-bg {
  background: #333333;
  color: #fff;
  padding: 25px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 768px) {
  .recent-posts-widget .cta-wrap .color-bg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.recent-posts-widget .cta-wrap .color-bg h3 {
  font-size: 1.5rem;
  margin-top: 0px;
}
.recent-posts-widget .cta-wrap .color-bg .btn-wrap {
  text-align: right;
}
.recent-posts-widget .cta-wrap .image-bg {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  background-color: #eaedf2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  min-height: 150px;
}
@media only screen and (min-width: 768px) {
  .recent-posts-widget .cta-wrap .image-bg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.recent-posts-widget .cta-wrap .image-bg:hover:after {
  opacity: 0.15;
}
.recent-posts-widget .cta-wrap h3 {
  margin-bottom: 0;
}
.recent-posts-widget .cta-wrap h3 a {
  text-decoration: none;
}
.recent-posts-widget .cta-wrap .category-float {
  padding: 0;
  width: 100%;
  margin-bottom: 1rem;
}

.cta_widget {
  width: 100%;
  margin-bottom: 25px;
  float: left;
}
.cta_widget .cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cta_widget .cta-wrap .color-bg {
  background: #333333;
  color: #fff;
  padding: 25px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 768px) {
  .cta_widget .cta-wrap .color-bg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cta_widget .cta-wrap .color-bg h3 {
  font-size: 1.5rem;
  margin-top: 0px;
}
.cta_widget .cta-wrap .color-bg .btn-wrap {
  text-align: right;
}
.cta_widget .cta-wrap .image-bg {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  background-color: #eaedf2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  min-height: 150px;
}
@media only screen and (min-width: 768px) {
  .cta_widget .cta-wrap .image-bg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.cta_widget .cta-wrap .image-bg:after {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='5' height='5'><circle cx='4' cy='4' r='1.5' /></svg>");
  background-repeat: repeat;
  opacity: 0.3;
  content: "";
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.cta_widget .cta-wrap .image-bg:hover:after {
  opacity: 0.15;
}

.cta_reverse_widget {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
.cta_reverse_widget .cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cta_reverse_widget .cta-wrap .reverse-widget-text {
  padding: 25px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background: #f8f9fa;
}
.cta_reverse_widget .cta-wrap .reverse-widget-text h3 {
  font-size: 1.5rem;
  margin-top: 0px;
}
.cta_reverse_widget .cta-wrap .reverse-widget-text .btn-wrap {
  text-align: right;
}
.cta_reverse_widget .cta-wrap .image-bg {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  background-color: #eaedf2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  min-height: 150px;
}
.cta_reverse_widget .cta-wrap .image-bg:hover:after {
  opacity: 0.15;
}

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

Stylesheet: Header Stylesheet

******************************************************************/
#header, .header {
  background-color: #333;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #header, .header {
    position: relative;
  }
}
#header #inner-header, .header #inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #333;
}
@media only screen and (min-width: 768px) {
  #header #inner-header, .header #inner-header {
    position: relative;
  }
}
#header .screen-reader-text, .header .screen-reader-text {
  color: #fff !important;
  background-color: #333 !important;
}
#header .screen-reader-text:focus, .header .screen-reader-text:focus {
  background-color: #f1f1f1 !important;
  color: #21759b !important;
}

#social-sharing.social {
  text-align: right;
  font-size: 1.125rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-family: "Merriweather", "Georgia", Cambria, Times New Roman, Times, serif;
  color: #fff;
  position: absolute;
  top: 5px;
  right: 0px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #social-sharing.social {
    position: relative;
  }
}
#social-sharing.social .each-social {
  display: inline-block;
  color: #fff;
  margin-right: 7px;
}
#social-sharing.social .each-social a:link, #social-sharing.social .each-social a:hover, #social-sharing.social .each-social a:visited {
  color: #fff;
  padding: 5px;
}
#social-sharing.social span {
  font-size: 0.85rem;
}

#header #responsive-nav {
  width: 100%;
}
#header #responsive-nav #logo {
  display: inline-block;
  width: 85%;
  float: left;
}
#header #responsive-nav .mobile-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#header #responsive-nav .nav-trigger {
  cursor: pointer;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: #333333;
}
#header #responsive-nav .nav-trigger span {
  width: 100%;
  float: left;
}
#header #responsive-nav .nav-trigger div {
  float: none;
  margin: auto;
  width: 30px;
  position: relative;
  cursor: pointer;
  height: 30px;
}
#header #responsive-nav .nav-trigger div span {
  height: 3px;
  width: 30px;
  background-color: #fff;
  float: left;
  position: relative;
  top: 10px;
}
#header #responsive-nav .nav-trigger div::before, #header #responsive-nav .nav-trigger div::after {
  content: "";
  background-color: #fff;
  width: 30px;
  height: 3px;
  float: left;
  position: relative;
}
#header #responsive-nav .nav-trigger div::before {
  top: 5px;
}
#header #responsive-nav .nav-trigger div::after {
  top: 15px;
}
#header #responsive-nav .nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  position: fixed;
  background-color: #333;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 0;
  overflow: hidden;
}
#header #responsive-nav .nav-wrapper .mobile-nav-max-height {
  max-height: 80vh;
  overflow-y: scroll;
}
@media only screen and (min-width: 768px) {
  #header #responsive-nav .nav-wrapper .mobile-nav-max-height {
    max-height: none;
    overflow-y: visible;
  }
}
#header #responsive-nav .nav-wrapper.active {
  height: 100%;
}
#header #responsive-nav .nav-wrapper .close-nav {
  position: absolute;
  bottom: 25px;
  right: 0;
  left: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}
#header #responsive-nav .nav-wrapper .close-nav div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#header #responsive-nav .nav-wrapper .close-nav div:before, #header #responsive-nav .nav-wrapper .close-nav div:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 5px;
  width: 25px;
  height: 3px;
  background: #333333;
  margin: auto;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
#header #responsive-nav .nav-wrapper .close-nav div:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header #responsive-nav .nav-wrapper .close-nav div:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#header #responsive-nav .nav-wrapper .close-nav:hover div:before {
  background: #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#header #responsive-nav .nav-wrapper .close-nav:hover div:after {
  background: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header #responsive-nav .nav-wrapper nav[role=navigation] {
  width: 100%;
  margin-top: 1em;
  padding-right: 1em;
  margin-top: 3.125em;
  text-align: center;
  float: left;
}
#header #responsive-nav .nav-wrapper nav[role=navigation] li {
  width: 100%;
}
#header #responsive-nav .nav-wrapper nav[role=navigation] .sub-menu li {
  width: 100%;
}
#header #responsive-nav .nav-wrapper #search-toggle {
  width: 100%;
  margin: 0;
  margin-top: 1em;
  padding: 0;
  padding-right: 1em;
  text-align: right;
  float: left;
  cursor: pointer;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0;
}
#header #responsive-nav .nav-wrapper #search-toggle:hover {
  color: #f8f9fa;
}
#header #responsive-nav .nav-wrapper #search-toggle::after {
  content: "Search";
  color: #fff;
  text-decoration: none;
  padding: 0.75em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
#header #responsive-nav .nav-wrapper #search-toggle:focus {
  outline: 2px dotted;
  outline-offset: -2px;
}

#logo {
  padding: 0.75em 0;
  margin: 0;
  width: 10%;
  display: inline-block;
}
#logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
#logo a, #logo a h2.h1 {
  color: #fff;
}
#logo img {
  width: auto;
  height: 40px;
  margin: 0 10px 0 15px;
}
#logo .logo-words-wrapper {
  width: calc(100% - 65px);
  float: left;
}
#logo h2.h1 {
  font-size: 1.25rem;
  float: left;
  width: 100%;
  margin: 0px;
}
#logo span {
  font-size: 1rem;
  float: left;
  line-height: 1rem;
  width: 100%;
}

.nav {
  border-bottom: 0;
  margin: 0;
  text-align: right;
  /* end .menu li */
}
@media only screen and (min-width: 768px) {
  .nav {
    border: 0;
  }
  .nav ul {
    background: #333;
    margin-top: 0;
  }
}
.nav li {
  display: inline-block;
  /* highlight current page */
  /* end current highlighters */
  /*
  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/
  */
}
@media only screen and (min-width: 768px) {
  .nav li {
    position: relative;
    /* showing sub-menus */
  }
  .nav li:hover > ul, .nav li:hover > ul.sub-menu {
    top: auto;
    visibility: visible;
  }
}
.nav li svg {
  margin-right: 4px;
}
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75em;
  padding: calc(16px - 0.25rem) 0.75em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .nav li a {
    border-bottom: 0;
  }
  .nav li a:hover, .nav li a:focus, .nav li a:active {
    color: #fff;
    text-decoration: none;
  }
}
@media only screen and (min-width: 768px) {
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    right: 0px;
  }
  .nav li ul.sub-menu:last-child, .nav li ul.sub-menu:last-of-type,
  .nav li ul.children:last-child,
  .nav li ul.children:last-of-type {
    border-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .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.
    */
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) {
  .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;
    -webkit-transition: background ease-in-out 0.2s;
    transition: background ease-in-out 0.2s;
  }
  .nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus,
  .nav li ul.children li a:hover,
  .nav li ul.children li a:focus {
    background: #000;
  }
}
/* end .nav */
@media only screen and (min-width: 1030px) {
  #logo {
    padding: 0.75em 0;
    margin: 0;
    width: 100%;
    display: inline-block;
  }
  #logo a {
    color: #fff;
  }
  #logo img {
    height: 50px;
    margin: 0 10px 0 15px;
  }
  #logo h2.h1 {
    font-size: 1.5rem;
    float: left;
    width: 100%;
    margin: 0px;
  }
  #logo span {
    font-size: 1rem;
    float: left;
    line-height: 1rem;
    width: 100%;
  }
  #header #responsive-nav {
    width: 100%;
    padding: 1em 0px;
  }
  #header #responsive-nav .nav-trigger {
    display: none;
  }
  #header #responsive-nav .mobile-flex {
    display: inline-block;
    width: 33%;
    float: left;
  }
  #header #responsive-nav .nav-wrapper {
    width: 67%;
    position: static;
    display: inline-block;
    height: auto;
    overflow: visible;
    background: none;
  }
  #header #responsive-nav .nav-wrapper nav[role=navigation] {
    width: 95%;
    margin-top: 1em;
    padding-right: 1em;
  }
  #header #responsive-nav .nav-wrapper nav[role=navigation] li {
    width: auto;
  }
  #header #responsive-nav .nav-wrapper #search-toggle {
    width: 5%;
    margin-top: 23px;
  }
  #header #responsive-nav .nav-wrapper #search-toggle::after {
    display: none;
  }
  #header #responsive-nav .nav-wrapper .close-nav {
    display: none;
  }
}
@media only screen and (min-width: 1030px) {
  #logo img {
    height: 75px;
    margin: 0 10px 0 15px;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Index Stylesheet

******************************************************************/
.byline {
  font-size: 0.85rem;
}

.category-float {
  width: 100%;
  padding: 1.5em 1.5em 0 1.5em;
}
.category-float a:link, .category-float a:visited {
  color: #fff;
  text-decoration: none;
  background: #333333;
  padding: 5px 7px;
}
.category-float a:link:hover, .category-float a:visited:hover {
  text-decoration: underline;
}
.category-float ul {
  list-style: none;
  padding: 0;
}

#post-intro {
  width: 100%;
}

.post-bg {
  background: #f8f9fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-bg .hentry {
  background: transparent;
}
.post-bg .post-info {
  position: relative;
}
.post-bg .post-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-bg .post-image img {
  float: left;
}
.post-bg .post-image a {
  float: left;
  width: 100%;
  position: relative;
}
.post-bg .post-image a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
  opacity: 0;
}
.post-bg .post-image a:hover:after {
  opacity: 1;
}

#category-select input,
#category-select input[type=select],
#category-select select,
#category-select input[type=submit] {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  #category-select input,
  #category-select input[type=select],
  #category-select select,
  #category-select input[type=submit] {
    max-width: 250px;
  }
}
@media only screen and (min-width: 1030px) {
  #category-select input,
  #category-select input[type=select],
  #category-select select,
  #category-select input[type=submit] {
    max-width: 250px;
  }
}
#category-select input[type=submit] {
  padding: 10px 15px;
}

.blog #main, .archive #main, .page-template-page-archive #main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog .hentry header, .archive .hentry header, .page-template-page-archive .hentry header {
  padding: 1.5em 1.5em;
}
.blog .hentry header h2, .archive .hentry header h2, .page-template-page-archive .hentry header h2 {
  font-size: 1.25rem;
}
.blog .first-post.hentry .post-bg header, .archive .first-post.hentry .post-bg header, .page-template-page-archive .first-post.hentry .post-bg header {
  padding: 1.5em 1.5em 0;
}
.blog .first-post.hentry .post-bg .category-float, .archive .first-post.hentry .post-bg .category-float, .page-template-page-archive .first-post.hentry .post-bg .category-float {
  position: absolute;
  top: -1em;
  padding: 0px;
  left: 0px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.blog .first-post.hentry .post-bg .post-image, .archive .first-post.hentry .post-bg .post-image, .page-template-page-archive .first-post.hentry .post-bg .post-image {
  min-height: 200px;
  background: rgba(0, 0, 0, 0.5);
}
.blog .first-post.hentry .post-bg .entry-content, .archive .first-post.hentry .post-bg .entry-content, .page-template-page-archive .first-post.hentry .post-bg .entry-content {
  padding: 0.75em 1.5em 0;
}

.geoc-graph-1 .select2-container--default .select2-selection--single {
  border: 2px solid;
  border-radius: 3px;
  padding: 3px 0;
  height: 100%;
}
.geoc-graph-1 .select2-container--default .select2-selection--single:focus {
  outline: none;
}

.select2-container--default.select2-container--open .select2-dropdown {
  top: -6px;
}
.select2-container--default.select2-container--open .select2-search--dropdown .select2-search__field {
  border: 2px solid;
}
.select2-container--default.select2-container--open .select2-search--dropdown .select2-search__field:focus {
  outline: none;
}

#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}

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

Stylesheet: Ajax Filter Stylesheet

******************************************************************/
/*********************
GENERAL AJAX FILTER STYLES
*********************/
.ajax-wrapper {
  position: relative;
  margin: 1em 0;
  padding: 5px;
}
.ajax-wrapper > *:not(.loading-overlay) {
  -webkit-transition: 0.25s ease-in-out filter;
  transition: 0.25s ease-in-out filter;
}
.ajax-wrapper .loading-overlay {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.ajax-wrapper .loading-overlay p {
  display: block;
  margin: 0.5em 0;
  padding: 0.5em;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.ajax-wrapper.loading .loading-overlay {
  -ms-flex-line-pack: center;
      align-content: center;
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.5);
}
.home .ajax-wrapper.loading .loading-overlay {
  background-color: rgba(248, 249, 250, 0.5);
}
.ajax-wrapper.loading > *:not(.loading-overlay) {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.ajax-wrapper .ajax-load-more-btn {
  margin: 1em auto;
}
.ajax-wrapper .hide-load-more .ajax-load-more-btn {
  display: none;
}

.ajax-inner {
  width: 100%;
}

/*********************
TAXONOMY DESCRIPTION
*********************/
.term-description-padding {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/*********************
BUTTON AJAX FILTER STYLE
*********************/
.ajax-filter-btns,
.ajax-filter-post-type {
  margin: 1em 0;
}
.ajax-filter-btns .filter-tax,
.ajax-filter-btns .filter-post-type,
.ajax-filter-post-type .filter-tax,
.ajax-filter-post-type .filter-post-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0.25em 0;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 481px) {
  .ajax-filter-btns .filter-tax,
  .ajax-filter-btns .filter-post-type,
  .ajax-filter-post-type .filter-tax,
  .ajax-filter-post-type .filter-post-type {
    width: auto;
    margin: 0.25em;
  }
}
.ajax-filter-btns h3,
.ajax-filter-post-type h3 {
  margin-top: 0;
}

/*********************
SIDEBAR AJAX FILTER STYLE
*********************/
.toggle-slide-wrapper .toggle-slide-btn.js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.toggle-slide-wrapper .toggle-slide-btn.js:after {
  content: "";
  margin-left: 0.25em;
  width: 0;
  height: 0;
  border-top: 0.25em solid #333;
  border-right: 0.25em solid transparent;
  border-left: 0.25em solid transparent;
  -webkit-transition: 0.25s ease-in-out all;
  transition: 0.25s ease-in-out all;
}
.toggle-slide-wrapper .toggle-slide-btn.js.is-open:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*********************
LOADING ANIMATION
*********************/
.loading-rect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0 auto;
  width: 100%;
  height: 4em;
  text-align: center;
  font-size: 0.75em;
}
.loading-rect > div {
  display: inline-block;
  border: 1px solid #fff;
  height: 100%;
  width: 1em;
  margin: 1px;
  background-color: #333;
  -webkit-animation: ajax_loading_animation 1.2s infinite ease-in-out;
          animation: ajax_loading_animation 1.2s infinite ease-in-out;
}
.loading-rect .rect2 {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.loading-rect .rect3 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.loading-rect .rect4 {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.loading-rect .rect5 {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

@-webkit-keyframes ajax_loading_animation {
  0%, 40%, 100% {
    height: 1em;
  }
  20% {
    height: 4em;
  }
}

@keyframes ajax_loading_animation {
  0%, 40%, 100% {
    height: 1em;
  }
  20% {
    height: 4em;
  }
}
/*********************
ARCHIVE LISTING SIDEBAR
*********************/
.archive-listing-wrapper {
  padding: 1.5em;
  background-color: #f8f9fa;
}
.archive-listing-wrapper h3 {
  margin-top: 0;
}
.archive-listing-wrapper ul {
  margin: 0;
}

.archive-listing .none {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.archive-listing .none > li {
  margin: 0;
  padding: 0.25em 0;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.archive-listing.yearly .none {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
}
@media only screen and (min-width: 768px) {
  .archive-listing.yearly .none {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
.archive-listing.monthly .none {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media only screen and (min-width: 481px) {
  .archive-listing.monthly .none {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media only screen and (min-width: 768px) {
  .archive-listing.monthly .none {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

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

Stylesheet: Sidebar Stylesheet

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

#sidebar1 {
  margin: 0px;
}
#sidebar1 .widget {
  margin: 0px;
}

.widgettitle {
  background-color: #333333;
  color: #fff;
  margin-bottom: 0.75em;
  padding: 2px 5px;
}

#content table#wp-calendar {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .sidebar {
    margin-top: 2.2em;
  }
  #above-home-widgets,
  #below-home-widgets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #above-home-widgets .widget,
  #below-home-widgets .widget {
    width: 33%;
  }
  #above-home-widgets .widget.cta_widget, #above-home-widgets .widget.cta_reverse_widget,
  #below-home-widgets .widget.cta_widget,
  #below-home-widgets .widget.cta_reverse_widget {
    width: 100%;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Single Stylesheet

******************************************************************/
.single-indicator_post #inner-content.wrap {
  max-width: none;
  width: 100%;
}

article.format-aside {
  font-size: 1.75rem;
}

.single article {
  padding-top: 25px;
}

/*********************
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.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}