/* Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
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 {
  width: 100%;
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  position: relative;
  }

/**
 * Remove default margin.
 */
body {
  width: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    position: relative;
    font-feature-settings: "liga" 0, "clig" 0;
	-moz-font-feature-settings: "liga" 0, "clig" 0;
	-ms-font-feature-settings: "liga" 0, "clig" 0;
	-o-font-feature-settings: "liga" 0, "clig" 0;
	-webkit-font-feature-settings: "liga" 0, "clig" 0;

	font-variant-ligatures: no-discretionary-ligatures;
  }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  opacity: 1;
  background: transparent;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  }

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

a:hover {/* opacity: 0.8; */}

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {font-family: 'Patua One', sans-serif;}

/**
 * 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 {
  -moz-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;
  -moz-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: "\201C" "\201D" "\2018" "\2019"; }

/**
 * 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: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.75em; }

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;
  list-style-type: none; }

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

/**
 * 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"] {
  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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
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;
  -moz-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: table; }
  .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: 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: Typography

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

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

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
    font-feature-settings: "liga" 0, "clig" 0;
	-moz-font-feature-settings: "liga" 0, "clig" 0;
	-ms-font-feature-settings: "liga" 0, "clig" 0;
	-o-font-feature-settings: "liga" 0, "clig" 0;
	-webkit-font-feature-settings: "liga" 0, "clig" 0;

	font-variant-ligatures: no-discretionary-ligatures;

  }

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

Stylesheet: Sass Functions

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

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

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

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

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

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

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

Stylesheet: Mixins Stylesheet

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

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

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

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

Stylesheet: Grid Stylesheet

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

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

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


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

******************************************************************/
.last-col {
  float: right;
  padding-right: 0; }

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

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

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

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

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

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    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-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter and 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-help, .alert-info, .alert-error, .alert-success {
  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, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: 'DIN1451W01-Mittelschrif', 'Helvetica Neue',​ Helvetica, ​Arial,​ sans-serif;
  text-decoration: none;
  color: white;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  }

  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    color: white;
    text-decoration: none; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    background-color: #2574a8; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    background-color: #2472a4; }

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

Stylesheet: Form Styles

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

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

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 34px;
  line-height: 34px;
  padding: 2px 10px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #e4eae0;
  color: #000000;
  color: #2E2A0B;
/*  border-radius: 3px; */
  vertical-align: middle;
  box-shadow: none;
  border: 2px solid #4f4319;
  width: 100%;
  max-width: 400px;
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif;
  background-color: #9b9d88;
  background-color: #4f4319;
  background-color: #BAC3B0;
  -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 {
    color: #FFF;
    background-color: #797B68;
     }

  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: #000000;
    border-color: #CACC2E;
    background-color: white;
    background-position: 99% center;
    background-repeat: no-repeat;
    outline-color: #CACC2E; }

  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: white;
    background-position: 99% center;
    background-repeat: no-repeat;
    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; }

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

select {
  -webkit-appearance: none !important;
  /* 1 */
  background-repeat: no-repeat;
  background-position: 97.5% center;
  outline : none;
  overflow : hidden;
  text-indent : 0.01px;
  text-overflow : '';
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  }

select::-ms-expand
{
    display: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"], .button a {
  font-family: 'DIN1451W01-Mittelschrif', 'Helvetica Neue',​ Helvetica,​ Arial,​ sans-serif;
  font-size: 1em;
  padding: 4px 10px;
  color: #e4eae0;
  text-transform: uppercase;
  border: 3px solid #CACC2E;
  background-color: #231f0b;
  text-decoration: none;
}

/***** Custom Select select box styling **********/

select {visibility: hidden;}
select.hasCustomSelect {visibility: visible;}

#wpgmza_table_1_length select {/* width: 170px !important; */visibiility: visible;}

#wpgmza_table_1_length .customSelect .customSelectInner {width: 1px !important;}


select > option {
  padding-left: 10px;
  }

span.customSelect {
    font-size: 1em;
    font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif !important;
    background:#9b9d88 url('/media/select_arw_pale.gif') right center no-repeat;
    background-color: #BAC3B0;
    background-size: contain;
    border:2px solid #4f4319;
    color:#e4eae0;
    color:#000;
    color: #2E2A0B;
    padding:4px 10px;
    width:100%;
}

.customSelect {
/* This is the default class that is used */
/* Put whatever custom styles you want here */
}

.customSelect.customSelectHover {
/* Styles for when the select box is hovered */
}

.customSelect.customSelectOpen {
/* Styles for when the select box is open */
}

.customSelect.customSelectFocus {
/* Styles for when the select box is in focus */

}

.customSelect.customSelectDisabledOption {
/* Styles for when the selected item is a disabled one */
}

.customSelect.customSelectDisabled {
/* Styles for when the select box itself is disabled */
}

.customSelectInner {
/* You can style the inner box too */
}


/*********************
WORDPRESS FORUM STYLES
*********************/

.fscf-div-form {width: 100%; margin: 0 0 0 -2.2%;}

.fscf-div-clear,
.fscf-div-captcha-sm,
#fscf_captcha_field1 label.fscf-label,
#fscf_captcha_field2 label.fscf-label,
#fscf_captcha_field3 label.fscf-label,
#fscf_captcha_field4 label.fscf-label,
#fscf_captcha_field5 label.fscf-label,
#fscf_captcha_field6 label.fscf-label,
#fscf_captcha_field7 label.fscf-label,
input.fscf-input-captcha,
.fscf-div-submit {
  width: 44%;
  margin: 0 2.2%;
  display: inline-block;
  }

.fscf-div-form label {display: block;padding-bottom: 2px;}

.fscf-div-form textarea {max-width: 610px;}

.fscf-div-submit {margin-top: 1em;}

#fscf_required1, #fscf_required2,
#fscf_required3, #fscf_required4,
#fscf_required5, #fscf_required6,
#fscf_required7 {
  text-align: right;
  font-size: .8em;
  margin-bottom: 5px;
}

.fscf-required-indicator {color: #CACC2E;}

.entry-content p.msg {margin-bottom: 0;}

.fscf-div-captcha-sm a {display: inline-block;padding: 6px 0;}

.fscf-div-error {font-style: italic; font-size: 1em;color:#CACC2E; }
#fscf_form_error1, #fscf_form_error2,
#fscf_form_error3, #fscf_form_error4,
#fscf_form_error5, #fscf_form_error6,
#fscf_form_error7 {font-size: 1em; margin-left: 2.2%}

.fscf-div-redirecting {font-size: 1.5em; margin-left: 2.2%;color: #94794b;}

/**** Contact-Us form ****/

/* #fscf_div_clear1_4 {width: 100%;}
#fscf_div_clear1_5 {float: left;width: 65%;margin-right: 30%;} */
#fscf_div_clear1_4 {float: left;clear:left;}
#fscf_div_clear1_5 {float: left;clear:left;}
#fscf_div_clear1_10 {max-width: 80px;float: left;}
#fscf_div_clear1_6 {float: left; max-width: 75px;}
#fscf_div_clear1_2 {width: 100%;}
#fscf_div_clear1_3 {width: 100%;}


/**** Technical Support form ****/

#fscf_div_clear3_10 {position: absolute; top: -5000px;}
#fscf_div_clear3_4 {width: 100%;;}
#fscf_div_clear3_5 {float: left;/* width: 65%;margin-right: 0; */}
#fscf_div_clear3_6 {float: left;max-width: 75px;}
#fscf_div_clear3_2 {width: 100%;}
#fscf_div_clear3_3 {width: 100%;}
#fscf_div_clear3_11 {float:left; max-width: 80px;}

/**** Testimonial/Trophy form ****/

#fscf_div_clear2_14 {position: absolute; top: -5000px;}
#fscf_div_clear2_1 {float: left;display: block;}
#fscf_div_clear2_5 {clear: left;float: left;width: 44%;margin-right: 2.2%;}
#fscf_div_clear2_6 {float: left;max-width: 75px;}
#fscf_div_clear2_15 {float: left;max-width: 80px;}
#fscf_div_clear2_13 {float: left; width: 100%;;margin-bottom: 1em;}
#fscf_div_clear2_13 .fscf-div-field {max-width: 220px;padding-top: 5px;}
#fscf_div_clear2_13 .fscf-div-field input {float: left; margin: 3px 5px 0 0;}
#fscf_div_clear2_13 .fscf-div-field span {float: left;margin-right: 15px;width: 50px;}
#fscf_div_clear2_13 .fscf-div-field br {display: none;}
#fscf_div_clear2_13 p.msg {margin-bottom: 10px; font-size: .9em; width: 100%;max-width: 470px;}
#fscf_div_clear2_11 {float: none;display: block;}
#fscf_div_clear2_11 .fscf-hint-text {display: block;font-size: .9em;padding-top: 5px;}
#fscf_div_clear2_12 {clear: left; padding-top: 1em;float: left;}
#fscf_div_clear2_10 {clear: left; width: 100%;padding-top: 1em;}

/**** Sponsorship form ****/

#fscf_div_clear4_15 {position: absolute; top: -5000px;}
#fscf_div_clear4_4 {width: 100%;;}
#fscf_div_clear4_5 {float: left;width: 65%;margin-right: 0;}
#fscf_div_clear4_6 {float: left;max-width: 75px;}
#fscf_div_clear4_2 {width: 100%;}
#fscf_div_clear4_14 {width: 100%;}
#fscf_div_clear4_16 {width: 100%;}
#fscf_div_clear4_18 {max-width: 80px; float: left;}


/**** Rebate form ****/

#fscf_div_clear5_10 {position: absolute; top: -10000px;}
#fscf_div_clear5_4 {width: 100%;;}
#fscf_div_clear5_5 {float: left;width: 65%;margin-right: 0;}
#fscf_div_clear5_6 {float: left;max-width: 75px;}
#fscf_div_clear5_2 {width: 100%;}
#fscf_div_clear5_3 {width: 100%;}

h3 a.popwindow {color: #CACC2E;margin-bottom: 15px;display: inline-block;}
h3 a.popwindow:hover {text-decoration: underline;}

/**** Prostaff Membership form ****/

#fscf_div_clear6_12 {position: absolute; top: -5000px;}
#fscf_div_clear6_1 {float: left;display: block;}
#fscf_div_clear6_4 {float: left;}
#fscf_div_clear6_5 {clear: left;float: left;width: 44%;margin-right: 2.2%;}
#fscf_div_clear6_6 {float: left;max-width: 75px;}
#fscf_div_clear6_13 {float: left;max-width: 80px;}
#fscf_div_clear6_11 {float: left; width: 100%;;margin-bottom: 1em;}
#fscf_div_clear6_11 .fscf-div-field {padding-top: 5px;}
#fscf_div_clear6_11 .fscf-div-field input {float: left; margin: 3px 5px 0 0;}
#fscf_div_clear6_11 .fscf-div-field span {}
#fscf_hint_file_types6_11 {clear: left; width: 100%;}
#fscf_div_clear6_11 p.msg {margin-bottom: 10px; font-size: .9em; width: 100%;max-width: 470px;}
#fscf_div_clear6_11 {float: left;}
#fscf_div_clear6_11 .fscf-hint-text {display: block;font-size: .9em;padding-top: 5px;}
#fscf_div_clear6_12 {clear: left; padding-top: 1em;float: left;}
#fscf_div_clear6_10 {clear: left; width: 100%;padding-top: 1em;}

/**** Prostaff Membership form v2 ****/

#fscf_div_clear7_12 {position: absolute; top: -5000px;}
#fscf_div_clear7_1 {float: left;display: block;}
#fscf_div_clear7_4 {float: left;}
#fscf_div_clear7_5 {clear: left;float: left;width: 44%;margin-right: 2.2%;}
#fscf_div_clear7_6 {float: left;max-width: 75px;}
#fscf_div_clear7_35 {float: left;max-width: 80px;}
#fscf_div_clear7_11 {float: left; width: 100%;margin-bottom: 0;}
#fscf_div_clear7_11 .fscf-div-field {padding-top: 5px;}
#fscf_div_clear7_11 .fscf-div-field input {float: left; margin: 3px 5px 0 0;}
#fscf_div_clear7_11 .fscf-div-field span {}
#fscf_hint_file_types7_11 {clear: left; width: 100%;}
#fscf_div_clear7_11 p.msg {margin-bottom: 0px; font-size: .9em; width: 100%;max-width: 470px;}
#fscf_div_clear7_11 {float: left;}
#fscf_div_clear7_11 .fscf-hint-text {display: block;font-size: .9em;padding-top: 5px;}
#fscf_div_clear7_12 {clear: left; padding-top: 1em;float: left;}
#fscf_div_clear7_10 {clear: left; width: 88%;padding-top: 1em;}
#fscf_div_clear7_14 {clear: left; width: 100%;padding-top: 1em;}
#fscf_label7_14.fscf-div-label {display: block;margin-bottom: 5px;}
#fscf_div_clear7_14 .fscf-div-field {display: inline-block;margin-left: 0px;}
#fscf_div_clear7_14 .fscf-div-field input {display: inline-block;margin-right: 3px;}
#fscf_div_clear7_14 .fscf-div-field label {display: inline-block;margin-right: 5px;}
#fscf_div_clear7_15 {clear: left; width: 88%; padding-top: 1em;}
#fscf_div_clear7_16 {clear: left; width: 100%;padding-top: 1em;}
#fscf_label7_16.fscf-div-label {display: block; margin-bottom: 5px;}
#fscf_div_clear7_16 .fscf-div-field {display: inline-block;margin-left: 0px;}
#fscf_div_clear7_16 .fscf-div-field input {display: inline-block;margin-right: 3px;}
#fscf_div_clear7_16 .fscf-div-field label {display: inline-block;margin-right: 5px;}
#fscf_div_clear7_17 {clear: left; width: 88%; padding-top: 1em;}
#fscf_div_clear7_18 {clear: left; width: 88%; display: block;padding-top: 1em;}
#fscf_div_clear7_19 {clear: left; width: 88%;padding-top: 0.5em;}
#fscf_div_clear7_19 .fscf-div-field {padding-top: 0.5em;}
#fscf_div_clear7_19 .fscf-div-field span {white-space: nowrap;}
#fscf_div_clear7_19 .fscf-div-field input {display: inline-block;margin-right: 3px;}
#fscf_div_clear7_19 .fscf-div-field label {display: inline-block;margin-right: 5px;}
#fscf_div_clear7_20 {clear: left; width: 88%;padding-top: 1em;}
#fscf_div_clear7_21 {clear: left; width: 88%;padding-top: 0.5em;}
#fscf_div_clear7_22 {clear: left; width: 88%;padding-top: 0.5em;}
#fscf_div_clear7_23 {/* clear: left; width: 88%; */padding-top: 0.5em;}
#fscf_div_clear7_24 {/* clear: left; width: 88%; */padding-top: 0.5em;}
#fscf_div_clear7_25 {/* clear: left; width: 88%; */padding-top: 0.5em;}
#fscf_div_clear7_36 {clear: left; width: 88%;padding-top: 0.5em;}


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

Stylesheet: Base Mobile Stylesheet

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

******************************************************************/
/*********************
GENERAL STYLES
*********************/


/*** 2017 Fonts

Patua One Regular
	font-family: 'Patua One', sans-serif;
	font-weight: 400;
Adelle Regular
	font-family: 'adelle', sans-serif;
	font-weight: 400;
Adelle Bold
	font-family: 'adelle', sans-serif;
	font-weight: 700;



****/

body {
  font-family: 'adelle', 'Patua One', sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #2e2a0b;
  font-weight: 400;
  background-color: #a49881;
/*  background: #000000 url(/media/hevi_site_bg1.jpg) top center no-repeat; */
  -webkit-font-smoothing: antialiased;
  }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto;
  max-width: 1000px;}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #f01d4f;
  color: #797b6a;
  color: #806D37;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #d10e3c;
    color: #CACC2E;}
  a:link, a:visited:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizeLegibility;
  font-weight: 500;
  margin: 0;
  /*
  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.25em;
  line-height: 1.333em;
  line-height: 1.15em;
  margin-bottom: 0.15em;
  -webkit-text-stroke: 0.3px;
  }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.1em;
  margin-bottom: 0.375em;
  -webkit-text-stroke: 0.3px;
  }

h3, .h3 {
  font-size: 1.125em;
  -webkit-text-stroke: 0.3px;
  }

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

/*********************
HEADER STYLES
*********************/
.header {
  position: relative;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 200;
  height: 125px;
/*  background: #30270d url(/media/header_bg.png) 0 0 repeat-x; */
  background: rgba(31, 35, 32, .85);
  }

#inner-header {
  position: relative;
  min-height: 110px;
  z-index: 50;
  }

#logo {
  position: absolute;
  top: 20px;
  left: 5px;
  z-index: 1000;
  width: 13.8%;
  }

#logo img {
    width: 100%;
    height: auto;
    }

#tagline {
	position: relative;
	top: 23px;
	float: right;
    right: 29%;
}

#tagline img {width: 100%;height: auto;max-width: 421px;}

#phone {
  position: absolute;
  top: 20px;
  left: 16.75%;
}

#phone .phone {
  font-size: 1.4em;
  color: #9b9d8a;
}

#phone .phone a {
  color: #9b9d8a;
  text-decoration: none;
}

#phone .phone a:hover, #phone .phone a:focus {color: #CACC2E;}

#phone .hours {
  color: #94794b;
}

#phone .hours span {
  font-size: .7em;
}

#search {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 26%;
}

#search a.signup, #sign-up a.signup {
  float: right;
  display: inline-block;
  margin-right: 0px;
  margin-top: 5px;
  color: #cacc2e;
  font-family: 'Patua One', sans-serif;
  font-size:13px;
  text-decoration: none;
  text-transform: uppercase;
}

#search a.signup span, #sign-up a.signup span {
  color: #CACC2E;
}

#search .email, #sign-up .email {
  position: absolute;
  display: none;
  z-index: 20;
  left: -2px;
  font-family: 'DIN1451W01-Mittelschrif',"Helvetica Neue",​Helvetica,​Arial,​sans-serif;
  background: #2E2A0B;
  border: solid 2px #CACC2E;
}

#search .email input#email, #sign-up .email input#email {
  float: right;
  width: 164px;
  font-size: 0.8em;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0px;
  max-width: 400px;
  padding: 0 5px;
  transition: background-color 0.24s ease-in-out 0s;
  vertical-align: middle;
  color: #9b9d8a;
  background: #2E2A0B;
  border: none;
  }

#search .email .submit, #sign-up .email .submit {
  float: right;
  height: 30px;
  padding: 0 10px;
  font-size: 0.8em;
  font-family: 'DIN1451W01-Mittelschrif',"Helvetica Neue",​Helvetica,​Arial,​sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  vertical-align: middle;
  color: #9b9d8a;
  background: #231f0b;
  border: none;
}

#search #searchform {
  position: relative;
  top: 0px;
  float: right;
  background: #FFF;
  width: 97%;
/*  border: solid 2px #CACC2E; */
}

#search #searchform #searchsubmit {
  float: right;
  height: 20px;
  min-width: 30px;
  padding: 0 10px;
  font-size: 0.8em;
  font-family: 'DIN1451W01-Mittelschrif',"Helvetica Neue",​Helvetica,​Arial,​sans-serif;
  line-height: 20px;
  text-transform: uppercase;
  vertical-align: middle;
  color: #2E2A0B;
  background: #FFF;
/*  background: #231f0b url(/media/search-icon.png) 0 0 no-repeat; */
  border: none;
  }

#search #searchform #s {
  float: left;
  width: 79%;
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-right: 0 !important;
  max-width: 400px;
  padding: 0 5px;
  transition: background-color 0.24s ease-in-out 0s;
  vertical-align: middle;
  border: none;
  border-radius: 0px;
  color: #2E2A0B;
  background: #FFF;
  font-family: 'Patua One', sans-serif;
  }

#search #searchform #s:focus,
#search #searchform #s:active {/* color: #FFF; */}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav li {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: 'Patua One', sans-serif;
    }

    .nav li a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 0.75em;
      /*
      remember this is for mobile ONLY, so there's no need
      to even declare hover styles here, you can do it in
      the style.scss file where it's relevant. We want to
      keep this file as small as possible!
      */ }
    .nav li ul.sub-menu li a,
    .nav li ul.children li a {
      padding-left: 30px; }

  #menu-main-nav-1.nav {
    position: relative;
    float:right;
    top: 72px;
    right: 10px;
  }

  #menu-main-nav-1.nav a {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }

  #menu-main-nav-1.nav li {
 /*   border-left: 2px solid #CACC2E;
    transform: skew(-20deg);
    -o-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -webkit-transform: skew(-20deg); */
  }

  #menu-main-nav-1.nav li:first-child {
    border-left: none;
  }

  #menu-main-nav-1.nav li a {
    padding: 0px 20px;
    color: #d2e3ad;
    color: #d4e3aa;
/*    transform: skew(20deg);
    -o-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -webkit-transform: skew(20deg); */
  }

  #menu-main-nav-1.nav li:hover {cursor: pointer; /* background: #2f2f27 url(/media/nav_bg_dark.jpg) 0 0 repeat; */}
  #menu-main-nav-1.nav li:hover a {color: #CACC2E;} 

  .nav li ul.sub-menu,
  .nav li ul.children {
    visibility: hidden;
    border-bottom: 1px solid #ccc;
    }

  #menu-main-nav-1.nav li ul.sub-menu  {
    left: 0px;
 /*   transform: skew(20deg);
    -o-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -webkit-transform: skew(20deg); */1
  }

  #menu-main-nav-1.nav li.menu-item-16 ul.sub-menu  { /* Connect drop down */
    left: 12px;
    }

  #menu-main-nav-1.nav li.menu-item-18 ul.sub-menu  { /* Connect drop down */
    left: 30px;
    left: -32px;
    }

  #menu-main-nav-1.nav li ul.sub-menu li {
    border: none;
/*    border-bottom: 1px solid #231f0b; */
    transform: skew(0deg);
    -o-transform: skew(0deg);
    -moz-transform: skew(0deg);
    -webkit-transform: skew(0deg);
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
/*    background: transparent url(/media/drop_menu_bg.png) 0 0 repeat;
    background: #2f2f27 url(/media/nav_bg_dark.jpg) 0 0 repeat; */
    background: rgba(31, 35, 32, .85);
  }

  #menu-main-nav-1.nav li ul.sub-menu li a {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1;
    border: 1px solid #CACC2E;
    border: none;
    transform: skew(0deg);
    -o-transform: skew(0deg);
    -moz-transform: skew(0deg);
    -webkit-transform: skew(0deg);
  }

  #menu-main-nav-1.nav li ul.sub-menu li a:hover {
    color: #000;
  }
  #menu-main-nav-1.nav li ul.sub-menu li:hover {
    background: #e4e728;
  }

  #menu-main-nav-1.nav li ul.sub-menu {
    margin-left: -2px;
    padding-top: 13px;
    border-bottom: 2px solid #CACC2E;
    border: none;
/*  border-left: 2px solid #CACC2E;
    transform: skew(0deg);
    -o-transform: skew(0deg);
    -moz-transform: skew(0deg);
    -webkit-transform: skew(0deg);  */
/*    background: transparent url(/media/drop_menu_bg.png) 0 0 repeat;  */
    z-index: 9999;
  }

.mobile {display: none;}
nav.mobile {display: none;}

/* end .nav */

/*********************
HOME PAGE STYLES
*********************/

.home #content {
/*  background: url(/media/hm_crop_bg.jpg) top center no-repeat;
  color: #FFFFFF;  */
}

.home #slideshow, .home #slideshow_tmp {overflow: hidden;}

.home #slideshow_tmp img {width: 100%; height: auto;}

.home #slideshow, .home #slideshow img, .home #slideshow a {display: block;}

.home #slideshow-wrap {max-height: 410px; overflow: hidden;}

.home #slideshow a.bx-clone {visibility: hidden;}

/* .home #slideshow a {width: 100%;} */

.home #slideshow img {
/*    height: auto;
  max-height: 411px;
  max-width: 1000px;
  width: 100%;  */
 /*     width: auto;  */
}

#hero-wrap {
	position: relative;
    max-height: 417px;
    min-height: 350px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#hero-wrap #inner-hero {padding-bottom: 35%;}

#hero-wrap .rough-edge {
	position: absolute;
	width: 100%;
	height: 32px;
	bottom: 0;
	z-index: 10;
	background: url(/media/hs_top_ragged2B.png) center center no-repeat;
}

 

/* .postid-138 #hero-wrap {background-image: url(/media/hs_hero_turkey5.jpg);}
.postid-137 #hero-wrap {background-image: url(/media/hs_hero_turkey6.jpg);}
.postid-136 #hero-wrap {background-image: url(/media/hs_hero_turkey7.jpg);}
.postid-135 #hero-wrap {background-image: url(/media/hs_hero_turkey8.jpg);}  */

/* #hero-wrap {background-image: url(/media/hs_hero_merchandise.jpg);} */

.home #hero-wrap { 
	margin-top: 125px;
    max-height: 570px;
    min-height: 300px;
/*    background-image: url(/media/hs_home_hero.jpg); */
}

.home #hero-wrap #inner-hero {padding-bottom: 35%;}

@media only screen and (max-width: 599px) {
	.home #hero-wrap {background-image: url(/media/hs_home_hero_sm.jpg);}
	
	#hero-wrap {background-image: url(/media/hs_hero_about_sm.jpg);}

	.post-type-archive-hs_products #hero-wrap, .single-hs_products #hero-wrap {background-image: url(/media/hs_hero_products_v3_sm.jpg);}
	.page-id-28 #hero-wrap {background-image: url(/media/hs_hero_retailers_sm.jpg);background-position: center top;}
	.pageid-1254 #hero-wrap, .parent-pageid-1254 #hero-wrap {background-image: url(/media/hs_hero_connect2_sm.jpg);}
	.pageid-1237 #hero-wrap, .parent-pageid-1237 #hero-wrap {background-image: url(/media/hs_hero_community_sm.jpg);background-position: center top;}
	.pageid-83 #hero-wrap, .parent-pageid-83 #hero-wrap {background-image: url(/media/hs_hero_about_sm.jpg);}

	/** HEVI-Duty **/
	.postid-2464 #hero-wrap, .postid-2430 #hero-wrap, .postid-139 #hero-wrap {background-image: url(/media/hs_hero_hevi-duty2_sm.jpg);}

	/** Turkey **/
	.postid-2031 #hero-wrap, .postid-138 #hero-wrap, .postid-137 #hero-wrap,
	.postid-136 #hero-wrap, .postid-135 #hero-wrap, .postid-126 #hero-wrap {background-image: url(/media/hs_hero_turkey7B_sm.jpg);}
}

@media only screen and (min-width: 600px) {
	.home #hero-wrap {background-image: url(/media/hs_home_hero.jpg);}
	
    #hero-wrap {background-image: url(/media/hs_hero_about.jpg);}
	
	.post-type-archive-hs_products #hero-wrap, .single-hs_products #hero-wrap {background-image: url(/media/hs_hero_products_v3.jpg);}
	.page-id-28 #hero-wrap {background-image: url(/media/hs_hero_retailers.jpg);background-position: center top;}
	.pageid-1254 #hero-wrap, .parent-pageid-1254 #hero-wrap {background-image: url(/media/hs_hero_connect2.jpg);}
	.pageid-1237 #hero-wrap, .parent-pageid-1237 #hero-wrap {background-image: url(/media/hs_hero_community.jpg);background-position: center top;}
	.pageid-83 #hero-wrap, .parent-pageid-83 #hero-wrap {background-image: url(/media/hs_hero_about.jpg);}

	/** HEVI-Duty **/
	.postid-2464 #hero-wrap, .postid-2430 #hero-wrap, .postid-139 #hero-wrap {background-image: url(/media/hs_hero_hevi-duty2.jpg);}

	/** Turkey **/
	.postid-2031 #hero-wrap, .postid-138 #hero-wrap, .postid-137 #hero-wrap,
	.postid-136 #hero-wrap, .postid-135 #hero-wrap, .postid-126 #hero-wrap {background-image: url(/media/hs_hero_turkey7B.jpg);}
}

.home #hero-wrap .video-gallery {
	position: absolute;
	width: 100%;
	bottom: 40px;
	z-index: 20;
	font-family: 'Patua One', sans-serif;
	}

.home #hero-wrap .video-gallery a {
	position: relative;
	width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    text-align: right;
    text-transform: uppercase;
    color: #cacc2e;
    text-decoration: none;
   }

.home #hero-wrap .sound-control {
	position: absolute;
	right: 0;
	width: 40px;
	bottom: 110px;
	z-index: 25;
}

.home #hero-wrap .sound-control a {
	position: relative;
	width: 40px;
    height: 40px;
    display: block;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    color: #BAC3B0;
    text-decoration: none;
    background: #2E2A0B;
   }

.home #hero-wrap .sound-control a:hover {pointer: cursor;}

.home #hero-wrap .sound-control a .fa-ban {
	font-size: 40px;
	opacity: 0;
	color: #770707;
	}
	
.home #hero-wrap .sound-control a .fa-ban.show {
	opacity: .8;
}




/** BX SLIDER CAROUSEL RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

.bx-viewport {height: auto !important;}

.home #main {
  padding: 35px 25px 0px 25px;
/*  background: url(/media/hm_mid_tint.png) 0 0 repeat; */
  }

.home .texture {
/*   background: url(/media/hm_mid_texture_bg.png) top center no-repeat; */
  }

.home .entry-content h1 a, .home .entry-content h2 a, .home .entry-content h3 a, .home .entry-content h4 a {font-weight: normal;}


.home .social-bar {
  height: 47px;
  padding: 0 32px 0 175px;
  padding: 0 32px 0 0px;
  background: #3c310d url(/media/hm_mid_bar.jpg) top center no-repeat;
}

.home a.home-rebates {
	float: left;
	display: inline-block;
	height: 45px;
	padding: 0 10px;
	margin-right: 20px;
	border: solid 2px #CACC2E;
	text-align: center;
	text-decoration: none;
	line-height: 42px;
	font-size: 18px;
	color: #9b9d8a;
}

.home .social-bar ul.social-icons {margin: 0;padding: 0;}

.home .social-bar .social-icons li {
  float: left;
  margin-right: 7px;
  margin-top: 5px
}

.home .social-bar .hunter {float: right;}

.home .social-bar .hunter img {
  float: left;
  margin-right: 20px;
  }

.home .social-bar .hunter a {
  color: #9b9d8a;
  text-decoration: none;
  text-transform: uppercase;
}

.home .social-bar .hunter a:hover {color: #CACC2E;}

.home .social-bar .hunter a.meet {font-size: 1.4em;line-height: 47px;font-family: 'Patua One', sans-serif;}
.home .social-bar .hunter a.meet span {color: #CACC2E;}

.home .home-touts.desktop {display: inline-block; text-align: center;width: 100%;}


.home .new-products {
	text-align: center;
	padding: 1rem 0 2rem 0;
	}

.home .new-products h2 {
	font-size: 2.75em;
	text-transform: uppercase;
	}

.home .new-products .new_product_wrap {
	display: inline-block;
	width: 22%;
	padding: 0 1.5%;
	vertical-align: top;
	margin-bottom: 20px;
	}

.home .new-products .new_product_wrap img {
	width: 100%;
	height: auto;
	margin-bottom: 5px;
	}

.home .new-products .new_product_wrap a {text-decoration: none;}
.home .new-products .new_product_wrap a h3 {
	line-height: 1.2;
	font-size: 1.1em;
	}

.home .new-products .new_product_wrap a:hover h3 {
	color: #cacc2e !important;
	}


@media only screen and (max-width: 600px) {

	.home .new-products .new_product_wrap {width: 30%;}
	.home .new-products {padding: 1rem 0 0rem 0;}
	
	}


@media only screen and (max-width: 425px) {

	.home .new-products .new_product_wrap {width: 50%;}

	}


.home .tri-col:not(.mobile) {
  position: relative;
  float: left;
  display: inline-block;
}

.home #tout1.tri-col,
.home #tout3.tri-col {
  width: 33%;
  max-width: 253px;
}

.home #tout3.tri-col {float: right;}

.home #tout1.tri-col img,
.home #tout3.tri-col img {
  width: 100%;
  height: auto;
  max-height: 142px;
  background: rgba(45, 34, 6, .18);
}

.home #tout1.tri-col img {padding: 5px 0;}

.home #tout2.tri-col {
  margin: 0 2%;
  width: 30%;
  float: none;
  padding: 16px 24px 8px 24px;
  min-height: 142px !important;
  background: rgba(45, 34, 6, .18);
  font-family: 'Patua One', sans-serif;
  text-align: left;
/*  text-shadow: 1px 1px 2px #000;
  border-left: 2px dashed #94794b;
  border-right: 2px dashed #94794b; */
}

@media only screen and (min-width: 771px) and (max-width: 841px) {

	.home #tout1.tri-col img,
	.home #tout3.tri-col img {max-height: 129px;}

	.home #tout1.tri-col img {padding: 9px 0;}

}

@media only screen and (min-width: 640px) and (max-width: 770px) {

	.home #tout1.tri-col img,
	.home #tout3.tri-col img {max-height: 120px;}

	.home #tout1.tri-col img {padding: 3px 0;}

}

@media only screen and (min-width: 600px) and (max-width: 639px) {

	.home #tout1.tri-col img,
	.home #tout3.tri-col img {max-height: 110px;}

	.home #tout1.tri-col img {padding: 2px 0;}

}


.home #tout2.tri-col h3 {
  font-size: 2.1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-heighT: 1;
  margin: 3px 0;
  }

.home #tout2.tri-col h3 a {
  color: #2E2A0B;
  }

.home #tout2.tri-col h3 a:hover {
  color: #CACC2E;
  }

.home #tout2.tri-col.catalog h3 {margin-bottom: 8px;}

.home #tout2.tri-col span.catalog {
  display: block; 
  font-size: 1.25em;
  color: #585136;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.home #tout2.tri-col a.details {
  display: block;
  margin: 5px 0 0 0;
  padding: 0 40px 0 0;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  color: #2e2a0f;
  background: url(/media/hm_circle_arw.png) right 4px no-repeat;
}

.home #tout2.tri-col.catalog a.details {
	padding-right: 0;
	background: none;
}

.home #tout2.tri-col.catalog a.details span {color:#CACC2E;}

.home #tout2.tri-col.catalog a.details:hover, .home #tout2.tri-col.catalog a.details:hover span {color: #CACC2E;}

#locate {
  position: absolute;
  z-index: 20;
  left: 12%;
  bottom: 15px;
  bottom: 25%;
  width: 75%;
  font-family: 'DIN1451W01-Mittelschrif',"Helvetica Neue",​Helvetica,​Arial,​sans-serif;
  background: #797B68;
  border: solid 2px #2E2A0B;
}

#locate input#address {
  width: 80%;
  font-size: 0.8em;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0px;
  max-width: 400px;
  padding: 0 5px;
  transition: background-color 0.24s ease-in-out 0s;
  vertical-align: middle;
  color: #9b9d8a;
  color: #2E2A0B;
  background: #797B68;
  border: none;
  }

#locate input#address::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #2E2A0B;
}
#locate input#address::-moz-placeholder { /* Firefox 19+ */
  color: #2E2A0B;
}
#locate input#address:-ms-input-placeholder { /* IE 10+ */
  color: #2E2A0B;
}
#locate input#address:-moz-placeholder { /* Firefox 18- */
  color: #2E2A0B;
}

#locate .submit {
  float: right;
  height: 30px;
  padding: 0 10px;
  min-width: 30px;
  font-size: 0.8em;
  font-family: 'DIN1451W01-Mittelschrif',"Helvetica Neue",​Helvetica,​Arial,​sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  vertical-align: middle;
  color: #9b9d8a;
  background: #797B68 url(/media/search-icon2.png) 0 0 no-repeat;
  border: none;
}


.home .entry-content {
  margin: 30px 35px 0 35px;
  padding: 0 24px 0px 24px;
  margin: 30px -20px 0 0px;
  padding: 0 0px 0px 0px;
  
/*  border-top: solid 2px #333; */
}

.home .entry-content a {
  color: #806d37;
  text-decoration: none;
  font-weight: bold;
  }

.home .entry-content a:hover {color: #CACC2E;}

.home .entry-content a.hashtag {color: #806d37;}

.home .entry-content h2 {
  margin: 0 0 .8em 0;
  font-size: 1.4em;
  text-transform: uppercase;
  color: #9b9d8a;
}

.home .bi-col {
  width:50%;
  float: left;
  padding: 22px 40px 0 20px;
}

.home #main .bi-col h2 {text-transform: uppercase;}

.home #left-col.bi-col {
  padding-left: 35px;
  padding-right: 70px;
  border-right: solid 2px #333;
}

.home #right-col.bi-col {
  margin-left: -2px;
  padding-left: 70px;
  padding-left: 40px;
  padding-right: 0px;
  border-left: solid 2px #333;
}

.home #right-col.bi-col h3 {margin-bottom: 25px;font-size: 1.2em; line-height: 1.1;text-transform: none;}

.home #right-col.bi-col a.read-more {
  display: block;
  text-align: right;
  margin-top: -2em;
}

.home .entry-content a:hover {color: #CACC2E;}

.home .feed-wrap {
  margin: 0 0 40px 0;
  min-height: 40px;
}

.home #youtube.feed-wrap {/* display: none; */}

.home #youtube.feed-wrap a.video-title {display: block;}

.home .feed-wrap img {
  float: left;
  margin: 0 0 0 -50px;
}

.home .entry-content #right-col p {
  margin: 0 -15px 10px 0;
}

.home .entry-content a span {
  padding-left: 5px;
  color: #CACC2E;
}

#right-col .product {margin-bottom: 25px;}

#right-col .product-image {
  width:49%;
  display: inline-block;
  vertical-align: top;
}

#right-col .product-image img {
  background: rgba(45, 34, 6, .18);
}
	
#right-col .product-info {
  width:49%;
  display: inline-block;
  vertical-align: top;
}

#right-col .product-info p.price {
  font-family: 'Patua One', sans-serif;
  font-size: 26px;
  line-height: 1.1;
  color: #cacc2e;
}

#right-col .product-info a.cta {
  font-family: 'Patua One', sans-serif;
  text-transform: uppercase;
  color: #2e2a0b;
  font-weight: normal;
  display: block;
  }

#right-col .product-info a.cta:hover {color: #cacc2e;}

.home #right-col.bi-col .home-post h3 {margin-bottom: 10px;}

#instagram-gallery {
  position: relative;
  clear: both;
  margin: 0 -15px 10px -15px;
  padding-top: 45px;
}

#main #instagram-gallery h3 {text-transform: none;}

#instagram-gallery h3 a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  }

#instagram-gallery ul.instagram-cycle {
/*  margin-left: 10px;  */
  }

ul.instagram-cycle li img {/* margin-right: 2px; */}

ul.instagram-cycle li {
  display: inline-block;
/*  margin-right: -1px;
  margin-left: 5px; */
}

#instagram-gallery .cycle-right  {
  position: absolute;
  top: 40%;
  top: 50%;
  right: -60px;
  font-size: 2.5em;
  cursor: pointer;
  color: #9b9d8a;
  font-family: 'Patua One', sans-serif;
}


a.bx-prev + a.bx-prev, a.bx-next + a.bx-next {display: none;}

 .video-wrapper {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
    }

 .video-wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    }

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
/*  margin-top: 1.5em;
  padding-top: 10px;   */
/*  background: url(/media/hm_crop_bg.jpg) top center no-repeat; */
/*  background: #000000 url(/media/hevi_site_bg1.jpg) top center no-repeat; */
  color: #2e2a0b;
  background: #a49882 url(/media/hs_page_bg2.jpg) center top no-repeat;
  }


#main ul.ess-buttons {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0;
}

/* Headings */

#main h1 {
  color: #2e2a0b;
}

#main h2 {
  color:#2e2a0b;
  text-transform: capitalize;
}

#main h3 {
  color:#2e2a0b;
  text-transform: uppercase;
}

/* Lists */

#main ul{
  list-style-type: disc;
  padding-left: 40px;
}

#main li{
  margin-bottom: 1.25em;
  margin-bottom: .5em;
}

/* #content-wrap {background: #a49882 url(/media/hs_page_bg2.jpg) center top no-repeat;} */

.home #inner-content {
/*  background: transparent url(/media/inner_pg_bg2.png) 0 0 repeat; */
  }

#inner-content {
/*  background: transparent url(/media/inner_pg_bg3.png) 0 0 repeat;
	background: transparent url(/media/hs_page_bg.jpg) center top no-repeat;  */
  }

#main {
/*    float: left; */
	margin: 0 auto;
    padding: 1.5em;
/*    background: transparent url(/media/inner_texture_bg.png) top center repeat-y; */
    width: 85%;
    min-height: 800px;
  }

#main.full-width {width: 100%;float: none;}

#main .featured-single {margin-bottom: 15px;}

.entry-content p.footnote {margin-top: 10px;font-size: .8em;}

.hentry {
 /* background-color: white;
  border-radius: 3px;  */
  margin-bottom: 1.5em;
/*  border: 1px solid #cccccc;   */

  }
  .hentry header {
 /*   padding: 1.5em;   */
    }
  .hentry footer {
/*    padding: 1.5em; */
/*    border-top: 1px solid #f8f9fa;  */
    }
    .hentry footer p {
      margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
  position: relative;
  z-index: 50;
  line-height: 1.2;
  font-size: 1.5em;
  }

.entry-title:first-child {font-size: 2em;}
.paged .entry-title:first-child {font-size: 1.5em;}


/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif; */
  color: #94794b;
/*  font-style: italic; */
  margin: 5px 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.25em; }
  .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;
    border-bottom: 2px solid #2E2A0B;
    }
    .entry-content tr:nth-child(even) {
      /* background-color: #f8f9fa; */}
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #eaedf2;
    border-right: 2px solid #2E2A0B;
    }
    .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; }
  .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: #323944;
    color: #f8f9fa;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

 .weekly_hunter .single-title,
 .weekly_hunter .page-title,
 .weekly_hunter .entry-title {margin-top: 5px;margin-bottom: 5px;}
 .weekly_hunter .entry-content br + img {margin-top: 15px;}
 .weekly_hunter .entry-content img + img {margin-top: 15px;}

 .weekly_hunter.hentry {
    margin-bottom: 0.5em;
 }

/* 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 */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0; }

ul.post-nav li span {color: #CACC2E;}
ul.post-nav li {
  display: inline-block;
  width: 48%;
  font-size: 1.25em;
}
ul.post-nav li.prev {
  float: right;
  text-align:left;
}
ul.post-nav li.next {
  text-align: right;
}

ul.post-nav li a {text-decoration: none;}

.blog h1.archive-title {margin-bottom: 15px;}

.blog .post-list {padding-left: 220px;padding-left: 34%;}

.single-weekly_hunter h2.archive-title,
.search-results h2.archive-title {
  margin-top: .375em;
}

.single-weekly_hunter h2.archive-title a,
.search-results h2.archive-title a {
  color: #d2dbca;
}

.single-weekly_hunter h2.archive-title a:hover,
.search-results h2.archive-title a:hover {
  color: #CACC2E;
}

.search-results .blog .post-list {margin-bottom: .25em;}

.search-results .search-terms {
  padding-bottom: 5px;
  margin-bottom: .75em;
  border-bottom: 2px solid #2E2A0B;
  }

aside.main-featured {
  margin-bottom: 15px;
  }

aside.main-featured img {width: 100%; height: auto;}

.article-header aside.featured {
  margin: 5px 15px 0 -220px;
  margin: 5px 2% 0 -51.5%;
  float: left;
  width: 47%;
  }

.article-header aside.featured img {
  width: 100%;
  height: auto;
  }


  .pro-staff-list .authorAvatar {
    display: block;
    float: left;
/*  min-width: 200px; */
    width: 32%;
    margin-right: 2.75%;
  }


.blog .post-list h2.entry-title {
  line-height: 1.1;
}

a.excerpt-read-more {text-decoration: none;}



/*********************
SIDE BAR TOUTS
*********************/

#sidebar-touts .widget {margin: 0;}

#sidebar-touts h4 {display: none;}

#sidebar-touts ul.side-touts {}

#sidebar-touts ul.side-touts li {
  margin-bottom: 20px;
}

#sidebar-touts ul.side-touts li img {
  width: 100%;
  height: auto;
}

#sidebar-touts ul.side-touts li.social {display: none;}


/*********************
WOUNDED WARRIOR LIST
*********************/

#ww-groups .group-wrap {/* border: solid 2px #94794b; */padding: 5% 0%; }

#ww-groups h3 {
    background: url("/media/inner_pg_mid_hd_bg.jpg") repeat-y scroll center top rgba(0, 0, 0, 0);
    font-size: 1.5em;
    line-height: 1.2;
    padding: 5px 10px 5px 10px;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
}

#ww-groups a {text-decoration: none;}

#ww-groups ul li {
  padding-left: 10px;
  margin-bottom: 10px;
  line-height: 1.1;
}

/*********************
VIDEO and PARTNERS listing w/logos
*********************/

  h5.ytctitle {
  	margin-top: 5px;
    letter-spacing: 1px;
    line-height: 1.2em;
    min-height: 60px;
    }

  .ytcplayer-fixwidthwrapper {margin-bottom: 1em;}

  .page-id-430 h3 a span {color: #CACC2E;}

  .page-id-430 h3.recommended {margin: 10px 0;}

  .whole-wrap {clear: left;display: block; vertical-align: middle;margin-bottom: 1.5em;}

  .page-id-430 .logo-wrap, .page-id-1172 .logo-wrap {
    display: inline-block;
    width: 15%;
    min-width: 150px;
    margin-right: 1em;
    display: inline-block;
    vertical-align: middle;
  }

  .page-id-430 .logo-wrap img, .page-id-1172 .logo-wrap img {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
  }

  .page-id-430 .entry-content h4, .page-id-1172 .entry-content h4 {
    font-size: 1.5em;
    line-height: 1.1;
    display: inline-block;
    vertical-align: middle;
    width: 70%;
    }

	.ytc-pslb.ytc-links {clear: both; padding-top: 10px;}

	#ytc-wrapper .ytc-youtubelink a {color: #2e2a0b;text-decoration: none;display: none;}
	#ytc-wrapper .ytc-youtubelink a:hover {color: #CACC2E;}

	#main a.new_link {color: #2e2a0b;}
	#main a.new_link span {color: #CACC2E;}

@media (min-width: 992px) {
	.ytc-pslb .col-md-3 {
	  width: 33.33% !important;
	}
}



/** updated partners page listings **/

.page-id-1172 #main {min-width: 85% !important;}

.partner-wrap {
	display: inline-block;
	width: 21%;
	margin: 16px 1.5%;
    min-width: 150px;
    text-align: center;
	vertical-align: middle;
}

.partner-wrap > a {
	display: inline-block;
	vertical-align: middle;
	min-height: 100px;
}

.partner-wrap:before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.partner-wrap img {
	width: 100%;
	max-width: 100px;
	display: inline-block;
}

.page-id-1172 .entry-content .partner-wrap h4 {
	width: 100%;
	font-size: 1.25em;
	vertical-align: middle;
}


/*********************
UPS PRODUCT RETURN REQUEST FORM
*********************/

ol.instructions {
	list-style-type: decimal;
	padding-left: 20px;
}



#state, #zipcode {
	display: inline-block;
	max-width: 150px;
	margin-right: 15px;
	}

#shot-type {margin-bottom: 15px;}

#UPS-pickup label {padding-bottom: 5px;display: inline-block;}

#UPS-pickup span.note {font-size: .9em;}

#UPS-pickup #shot-type1 label.error, 
#UPS-pickup #shot-type2 label.error, 
#UPS-pickup #shot-type3 label.error,
#UPS-pickup #shot-type4 label.error {
	position: absolute;
	top: 40px;
	left: 5px;
	z-index: 20;
}

#UPS-pickup label.error {
	margin: -10px 0 10px 10px;
	padding-bottom: 0;
	color: #CACC2E;
	font-size: 14px;
	display: block;
	}
	
#UPS-pickup #email input.required {text-transform: lowercase;}
	
#UPS-pickup #shot-type1,
#UPS-pickup #shot-type2,
#UPS-pickup #shot-type3,
#UPS-pickup #shot-type4,
#UPS-pickup #store {
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: solid 2px #94794b;
	max-width: 400px;
	}

#UPS-pickup #shot-size1,
#UPS-pickup #shot-size2,
#UPS-pickup #shot-size3,
#UPS-pickup #shot-size4 {
	position: relative;
	max-width: 100px;
	margin-right: 10px;
	display: inline-block;
	}
#UPS-pickup #shot-size1 input,
#UPS-pickup #shot-size2 input,
#UPS-pickup #shot-size3 input,
#UPS-pickup #shot-size4 input {
	max-width: 80px;
	}

#UPS-pickup #lot-number1,
#UPS-pickup #lot-number2,
#UPS-pickup #lot-number3,
#UPS-pickup #lot-number4 {
	position: relative;
	max-width: 100px;
	margin-right: 10px;
	display: inline-block;
	}

#UPS-pickup .note-lotnumber {margin-top: -5px; margin-bottom: 10px;}

#UPS-pickup #lot-number1 input,
#UPS-pickup #lot-number2 input,
#UPS-pickup #lot-number3 input,
#UPS-pickup #lot-number4 input {
	max-width: 80px;
	}
	
#UPS-pickup #purchased1,
#UPS-pickup #purchased2,
#UPS-pickup #purchased3,
#UPS-pickup #purchased4 {
	position: relative;
	max-width: 200px;
	display: inline-block;
	}



#UPS-pickup #purchased1 input,
#UPS-pickup #purchased2 input,
#UPS-pickup #purchased3 input,
#UPS-pickup #purchased4 input {
	max-width: 180px;
	}
	
#UPS-pickup span.required {color: #CACC2E;}

.page-template-page-ups-php #required,
.page-template-page-ups-case-php #required {
	max-width: 400px;
	font-size: 0.8em;
    margin-bottom: 5px;
    text-align: right;
    }
    
.page-template-page-ups-php #required .required,
.page-template-page-ups-case-php #required .required {color: #CACC2E;}

#wait-message {
	display: none;
	position: fixed;
	max-width: 300px;
	top: 35%;
	left: 25%;
	padding: 10px;
	border: solid 2px #CACC2E;
	background: #000;
}

#wait-message p {text-align: center;}

/*********************
CONTACT US
*********************/

 .page-id-87 #main .entry-content p a {
   text-decoration: none;
   font-size: 1.2em;
   color: #2E2A0B;
   font-family: 'Patua One', sans-serif;
 }

 .page-id-87 #main .entry-content p a span {
   color: #CACC2E;
 }

 .page-id-87 #main .entry-content p a:hover {color: #CACC2E;}

 span.wpml-nodis a {display: none;}

 a.mail-link {white-space: nowrap;display: inline-block;direction: ltr;unicode-bidi: bidi-override;}
 span.wpml-rtl {white-space: nowrap;}
 
/*********************
MailChimp signup
*********************/ 
 
 #mailchimp {margin-bottom: 90px;}
 #mailchimp p.required {font-size: .8em;text-align: right;margin-bottom: 2px;margin-right: 2.5%;}
 #mailchimp p.required span {color: #CACC2E;}
 
 #mailchimp p.first-name, 
 #mailchimp p.last-name {
 	display: inline-block;
 	width: 48%;
 	margin-right: 1%;
 	margin-bottom: 0;
 }
 
 #mailchimp p.email {width: 48%;}
 
 #mailchimp label span {color: #CACC2E;}
 
 #mailchimp p.first-name input, 
 #mailchimp p.last-name input {width: 100%;}

/*********************
FAQ
*********************/

#main .question h3 {
  cursor: pointer;
  margin-bottom: 15px;
  color: #2E2A0B;
  font-weight: bold;
  font-family: 'adelle', sans-serif;
  text-transform: none;
}

#main .question h3:hover {color:#CACC2E;}

#main .answer {margin-bottom: 1em;}

#main .answer p strong {
  color: #CACC2E;
  font-size: 1.125em;
  font-family: 'adelle', sans-serif;
}


/*********************
Weekly Hunter
*********************/

.post-type-archive-weekly_hunter article.weekly_hunter h4,
.single-weekly_hunter article.weekly_hunter h4 {
  padding: 5px 15px;
  padding: 5px 2.3%;
  margin: 5px 0;
  font-size: 1.25em;
  color: #9b9d8a;
  text-shadow: 1px 1px 2px #000;
  background: url("/media/inner_pg_mid_hd_bg.jpg") no-repeat scroll center top ;
}

.post-type-archive-weekly_hunter h4 a,
.single-weekly_hunter h4 a {color: #9b9d8a;}

.post-type-archive-weekly_hunter .article-header h2,
.single-weekly_hunter .article-header h1 {
  padding: 0 15px;
  padding: 0 2.3%;
  }

.post-type-archive-weekly_hunter section.entry-content,
.single-weekly_hunter section.entry-content,
.post-type-archive-weekly_hunter footer.article-footer,
.single-weekly_hunter footer.article-footer {
  padding: 0 15px;
  padding: 0 2.3%;
}

.post-type-archive-weekly_hunter .article-header h4.past {
  margin: 15px 0;
  }


.post-type-archive-weekly_hunter .article-header aside.featured {
  width: 18.4%;
  margin: 0 15px;
  margin: 0 2.3%;
  float: left;
  }

.post-type-archive-weekly_hunter .article-header aside.featured img {
  width: 100%;
  height: auto;
  }

.post-type-archive-weekly_hunter section.entry-content {
  padding-left: 23%;
}

.post-type-archive-weekly_hunter .current section.entry-content {
  padding-left: 2.3%;
}

.post-type-archive-weekly_hunter section.entry-content img,
.single-weekly_hunter section.entry-content img {max-width: 440px;width: 100%; height: auto;}

.post-type-archive-weekly_hunter h2.past-hunters {
  margin: 1em 0 .15em 0;
  padding: .1em 2.3%;
/*  border-top: solid 2px #2E2A0B;  */
  border-bottom: solid 2px #2E2A0B;
  }

.post-type-archive-weekly_hunter h3,
.single-weekly_hunter h3 {
  margin-top: -5px;
  margin-bottom: 5px;
  font-size: 1.5em;
  line-height: 1.1;
  }

a.view-more {
  float: right;
  margin-top: -10px;
  text-decoration: none;
}
a.view-more span {color:#CACC2E;}

/*********************
PRODUCT PAGES
*********************/

.image_wrap {
  float: left;
  width: 47.5%;
/*  border: solid 2px #000; */
  }

.image_wrap img {
  width: 100%;
  height: auto;
  }

.image_wrap #sub_product {padding: 15px 0;}
.image_wrap #sub_product .sub_product_image {width: 40%;padding-right: 3%;display: inline-block;}
.image_wrap #sub_product .sub_product_details {width: 54%;display: inline-block;vertical-align: top;}
.image_wrap #sub_product h3 {
	color: #d2dbca;    
	line-height: 1.1;
    }
.image_wrap #sub_product p {
	margin-top: 5px;
	padding: 2px 5px;
	font-family: 'Patua One', sans-serif;
    color: #d4e3aa;
    color: #bac3b0;
	}

.image_wrap.hevi-choke {}
.image_wrap h3.choke-interchange {
  clear:left;
  padding-top: 15px;
  text-align: center;
  }

.image_wrap h3.choke-interchange a.view-more {margin-top: 0;float: none;
    width: 80%;
    margin: auto;
    padding: .5em .75em;
    color: #797b68;
    display: inline-block;
    font-family: 'Patua One',​sans-serif;
    font-size: 1em;
    line-height: 1.2;
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #806d37;
    }

.image_wrap h3.choke-interchange a.view-more:hover {
  color:  #CACC2E;
/*  background: #2E2A0B; */
  }

.hs_products .article-header,
.hs_products .entry-content {/* padding-left: 50%; */ float: right;width: 49.75%; color: #bac3b0;}

 #main .hs_products h1.single-title {
  float: none;
  width: 100%;
/*  padding: .5em 1em;
  margin-top: .325em; */
  margin-bottom: .5em;
  font-size: 2.25em;
  line-height: 1;
  color: #797b68;
  text-align: left;
  text-transform: uppercase;
/*  background: #2f2a0f url(/media/product_name_bg.jpg) top center repeat; */
  }

.hs_products h1.single-title span {
/*  font-size: .625em;  */
  color: #d2dbca;
/*  display: inline-block;  */
  vertical-align: top;
  padding-top: .3em;
  }

#main .hs_products h2 {color: #797b68;}

.hs_products img.made-in-usa {
  float: right;
  margin: 5px 25% 20px 0;
}

.hs_products .packaging {margin-bottom: 2em;}
.hs_products .packaging h5 {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #9b9d8a;
}
.hs_products .packaging h5 span {
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif; */
  color: #d2dbca;
}

.hs_products .retail-links {
  text-align: left;
}

.hs_products .retail-links a {
  display: inline-block;
  margin: 0 5% 0 0;
/*  width: 40%; */
  font-family: 'Patua One',​sans-serif;
  font-size: 19px !important;
  line-height: 2;
/*  font-weight: bold; */
  text-transform: uppercase;
  text-decoration: none;
  color: #2e2a0b;
/*   border: solid 2px #CACC2E; */
}

.hs_products .retail-links a:hover {
  color:  #CACC2E;
  }

.hs_products .retail-links a span {
  font-family: 'Patua One', sans-serif;
  color: #CACC2E;
  }

.single-hs_products #main ul.product-features li {margin-bottom: 0.5rem;}

#online-stores,
#return-message {
	position: fixed;
	z-index: 500;
/*	padding: 25px 15px; */
	border: solid 2px #CACC2E;
	background: #000000;
	width: 100%;
	max-width: 400px;
	min-width: 300px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#online-stores a.close,
#return-message a.close {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #CACC2E;
	padding: 10px;
	font-size: 1.3em;
	line-height: 1;
	}

#online-stores a.close:hover,
#return-message a.close:hover {background: #2E2A0B;}

#online-stores .widgettitle,
#return-message .widgettitle {
	padding: 0 0.75em;
	line-height: 2;
	font-size: 1.3em; 
	text-transform: uppercase; 
	text-align: center;
	color: #797b68 !important;
	text-shadow: 1px 1px 2px #000;
	background: url(/media/inner_pg_mid_hd_bg.jpg) top center no-repeat;
	}

#tintLayer {
	top: 0;
	left: 0;
	position: fixed;
	z-index: 450;
	height: 100%;
	width: 100%;
	background: url("/media/inner_pg_bg2.png") repeat 0 0;
	}

#online-stores ul.online-stores {padding: 0px 20px 10px 20px;margin-bottom: 0;}

#online-stores .online-stores li {
	font-size: 1.275em;
	list-style-type: none;
	margin-bottom: 10px;
}

#online-stores .online-stores li a {text-decoration: none;}

#online-stores .online-stores li a:before {
	content: '<< ';
	color: #CACC2E;
}

.page-template-page-ups-php #return-message p {padding: 0 15px;color: #797b68;}

#online-stores .widget,
#return-message .widget {margin-bottom: 0;padding: 0;}

.online-retailers h3 {margin-top: 15px;margin-bottom: 0;text-transform: uppercase;}

.online-retailers ul {margin: 0 0 15px 0;}

.online-retailers li a {
  text-decoration: none;
  color: #FFFFFF;
  float: left;
  width: 35%;
}

.hs_products #product-data {
  padding-top: 30px;
  clear: both;
}

.gauge-wrap table {
  margin: 0px auto 38px;
  width: 100%;
}

.gauge-wrap tbody tr:nth-child(4n+4) {
/*  border-bottom: solid 25px #000; */
}

.gauge-wrap td,
.gauge-wrap th {
  text-align: center;
  font-family: 'Patua One', sans-serif !important;
  color: #bac3b0 !important;
}

.gauge-wrap th {
  text-transform: uppercase;
}

.gauge-wrap td.gauge-cell {
  width: 11%;
  text-align: left;
  padding: 0 2.5%;
  background: #29281e;
  }

.gauge-wrap h3.gauge {
  text-transform: uppercase;
  font-size:1em;
  line-height: 1;
  color: #bac3b0 !important;
  min-width: 64px;
}
.gauge-wrap h3.gauge span {
  display:block;
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif;
  font-size:1.75em;
}

.gauge-wrap td.product-grid {
  width: 89%;
  border-left: 28px solid transparent;
}

.gauge-wrap td.product-grid table {margin: 0;}

.gauge-wrap td.product-grid th {
  font-weight: normal;
  color: #818373;
  padding-top: 5px;
  border-top: solid 2px #806d37;
  }

.gauge-wrap td.product-grid td {
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif; 
  }

.gauge-wrap td.product-grid td span {  /* http://jsfiddle.net/Drackir/TvbHv/1/ */
  display: block;
  margin-top: 9px;
  height: 100%;
  background: #29281e;
  }

.gauge-wrap .length {width: 22.5%;border-right: solid 2px #806d37;}
.gauge-wrap .weight {width: 27%;border-right: solid 2px #806d37;}
.gauge-wrap .quantity {width: 14%;border-right: solid 2px #806d37;}
.gauge-wrap .fps {width: 14%;border-right: solid 2px #806d37;}
.gauge-wrap .size {width: 20%;border-right: solid 2px #806d37;}
.gauge-wrap .product_num {width: 16.5%;}

.gauge-wrap .gauge-10 td.product-grid td span,
.gauge-wrap .gauge-10 td.gauge-cell {background: #29281e;}
.gauge-wrap .gauge-12 td.product-grid td span,
.gauge-wrap .gauge-12 td.gauge-cell {background: #2e2515;}
.gauge-wrap .gauge-20 td.product-grid td span,
.gauge-wrap .gauge-20 td.gauge-cell {background: #2f311d;}
.gauge-wrap td.product-grid td span {background: #29281e;}

.choke-tubes td, .choke-tubes th {box-sizing: border-box;}

.gauge-wrap .model {width: 45%;border-right: solid 2px #806d37;text-align: left;}
.gauge-wrap .range {width: 10%;border-right: solid 2px #806d37;}
.gauge-wrap .constriction {width: 20%;border-right: solid 2px #806d37;}
.gauge-wrap .ported {width: 8%;border-right: solid 2px #806d37;}
.gauge-wrap .product_num {width: 10%;}

.gauge-wrap th.model {padding-left: 10px;}
.gauge-wrap .product-grid td.model span {padding-left: 10px;padding-right: 5px;}

.gauge-wrap .range span {/* white-space: nowrap; */ padding-left: 2px; padding-right: 2px;}

.entry-content .choke-interchange {margin-top: 1em;}

.entry-content .choke-interchange th {
  font-size: 1.2em;
    background-color: transparent;
    border-bottom: none;
    border-right: none;
   border-top: 2px solid 806d37;
}

.entry-content .choke-interchange th.gun-model {
   border-right: 2px solid #806d37;
  }

#post-1301 a.view-more {
  text-transform: uppercase;
  margin: -5px 0 15px 0;
}


/*********************
FIND YOUR AMMO PAGE
*********************/

a.catalog {
 display: inline-block;
 padding: 0px 0 10px 0;
/* border: solid 2px #CACC2E; */
 text-decoration: none;
 text-transform: uppercase;
/*  margin-bottom: 15px; */
 font-size: 22px;
 color: #2e2a0b;
 font-family: 'Patua One', sans-serif;
/* text-shadow: 1px 1px 2px #000; */
 }

a.catalog span {color: #CACC2E;}

a.catalog strong {display: none; font-weight: 500;}

@media only screen and (max-width: 600px) {

  a.catalog strong {display: inline-block;}
  a.catalog {font-size: 18px;margin-bottom: 0;}
  
  #main .hs_products h1.single-title {text-align: center;}
  
}

.ammo-head {
/*  background: #2f2a0d url(/media/ammo_hd_bg.jpg) top center no-repeat; */
  position: relative;
  padding: 1.5em 1.5em 0 1.5em;
  margin: -1.5em -1.5em 0 -1.5em;
  overflow: hidden;
  }

.ammo-head .content-wrap {
  position: relative;
/*  width: 60%; */
  display:inline-block;
  vertical-align: top;
}

.ammo-head h1.archive-title {
  float: left;
  font-size: 3em;
  line-height: 1;
  color: #2e2a0b;
  text-transform: uppercase;
/*  text-shadow: 1px 1px 2px #000; */
}

.ammo-head h1.archive-title span {
  display: inline-block;
  font-size: .6em;
  vertical-align: top;
  padding-top: 10px;
}

.ammo-head img.shell-schematic {
/*  position: absolute;
  bottom: -15px;
  right: -40px; */
  margin: -10px -5px -20px 0;
  width: 45%;
  width: 30%;
  min-width: 216px;
  float: right;
  height: auto;
  -ms-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.ammo-head p {
  clear: left;
  padding-top: 5px;
  width: 55%;
/*  color: #8f7548; */
}


@media only screen and (min-width: 600px) and (max-width: 800px) {
 	.ammo-head img.shell-schematic {margin-top: 25px;}
}

@media only screen (max-width: 460px) {
 	.ammo-head img.shell-schematic {margin-top: -150px !important;}
}

.active-filters {
  position: relative;
  position: fixed;
  bottom: 0;
/*  margin-top: 20px; */
  width: 35%;
  width: 100%;
  min-height: 50px;
/*  min-height: 125px;
  display: inline-block;
  float: right; */
  padding: 12px 15px 5px 15px;
/*  background: #000; */
  background: url(/media/inner_pg_bg2.png) 0 0 repeat;
  display: none;
  margin-left: -1.5em;
  z-index: 2000;
  border-top: solid 2px #94794b;
  border: solid 4px #CACC2E;
}

.active-filters h4 {
  float: left;
  font-size: 1.4em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: normal;
  color: #808285;
}

.active-filters li {
/*  position: absolute; */
  display: inline-block;
  float: left;
  width: 45%;
  width: 23%;
  margin-right: 2%;
  margin-bottom: 8px;
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif;
  font-size: .8em;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 3px 4px 3px 5px;
  color: #a7a9ac;
  background: #a7a9ac;
  border: solid 2px #404040;
  cursor: pointer;
/*  visibility: hidden; */
  -moz-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.active-filters ul {
  float: left;
  margin: 0 5px 0 15px;
  position: relative;
  width: 70%;
}

.active-filters li#filter-brand {
  top: 0;
  left: 51%;
  color: #a7a9ac;
  background: #292729;
}
.active-filters li#filter-length {
  top: 35px;
  left: 51%;
  color: #e4eae0;
  background: #9b9d8a;
}
.active-filters li#filter-gauge {
  top: 35px;
  color: #decfb4;
  background: #94794b;
}
.active-filters li#filter-use {
  top: 0px;
  color: #b0a87e;
  background: #2E2A0B;
}

.active-filters li a {
  float: right;
  color: #FFF;
  opacity: .7;
  text-decoration: none;
  cursor: pointer;
  }

.active-filters li a:hover {opacity: 1;}

.active-filters a.clear-all {
  clear: right;
  float: right;
  cursor: pointer;
  font-size: 1em;
  color: #58595b;
  text-transform: uppercase;
  text-decoration: none;
  }

.active-filters a.clear-all:hover {color: #CACC2E;}

.use-grid {
  display:none;
  margin: 0 -1.5em 0px -1.5em;
  padding: 25px 12px 10px 12px;
/*  background: url(/media/ammo_us_bg.png) 0 0 repeat; */
  background: rgba(45, 38, 11, .60);
  }

#content .use-grid ul {padding: 0; margin: 0 0 20px 0;text-align: center;}

#content .use-grid li {
  position: relative;
  display: inline-block;
  width: 120px;
  width: 12.25%;
  min-width: 120px;
  margin: 16px 8px 0px 8px;
  border: solid 2px #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.use-grid li a {
  display:block;
  color: #d2dbca;
  text-decoration: none;
  width: 100%;
  }

.use-grid li.on-filter a,
.use-grid li a:hover,
.use-grid li a:focus {
  color: #CACC2E;
  }

.use-grid li img {
  position: relative;
  width: 100%;
  height: auto;
  }

.use-grid li.on-filter a img,
.use-grid li a:hover img {
  background: #CACC2E;
  }

.use-grid li h4.use-term {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 0px;
/*  margin-top: -1.9em;
  margin-bottom: -1.6em;
  margin-left: -2px;  */
  font-size: 0.9em;
  line-height: 2;
  font-weight: normal;
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
/*  border: solid 2px #000; */
  border-top: none;
  background: url(/media/ammo_use_text_bg.png) 0 0 repeat;
}

.use-grid li.classic-shotgun h4.use-term {
  letter-spacing: -0.5px;
}

.filter-selects {
/*  border-top: solid 2px #2E2A0B; */
  margin: 0em -1.5em 0 -1.5em !important;
  padding: 1em 1.5em 0 1.5em;
  background: rgba(45, 38, 11, .60);
}

.filter-selects .select-wrap {
  width: 33.3%;
  float: left;
  padding: 2em 30px;
  padding: 1.5em 30px;
  width: 49%;
  padding: .75em 2%;
}

.filter-selects #select-use.select-wrap {display: block;}

.filter-selects #select-gauge.select-wrap {
/*  border-left: solid 2px #2E2A0B;
  border-right: solid 2px #2E2A0B;  */
  }

.filter-selects .select-wrap span.customSelect {white-space: nowrap; text-transform: uppercase;}

.filter-selects #select-use.select-wrap span.customSelect,
.filter-selects #select-use.select-wrap select:active,
.filter-selects #select-use.select-wrap select:focus {
  background-color: #292729;
  color:#e4eae0;
}

.filter-selects #select-brand.select-wrap span.customSelect,
.filter-selects #select-brand.select-wrap select:active,
.filter-selects #select-brand.select-wrap select:focus {
  background-color: #292729;
  color:#e4eae0;
}
.filter-selects #select-gauge.select-wrap span.customSelect,
.filter-selects #select-gauge.select-wrap select:active,
.filter-selects #select-gauge.select-wrap select:focus  {
  background-color: #94794b;
  background-color: #292729;
  color:#e4eae0;
}
.filter-selects #select-length.select-wrap span.customSelect,
.filter-selects #select-length.select-wrap select:active,
.filter-selects #select-length.select-wrap select:focus  {
  background-color: #9b9d8a;
  background-color: #292729;
  color:#e4eae0;
}

h3.recommended {
  display: none;
  padding: 0 2em;
  font-size: 1.4em;
  line-height: 2;
  line-height: 1;
  color: #9b9d8a;
  text-transform: uppercase;
  background: url(/media/inner_pg_mid_hd_bg.jpg) top center no-repeat;
  text-shadow: 1px 1px 2px #000;
}

.post-type-archive-hs_products #main {padding-bottom: 0;}

.post-type-archive-hs_products article.hentry {
  margin: 0em -1.5em 0 -1.5em !important;
  padding-top: 1em;
  background: rgba(45, 38, 11, .60);
/*  background: url(/media/ammo_brwn_texture_bg2B.png) top center repeat-y; */
}
.post-type-archive-hs_products #product-grid-wrap {
  margin: 1em -1.5em 0 -1.5em !important;

}

#product-boxes-wrap {
  padding: 2em 2em 3em 2em;
  text-align: center;
  min-height: 384px;
/*  background: url(/media/ammo_brwn_bg.png) top center repeat; */
}

#product-boxes-wrap .product-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 22%;
  width: 21%;
  margin: 0 1.2% 1em 1.2%;
  border: solid 2px #242009;
  background: #201d08;
}

#product-boxes-wrap .product-wrap a {text-decoration: none;}

#product-boxes-wrap .product-wrap img {width: 100%; height: auto;}

#product-boxes-wrap .product-wrap .product-list {
  position: relative;
  margin-top: -20px;
  padding: 18px 2% 5px 2%;
  height: 127px;
  text-align: center;
  text-transform: uppercase;
  color: #9b9d8a;
  background: #3c3612 url(/media/ammo_box_texture.jpg) top center no-repeat;
}

#product-boxes-wrap .product-wrap .product-list h3 {
  font-size: 1.25em;
  margin-bottom: 0.75em;
  color: #797B68 !important;
}

#product-boxes-wrap .product-wrap .product-list h3 span {
  display: inline-block;
/*  padding-top: 5px;
  font-size: 0.7em; */
  vertical-align: top;
  color: #806D37;
}

#product-boxes-wrap .product-wrap .product-list ul.gauge-list {
  margin: -8px 0 0 -1%;
  padding: 0;
}

#main .product-list ul.gauge-list li {margin-bottom: 0;font-family: "Patua One", sans-serif;}

.product-list ul.gauge-list li {
  width: 45%;
  display: inline-block;
}

.product-list ul.gauge-list li span {
  width: 33px;
  display: block;
  text-align: right;
  padding-right: 5px;
  float:left;
  font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif;
  color: #d2dbca;
}

/* Hevi-Duty Ammo */
.hevi-duty.gauge-9mm .product-list ul.gauge-list li, .hevi-duty-centerfire.gauge-9mm .product-list ul.gauge-list li {/* width: 55%; */text-align: left;}
.hevi-duty.gauge-9mm .product-list ul.gauge-list li span, .hevi-duty-centerfire.gauge-9mm .product-list ul.gauge-list li span  {margin-right: 5px;}

#no-results.message-div {display: none;padding: 0 15px;}

#no-results.message-div h3 a.clear-all {color: #FFFFFF; cursor: pointer;}
#no-results.message-div h3 a.clear-all:hover {color: #CACC2E}

.hevi-duty-centerfire .product-list ul.gauge-list {font-size: .75em;}


/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property:    -moz-transform, opacity;
    transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    transition-duration: 0s;
}

/* End: Recommended Isotope styles */


/*
*****************************************************************
STORE LOCATOR WP GOOGLE MAP OVERRIDES
*****************************************************************
*/

.page-id-28 #main h1 {color: #797b68; margin-bottom: 1em;}

.page-id-28 #main {width: 100%;}

.page-id-28 #main ul.tabs {
  margin: 0 0 1em 0;
  padding: 0;
  display: block;
  text-align: center;
  font-family: "Patua One", sans-serif;
  border-bottom: solid 2px #2E2A0B;
}

.page-id-28 #main .tabs li {
  display: inline-block;
  width: 28%;
  margin: 0 2%;
  text-align: center;
/*  border: solid 2px #2E2A0B; */
  border-bottom: none;
  cursor: pointer;
  background: rgba(45, 34, 6, .18);
/*   background: #797b68; */
  -webkit-transition: all 0.24s ease-in-out 0s;
  -moz-transition: all 0.24s ease-in-out 0s;
  transition: all 0.24s ease-in-out 0s;
}
.page-id-28 #main .tabs li.onTab {
  background: #2E2A0B;
  
}

.page-id-28 .tabs li.onTab a {
  color: #CACC2E;
  }

.page-id-28 .tabs li a {
  display: block;
  padding: 5px;
  font-size: 1.6em;
  color: #2E2A0B;
  color: #797b68;
}

.page-id-28 #main {background: rgba(45, 38, 11, .60);}

#map-finder {}
#full-listing, #wpgmza_table_1_wrapper {display: none;max-width: 952px;}
#online-list {display: none;max-width: 952px;}

#online-list h3.widgettitle {font-size: 1.4em;}
#main #online-list ul.online-stores {margin-left:1em;list-style: none;padding-left: 0;}
#main #online-list ul.online-stores li {font-size: 1.25em;margin-bottom: 15px;}
#main #online-list ul.online-stores li a {color: #bac3b0;}
#main #online-list ul.online-stores li a:hover {color: #CACC2E;}
#main #online-list ul.online-stores a span {color: #CACC2E;}


#map-address, #map-radius {float: left; width: 27%;min-width: 115px;color: #797b68;}

span.map_note {display: block; margin: 20px 0 10px 0;}

input#search_stores {float: left;margin-top: 20px;margin-right: -5px;}

#map-radius {margin-right: -5px;}

#map-radius + .wpgmza_sl_search_button_1 {margin-top: 20px;}

#locationSelect {clear: both;}

h2#full_store_list {
  margin-top: 40px;
  line-height: 1.4;
  text-align: center;
  background: #2E2A0B;
  color: #d2dbca;
  display: none;
}

#wpgmza_map_1 {border: solid 3px #CACC2E;max-width: 952px;}

#wpgmza_table_1 {background: #F8F9FA;display: none;}
#wpgmza_table_1.dataTable {display: block;width: 100% !important;max-width: 952px;clear:both;}

#wpgmza_table_1_processing {visibility: visible !important;}

#wpgmza_table_1_processing {visibility: visible !important;}

#wpgmza_table_1_wrapper #wpgmza_table_1_processing {visibility: hidden !important;}

.page-id-28 #wpgmza_table_1_wrapper {display: none;}

.page-id-28 #wpgmza_marker_holder_1 {max-width: 952px;}

.wpgmza_table th {
  font-size: 1.1em;
  padding: 0 7px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #94794b !important;
  }

.wpgmza_table th strong {font-weight: 400;}
.wpgmza_table tr {border: none;}
.wpgmza_table td, .wpgmza_table th {vertical-align: middle !important;border: none;}

.wpgmza_table .wpgmza_table_marker {width: 4% !important;padding-right: 7px !important; }
.wpgmza_table .wpgmza_table_marker img {width: 100%;height: auto;max-width: 28px;}
.wpgmza_table .wpgmza_table_title {width: 30%;width: 35% !important;}
.wpgmza_table .wpgmza_table_address {width: 45%;width: 60% !important;}   /* if adding phone or other column to listing, make adjustment */
.wpgmza_table .wpgmza_table_phone {width: 20%;display: none;}
.wpgmza_table a {text-decoration: none;color:#231f0b;}
.wpgmza_table a:hover {text-decoration: underline;}

.dataTables_filter {
    float: left !important;
    text-align: left !important;
    width: 60%;
    color: #797b68 !important;
}

.dataTables_wrapper .dataTables_filter input {margin-left: 0 !important;}

.dataTables_length {
    float: right !important;
    width: 30%;
    color: #797b68;
}
.dataTables_length label {
    font-weight: bold;
    color: #797b68 !important;
}

.dataTables_info {color: #797b68 !important;}

#full-listing .dataTables_filter input[type="text"], #wpgmza_table_1_wrapper .dataTables_filter input[type="text"], .dataTables_filter select {
	display: block !important;
}

.wpgmza_markerbox {color: #000 !important;}

.wpgmza_markerbox a {color: #000 !important;}

#wpgmza_table_1_paginate a {color: #806D37 !important;}
#wpgmza_table_1_paginate a:hover {color: #FFF !important;}
#wpgmza_table_1_paginate a.paginate_button.current {background: none;}

table#wpgmza_table_1.dataTable th, table#wpgmza_table_1.dataTable tbody td {padding: 0px 5px !important;vertical-align: middle !important;}

table#wpgmza_table_1.dataTable tbody tr.odd {background: #EEEEEE;}

.wpgmza_markerbox p {margin-bottom: 0 !important;}
.wpgmza_markerbox p.wpgmza_infowindow_title {font-weight: bold;}

/******************************************************************
TROPHY ROOM STYLES
******************************************************************/

.page-id-1257 #main {width: 100%;}

/******************************************************************
SOCIAL WALL STYLES
******************************************************************/

.page-id-1259 #main {width: 100%;}
.wall-outer .dcsns-toolbar .filter .link-all {height: 28px;}
.wall-outer .dcsns-toolbar .filter {margin: 0 40%;}
#main ul#dcsns-filter {padding-left: 0;}
#feed-load {display: none;}

#twitter .twitter-user {display: none;}

.dcwss.dc-feed.light {
    background: none;
}

.dcwss.dc-feed {
    border-radius: 0;
    list-style: none outside none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}


/******************************************************************
ONLINE REBATE PROGRAM STYLES
******************************************************************/

.page-id-2351 .rebate-products,
.page-id-2434 .rebate-products {
	position: relative;
}

.page-id-2351 .redeem,
.page-id-2434 .redeem {
	display:inline-block;
	width: 40%;
	text-align: center;
	float: left;
}

.page-id-2351 .rebate-products .or,
.page-id-2434 .rebate-products .or {
	width: 19%;
/*	padding-left: 9%; */
	display: inline-block;
	float: left;
	margin: 20% 0px 0 0px;
	font-weight: bold;
	font-size: 40px;
	text-align: center;
}

@media only screen and (max-width: 599px) {

	.page-id-2351 .rebate-products .or,
	.page-id-2434 .rebate-products .or {
		font-size: 30px;
	}
	
	.page-id-2351 .redeem h4,
	.page-id-2434 .redeem h4 {
		line-height: 1.25;
	}
	 
}


.page-id-2351 .redeem img,
.page-id-2434 .redeem img {
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}

.page-id-2351 .blind-bag img,
.page-id-2434 .blind-bag img {
	margin-top: 50px;
	margin-top: 5px;
}

.page-id-2351 .redeem.choke-tube img,
.page-id-2434 .redeem.choke-tube img {
	max-width: 200px;
	width: 65%;
	}

.page-id-2351 .rebate-products .redeem p,
.page-id-2434 .rebate-products .redeem p {display: none;}

.page-id-2351 h3,
.page-id-2434 h3 {margin: 15px 0;}

.page-id-2351 h3 span,
.page-id-2434 h3 span {
	display: inline-block;
	background: #2e2a0b;
	color: #bac3b0;
	text-transform: uppercase;
	padding: 10px;
	margin-right: 10px;
	width: 80px;
	text-align: center;
}

.page-id-2351 .rebate-upc .redeem img,
.page-id-2434 .rebate-upc .redeem img {margin-top: 10px;}

#gform_wrapper_1 input[type="text"] {margin-bottom: 0;}
#gform_wrapper_1 .description, 
#gform_wrapper_1 .gfield_description, 
#gform_wrapper_1 .gsection_description, 
#gform_wrapper_1 .instruction {font-size: 16px;}

#gform_wrapper_1 ul {padding-left: 0;}

#gform_wrapper_1 #input_1_16, #gform_wrapper_1  #input_1_12 {width: 40px;}
#gform_wrapper_1 #field_1_16 .gfield_description {padding-top: 0;font-size: 14px;}

#gform_wrapper_1 #field_1_17 .ginput_container_radio {margin-top: 0;}
#gform_wrapper_1 #input_1_17 input {margin-top: -3px;}
#gform_wrapper_1 .gfield_radio li {display: inline-block;margin-right: 10px;}
#gform_wrapper_1 .gfield_radio li label {white-space: nowrap;}

#gform_wrapper_1 .gfield_radio li.gchoice_1_17_2 {display: none;}

#gform_wrapper_1 #field_1_4 label {font-size: 18px;}

#gform_wrapper_1 #field_1_12 .gfield_description {padding-top: 0;font-size: 14px;}
#gform_wrapper_1 .ginput_product_price_label, #gform_wrapper_1 .ginput_product_price {display: none;}

#gform_wrapper_1 #field_1_11 label {font-size: 18px;}
#gform_wrapper_1 #field_1_11 .gfield_description {padding-top: 0;}

#gform_wrapper_1 #field_1_5 .ginput_container_select,
#gform_wrapper_1 #field_1_20 .ginput_container_select,
#gform_wrapper_1 #field_1_26 .ginput_container_select {width: 100px;}

#gform_wrapper_1 #input_1_5,
#gform_wrapper_1 #input_1_26 {height: 36px !important;}

#gform_wrapper_1 #field_1_5,
#gform_wrapper_1 #field_1_20,
#gform_wrapper_1 #field_1_26 {display: inline-block;}

#gform_wrapper_1 #field_1_13, 
#gform_wrapper_1 #field_1_25,
#gform_wrapper_1 #field_1_27 {display: none !important;}

#gform_wrapper_1 #field_1_18 h2.gsection_title {font-weight: normal;}
#gform_wrapper_1 #field_1_18 .gsection_description {padding-top: 3px;font-size: 14px;}

#gform_wrapper_1 #field_1_2 #input_1_2_3_container {width: 31%;}
#gform_wrapper_1 #field_1_2 #input_1_2_4_container {width: 20%; margin-right: 8px;}
#gform_wrapper_1 #field_1_2 #input_1_2_5_container {width: 20%;}
#gform_wrapper_1 #field_1_2  #input_1_2_6_container {width: 150px;}

#gform_wrapper_1 #field_1_15,
#gform_wrapper_1 #field_1_3 {clear: none;display: inline-block;}

#gform_wrapper_1 #field_1_15 {width: 20%;}
#gform_wrapper_1 #field_1_3 {width: 70%;}


/******************************************************************
PROSTAFF MEMBER STYLES
******************************************************************/

  .pro-staff-list article.prostaff {
    padding: .75em;
    border: solid 2px #94794b;
  }

  .pro-staff-list .authorAvatar {
    display: block;
    float: left;
/*  min-width: 200px; */
    width: 32%;
    margin-right: 2.75%;
  }

  .pro-staff-list .authorAvatar a {
    display: block;
    background: url("/media/inner_pg_mid_hd_bg.jpg") repeat scroll 0 0 #231f0b;
  }

  .pro-staff-list .authorInfo {
    display: block;
    float: left;
    width: 65%;
    }
  .pro-staff-list .authorInfo h3 {
    font-size: 1.5em;
    line-height: 1.2;
/*    margin-left: 130px; */
    padding-left: 10px;
    background: url("/media/inner_pg_mid_hd_bg.jpg") repeat-y center top;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
    }

  .pro-staff-list .authorAvatar h4 {
    text-align: center;
    font-size: 0.95em;
    line-height: 28.8px;
    color: #9b9d8a;
    background: url("/media/inner_pg_mid_hd_bg.jpg") repeat-y center top;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
  }
  .pro-staff-list .authorAvatar img.img-wide {width: 100%; height: auto;}
  .pro-staff-list .authorAvatar img.img-tall {height: auto; width: 71.5%;;margin: 0 auto;}

  .pro-staff-list h4.prostaff-stats {
    url("/media/inner_pg_mid_hd_bg.jpg") no-repeat scroll center top rgba(0, 0, 0, 0)
  }

  .pro-staff-list #main ul.prostaff-stats {margin: 10px 0 5px 10px;padding-left: 0;list-style: none;}

  .pro-staff-list ul.prostaff-stats li span {
    display: block;
    width: 130px;
    float: left;
    margin-left: -130px;
    text-transform: uppercase;
    color: #9b9d8a;
  }

   .pro-staff-list #main ul.prostaff-stats li {
    padding-left: 130px;
    padding-right: 20px;
    margin-bottom: 0;
  }

  .pro-staff-list .prostaff a.view-more {margin-top: 0;}


  .prostaff-member .profile-image {
    width: 69%;
    float: left;
    padding-right: 2%;
    }

  .prostaff-member .profile-image img {
    height: auto;
    width: 100%;
/*    max-width: 430px; */
    margin-bottom: 1em;
    }

  .prostaff-member .profile-image img.img-wide {/* max-width: 100%; */}
  .prostaff-member .profile-image img.img-tall {/* max-width: 75%; */}

  .prostaff-member .profile-stats {
    width: 30%;
    float: right;
/*    padding: .75em;
    border: solid 2px #94794b;  */
    }

  #main .prostaff-member .profile-stats ul.prostaff-stats {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }

  .prostaff-member .profile-stats ul.prostaff-stats li {
    margin: 0 0 15px 10px;
  }

  .prostaff-member .profile-stats ul.prostaff-stats li span {
    display: block;
    margin-bottom: 5px;
    margin-left: -10px;
    padding-left: 10px;
    line-height: 1.4;
    background: url("/media/inner_pg_mid_hd_bg.jpg") repeat-y center top;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
  }

  .prostaff-member .entry-content {
    clear: both;
  }

  .prostaff-member .other-photos {
    width: 69%;
    padding-right: 2%;
    }

  .prostaff-member .other-photos img {
    height: auto;
    width: 100%;
    max-width: 430px;
    margin-bottom: 1em;
    }

   .prostaff-member  a.view-more {
        float: none;
        margin-top: -0px;
        text-decoration: none;
        font-size: 1.25em;
    }

    .prostaff-search {
      border: solid 2px #2E2A0B;
      padding: 1% 2.5% 2% 2.5%;
      margin-bottom: 1em;
    }

    .select-state {width: 40%;float: left;margin-right: 10px;margin-bottom: 5px;}

    .prostaff-search input#sul-s {width: 46%;margin-right: 4%;float: left;margin-bottom: 5px;}
    .prostaff-search input#sul-searchsubmit {float: left;}

    .prostaff-search h4 {
      clear: left;
      padding-top: 0px;
      padding-bottom: 5px;
      }

    .prostaff-search h4 em {
      color: #9b9d8a;
      font-weight: bold;
      font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif; */
      font-style: normal;
      }

      .entry-content p.button a {color: #FFF;}
      .entry-content p.button a:hover {color: #CACC2E;}

      .profile-update a {font-size: 18px; text-decoration: none;}
      .profile-update a span {color: #CACC2E;}

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

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
/*    background-color: white;
    white-space: nowrap; */
    padding: 0;
    clear: both;
 /*   border-radius: 3px;   */
    }
  .pagination li {
    padding: 0;
    margin: 0 4px;
    float: left;
    display: inline;
    display: block;
    font-size: 1.15em;
    overflow: hidden;
    border-right: 1px solid #eaedf2;
    border-right: none;
    }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.5em;
    min-width: 1em;
    display: block;
    display: inline-block;
    color: #d2dbca;
    }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
 /*   background-color: #2980b9;  */
      color:#CACC2E;
      }
  .pagination .current {
    cursor: default;
/*    color: #94794b; */
    border: solid 1px #94794b;
    }
    .pagination .current:hover, .pagination .current:focus {
/*      background-color: white;  */
      color: #CACC2E;
      border-color: #CACC2E;}

/* 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 */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* 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: white; }
  .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; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */ }

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

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background: #0e1004 url(/media/ftr_grad_bg.jpg) 0 0 repeat-x;
  color: #f8f9fa;
  }

.footer #inner-footer {padding-top: 20px;}

.footer .brands {margin-bottom: 20px;}

.footer .brands h3 {
  float: left;
  margin: 30px 36px 0 80px;
  font-size: 1.5em;
  text-transform: uppercase;
  vertical-align: top;
  color: #9b9d8a;
}

.footer .brand-logos {
  position: relative;
/*  display: inline-block;  */
  padding: 0px 30px 0px 40px;
  margin: 0 0 0 260px;
  margin: 0 0 0 270px;
/*  width: 70%; */
  border-left: solid 2px #5b5b4c;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* .footer .brand-logos .bx-wrapper {max-width: 70% !important;} */

.footer .brand-logos .logo-cycle {
/*    margin-left: 110px;
  width: 80%;
  width: 100%;  */
}

.footer .brand-logos .logo-cycle li {
  display: inline-block;
 /* float: left;
  padding: 0 10px;  */
  text-align: center;
  height: 90px;
  margin-top: -15px;
/*  margin-left: 10px; */
}

.footer .brand-logos .logo-cycle li img {/* width: 60%;width: 100%; */ width: 90%; height: auto;margin: auto;}

.footer .brand-logos .left {
  position: absolute;
  top: 40%;
  left: 30px;
  left: 5%;
  color: #9b9d8a;
  text-decoration: none;
  font-family: 'Patua One', sans-serif;
  font-weight: bold;
}

.footer .brand-logos .right {
  position: absolute;
  top: 35%;
  top: 40%;
  right: 40px;
  right: 90px;
  right: 3.5%;
  color: #9b9d8a;
  text-decoration: none;
  font-family: 'Patua One', sans-serif;
  font-weight: bold;
}

.footer .brand-logos a {text-decoration: none;}

#menu-footer-nav {margin-left: 70px;}

#menu-footer-nav.nav li a {
    padding: 0 32px 0 0;
    color: #9b9d8a;
  }

#menu-footer-nav.nav li a:hover {
    color: #CACC2E;
  }

.footer p {
  font-size: 0.95em;
  font-family: 'Patua One', sans-serif;
  margin-left: 70px;
  letter-spacing: 0.02em;
  color: #9b9d8a;
  text-transform: uppercase;
/*  text-align: center; */
}

.footer .hevi {display: inline-block;width: 45%;}
.footer div.phone {display: inline-block;width: 42%;text-align: right;margin-left: 0 !important;vertical-align: top;}
.footer p.phone {margin-bottom: 0;}
.footer p.phone a {color: #cfd8c5;text-decoration: none;}

.footer .hevi.disclaimer {width: 100%}
.footer .disclaimer p {
	font-family: 'adelle','Patua One',sans-serif;
	font-size: .75rem;
	text-transform: none;
  }

.footer .disclaimer ul {
	margin-left: 90px;
	margin-bottom: 40px;
	}

.footer .disclaimer ul li {
  font-size: .75rem;
  list-style: disc;
  letter-spacing: 0.02em;
  color: #9b9d8a;
 }

.footer .fish {
  text-align: left;
  padding-right: 80px;
  }

.footer .fish a {
  text-decoration: none;
  color: #cfd8c5;
  }

.footer .social-icons {
	margin: 0;
}

.footer .social-icons li {
  display: inline-block;
  font-size: 27px;
  margin-left: 3px;
}
/*
  font-family:'DIN Next W01 Bold';
  font-family:'DIN Next W01 Medium';
  font-family:'DIN1451W01-Mittelschrif';
*/

.footer .source-org span {padding-right: 70px;}
.footer .source-org span.hevishot span {padding-right: 0px;}



/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */

@media only screen and (max-width: 845px) {
	#right-col .product-image {
	  width:100%;
	  display: block;
	  margin: 0 auto;
	}

	#right-col .product-image img {
		display: block;
		width: 100%;
		max-width: 200px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 16px;
	 }

	#right-col .product-info {
	  width:100%;
	  display: block;
	  margin: 0 auto;
	}
}

/* @media only screen and (max-width: 568px) { */
@media only screen and (max-width: 599px) {

  body{/* background: url(/media/mobile_bg.jpg) 0 0 repeat; */}

  #container {position: relative;height: 100%;overflow:visible;}
  
  #container {padding-top: 190px;}
  
  #mobile-menu {margin-top: -190px;}

  .wrap {width: 100%;}
  #inner-content.wrap {overflow: hidden;}

  nav.desktop {display: none;}
  nav.mobile {display: block;position: absolute;display: none; }
  .mobile {display: block;}

  #search #subscribe,
  #search a.signup,
  .social-bar, .home .home-touts.desktop,
  #left-col,
  #instagram-gallery,
  .footer #menu-footer-nav,
  .footer .brands {display: none;}

  #inner-header {min-height: 100px;}

  #logo {min-width: 100px;width: 140px;top: 37px;}

  #menu-icon {
    position: absolute;
    width: 40px;
    text-align: center;
    top: 115px;
	width: 68px;
    right: 30px;
    font-family: 'DIN1451W01-Mittelschrif','Helvetica Neue',​Helvetica,​Arial,​sans-serif; */
    text-transform: uppercase;
    font-size: .85em;
  }

  #menu-icon a {
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 20;
    text-decoration: none;
    color: #e4e525;
  }

  #menu-icon h4 {display: none;}
  #menu-icon h4 a {color: #9d9c8a;}

  #menu-icon span {
    display: block;
    margin: 0px 2px 9px 0;
    height: 10px;
    line-height: 4px;
    border-radius: 5px;
    background-color: #b1c086;
  }

  #search {top: 14px;}

  #search #searchform {
    right: 0px;
    top: 0px;
    }

  #search #searchform #s {width: 80px;}

  #phone {
      left: auto;
      right: 15px;
      top: 55px;
      text-align: right;
  }

  #phone .hours, #phone .phone {display: block;}

  #phone .phone {
    font-size: 1.1em;
    }

  #phone .hours {font-size: .9em;margin-top: -3px;}

  #main {
    width: 100%;
    padding: 1.5em 2.5%;
    padding: .25em 2.5%;
  }

  h1 {font-size: 1.85em;}
  h2 {font-size: 1.5em;}

  .sidebar {display: none; }

  .home-touts.mobile {
    display: block;
  }

 .home .entry-content {
   border: none;
   margin: 0;
   padding: 0;
   width: 100%;
 }

 .home #main {
   width: 96%;
   margin: auto;
   padding: 0;
   min-height: 200px;
 }

 .home #tout1A {margin: 15px 0;}

 .home #tout1A img,
 .home #tout3A img {
    width: 100%;
    height: auto;
    background: rgba(45, 34, 6, .18);
  }

  .home #right-col.bi-col {
    border: none;
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .home .entry-content #right-col.bi-col h2,
  .home .entry-content #right-col.bi-col h3 {text-transform: none;color: #2e2a0b;text-align: center;}

  .home .entry-content #right-col.bi-col h2 {margin: 0.3em 0 0.2em 10px; text-transform: uppercase;}
  .home .entry-content #right-col.bi-col h3 {margin: 0.5em 0 0.5em 10px;text-align: center;line-height: 1.4;}
  .home .entry-content #right-col.bi-col h3 a {color: #806d37;}
  .home .entry-content #right-col.bi-col h3 a:hover {color: #CACC2E;}

  .home #right-col.bi-col p,
  .home #right-col.bi-col a.read-more {display: none;}

 #mobile-home #sign-up {
 	display: block;
 	margin: 20px 0;
 	padding: 20px 0;
 	border-top: 2px dashed #bac3b0;
    border-bottom: 2px dashed #bac3b0;
 	}
 #mobile-home #sign-up .signup {
  display: block;
  margin: 10px 0px;
  float: none;
  font-size: 28px;
  text-align: center;
  color:  #2e2a0b;
  }
 #mobile-home #sign-up .signup span {color: #CACC2E;}
 
 #mobile-home #sign-up .signup:hover {color: #CACC2E;}
 
 #rebate {text-align: center;}
 #rebate h3 a {font-size: 36px; color: #2e2a0b;}
 #rebate h3 a span {color: #CACC2E;}
 
 #rebate h3 a:hover, #rebate h3 a:hover span {color: #CACC2E;}
 
.home #main ul.social-icons.mobile {
  list-style-type: none;
  margin: 0 0 0 0px;
  padding: 40px 0 15px 0;
  text-align: center;
  clear: both;
  }

 .home  #main .social-icons.mobile li {
  display: inline-block;
  margin: 5px 8px;
  font-size: 45px;
  margin-bottom: 0;
  }

 .home #main .social-icons.mobile li a {color: #2e2a0b;}
 .home #main .social-icons.mobile li a:hover {color: #CACC2E;}

 #mobile-home .hunter {
  clear: both;
  float: none;
  padding: 10px 10px;
  border-top: solid 2px #333534;
  border-bottom: solid 2px #333534;
  }

 #mobile-home .hunter img {
  float: left;
  margin-right: 20px;
  }

 #mobile-home .hunter a {
  color: #9b9d8a;
  text-decoration: none;
  text-transform: uppercase;
}

 #mobile-home .hunter a.meet {
  width: 76%;
  font-size: 1.4em;
  display: inline-block;
  line-height: 1.1;
  }
 #mobile-home .hunter a.meet span {color: #CACC2E;}

.home #tout2A.tri-col {
  width: 100%;
  padding: 27px 19px 27px 19px;
  padding: 27px 0px 27px 0px;
  margin: 10px 0 10px 0;
  min-height: 78px;
  text-shadow: 1px 1px 3px #555;
/*  border-left: 2px dashed #94794b;
  border-right: 2px dashed #94794b; */
}

.home #tout2A.tri-col h3 {
  font-size: 2.225em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 3px 0;
  text-align: center;
/*  float: left; */
  }

.home #tout2A.tri-col p {
	margin-top: 0;
	margin-bottom: 10px;
	font-family: 'Patua One', sans-serif;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px #666;
  }

.home #tout2A.tri-col p a {color: #4e4610;font-weight: bold;text-decoration: none;}
.home #tout2A.tri-col p a span {color:  #CACC2E;}
.home #tout2A.tri-col p a:hover {color:  #CACC2E;}
.home #tout2A.tri-col h3 a {
  color: #2e2a0b;
  }

.home #tout2A.tri-col h3 a:hover {color:  #CACC2E;}

.home #tout2A.tri-col a.details {
  display: block;
  float: left;
  margin: 3px 0 0 0;
  padding: 0 40px 0 0;
  line-height: 31px;
  text-align: right;
  text-decoration: none;
  color: #94794b;
  background: url(/media/hm_circle_arw.png) right 4px no-repeat;
}

.home #tout2A.tri-col.catalog {
    padding: 7px 19px 7px 19px;
    margin: 20px 0 15px 0;
    min-height: 48px;
    background: rgba(45, 34, 6, .18);
}

.home #tout2A.tri-col.catalog a span {color: #CACC2E;}


#right-col .product-image {
  width:90%;
  display: block;
  margin: 0 auto;
}

#right-col .product-image img {
	display: block;
	width: 100%;
	max-width: 350px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 16px;
 }

#right-col .product-info {
  width:90%;
  display: block;
  margin: 0 auto;
}




   .ammo-head p {display: none;}
   .ammo-head h1.archive-title {font-size: 2.4em;width: 75%;margin-bottom: 15px;}
   .ammo-head img.shell-schematic {
    margin-top: -140px;
    min-width: 140px;
    -ms-transform: rotate(-0deg);
    -webkit-transform: rotate(-0deg);
    transform: rotate(-0deg);
    }

    .hs_products h3.recommended {display: none;}

    .post-type-archive-hs_products #main {
        padding: 1.5em 2.5% 0 2.5%;
        padding-bottom: 0;
    }

    .filter-selects {padding-top: 10px;}

    .filter-selects #select-use.select-wrap {
      display: block;
    }

    .filter-selects .select-wrap {
        padding: .5em 2%;
        width: 49%;
    }

    .filter-selects .select-wrap span.customSelect {
        white-space: nowrap;
        font-size: .75em;
    }

    .filter-selects select {
      font-size: 1em !important;
    }

    #product-boxes-wrap {
        padding: .75em 0em .75em;
    }

    #product-boxes-wrap .product-wrap {
      width: 100%;
      width: 85%;
      margin: 4px 0px 4px 7.5%;
      float: none;
      display: table-cell;
      overflow: hidden;
      vertical-align: middle;
      height: 70px;
      position: relative;
    }

    #product-boxes-wrap .product-wrap img {
      height: auto;
      width: 28%;
      margin-top: -15px;
      margin-left: 0px;
      float: left;
      min-width: 120px;
      min-width: 90px;
      margin-top: -1px;
/*      margin-top: -3.5%;  */
      margin-left: 5%;
    }

    #product-boxes-wrap .product-wrap .product-list {
      background: url(/media/ammo_box_texture_vert.jpg) 0 0 #3c3612 no-repeat;
      margin-top: 0px;
      padding: .5em 2%;
      height: 70px;
      width: 62%;
      position: absolute;
      right: 0;
    }
/*
    #product-boxes-wrap .product-wrap .product-list:nth-child(even)  {
    background-position: 0 -15px;
    }
    #product-boxes-wrap .product-wrap .product-list:nth-child(odd)  {
    background-position: 0 0;
    }
*/
    #product-boxes-wrap .product-wrap .product-list h3 {
      font-size: 1.1em;
      line-height: 1.1;
      margin-bottom: 0em;
      padding-top: 3px;
    }

    #product-boxes-wrap .product-wrap .product-list h3 span {
/*     padding-top: 3px;
      font-size: 0.7em;
      padding-top: 0px;
      font-size: 1em; */
      display: block;
    }

    #product-boxes-wrap .product-wrap .product-list ul.gauge-list {
      display: none;
    }

    .active-filters {position: absolute; z-index: -1;}

  /** Product pages **/

  .single-hs_products #main {
    padding: .5em 0 1.5em 0;
    background: rgba(45, 38, 11, .60);
    }

  .hs_products .article-header,
  .hs_products .entry-content {
    position: relative;
    float: none;
    width: 100%;
  }
  .hs_products .entry-content {
      float: none;
      width: 94%;
      margin: 10px auto;
      padding-top: 70px;
  }
  .hs_products h1.single-title {
    margin-bottom: 0;
    float: none;
  }

  .image_wrap {
     width: 100%;
     border: none;
     float: none;
  }

  .hs_products img.made-in-usa {
      position: absolute;
      float: right;
      margin: 0px 0 0px 0;
      top: 10px;
      right: 20px;
  }

  .hs_products .packaging {
    position: absolute;
    top: 10px;
    margin-bottom: .5em;
    }

    .hs_products .retail-links a {font-size: .8em;}
    .image_wrap h3.choke-interchange a.view-more {font-size: .8em;}

    .gauge-wrap td.gauge-cell {
        width: 7%;
    }
  .gauge-wrap td.product-grid {
      width: 93%;
  }
  .gauge-wrap h3.gauge {font-size: .8em;min-width: 50px;}
  .gauge-wrap h3.gauge span {font-size: 1.5em;}
  .gauge-wrap td.product-grid th,
  .gauge-wrap td.product-grid td {font-size: 0.75em;}

  .gauge-wrap .length {width: 22.5%;}
  .gauge-wrap .weight {width: 25%;}
  .gauge-wrap .fps {width: 15%;}
  .gauge-wrap .size {width: 18%;}
  .gauge-wrap .product_num {width: 19.5%;}

  .hevi-choke table, .hevi-choke td.gauge-cell {
      display: block;
  }

  .hevi-choke .gauge-wrap td.gauge-cell {display: block; margin-bottom: 5px; width: 100%;}
  .hevi-choke .gauge-wrap h3.gauge {padding: 10px 0;}
  .hevi-choke .gauge-wrap h3.gauge span {display: inline;}
  .hevi-choke .gauge-wrap td.product-grid {display: block; width: 100%;border-left: 0;}


  .hevi-choke .gauge-wrap .model {width: 41%;}
  .hevi-choke .gauge-wrap .range {width: 12%;}
  .hevi-choke .gauge-wrap .ported {width: 14%;}
  .hevi-choke .gauge-wrap .constriction {width: 15%;}
  .hevi-choke .gauge-wrap .product_num {width: 14%;}

  .gauge-wrap td.product-grid th span {display: none;}

  .hevi-choke .gauge-wrap .model a {text-decoration: none; color:#d2dbca;}

  /*************/

  /** Find a Retailer Page **/

  /************/

  .page-id-28 .tabs li {
    margin: 0 1.5%;
    width: 30%;
    }

  .page-id-28 .tabs li a {font-size: 1.2em;}


  th.wpgmza_table_marker, td.wpgmza_table_marker {display: none;}

  #wpgmza_map_1 {width: 95% !important;height: 300px !important;}
  #map-finder {display: none !important;}
  .page-id-28 .tabs li.map-finder {display: none !important;}
  .page-id-28 #wpgmza_table_1_wrapper {display: block;}

  #full-listing {display: block;}


  /*************/

  /** Prostaff Members Pages **/

  /************/

  .pro-staff-list article.prostaff:first-child {border-top: solid 2px #94794b;}

  .pro-staff-list article.prostaff {
    padding: 0.75em 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-bottom: auto;
    }

  .pro-staff-list .authorInfo h3 {font-size: 1.2em}
  .pro-staff-list #main ul.prostaff-stats li {display: none;padding-left: 0px;}
  .pro-staff-list #main ul.prostaff-stats li.hunting {display: block;}

  .pro-staff-list #main ul.prostaff-stats li span {
    display: inline;
    width: auto;
    float: none;
    margin-left: 0px;
  }

  .pro-staff-list .authorAvatar h4 {font-size: 0.80em;line-height: 1.25; padding: 5px 0;}

  .post-type-archive-weekly_hunter h3,
  .single-weekly_hunter h3 {
    margin-top: 0px;
    font-size: 1.2em;
    line-height: 1.1;
    }

    .post-type-archive-weekly_hunter article.weekly_hunter h4,
    .single-weekly_hunter article.weekly_hunter h4 {
      font-size: 1em;
    }

  .post-type-archive-weekly_hunter .article-header aside.featured {
      width: 25%;
      margin: 0 4%;
  }
  .post-type-archive-weekly_hunter section.entry-content {
      padding-left: 33%;
  }

  #main article.type-post img {
    max-width: 100%;
    height: auto;
  }

  section.post-excerpt {margin-left: -51%;clear: left;padding-top: 10px;}

  .footer #inner-footer {width: 96%;padding: 12px;}
  .footer .fish {padding-right: 0;padding-top: 15px;}

  .footer .copyright {
    margin: 0 0 0 0;
    text-align: left;
  }
  .footer .copyright span {
    margin: 0 0 0 0;
    display: inline-block;
  }
  .footer .copyright br {display: none;}
  
  .footer .hevi {display: block;width: auto;}
  .footer div.phone {display: block;width: auto;text-align: left;}
  .footer p.phone { margin-left: 0;}
  .footer .social-icons {display: none;}
  
  .footer .disclaimer p {
	margin-left: 0;
  }

.footer .disclaimer ul {
	margin-left: 20px;
  }
  
  /*************/

  /** mobile menu **/

  /************/

  #mobile-menu {
    display: block;
    display: none;
    position: absolute;
    z-index: 10000;
    right: -210px;
  }

  nav.mobile {
    display: block;
    }

  #mobile-menu .nav li {display: block;}

  .nav li ul.sub-menu, .nav li ul.children {border: none;}
  .nav li ul.sub-menu li a, .nav li ul.children li a {padding-left: 20px;}

  nav.multilevelpushmenu_wrapper {
  	position: absolute;
  	overflow: hidden;
  	min-width: 100%;
  	min-height: 100%;
  	margin: 0;
  	padding: 0;
  }

  nav.multilevelpushmenu_wrapper .levelHolderClass {
  	position: absolute;
  	overflow: hidden;
  	top: 0;
/*  background: #336ca6;
 	background: #2f2f27 url(/media/nav_bg_dark.jpg) 0 0 repeat; */
  	background: #2f2f27 url(/media/nav_bg_dark2.jpg) 0 0 repeat;
  	width: auto;
  	min-height: 100%;
  	zoom: 1;
  }

  nav.multilevelpushmenu_wrapper .levelHolderClass  .levelHolderClass {
    background-image: url(/media/nav_bg_light2.jpg);
  }

  nav.multilevelpushmenu_wrapper .levelHolderClass  .levelHolderClass ul {
    padding-top: 15px;
  }

  nav.multilevelpushmenu_wrapper .ltr {
  	margin-left: -100%;
  	left: 0;
  	-moz-box-shadow: 5px 0 5px -5px #111;
  	-webkit-box-shadow: 5px 0 5px -5px #111;
  	box-shadow: 5px 0 5px -5px #111;
  	filter: progid:DXImageTransform.Microsoft.Shadow(color=#111,direction=90,strength=2);
  }

  nav.multilevelpushmenu_wrapper .rtl {
  	margin-right: -100%;
  	right: 0;
  	-moz-box-shadow: 5px 0 5px 5px #111;
  	-webkit-box-shadow: 5px 0 5px 5px #111;
  	box-shadow: 5px 0 5px 5px #111;
  	filter: progid:DXImageTransform.Microsoft.Shadow(color=#111,direction=270,strength=2);
  }

  nav.multilevelpushmenu_wrapper .multilevelpushmenu_inactive {
 /* 	background: #2e6196; */
  }

  nav.multilevelpushmenu_wrapper h2 {
  	font-size: 1.5em;
  	line-height: 1em;
  	font-weight: bold;
  	color: #1f4164;
  	padding: 0 .4em 0 .4em;
  }

  nav.multilevelpushmenu_wrapper ul {
  	list-style: none;
  	padding: 24px 0 0 0;
  	margin: 0;
  }

  nav.multilevelpushmenu_wrapper li {
  	cursor: pointer;
  	padding: .4em .4em .4em .4em;
  	padding: 0;
  	margin-bottom: 15px;
   	font-size: 1em;
 }

  nav.multilevelpushmenu_wrapper li:last-child {
/*  	border-bottom: 1px solid #295685; */
  }

  nav..multilevelpushmenu_wrapper li:hover {
  	background-color: #295685;
  }

  nav.multilevelpushmenu_wrapper li a {
  	display: block;
  	outline: none;
  	overflow: hidden;
  	font-size: 0.9em;
  	line-height: 1.1;
  	padding: 5px 15px;
  	text-decoration: none;
  	color: #d2e4aa;
  	text-align: left;
  	width: 100%:
  }

  nav.multilevelpushmenu_wrapper li a:hover {
  	color: #000;
  	background: #e4e525;
  }

  nav.multilevelpushmenu_wrapper .backItemClass {
    margin-top: 28px;
  	display: block;
  	padding: .4em .4em .4em .4em;
  	background: #2e6196;
  	background: url("/media/inner_pg_mid_hd_bg.jpg") repeat center top;
/*  	border-top: 1px solid #295685;  */
  }

  nav.multilevelpushmenu_wrapper .backItemClass a:hover {
    background: none;
    color: #e4e525;
  }


  nav.multilevelpushmenu_wrapper .floatRight {
  	float: right;
  }

  nav.multilevelpushmenu_wrapper .floatLeft {
  	float: left;
  }

  nav.multilevelpushmenu_wrapper .cursorPointer {
  	cursor: pointer;
  }

  nav.multilevelpushmenu_wrapper .iconSpacing_ltr {
  	padding: 0 .4em 0 0;
  }

  nav.multilevelpushmenu_wrapper .iconSpacing_rtl {
  	padding: 0 1.5em 0 0em;
  	font-style: normal;
  }

  #UPS-pickup #shot-type1 label,
  #UPS-pickup #shot-type2 label,
  #UPS-pickup #shot-type3 label,
  #UPS-pickup #shot-type4 label {display: block;}
  
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/


  .wrap {
     width: 100%;
    }

   #inner-header,
   #inner-footer {
     width: 100%;
     max-width: 1000px;
   }

    #product-boxes-wrap .product-wrap img {margin-top: -3.5%;}

  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
        plan your menus and drop-downs wisely.
        */ }
        .menu ul li a {
          /*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */ }

  .home .social-bar {padding-left: 25px;}
  .home .social-bar .hunter a.meet {
    font-size: 1.1em;
    font-size: 0.82em;
  }

  .home .social-icons img {
  	max-height: 32px;
  	max-width: 32px;
  	margin-top: 5px;
  }

  .home a.home-rebates {
    font-size: 15px;
    padding: 0 5px;
    }

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



  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */

  .home #tout2.tri-col h3 {
    font-size: 1.2em;
  }

  .home #tout2.tri-col {
    min-height: 0 !important;
    max-height: 142px;
    padding-bottom: 6.5%;
    padding-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .home #tout2.tri-col span {font-size: .75em;line-height: 1;}
  .home #tout2.tri-col a.details {font-size: .8em;margin-top: 0;margin-bottom: -20px;}
  .home #tout2.tri-col span.catalog {font-size: .95em;}

  #locate {display: none;}

  .home #main {padding: 0;}

  .ammo-head img.shell-schematic {margin-top: -90px;min-width: 200px;}

  }
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
/*
@media only screen and (min-width: 581px) {

  #menu-main-nav-1.nav li a {padding: 0 10px;}

}

@media only screen and (min-width: 600px) {

  #menu-main-nav-1.nav li a {padding: 0 13px;}

}
*/

@media only screen and (min-width: 600px) {

/*  body {background: #000000 url(/media/hevi_site_bg1.jpg) top center no-repeat;}
  body {background: #000000 url(/media/hevi_site_bg2.jpg) top center no-repeat;} */
  #container {position: relative; overflow: hidden;}
  #inner-header {min-height: 90px;height: 110px;}

  .mobile {display: none;}
  nav.desktop {display: block;}
  nav.mobile {display: none;}
  #mobile-menu {display: none;}

  #phone .hours {display: block;font-size: 1em;margin-top: -3px;}
  #phone {
      right: auto;
      top: 20px;
      left: 16.75%;
      text-align: left;
  }

  #phone .phone {font-size: 1.4em;}

  #search {top: 20px; right: 5px;}
  #search a.signup, #sign-up a.signup {
    margin-right: 0px;
    font-size: 13px;
    margin-top: 9px;
  }
  #search .email input#email, #sign-up .email input#email {width: 144px;}

  #main {
    width: 85%;
    padding: 1.5em;
  }

  h1 {font-size: 2.25em;margin-top: .25em;}
  h2 {font-size: 1.75em;}

  #menu-main-nav-1.nav li {font-size: .75em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}
  #menu-main-nav-1.nav li a {padding: 0 5px;}
  #menu-main-nav-1.nav {right: 0;}

  #menu-main-nav-1.nav li.menu-item-18 ul.sub-menu {left: -74px;}

  .nav li ul.sub-menu,
  .nav li ul.children {
      margin-top: 0;
      border: 1px solid #ccc;
      border-top: 0;
      position: absolute;
      overflow: hidden;
      visibility: hidden;
      z-index: 8999;
     }

    .nav li:hover ul.sub-menu,
    .nav li:hover ul.children {
      top: auto;
      overflow: visible;
      visibility: visible;
    }

      .nav li ul.sub-menu,
      .nav li ul.children {
        margin-top: 0;
        border: 1px solid #ccc;
        border-top: 0;
        position: absolute;
        overflow: hidden;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .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 a,
          .nav li ul.children li a {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px solid #ccc; }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }

  .home #main {
    padding: 35px 25px 0;
  }

 .home .entry-content {
/*   border-top: 2px solid #333; */
   margin: 30px 0 0;
/*   padding: 0 12px;	*/
 }

   .home .entry-content h2 {
    font-size: 1.3em;
    line-height: 1.1;
    }

   .page-id-28 .tabs li {
    margin: 0 3%;
    width: 27%;
    }

    .page-id-28 .tabs li a {font-size: 1.4em;}

    .ammo-head p {display: block;}
    .ammo-head h1.archive-title {padding-right: 0px;font-size: 3em;}
    .ammo-head img.shell-schematic {
      margin-top: -0px;
      -ms-transform: rotate(-10deg);
      -webkit-transform: rotate(-10deg);
      transform: rotate(-10deg);
    }

    .use-grid {display: none;}
    .filter-selects {padding-top: 15px;}
    .active-filters {position: fixed; z-index: 1000;}
    #product-boxes-wrap {
        padding: 1em 1em 1.5em;
    }

    #product-boxes-wrap .product-wrap {
      height: auto;
      width: 20%;
      margin: 0 1% 1em 1%;
    }

    #product-boxes-wrap .product-wrap img {
        width: 100%;
        margin-top: 0;
    }

    #product-boxes-wrap .product-wrap .product-list {
      background: url("/media/ammo_box_texture.jpg") no-repeat center top #3c3612;
      margin-top: -20px;
      padding: 24px 2% 5px 2%;
      height: 110px;
      height: 138px;
      position: relative;
      right: auto;
    }

    #product-boxes-wrap .product-wrap .product-list h3 {
      font-size: 1em;
      line-height: 1.2;
      margin-bottom: 0.25em;
      padding-top: 0;
    }

    #product-boxes-wrap .product-wrap .product-list h3 span {
/*      padding-top: 3px;
      font-size: 0.7em; */
      display: inline;
  /*  padding-top: 0px;
      font-size: 1em; */
    }

    #product-boxes-wrap .product-wrap .product-list ul.gauge-list {
      display: block;
      margin: -8px 0 0 -1%;
    }

    .product-list ul.gauge-list li {
      font-size: .65em;
      width: 45%;
    }

    .product-list ul.gauge-list li span {
      width: 22px;
      padding-right: 5px;
    }

    /** Product Pages **/

    .single-hs_products #main {
      padding: 1.5em;
      background: rgba(45, 38, 11, .60);
      }

      .hs_products .article-header, .hs_products .entry-content {
        float: right;
        width: 49.75%;
      }

    .image_wrap {
     float: left;
     width: 47.5%:
     }

     .hs_products .retail-links a {
        font-size: .825em;
     }

     .image_wrap h3.choke-interchange a.view-more {font-size: .825em;}

     .hs_products .packaging {
      position: relative;
      margin-bottom: 1.5em;
      top: auto;
      }
     .hs_products img.made-in-usa {
          position: relative;
          float: right;
          margin: 5px 25% 20px 0;
          right: auto;
          top: auto;
      }

    .gauge-wrap td.gauge-cell {
        display: table-cell;
        padding: 0 2.5%;
        width: 11%;
    }
    .gauge-wrap td.product-grid {
        width: 89%;
    }
    .gauge-wrap h3.gauge {font-size: 1em;}
    .gauge-wrap h3.gauge span {font-size: 1.75em;}
    .gauge-wrap td.product-grid th,
    .gauge-wrap td.product-grid td {font-size: 0.9em;}
    .gauge-wrap td.product-grid th span {display: inline;}

    .gauge-wrap .length {width: 22.5%;}
    .gauge-wrap .weight {width: 27%;}
    .gauge-wrap .fps {width: 14%;}
    .gauge-wrap .size {width: 20%;}
    .gauge-wrap .product_num {width: 16.5%;}

    .hevi-choke .gauge-wrap .model {width: 45%;}
    .hevi-choke .gauge-wrap .range {width: 10%;}
    .hevi-choke .gauge-wrap .ported {width: 8%;}    
    .hevi-choke .gauge-wrap .constriction {width: 20%;}
    .hevi-choke .gauge-wrap .product_num {width: 10%;}

  th.wpgmza_table_marker, td.wpgmza_table_marker {display: table-cell;}
  .dataTables_filter {
      width: 60%;
  }

  .dataTables_length {
      width: 30%;
  }

  #wpgmza_map_1 {width: 100% !important;height: 500px !important;}



   /*********************
  SIDEBARS & ASIDES
  *********************/
  
  #sidebar1 {display: none;}
  
  .sidebar {
    float: right;
/*    margin-top: 2.2em; */
    padding: 1.5em 2.5%;
    width: 29.5%;
    }

   #categories-2 {display:none;}

  .widgettitle {
/*    border-bottom: 2px solid #444;  */
    margin-bottom: 0.75em;
    padding: 0 0.75em;
    font-size: 1.1em;
    line-height: 2;
    color: #9b9d8a;
    color: #797b68 !important;
    text-transform: uppercase;
/*    background: url(/media/inner_pg_mid_hd_bg.jpg) top center no-repeat;
    text-shadow: 1px 1px 2px #000; */
    }

  .widget {
    padding: 0 10px;
    margin: 0 0 2.2em 0; }
    .widget>ul {
      margin-left: 0.75em;
    }
    .widget ul li {
      margin-bottom: 0.5em;
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }

    .widget li a {text-decoration: none;}
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */

  .pro-staff-list article.prostaff {padding: 0.75em;border-top: solid 2px #94794b; margin-bottom: 1.5em;}

  .pro-staff-list .authorInfo h3 {font-size: 1.5em}

  .pro-staff-list ul.prostaff-stats li {display: block;padding-left: 130px;}

  .pro-staff-list ul.prostaff-stats li span {
    display: block;
    width: 130px;
    float: left;
    margin-left: -130px;
  }

  .pro-staff-list .authorAvatar h4 {font-size: 0.60em;line-height: 28.8px; padding: 0px 0;}

  .post-type-archive-weekly_hunter h3,
  .single-weekly_hunter h3 {
    margin-top: -5px;
    margin-bottom: 5px;
    font-size: 1.5em;
    line-height: 1.1;
    }

    .post-type-archive-weekly_hunter article.weekly_hunter h4,
    .single-weekly_hunter article.weekly_hunter h4 {
      font-size: 1.25em;
    }

  .post-type-archive-weekly_hunter .article-header aside.featured {
      margin: 0 2.3%;
      width: 18.4%;
  }

  .post-type-archive-weekly_hunter section.entry-content {
      padding-left: 23%;
  }


}

@media only screen and (min-width: 568px) and (max-width: 615px) {

  .home .social-bar {padding-left: 10px;padding-right: 10px;}

}

@media only screen and (min-width: 680px) {
  #menu-main-nav-1.nav li {font-size: .75em;}
  #menu-main-nav-1.nav li a {padding: 0 10px;}
  
 .home .social-icons img {
  	max-height: none;
  	max-width: none;
  	margin-top: 0px;
  }
  
  .home .social-bar .hunter a.meet {
    font-size: 1.1em;
    font-size: 0.95em;
  }
}

@media only screen and (min-width: 720px) {

  .wrap {
     width: 96%;
    }

   #inner-header,
   #inner-footer {
     width: 96%;
     max-width: 1000px;
   }

  #search {right: 3%;}
  #search a.signup, #sign-up a.signup {
    margin-right: 0px;
    font-size: 13px;
    margin-top: 5px;
  }
  #search .email input#email, #sign-up .email input#email {width: 164px;}
  #menu-main-nav-1.nav li {font-size: .8em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}

  .use-grid li {
    width: 90px;
    min-width: 90px;
    margin: 12px 6px 0 6px;
  }

  .use-grid li h4.use-term {
/*    width: 86px;  */
    font-size: 0.65em;
    line-height: 2;
  }

  .use-grid {display: block;}

   .filter-selects {/* padding-top: 0px;border-top: solid 2px #2E2A0B; */}

    .filter-selects #select-use.select-wrap {
        display: none;
    }

    .filter-selects #select-gauge.select-wrap span.customSelect,
    .filter-selects #select-gauge.select-wrap select:active,
    .filter-selects #select-gauge.select-wrap select:focus  {
      background-color: #94794b;
      }

    .filter-selects .select-wrap {
        float: left;
  /*      border-top: 2px solid #797b68; */
        padding: 1.5em 15px;
        width: 33%;
    }

    .filter-selects #select-gauge.select-wrap {
        border-left: 2px solid #797b68;
        border-right: 2px solid #797b68;
    }

    .hs_products h3.recommended {/* display: block; */}

    #product-boxes-wrap .product-wrap {
      width: 20%;
      margin: 0 1% 1em 1%;
    }

    #product-boxes-wrap .product-wrap .product-list {
      margin-top: -20px;
      padding: 24px 2% 5px 2%;
      height: 110px;
      height: 138px;
    }

    #product-boxes-wrap .product-wrap .product-list h3 {
      font-size: 1em;
      margin-bottom: 0.25em;
    }

    #product-boxes-wrap .product-wrap .product-list h3 span {
/*   padding-top: 3px;
      font-size: 0.7em;
      padding-top: 0px;
      font-size: 1em; */
    }

    #product-boxes-wrap .product-wrap .product-list ul.gauge-list {
      margin: -8px 0 0 -1%;
    }

    .product-list ul.gauge-list li {
      font-size: .75em;
      width: 45%;
    }

    .product-list ul.gauge-list li span {
      width: 26px;
      padding-right: 5px;
    }

 .hs_products .packaging {margin-bottom: 2em;}

 .page-id-28 .tabs li {
    width: 28%;
    margin: 0 2%;
  }
  .page-id-28 .tabs li a {
    padding: 5px;
    font-size: 1.6em;
  }

  .pro-staff-list .authorAvatar h4 {font-size: 0.70em;}


}

@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 760px;
    width: 96%;
    }

   #inner-header,
   #inner-footer {
     width: 96%;
     max-width: 1000px;
   }
  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav ul {
      margin-top: 0; }
    .nav li {
/*      float: left;  */
      position: relative;
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      .nav li a {
        border-bottom: 0;
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }

        #menu-main-nav-1.nav li a {padding: 0 10px;}

        #menu-main-nav-1.nav li {font-size: .8em;}
        #menu-main-nav-1.nav li li {font-size: 1em;}

        .nav li a:hover, .nav li a:focus {
   /*       color: white;
          text-decoration: underline; */
          }
      .nav li ul.sub-menu,
      .nav li ul.children {
        margin-top: 0;
        border: 1px solid #ccc;
        border-top: 0;
        position: absolute;
        overflow: hidden;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .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 a,
          .nav li ul.children li a {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px solid #ccc; }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }

      .nav li:hover ul {
        top: auto;
        overflow: visible;
        visibility: visible; }

  /* end .nav */

  .featured-single img {
    width: 100%;
    height: auto;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */ }

  /* end .footer-links */

  .home #tout2.tri-col {
    min-height: 120px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .home #tout2.tri-col h3 {
    font-size: 1.4em;
  }

  .home #tout2.tri-col span {font-size: .9em; line-height: 1.05;}
  .home #tout2.tri-col span.catalog {font-size: .9em;}
  .home #tout2.tri-col a.details {font-size: 1em;}

  #locate {display: block;bottom: 5px;}

  .home .entry-content {
 /*     margin: 30px 5px 0;
      padding: 0 12px; */
    }
  .home .entry-content h2 {
    font-size: 1.4em;
    line-height: 1.2;
    }

  .page-id-28 .tabs li a {font-size: 1.6em;}

  .use-grid li {
    width: 100px;
    min-width: 100px;
    margin: 12px 6px 0 6px;
  }

  .use-grid li h4.use-term {
/*    width: 96px;  */
    font-size: 0.7em;
    line-height: 2;
  }

  #product-boxes-wrap {
  /*    background: url("/media/ammo_brwn_bg.png") repeat scroll center top rgba(0, 0, 0, 0);	*/
      min-height: 384px;
      padding: 1.5em 1.5em 2em;
  }


  }

@media only screen and (min-width: 780px) {

  #menu-main-nav-1.nav li {font-size: .83em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}

/*  .home  #main {
    width: 83%;
  } */

  .home .social-bar .hunter a.meet {
    font-size: 1.4em;
    font-size: 1.0em;
  }

  .home #tout2.tri-col h3 {
    font-size: 1.4em;
  }

  .home #tout2.tri-col {
    min-height: 140px;
    padding-top: 0px;
   }

  .pro-staff-list .authorAvatar h4 {font-size: 0.75em;}

  section.post-excerpt {margin-left: 0;clear: none;padding-top: 0px;}




}


@media only screen and (min-width: 805px) {

  #menu-main-nav-1.nav li {font-size: .88em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}
  #menu-footer-nav.nav {text-align: center;}
  #menu-footer-nav.nav li a {padding: 0 15px;}
  #menu-main-nav-1.nav {right: 10px;}

  #menu-main-nav-1.nav li.menu-item-18 ul.sub-menu {left: -32px;}

  .home #tout2.tri-col h3 {
    font-size: 1.6em;
  }

  .home #tout2.tri-col {
    min-height: 150px;
    padding-top: 5px;
   }

   .home #tout2.tri-col span {font-size: .9em; line-height: 1.2;}
   .home #tout2.tri-col span.catalog {font-size: .9em;}

    #locate {bottom: 10px;}

    .home .entry-content {
 /*     margin: 30px 15px 0;
      padding: 0 24px; */
    }

     .hs_products .packaging {margin-bottom: 2.5em;}

     .hs_products .retail-links a {
        font-size: 1em;
      }
      .image_wrap h3.choke-interchange a.view-more {font-size: 1em;}
}


@media only screen and (min-width: 840px) {

  #menu-main-nav-1.nav li {font-size: .92em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}
  #menu-footer-nav.nav li a {padding-right: 10px;padding-left: 0;}
  #menu-footer-nav.nav {text-align: left;}

  .home #tout2.tri-col {
    padding-left: 20px;
    padding-right: 20px;
    min-height: 142px !important;
  }

  .home .social-bar .hunter a.meet {
    font-size: 1.4em;
    font-size: 1.2em;
  }

 .gauge-wrap td.product-grid th,
 .gauge-wrap td.product-grid td {font-size: 1em;}




}

@media only screen and (min-width: 880px) {

  #menu-main-nav-1.nav li {font-size: .98em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}
  #menu-footer-nav.nav li a {padding-right: 20px;}

  #main {
    width: 85%;
  }

  .home .social-bar .hunter a.meet {
    font-size: 1.35em;
  }

  .home .social-bar {/* padding-left: 175px; */}

  .home #tout2.tri-col {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home #tout2.tri-col a.details {margin-top: 10px;}

  .pro-staff-list .authorAvatar h4 {font-size: 0.85em;}

}

@media only screen and (min-width: 900px) {

  #phone .hours {display: inline;}

  #menu-main-nav-1.nav li a {padding: 0 11px;}
  #menu-main-nav-1.nav li {font-size: 1em;}
  #menu-main-nav-1.nav li li {font-size: 1em;}
  #menu-footer-nav.nav li a {padding-right: 20px;}

  .home #tout2.tri-col {
    min-height: 150px;
    padding-top: 10px;
   }

  .home #tout2.tri-col h3 {
    font-size: 1.7em;
  }
	.home #tout2.tri-col span.catalog {
		font-size: 1.1em
	}
 .home #tout2.tri-col span {font-size: 1em;}

 #locate {bottom: 15px;}

  .home .entry-content {
/*    margin: 30px 35px 0;
    padding: 0 24px; */
  }

  .use-grid li {
    width: 120px;
    min-width: 120px;
    margin: 16px 8px 0px 8px;
  }

  .use-grid li h4.use-term {
    width: 100%;
    font-size: 0.9em;
    line-height: 2;
  }

  #product-boxes-wrap {
     padding: 2em 2em 3em;
  }

  #product-boxes-wrap .product-wrap {
    width: 20%;
    margin: 0 1% 1em 1%;
  }

  #product-boxes-wrap .product-wrap .product-list {
    margin-top: -20px;
    padding: 18px 2% 5px 2%;
    height: 127px;
    height: 157px;
  }

  #product-boxes-wrap .product-wrap .product-list h3 {
    font-size: 1.1em;
    margin-bottom: 0.75em;
  }

  #product-boxes-wrap .product-wrap .product-list h3 span {
/*    padding-top: 5px;
    font-size: 0.7em; */
  }

  #product-boxes-wrap .product-wrap .product-list ul.gauge-list {
    margin: -8px 0 0 -1%;
  }

  .product-list ul.gauge-list li {
    font-size: .9em;
    width: 45%;
  }

  .product-list ul.gauge-list li span {
    width: 28px;
    padding-right: 5px;
  }

 .hs_products .packaging {margin-bottom: 2em;}

}

@media only screen and (max-width: 940px) {
	
	.header {background-size: cover;}
	#inner-header {height: 125px;}
	
	#tagline {
		position: relative;
/*		top: 15px; */
		display: block;
		width: 55%;
	}

/*	#search {
		top: 40px;
	} */

}

@media only screen and (max-width: 599px) {
	
	.header {/* background-size: cover; */ height: 190px;background-color: rgba(31, 35, 32, .95);}
	#inner-header {height: auto;}
	
	#tagline {
		position: relative;
		top: 19px;
		display: block;
		max-width: 410px;
		padding: 0 20px;
		width: 100%;
		margin: 0 auto;
		float: none;
		right: 0;
	}

	#search {
		top: 55px;
		width: 45%;
	}
	
	#search #searchform {
	  position: relative;
	  top: 0px;
	  float: right;
	  background: #FFF;
	  width: 97%;
	}

	#search #searchform #searchsubmit {
	  float: right;
	  height: 34px;
	  padding-left: 0;
	  font-size: 1.2em;
	  line-height: 34px;
	  }

	#search #searchform #s {
	  float: left;
	  width: 75%;
	  font-size: 1.2em;
	  height: 34px;
	  line-height: 34px;
	  max-width: 400px;
	  text-align: right;
	  padding-right: 4px;
	  font-family: 'Patua One', sans-serif;
	  }
	
	#hero-wrap {
		min-height: 240px;
	}
	
	.home #hero-wrap {margin-top: 0;}
	
}

@media only screen and (max-width: 380px) {
	
/*	#tagline {max-width: 210px;} */

}

@media only screen and (min-width: 960px) {

  #menu-main-nav-1.nav li a {padding: 0 13px;}
  #menu-footer-nav.nav li a {padding-right: 32px;}

  .home #tout2.tri-col h3 {
    font-size: 1.8em;
  }

  .home #tout2.tri-col {
     min-height: 176px; 
  }

   .hs_products .packaging {margin-bottom: 2em;}


}


@media only screen and (min-width: 980px) {

  #menu-main-nav-1.nav li a {padding: 0 15px;}
  #menu-footer-nav.nav li a {padding-right: 32px;}

  .footer .fish {padding-right: 84px;}
  .footer .source-org span {padding-right: 60px;}

  .home #tout2.tri-col h3 {
    font-size: 2em;
    font-size: 1.95em;
  }
	.home #tout2.tri-col span.catalog {
		font-size: 1.2em
	}
}

@media only screen and (min-width: 1000px) {

  #menu-main-nav-1.nav li a {padding: 0 19px;}
  #menu-footer-nav.nav li a {padding-right: 32px;}

  .home #tout2.tri-col h3 {
    font-size: 2em;
    font-size: 1.95em;
  }
	.home #tout2.tri-col span.catalog {
		font-size: 1.2em
	}
  #product-boxes-wrap .product-wrap {
    width: 21%;
    margin: 0 1.2% 1em 1.2%;
  }


.lt-ie9 #product-boxes-wrap .product-wrap {
	margin-top: 10px;
    margin-bottom: 15px;
	}

  #product-boxes-wrap .product-wrap .product-list {
    margin-top: -20px;
    padding: 18px 2% 5px 2%;
    height: 127px;
    height: 158px;
  }

  #product-boxes-wrap .product-wrap .product-list h3 {
    font-size: 1.25em;
    margin-bottom: 0.75em;
  }

  #product-boxes-wrap .product-wrap .product-list h3 span {
/*    padding-top: 5px;
    font-size: 0.7em; */
  }

  #product-boxes-wrap .product-wrap .product-list ul.gauge-list {
    margin: -8px 0 0 -1%;
  }

  .product-list ul.gauge-list li {
    font-size: 1em;
    width: 45%;
  }

  .product-list ul.gauge-list li span {
    width: 33px;
    padding-right: 5px;
  }

}

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  .wrap { max-width: 1000px; }
  #menu-footer-nav.nav li a {padding-right: 32px;}

  .home #tout2.tri-col h3 {
    font-size: 2.1em;
    font-size: 2em;
  }

}



/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/


  }

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /*

  EXAMPLE
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go.

  */ }
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: 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; }

    }

 /* FF specific hack to not show graphic select arrow */
 /* needs to be at end of stylesheet, or it breaks CSS in other browsers. */

 @-moz-document url-prefix() {
  select {
     background-image: none;
  }
