/******************************************************************
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.
******************************************************************/
/*********************
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/
*/
/*********************
TYPOGRAPHY
*********************/
/*********************
BORDER RADIUS
*********************/
/*
NOTE: For older browser support (and some mobile),
don't use the shorthand to define *different* corners.

USAGE: .border-radius(4px);

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body,
button,
input,
select,
textarea {
  color: #5f5f5f;
  font-family: "proxima-nova", 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  background: #1a1a1a;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1,
.h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0.67rem 0;
}
h2,
.h2 {
  font-size: 2.8rem;
  margin: 0.83rem 0;
}
h3,
.h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
}
h4 {
  font-size: 1.7rem;
  margin: 1.33rem 0;
  font-weight: 700;
}
h5 {
  font-size: 1.5rem;
  margin: 1.67rem 0;
}
h6 {
  font-size: 1.4rem;
  margin: 2.33rem 0;
}
abbr[title] {
  border: 0;
}
b,
strong {
  font-weight: 700;
}
blockquote {
  margin: 1.6rem 40px;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000000;
}
p,
pre {
  margin: 1.6rem 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace,serif;
  _font-family: 'courier new', monospace;
  font-size: 1.4rem;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: '';
  content: none;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5rem;
}
sub {
  bottom: -0.25rem;
}
dl,
menu,
ol,
ul {
  margin: 1.6rem 0;
}
dd {
  margin: 0 0 0 40px;
}
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
form {
  margin: 0;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35rem 0.625rem 0.75rem;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
b,
strong,
.strong {
  font-weight: 700;
}
dfn,
em,
.em {
  font-style: italic;
}
small,
.small {
  font-size: 70%;
}
ul,
ol {
  padding: 0;
  list-style-type: none;
}
dd {
  margin: 0;
}
p:empty {
  display: none;
}
.sidebar ul,
.sidebar ol,
.commentlist {
  list-style: none;
  margin: 0;
}
.hidden {
  display: none;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.edd_errors,
.edd_success,
.fh-notice,
.error,
#pass-strength-result {
  margin: 20px 0;
  padding: 5px 18px;
}
#theme-my-login .message {
  padding: 5px 18px;
  margin-top: 0;
}
.edd_errors,
.error,
#pass-strength-result.short,
#pass-strength-result.bad {
  border: 1px solid #f8cdce;
  background: #fbe3e4;
}
.edd_errors .edd_error,
.error .edd_error,
#pass-strength-result.short .edd_error,
#pass-strength-result.bad .edd_error,
.edd_errors p,
.error p,
#pass-strength-result.short p,
#pass-strength-result.bad p {
  margin: 0;
}
.edd_success,
#pass-strength-result.strong,
#theme-my-login .message {
  border-color: #deeaae;
  background: #e6efc2;
}
.fh-notice,
#pass-strength-result.good {
  border-color: #bfe4f4;
  background: #d5edf8;
}
#pass-strength-result {
  border-color: #e8dc59;
  background: #ebe16f;
}
@font-face {
  font-family: unicons;
  src: url(../fonts/unicons.eot);
  src: url(../fonts/unicons.eot?#iefix) format('embedded-opentype'), url(../fonts/unicons.svg#unicons) format('svg'), url(../fonts/unicons.woff) format('woff'), url(../fonts/unicons.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: fh-custom;
  src: url(../fonts/fh-custom.eot?-mwzuw0);
  src: url(../fonts/fh-custom.eot?#iefix-mwzuw0) format('embedded-opentype'), url(../fonts/fh-custom.woff?-mwzuw0) format('woff'), url(../fonts/fh-custom.ttf?-mwzuw0) format('truetype'), url(../fonts/fh-custom.svg?-mwzuw0#fh-custom) format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: fhicons;
  src: url(../fonts/fhicons.eot?d8q86d);
  src: url(../fonts/fhicons.eot?#iefixd8q86d) format('embedded-opentype'), url(../fonts/fhicons.woff?d8q86d) format('woff'), url(../onts/fhicons.ttf?d8q86d) format('truetype'), url(../fonts/fhicons.svg?d8q86d#fhicons) format('svg');
  font-weight: 400;
  font-style: normal;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: "proxima-nova", 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-rendering: optimizelegibility;
  margin: 0;
  color: #372f2b;
  line-height: 1.2;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
.small-text {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.5;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
p:empty br {
  display: none;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
button,
label,
.semi-bold {
  font-weight: 600;
}
.extra-bold {
  font-weight: 800;
}
.light {
  font-weight: 200;
}
strong,
.bold {
  font-weight: 700;
}
.serif {
  font-family: Baskerville,Georgia,Cambria,Times New Roman,Times,serif;
  font-weight: 400;
  font-style: italic;
}
.alt-text-color {
  color: #479414;
}
.sup {
  font-size: 10px;
  position: relative;
  top: -0.5em;
}
.big-title {
  font-size: 42px;
  margin-bottom: 0.5em;
}
.line-through {
  text-decoration: line-through;
}
[class^="icon icon-"] {
  font-family: unicons;
  font-style: normal;
  speak: none;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.icon-zoom-out:before {
  content: "\e000";
}
.icon-zoom-in:before {
  content: "\e001";
}
.icon-youtube:before {
  content: "\e002";
}
.icon-yahoo:before {
  content: "\e003";
}
.icon-world:before {
  content: "\e004";
}
.icon-volume:before {
  content: "\e005";
}
.icon-volume-off:before {
  content: "\e006";
}
.icon-volume-medium:before {
  content: "\e007";
}
.icon-volume-loud:before {
  content: "\e008";
}
.icon-vimeo:before {
  content: "\e009";
}
.icon-video:before {
  content: "\e00a";
}
.icon-user-male:before {
  content: "\e00b";
}
.icon-user-female:before {
  content: "\e00c";
}
.icon-upload2:before {
  content: "\e00d";
}
.icon-upload:before {
  content: "\e00e";
}
.icon-update:before {
  content: "\e00f";
}
.icon-unstar:before {
  content: "\e010";
}
.icon-unlove:before {
  content: "\e011";
}
.icon-unlock:before {
  content: "\e012";
}
.icon-unlike:before {
  content: "\e013";
}
.icon-twitter:before {
  content: "\e014";
}
.icon-trash:before {
  content: "\e015";
}
.icon-timemachine:before {
  content: "\e016";
}
.icon-texting:before {
  content: "\e017";
}
.icon-tags:before {
  content: "\e018";
}
.icon-tag:before {
  content: "\e019";
}
.icon-stumbleupon:before {
  content: "\e01a";
}
.icon-stream:before {
  content: "\e01b";
}
.icon-storage:before {
  content: "\e01c";
}
.icon-stop2:before {
  content: "\e01d";
}
.icon-stop:before {
  content: "\e01e";
}
.icon-star:before {
  content: "\e01f";
}
.icon-spotify:before {
  content: "\e020";
}
.icon-small-thumbnails:before {
  content: "\e021";
}
.icon-skype:before {
  content: "\e022";
}
.icon-shuffle:before {
  content: "\e023";
}
.icon-share:before {
  content: "\e024";
}
.icon-settings:before {
  content: "\e025";
}
.icon-select-vertical:before {
  content: "\e026";
}
.icon-select-top:before {
  content: "\e027";
}
.icon-select-right:before {
  content: "\e028";
}
.icon-select-left:before {
  content: "\e029";
}
.icon-select-horizontal:before {
  content: "\e02a";
}
.icon-select-bottom:before {
  content: "\e02b";
}
.icon-search:before {
  content: "\e02c";
}
.icon-rewind-to-the-start:before {
  content: "\e02d";
}
.icon-rewind-to-the-end:before {
  content: "\e02e";
}
.icon-rewind-to-prev-breakpoint:before {
  content: "\e02f";
}
.icon-rewind-to-next-breakpoint:before {
  content: "\e030";
}
.icon-rewind-forward:before {
  content: "\e031";
}
.icon-rewind-back:before {
  content: "\e032";
}
.icon-reply:before {
  content: "\e033";
}
.icon-repeat2:before {
  content: "\e034";
}
.icon-repeat:before {
  content: "\e035";
}
.icon-reload2:before {
  content: "\e036";
}
.icon-reload:before {
  content: "\e037";
}
.icon-rec:before {
  content: "\e038";
}
.icon-plus:before {
  content: "\e039";
}
.icon-play:before {
  content: "\e03a";
}
.icon-pinterest:before {
  content: "\e03b";
}
.icon-pin:before {
  content: "\e03c";
}
.icon-pie-chart:before {
  content: "\e03d";
}
.icon-photo:before {
  content: "\e03e";
}
.icon-phone:before {
  content: "\e03f";
}
.icon-pen:before {
  content: "\e040";
}
.icon-pause:before {
  content: "\e041";
}
.icon-path:before {
  content: "\e042";
}
.icon-option:before {
  content: "\e043";
}
.icon-note:before {
  content: "\e044";
}
.icon-new-window:before {
  content: "\e045";
}
.icon-new-message:before {
  content: "\e046";
}
.icon-move:before {
  content: "\e047";
}
.icon-more:before {
  content: "\e048";
}
.icon-minus:before {
  content: "\e049";
}
.icon-minimize:before {
  content: "\e04a";
}
.icon-mic:before {
  content: "\e04b";
}
.icon-mic-cross:before {
  content: "\e04c";
}
.icon-messages:before {
  content: "\e04d";
}
.icon-message2:before {
  content: "\e04e";
}
.icon-message:before {
  content: "\e04f";
}
.icon-melody:before {
  content: "\e050";
}
.icon-maximize:before {
  content: "\e051";
}
.icon-map:before {
  content: "\e052";
}
.icon-mail:before {
  content: "\e053";
}
.icon-macbook:before {
  content: "\e054";
}
.icon-love:before {
  content: "\e055";
}
.icon-loudspeaker:before {
  content: "\e056";
}
.icon-lock:before {
  content: "\e057";
}
.icon-location:before {
  content: "\e058";
}
.icon-list3:before {
  content: "\e059";
}
.icon-list2:before {
  content: "\e05a";
}
.icon-list:before {
  content: "\e05b";
}
.icon-list-with-thumbnails:before {
  content: "\e05c";
}
.icon-linkedin:before {
  content: "\e05d";
}
.icon-link:before {
  content: "\e05e";
}
.icon-like:before {
  content: "\e05f";
}
.icon-large-thumbnails:before {
  content: "\e060";
}
.icon-key:before {
  content: "\e061";
}
.icon-iphone:before {
  content: "\e062";
}
.icon-ipad:before {
  content: "\e063";
}
.icon-intstagram:before {
  content: "\e064";
}
.icon-increase:before {
  content: "\e065";
}
.icon-imac:before {
  content: "\e066";
}
.icon-home:before {
  content: "\e067";
}
.icon-folder:before {
  content: "\e068";
}
.icon-flag:before {
  content: "\e069";
}
.icon-filter:before {
  content: "\e06a";
}
.icon-facebook:before {
  content: "\e06b";
}
.icon-eye:before {
  content: "\e06c";
}
.icon-eye-cross:before {
  content: "\e06d";
}
.icon-external:before {
  content: "\e06e";
}
.icon-exit:before {
  content: "\e06f";
}
.icon-evernote:before {
  content: "\e070";
}
.icon-dribbble:before {
  content: "\e071";
}
.icon-download2:before {
  content: "\e072";
}
.icon-download:before {
  content: "\e073";
}
.icon-documents:before {
  content: "\e074";
}
.icon-document:before {
  content: "\e075";
}
.icon-directions:before {
  content: "\e076";
}
.icon-deviantart:before {
  content: "\e077";
}
.icon-delete:before {
  content: "\e078";
}
.icon-decrease:before {
  content: "\e079";
}
.icon-cross:before {
  content: "\e07a";
}
.icon-code:before {
  content: "\e07b";
}
.icon-cloud:before {
  content: "\e07c";
}
.icon-clock:before {
  content: "\e07d";
}
.icon-clip:before {
  content: "\e07e";
}
.icon-checkmark:before {
  content: "\e07f";
}
.icon-chart:before {
  content: "\e080";
}
.icon-categories:before {
  content: "\e081";
}
.icon-case:before {
  content: "\e082";
}
.icon-cart-full:before {
  content: "\e083";
}
.icon-cart-empty:before {
  content: "\e084";
}
.icon-card:before {
  content: "\e085";
}
.icon-camera:before {
  content: "\e086";
}
.icon-calendar2:before {
  content: "\e087";
}
.icon-calendar:before {
  content: "\e088";
}
.icon-calendar-done:before {
  content: "\e089";
}
.icon-bucket:before {
  content: "\e08a";
}
.icon-box2:before {
  content: "\e08b";
}
.icon-box:before {
  content: "\e08c";
}
.icon-book:before {
  content: "\e08d";
}
.icon-bell:before {
  content: "\e08e";
}
.icon-behance:before {
  content: "\e08f";
}
.icon-arrow-top2:before {
  content: "\e090";
}
.icon-arrow-top:before {
  content: "\e091";
}
.icon-arrow-right2:before {
  content: "\e092";
}
.icon-arrow-right:before {
  content: "\e093";
}
.icon-arrow-left2:before {
  content: "\e094";
}
.icon-arrow-left:before {
  content: "\e095";
}
.icon-arrow-down2:before {
  content: "\e096";
}
.icon-arrow-down:before {
  content: "\e097";
}
[class^=icon-fh],
[class*=" icon-fh"] {
  font-family: fh-custom;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-fhcheck:before {
  content: "\e600";
}
[class*="icon icon-fh-"] {
  font-family: fhicons;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-fh-plus:before {
  content: "\e600";
}
.icon-fh-teamwork:before {
  content: "\e601";
}
.icon-fh-conversation:before {
  content: "\e602";
}
.icon-fh-reload:before {
  content: "\e603";
}
.icon-fh-download:before {
  content: "\e604";
}
.icon-fh-clock:before {
  content: "\e605";
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
label {
  display: block;
}
label img {
  vertical-align: middle;
  margin-left: 3px;
}
input[type=text],
input[type=password],
input[type=email],
input[type=url],
textarea,
.search-box,
.select-wrapper,
.div_select {
  background: #fcfcfc;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 10px;
  outline: 0;
}
input::-webkit-input-placeholder {
  color: #999999;
}
input:-moz-placeholder {
  color: #999999;
}
input::-moz-placeholder {
  color: #999999;
}
input:-ms-input-placeholder {
  color: #999999;
}
.select-wrapper select,
.div_select select {
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  width: 100%;
}
.select-wrapper,
.div_select {
  position: relative;
  padding: 0;
  width: 95%;
}
.select-wrapper .icon-select-vertical,
.div_select .icon-select-vertical {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 0;
  margin: 0;
  line-height: 1;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
textarea:focus {
  background: #f8f8f8;
}
::-webkit-input-placeholder {
  color: #404040;
}
:-moz-placeholder {
  color: #404040;
}
::-moz-placeholder {
  color: #404040;
}
textarea {
  resize: vertical;
}
legend,
.legend {
  display: inline-block;
  font-size: 2.2rem;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 1em;
  color: #372f2b;
}
input[type=submit],
.button,
.mod-ad a,
.edd-cancel > a,
.edd_invoice_link,
.prev-link > a,
.edd-recurring-cancel,
.subscription-toggle {
  border: 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: .45em 1.25em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
input[type=submit],
.button,
.mod-ad a,
.purchase-title-wrapper,
.prev-link > a,
.subscription-toggle {
  background: #3b85c8;
}
input[type=submit]:hover,
.button:hover,
.mod-ad a:hover,
.prev-link > a:hover,
.subscription-toggle:hover {
  background: #286398;
  color: #ffffff;
}
.btn-primary,
#edd-purchase-button {
  background: #c33d42;
}
.btn-primary:hover {
  background: #bb272d;
}
.btn-secondary,
.edd-cancel a,
.edd-recurring-cancel {
  background: #7e7e7e;
}
.btn-secondary:hover,
.edd-cancel > a:hover,
.edd-recurring-cancel:hover {
  color: #fff;
  background: #656565;
}
.callout .button {
  width: 224px;
}
.btn-small {
  padding: 5px 15px;
}
.btn-large {
  width: 100%;
  font-size: 2rem;
  text-transform: uppercase;
}
input.button,
button.button {
  border: 0;
}
.button:focus,
.button:active {
  color: #ffffff;
}
.edd_invoice_link,
#edd_next_button,
.edd_purchase_submit_wrapper .edd-add-to-cart,
.btn-green {
  background: #0fc558;
}
.edd_invoice_link:hover,
#edd_next_button:hover,
.edd_purchase_submit_wrapper .edd-add-to-cart:hover,
.btn-green:hover {
  color: #fff;
  background: #00b443;
}
.container_12 {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  max-width: 1110px;
}
.main-nav .menu-item-depth-0 {
  display: inline-block;
  vertical-align: top;
  line-height: 70px;
  height: 70px;
  position: relative;
}
.main-nav .main-menu-link {
  color: #372f2b;
  font-weight: 700;
  display: block;
  padding: 0 6px;
  text-align: center;
  text-transform: uppercase;
}
.main-nav .main-menu-link:hover,
.main-nav .hover .main-menu-link {
  color: #fff;
  background: #000000;
}
.alt a {
  border: 0;
  color: #888888;
}
.nav .current-post-ancestor > a,
.sidebar-nav .current-post-ancestor > a,
.nav .current-menu-item > a,
.sidebar-nav .current-menu-item > a,
.nav .current_page_item > a,
.sidebar-nav .current_page_item > a,
.nav .current-menu-parent > a,
.sidebar-nav .current-menu-parent > a {
  color: #c33d42;
}
.has-divider {
  border-right: 1px solid #e0e0e0;
  padding-right: 18px;
}
.has-dropdown > a:after {
  content: "\e02b";
  display: inline-block;
  vertical-align: middle;
  font-family: unicons;
  margin-left: 2px;
  position: relative;
  top: 5px;
  right: -7px;
}
.responsive-menu .has-dropdown > a:after {
  display: none;
}
.dropdown-wrapper {
  position: absolute;
  right: 0;
  z-index: 10000;
  display: none;
  text-align: left;
}
.menu-item-depth-1 {
  line-height: normal;
}
.menu-item-depth-1 .menu-link {
  color: #b8b8b8;
  display: block;
  padding: 10px 15px;
  border-top: 1px solid #242424;
}
.menu-item-depth-1 .menu-link:hover {
  color: #c33d42;
  background: #222222;
}
.menu-item-depth-1 > .sub-menu-link {
  color: #fff;
  font-weight: 600;
  display: block;
}
.menu-item-depth-1 .nav-desc {
  display: block;
  padding-bottom: 1.5rem;
}
.menu-item-depth-1 .icon {
  margin-right: 10px;
}
.menu-item-depth-2 .icon {
	margin-right: 0;
}
.menu-item-depth-0 .dropdown-wrapper .menu-item {
	position: relative;
}
.top-nav .sub-menu .dropdown-wrapper {
	position: absolute;
	left: 240px;
	top: 0;
	background: #333333;
}
.custom-link:before {
  content: '';
}
.custom-link .menu-link:hover {
  border: 0;
}
.custom-link .menu-link:after {
  font-family: unicons;
  content: "\e093";
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  padding: 5px 0 0 5px;
}
.nav-popular {
  margin-top: 3rem;
}
.nav-popular .menu-link {
  color: #fffcda;
}
.nav-all .menu-link {
  color: #9dbdcc;
}
.quick-links .menu-item a {
  color: #372f2b;
}
.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 280px;
  min-width: 50px;
  font-size: 10.5px;
  line-height: 12px;
  direction: ltr;
  box-shadow: none;
  padding: 0;
}
.qtip-content {
  position: relative;
  padding: 5px 9px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip-titlebar {
  position: relative;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  border-width: 0 0 1px;
  font-weight: 700;
}
.qtip-titlebar + .qtip-content {
  border-top-width: 0 !important;
}
.qtip-close {
  position: absolute;
  right: -9px;
  top: -9px;
  cursor: pointer;
  outline: medium none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
}
.qtip-titlebar .qtip-close {
  right: 4px;
  top: 50%;
  margin-top: -9px;
}
* html .qtip-titlebar .qtip-close {
  top: 16px;
}
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr;
}
.qtip-icon,
.qtip-icon .ui-icon {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
}
.qtip-icon .ui-icon {
  width: 18px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  text-indent: 0;
  font: 400 bold 10px/13px Tahoma, sans-serif;
  color: inherit;
  background: transparent none no-repeat -100em -100em;
}
.qtip-default {
  border-width: 1px;
  border-style: solid;
  border-color: #F1D031;
  background-color: #FFFFA3;
  color: #555555;
}
.qtip-default .qtip-titlebar {
  background-color: #ffef93;
}
.qtip-default .qtip-icon {
  border-color: #CCC;
  background: #F1F1F1;
  color: #777777;
}
.qtip-default .qtip-titlebar .qtip-close {
  border-color: #AAA;
  color: #111111;
}
.qtip-light {
  background-color: #fff;
  border-color: #E2E2E2;
  color: #454545;
}
.qtip-light .qtip-titlebar {
  background-color: #f1f1f1;
}
.qtip-dark {
  background-color: #505050;
  border-color: #303030;
  color: #f3f3f3;
}
.qtip-dark .qtip-titlebar {
  background-color: #404040;
}
.qtip-dark .qtip-icon {
  border-color: #444444;
}
.qtip-dark .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}
.qtip-cream {
  background-color: #FBF7AA;
  border-color: #F9E98E;
  color: #a27d35;
}
.qtip-cream .qtip-titlebar {
  background-color: #f0de7d;
}
.qtip-cream .qtip-close .qtip-icon {
  background-position: -82px 0;
}
.qtip-red {
  background-color: #F78B83;
  border-color: #D95252;
  color: #912323;
}
.qtip-red .qtip-titlebar {
  background-color: #f06d65;
}
.qtip-red .qtip-close .qtip-icon {
  background-position: -102px 0;
}
.qtip-red .qtip-icon {
  border-color: #d95252;
}
.qtip-red .qtip-titlebar .ui-state-hover {
  border-color: #d95252;
}
.qtip-green {
  background-color: #CAED9E;
  border-color: #90D93F;
  color: #3f6219;
}
.qtip-green .qtip-titlebar {
  background-color: #b0de78;
}
.qtip-green .qtip-close .qtip-icon {
  background-position: -42px 0;
}
.qtip-blue {
  background-color: #E5F6FE;
  border-color: #ADD9ED;
  color: #5e99bd;
}
.qtip-blue .qtip-titlebar {
  background-color: #d0e9f5;
}
.qtip-blue .qtip-close .qtip-icon {
  background-position: -2px 0;
}
.qtip-shadow {
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.qtip-rounded .qtip-titlebar {
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.qtip-youtube {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 3px #333;
  -moz-box-shadow: 0 0 3px #333;
  box-shadow: 0 0 3px #333;
  color: #fff;
  border-width: 0;
  background: #4A4A4A;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4a4a4a), color-stop(100%, #000000));
  background-image: -webkit-linear-gradient(top, #4a4a4a 0, #000000 100%);
  background-image: -moz-linear-gradient(top, #4a4a4a 0, #000000 100%);
  background-image: -ms-linear-gradient(top, #4a4a4a 0, #000000 100%);
  background-image: -o-linear-gradient(top, #4a4a4a 0, #000000 100%);
}
.qtip-youtube .qtip-titlebar {
  background-color: #4A4A4A;
  background-color: rgba(0, 0, 0, 0);
}
.qtip-youtube .qtip-content {
  padding: .75em;
  font: 12px arial, sans-serif;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4a4a4a, EndColorStr=#000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4a4a4a, EndColorStr=#000000);";
}
.qtip-youtube .qtip-icon {
  border-color: #222222;
}
.qtip-youtube .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}
.qtip-jtools {
  background: #232323;
  background: rgba(0, 0, 0, 0.7);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
  background-image: -moz-linear-gradient(top, #717171, #232323);
  background-image: -webkit-linear-gradient(top, #717171, #232323);
  background-image: -ms-linear-gradient(top, #717171, #232323);
  background-image: -o-linear-gradient(top, #717171, #232323);
  border: 2px solid #ddd;
  border: 2px solid #f1f1f1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 12px #333;
  -moz-box-shadow: 0 0 12px #333;
  box-shadow: 0 0 12px #333333;
}
.qtip-jtools .qtip-titlebar {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171, endColorstr=#4a4a4a);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171, endColorstr=#4A4A4A)";
}
.qtip-jtools .qtip-content {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4a4a4a, endColorstr=#232323);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A, endColorstr=#232323)";
}
.qtip-jtools .qtip-titlebar,
.qtip-jtools .qtip-content {
  background: transparent;
  color: #fff;
  border: 0 dashed transparent;
}
.qtip-jtools .qtip-icon {
  border-color: #555555;
}
.qtip-jtools .qtip-titlebar .ui-state-hover {
  border-color: #333333;
}
.qtip-cluetip {
  -webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  background-color: #D9D9C2;
  color: #111;
  border: 0 dashed transparent;
}
.qtip-cluetip .qtip-titlebar {
  background-color: #87876A;
  color: #fff;
  border: 0 dashed transparent;
}
.qtip-cluetip .qtip-icon {
  border-color: #808064;
}
.qtip-cluetip .qtip-titlebar .ui-state-hover {
  border-color: #696952;
  color: #696952;
}
.qtip-tipsy {
  background: #000;
  background: rgba(0, 0, 0, 0.87);
  color: #fff;
  border: 0 solid transparent;
  font-size: 11px;
  font-family: 'Lucida Grande', sans-serif;
  font-weight: 700;
  line-height: 16px;
  text-shadow: 0 1px #000000;
}
.qtip-tipsy .qtip-titlebar {
  padding: 6px 35px 0 10px;
  background-color: transparent;
}
.qtip-tipsy .qtip-content {
  padding: 6px 10px;
}
.qtip-tipsy .qtip-icon {
  border-color: #222;
  text-shadow: none;
}
.qtip-tipsy .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}
.qtip-tipped {
  border: 3px solid #959FA9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #F9F9F9;
  color: #454545;
  font-weight: 400;
  font-family: serif;
}
.qtip-tipped .qtip-titlebar {
  border-bottom-width: 0;
  color: #fff;
  background: #3A79B8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3a79b8), to(#2e629d));
  background-image: -webkit-linear-gradient(top, #3a79b8, #2e629d);
  background-image: -moz-linear-gradient(top, #3a79b8, #2e629d);
  background-image: -ms-linear-gradient(top, #3a79b8, #2e629d);
  background-image: -o-linear-gradient(top, #3a79b8, #2e629d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3a79b8, endColorstr=#2e629d);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8, endColorstr=#2E629D)";
}
.qtip-tipped .qtip-icon {
  border: 2px solid #285589;
  background: #285589;
}
.qtip-tipped .qtip-icon .ui-icon {
  background-color: #FBFBFB;
  color: #555555;
}
.qtip-bootstrap {
  font-size: 14px;
  line-height: 20px;
  color: #333;
  padding: 1px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.qtip-bootstrap .qtip-titlebar {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.qtip-bootstrap .qtip-titlebar .qtip-close {
  right: 11px;
  top: 45%;
  border-style: none;
}
.qtip-bootstrap .qtip-content {
  padding: 9px 14px;
}
.qtip-bootstrap .qtip-icon {
  background: transparent;
}
.qtip-bootstrap .qtip-icon .ui-icon {
  width: auto;
  height: auto;
  float: right;
  font-size: 20px;
  font-weight: 700;
  line-height: 18px;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
  filter: alpha(opacity=20);
}
.qtip-bootstrap .qtip-icon .ui-icon:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: .4;
  filter: alpha(opacity=40);
}
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar {
  filter: none;
  -ms-filter: none;
}
.qtip .qtip-tip {
  margin: 0 auto;
  overflow: hidden;
  z-index: 10;
}
x:-o-prefocus,
.qtip .qtip-tip {
  visibility: hidden;
}
.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml,
.qtip .qtip-tip canvas {
  position: absolute;
  color: #123456;
  background: transparent;
  border: 0 dashed transparent;
}
.qtip .qtip-tip canvas {
  top: 0;
  left: 0;
}
.qtip .qtip-tip .qtip-vml {
  behavior: url(#default#VML);
  display: inline-block;
  visibility: visible;
}
#qtip-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#qtip-overlay.blurs {
  cursor: pointer;
}
#qtip-overlay div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(Opacity=70)";
}
.qtipmodal-ie6fix {
  position: absolute !important;
}
button {
  border: 0;
}
.screen-reader-text {
  position: absolute!important;
  clip: rect(1px, 1px, 1px, 1px);
}
table {
  width: 100%;
  background: #fff;
}
th,
td {
  padding: 10px 1em;
  border: 1px solid #eee;
}
th {
  text-align: left;
  font-weight: 600;
  color: #372f2b;
  background: #fafafa;
}
th .link {
  font-size: 15px;
  font-weight: 400;
}
td {
  vertical-align: top;
  border-bottom: 1px dotted #eee;
}
iframe,
img {
  max-width: 100%;
}
img {
  height: auto;
}
.sup {
  display: inline-block;
  vertical-align: super;
}
.highlight {
  color: #c33d42;
  text-decoration: underline;
}
#container {
  background: #f0f0f0;
  display: table;
  width: 100%;
}
.bg-light-wrapper {
  background: #fff;
  padding: 2em 0;
}
.section {
  margin-bottom: 40px;
}
a {
  color: #438ac4;
  text-decoration: underline;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
a:hover,
a:focus {
  color: #289dbf;
}
a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
.site-header {
  background: #fff;
  position: relative;
}
.site-header ul {
  margin-top: 0;
  margin-bottom: 0;
}
.site-header a {
  text-decoration: none;
}
.logo,
.fh-mascot {
  height: 70px;
}
.logo {
  overflow: hidden;
}
.fh-mascot {
  width: auto;
  display: inline-block;
  vertical-align: top;
}
.fh-sitename {
  display: none;
}
.site-title,
.site-desc {
  letter-spacing: -0.125rem;
  line-height: 1;
}
.site-title {
  font-size: 2.8rem;
  color: #372f2b;
}
.site-desc {
  font-size: 1.3rem;
  color: #625853;
  font-weight: 600;
}
.top-links-wrapper {
  background: #262626;
  font-size: 1.2rem;
}
#menu-top-nav {
  display: none;
}
.top-links {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding: 12px 0;
}
.top-links li {
  display: inline-block;
}
.top-links a {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 0 8px;
}
.top-links a:hover {
  color: #ffffff;
}
.top-links .dropdown-wrapper {
  padding-top: 6px;
  width: 15em;
}
.top-links .sub-menu {
  background: #262626;
}
.ac-menu-item {
  position: relative;
}
.ac-menu-item a {
  color: #9dbdcc;
}
.ac-menu-item .cart-items {
  padding: 0;
}
.ac-menu-item .cart-items .icon-cart-full {
  margin-right: 3px;
}
.ac-menu-item .cart-items .icon-cart-full:before {
  font-size: 1.2em;
  vertical-align: middle;
}
.ac-menu-item .cart-items:hover {
  color: #c33d42;
}
.ac-menu-item .menu-item {
  display: block;
  padding: 0;
}
.ac-menu-item .menu-item a {
  display: block;
  padding: 10px 15px;
}
.ac-menu-item .menu-item a:hover {
  background: #000000;
}
.pro-badge {
  color: #c6464a;
  border-bottom: 1px solid #c6464a;
}
.site-promo {
  padding: 40px 0 35px;
  line-height: 1.2;
  color: #fcfefd;
}
.site-promo h1,
.site-promo h2 {
  color: #fcfefd;
}
.site-promo a {
  text-decoration: none;
}
.feat-item {
  padding-top: 10px;
  font-size: 1.7rem;
}
.feat-item h2 {
  font-size: 1.7rem;
  font-weight: 400;
  padding: 10px 0 5px;
}
.feat-item a {
  color: #a4d4ff;
  text-decoration: underline;
}
.feat-item .icon {
  font-size: .75rem;
  vertical-align: middle;
  padding-left: 2px;
}
.promo-title {
  font-size: 3.4rem;
  padding-bottom: 0.5em;
}
.promo-title,
.promo-intro {
  text-align: center;
}
.promo-title,
.page-title {
  text-transform: uppercase;
}
.promo-intro ul {
  font-size: 1.7rem;
  text-align: left;
  display: inline-block;
}
.promo-intro ul li {
  position: relative;
  padding: 0 0 1.2rem 3rem;
}
.promo-intro ul li:before {
  font-family: fh-custom;
  content: "\e600";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.7rem;
  color: #86c58f;
}
.promo-intro p {
  margin-top: 0;
  font-size: 2rem;
}
.promo-intro p:first-child {
  color: #c5c5c5;
}
.promo-buttons {
  font-size: 2rem;
}
.promo-buttons .button {
  display: block;
  margin: 0 auto 10px;
  max-width: 260px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5em;
}
.promo-buttons .price {
  font-size: 3.2rem;
  line-height: 1;
  padding-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.promo-buttons .callout-text {
  display: block;
  text-transform: none;
  font-size: 1.3rem;
}
.main-search-wrapper {
  padding: 2.2rem 0;
  background: #292929;
}
.main-search {
  padding: 1.2rem 1.4rem;
}
.content .main-search {
  max-width: 920px;
}
.main-search .icon-search {
  display: none;
}
.main-search input {
  float: none;
  display: inline-block;
  vertical-align: middle;
}
.main-search .eddsw-search-field {
  font-size: 2rem;
  width: 100%;
  height: 42px;
  padding: 0 2%;
  margin-bottom: 10px;
}
.main-search input[type=text]:focus {
  background: #fff;
  border-color: #ffffff;
}
.main-search .searchsubmit {
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 1rem 0;
  width: 100%;
}
.promo-items {
  padding: 2.5rem 0;
}
.promo-items .mod-title {
  font-size: 1.8rem;
}
.promo-items.odd {
  background: #fff;
}
.promo-img {
  padding: 1em 0;
}
.promo-item h2 {
  font-size: 2.2rem;
}
.promo-item ul {
  list-style: square;
  margin-left: 2rem;
}
.promo-item ul li {
  padding-bottom: 5px;
}
.promo-item .button {
  min-width: 120px;
}
.promo-item .products-wrapper {
  padding: 1.5em 0;
}
.promo-item .products {
  background: 0;
  padding: 0;
  margin-left: -1%;
}
.promo-item .grid_6.omega {
  padding: 0 1em;
}
.promo-item .product {
  width: 33.33%;
}
.odd .product {
  background: #f0f0f0;
}
.even .product {
  background: #ffffff;
}
.intro-title {
  font-size: 36px;
}
.single-row {
  overflow: hidden;
  padding: 0;
}
.page-header {
  background: #1f1f1f;
  margin-bottom: 3rem;
  color: #c0c0c0;
  position: relative;
}
.page-header p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.banner-title,
.banner-header > h1 {
  color: #fff;
}
.banner-header {
  padding: 2em 0;
}
.banner-title > .small {
  font-size: 1.7rem;
  letter-spacing: 0;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  text-transform: none;
}
.banner-title .dotted {
  background: url(../img/dotted-divider.gif) no-repeat;
  display: inline-block;
  width: 2px;
  height: 14px;
  text-indent: -999em;
  margin: 0 6px;
  vertical-align: middle;
}
.toolbar {
  font-size: 1.4rem;
  padding: 10px 14px;
  background: #fff;
  clear: both;
}
.toolbar .breadcrumbs {
  padding: 0 0 10px;
  border-bottom: 1px solid #eee;
}
.breadcrumb_last {
  padding-left: 5px;
}
.toolbar .label,
.toolbar .select-wrapper {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.toolbar .label {
  padding: 0 3px 0 0;
}
.toolbar .select-wrapper {
  width: 125px;
}
.toolbar .select-wrapper .icon-select-vertical {
  right: 5px;
}
.dd-list a {
  display: block;
  position: relative;
  text-decoration: none;
}
.dd-selected > a {
  padding: 5px 10px;
  color: #5f5f5f;
}
.dd-options {
  display: none;
  position: absolute;
  left: 0;
  z-index: 9;
  width: 100%;
  margin: 0;
  background: #fcfcfc;
  border: 1px solid #e9e9e9;
}
.dd-options a {
  border-top: 1px solid #e9e9e9;
  padding: 7px 15px;
}
.dd-options a:hover {
  background: #fff;
}
.toolbar-top {
  margin-bottom: 1rem;
}
.toolbar-bottom {
  margin-top: 1rem;
}
.toolbar-bottom .page-navigation,
.toolbar-bottom .wp-prev-next {
  padding-top: 0;
}
.section-header {
  padding: 20px 14px 0;
  background-color: #ffffff;
}
.products {
  background: #fff;
}
.product {
  float: left;
  width: 33.33%;
}
.product .product-price {
  background: #f4f4f4;
  padding: 1px 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-top: 3px;
}
.col-main .sep:after {
  border-left-color: #ffffff;
}
.product-link {
  display: block;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-link:hover {
  background: #e0e0e0;
}
.product-thumb {
  display: block;
  width: 100%;
}
.product-info {
  padding-top: 5px;
}
.product-name {
  font-size: 1.4rem;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-price {
  color: #555555;
}
.qtip {
  background: #353535;
  color: #fff;
  border: 1px solid #262626;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.85);
  font-size: 1.4rem;
  max-width: 250px;
}
.qtip .preview {
  display: block;
  border: 1px solid #b3b3b3;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.85);
}
.qtip .item-preview-title {
  color: #fff;
  padding: 5px 5px 15px;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0;
}
.qtip .item-meta {
  padding: 0 5px;
}
.qtip .item-price {
  font-size: 2.6rem;
}
.qtip .item-tax {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  color: silver;
}
.qtip .item-tax li {
  display: inline;
}
.qtip .item-tax li:after {
  content: "/";
  padding: 0 5px;
}
.qtip .item-tax li:last-child:after {
  content: "";
}
.qtip-content {
  padding: 10px 10px 20px;
}
.product-title {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 32px;
}
.page-intro {
  padding-bottom: 35px;
}
.freebies-tool {
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 350px;
  padding-top: 1.5em;
  margin: 0 auto;
}
.freebies-tool .rounded-box {
  line-height: 1.25;
}
.freebies-tool .rounded-box p {
  font-size: 0.875em;
}
.freebies-tool .rounded-box p a {
  font-size: 0.913em;
}
.freebies-count {
  color: #279cbd;
  font-size: 1.5rem;
  padding-bottom: 10px;
}
.amp {
  color: #C0C0C1;
}
/*
.freebies .fh-page-navi {
  //padding: 30px 0;
}

.freebies-item {
  //position: relative;
  //width: 48%;
  //width: 181px;
  //height: 185px;
  //float: left;
  //margin: 0 1% 1% 0;
  //overflow: hidden;

  img {
    //display: block;
    //width: 100%;
  }
}
.item-info {
  //position: absolute;
  //top: 0;
  //left: 0;
  //width: 100%;
  //height: 100%;
  //background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, #000000 99%, #000000 100%);
  //background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(99%, #000000), color-stop(100%, #000000));
  //background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, #000000 99%, #000000 100%);
  //background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, #000000 99%, #000000 100%);
  //background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, #000000 99%, #000000 100%);
  //background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0, #000000 99%, #000000 100%);
  //filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#000000', GradientType=0);
  //opacity: 0;
  //-ms-filter: "alpha(Opacity=0)";
  //filter: alpha(opacity=0);
  //-o-transition: all 0.3s ease-in-out 0s;
  //-moz-transition: all 0.3s ease-in-out 0s;
  //-webkit-transition: all 0.3s ease-in-out 0s;
  //transition: all 0.3s ease-in-out 0s;
  //-webkit-backface-visibility: hidden;
  //-moz-backface-visibility: hidden;
  //-o-backface-visibility: hidden;
  //-ms-backface-visibility: hidden;
}
.item-link {
  //display: block;
}
.item-link:hover .item-info,
.item-link:hover .view {
  //opacity: 1;
  //-ms-filter: "alpha(Opacity=100)";
  //filter: alpha(opacity=100);
}
.item-link .has-tag {
  //position: absolute;
  //top: 10px;
  //right: 10px;
  //text-transform: uppercase;
  //font-size: 1.4rem;
}
.item-link .product-name {
  //color: #fff;
  //text-transform: uppercase;
  //line-height: 1;
  //font-size: 1.8rem;
  //margin: 0 10px;
  //white-space: normal;
}
.item-info-holder {
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.view {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  background: url(../img/icon-view.png) no-repeat;
  opacity: 0;
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
*/
.wpdm_file {
  padding: 20px 0 10px;
  margin-top: 40px;
  border-top: 1px solid #e2e1e0;
}
.wpdm_file .dl-title {
  margin-top: 0;
}
.wpdm_file .cont {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 5px 10px;
  margin-right: 15px;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  color: #6e6e6e;
  text-shadow: 0 1px 0 #fff;
  border: 1px solid #dcdcdc;
  background-color: #f1f1f1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f1f1f1));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
  background-image: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
  background-image: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
  background-image: linear-gradient(to bottom, #f5f5f5, #f1f1f1);
  -webkit-transition: all 0.218s ease-in-out;
  -moz-transition: all 0.218s ease-in-out;
  -ms-transition: all 0.218s ease-in-out;
  -o-transition: all 0.218s ease-in-out;
  transition: all 0.218s ease-in-out;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
}
.wpdm_file .cont:hover {
  color: #333;
  border-color: #999;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}
.wpdm_file .wpdm-download-link {
  color: #372f2b;
  font-weight: 600;
  text-decoration: none;
}
.wpdm_file .wpdm-download-link:hover {
  color: #ef4135;
}
.wpdm_file .btn_outer {
  background: url(../img/download.png) no-repeat;
  padding-left: 40px;
  min-height: 30px;
}
.wpdm_file .counter {
  display: block;
  font-size: 12px;
}
.content-wrapper {
  background: #f0f0f0;
}
.content {
  padding: 30px 0 0;
}
.home .content {
  padding-top: 0;
}
.content-panel {
  background: #fff;
  padding: 20px 40px;
  margin-bottom: 30px;
}
.wrap {
  background: #fff;
  padding: 24px;
}
.main-col {
  background: #fff;
  margin-bottom: 1em;
  border: 1px solid #e7e7e7;
}
.panel {
  background: #fff;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.ac-panel {
  padding: 0 0 30px;
  margin-bottom: 55px;
}
.ac-panel .col-wrap {
  padding: 30px;
}
.ac-panel .col-1-wrapper p {
  margin-top: 0;
}
.ac-panel .col {
  width: 100%;
  padding: 20px 25px;
  margin-bottom: 1em;
}
.ac-panel .col input[type=text],
.ac-panel .col input[type=password],
.ac-panel .col .dev_select {
  width: 100%;
}
.ac-panel .col .button,
.ac-panel .col input[type=submit] {
  width: 140px;
  display: block;
  margin: 30px 25px 0 0;
}
.ac-panel .col .div_text,
.ac-panel .col .div_select {
  margin-bottom: 1em;
}
.ac-panel .col .button_div {
  display: inline-block;
}
.ac-panel .col input[type=checkbox] {
  margin-right: 5px;
}
.ac-panel .col .req {
  color: #c33d42;
  padding: 0 5px;
}
.ac-panel .col .req-text {
  float: right;
  font-size: 14px;
  margin-top: 35px;
  width: 180px;
  text-align: right;
}
.ac-panel legend {
  color: #372f2b;
}
.ac-panel h3,
.ac-panel legend {
  margin-bottom: 15px;
}
.col,
.col-1 {
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
}
.col input[type=text],
.col-1 input[type=text],
.col input[type=email],
.col-1 input[type=email] {
  width: 100%;
}
.col-1 {
  padding: 20px;
}
.pw-link {
  font-size: 13px;
}
.pw-link.alignright {
  float: none;
}
.buttons-set a {
  font-size: 13px;
  text-decoration: none;
}
.rounded-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.rounded-box .search-box-wrapper {
  margin-right: 0;
}
.default-title {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}
.entry-content {
  padding-bottom: 25px;
  min-height: 300px;
  margin-bottom: 60px;
}
.post-content h2,
.post-content h3 {
  margin-bottom: 2rem;
}
.post-content ul,
.post-content ol {
  margin-left: 25px;
}
.post-content ul {
  list-style: disc;
}
.post-content ol {
  list-style: decimal;
}
.post-content li {
  padding-bottom: 7px;
}
.post-content dd {
  margin-left: 0;
  font-size: .9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.post-content img {
  display: block;
  margin: 0 auto 1.5em;
  max-width: 100%;
  height: auto;
}
.post-content .wp-smiley {
  margin: 0;
}
.post-content video,
.post-content object {
  max-width: 100%;
  height: auto;
}
.post-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}
.alignleft,
img.alignleft {
  float: left;
}
.alignright,
img.alignright {
  float: right;
}
.aligncenter,
img.aligncenter {
  display: block;
  margin: 0 auto;
}
img.alignleft {
  margin-right: 1.5em;
}
img.alignright {
  margin-left: 1.5em;
}
.wp-caption {
  width: auto !important;
  max-width: 100%;
  background: #eee;
  padding: 5px;
  margin-bottom: 3rem;
}
.wp-caption img {
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: .85em;
  margin: 4px 0 7px;
  text-align: center;
}
.page-title {
  margin-top: 20px;
  text-align: center;
  line-height: 1.1;
}
.feat-image {
  display: block;
  margin: 55px auto;
}
.block-row {
  max-width: 1010px;
  margin: 0 auto;
}
.block {
  width: 30%;
  max-width: 275px;
  min-height: 600px;
  background: #fff;
  margin: 0 10px 10px;
  display: inline-block;
  vertical-align: top;
}
.block .block-title {
  font-family: proxima-nova, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-align: center;
  padding: 0 25px 22px;
  margin: 0;
}
.block .block-title a {
  text-decoration: underline;
}
.block-content {
  padding: 0 35px;
  font-size: 14px;
  line-height: 1.286em;
}
.categories-list,
.result {
  font-size: 22px;
  padding: 20px 0 40px;
}
.sort-by {
  text-align: right;
}
.sort-by a {
  color: #289cbe;
}
.sort-by a:hover {
  color: #438ac4;
}
.category-list {
  position: relative;
  margin: 0;
}
.category-list > .menu-item {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.category-list a {
  text-decoration: none;
  color: #372f2b;
  text-transform: none;
  border: 0;
}
.category-list a:hover {
  color: #c33d42;
}
.category-list .current-menu-ancestor > a,
.category-list .current-menu-item > a {
  color: #c33d42;
}
.category-list .menu-item-has-children .sub-menu a:hover,
.category-list .menu-item-has-children .current-menu-item > a {
  background: #eeeeee;
}
.category-list .menu-item-has-children > a:after {
  content: "\e02b";
  display: inline-block;
  font-family: unicons;
  margin-left: 10px;
  position: relative;
  top: 8px;
}
.category-list .dropdown-wrapper {
  background: #fff;
  width: 10em;
}
.category-list .dropdown-wrapper a {
  display: block;
  padding: 6px 12px;
}
.category-list .icon {
  font-size: 18px;
  margin: 0 0 0 3px;
  position: relative;
  top: 5px;
  color: #888888;
}
.text-light {
  color: #626262;
}
.alt {
  color: #888888;
}
.quick-links {
  padding-top: 5px;
}
.search-box-wrapper .searchsubmit {
  font-size: 0;
  color: #fff;
  margin: 3px 0 0 8px;
  width: 17px;
  height: 17px;
  position: relative;
  top: -1px;
  background: url(../img/icon-search.png) no-repeat;
  float: right;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.search-box input[type=text] {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.sidebar .search-box input[type=text] {
  width: 70%;
}
.search-box ::-webkit-input-placeholder {
  color: #777777;
}
.search-box :-moz-placeholder {
  color: #777777;
}
.search-box ::-moz-placeholder {
  color: #777777;
}
.search-box :-ms-input-placeholder {
  color: #777777;
}
.title,
#edd-new-account-wrap {
  background: #363636;
  padding: 10px 30px;
}
.title .account-title,
#edd-new-account-wrap .account-title {
  color: #ffffff;
}
.account-title {
  font-size: 19px;
  margin-bottom: 18px;
}
.title .account-title,
.edd_receipt_fees {
  margin: 0;
}
.edd_cart_item_image {
  float: left;
  margin-right: 20px;
}
.edd_cart_item_image .wp-post-image {
  margin: 0;
}
.edd_checkout_cart_item_title {
  display: inline-block;
  max-width: 200px;
  line-height: 1.2;
}
.edd_cart_actions a {
  text-decoration: none;
}
.edd_cart_total {
  font-size: 20px;
  text-align: right;
}
#edd-login-account-wrap,
#edd-new-account-wrap {
  margin-top: 0;
  font-size: 18px;
}
#edd-login-account-wrap,
#edd-new-account-wrap {
  padding: 15px 25px;
  background: #fffde9;
  background: -moz-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fffde9), color-stop(100%, #fffcda));
  background: -webkit-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: -o-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: -ms-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: linear-gradient(to bottom, #fffde9 0, #fffcda 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffde9', endColorstr='#fffcda', GradientType=0);
  border: 1px solid #eee;
}
#edd-login-account-wrap a,
#edd-new-account-wrap a {
  background: #be3035;
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
  padding: 6px 12px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 5px;
}
#edd-login-account-wrap a img,
#edd-new-account-wrap a img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
#edd_checkout_user_info,
#edd_register_account_fields,
#edd_cc_fields,
#edd_cc_address {
  background: #fafafa;
  padding: 20px;
  border: 1px solid #eee;
  margin-bottom: 1em;
}
.logged-in #edd_checkout_user_info #edd-last-name-wrap {
  margin-right: 0;
}
#edd_checkout_form_wrap,
#edd_purchase_form_wrap {
  padding-top: 20px;
  position: relative;
  min-height: 500px;
}
.edd-payment-mode-label {
  display: inline-block;
  padding-bottom: 7px;
  font-size: 2.2rem;
  color: #372f2b;
}
.edd-gateway-option {
  display: block;
  border: 1px solid #eee;
  color: #438ac4;
  cursor: pointer;
  padding: 16px;
  background-color: #f4f9fa;
  background-position: 95% center;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}
.edd-gateway-option .edd-gateway {
  margin-right: 8px;
}
#edd-gateway-option-paypal {
  background-image: url(../img/pp-logo-100px.png);
  margin-left: 0;
}
#edd-gateway-option-stripe {
  background-image: url(../img/credit-cards.png);
  background-size: 35% auto;
}
.edd-gateway-option:hover,
.edd-gateway-option-selected {
  background-color: #fff;
}
.edd-gateway-option-selected {
  color: #5f5f5f;
}
#edd_payment_mode_submit {
  float: right;
  padding-top: 55px;
}
.card-expiration .edd-select,
.card-expiration .exp-divider {
  display: inline-block;
  vertical-align: middle;
}
.card-expiration .exp-divider {
  padding: 0 5px;
}
.edd-description {
  font-size: 14px;
  display: block;
  color: #979797;
  font-weight: 300;
}
.edd-input,
.select-wrapper {
  width: 100%;
  margin-top: 8px;
}
.edd-required-indicator {
  color: #ed1c24;
}
.entry-wrapper {
  padding: 30px;
}
#edd_login_fields #edd-user-login-wrap,
#edd_login_fields .edd_login_password,
#edd_login_fields #edd-user-login-submit {
  margin: 0;
  padding: 15px 25px 0;
}
#edd_login_fields #edd-user-login-wrap {
  padding-top: 25px;
}
#edd_login_fields #edd-user-login-submit {
  padding-bottom: 25px;
  margin-bottom: 20px;
}
#edd_purchase_submit {
  padding: 15px 25px;
  border: 1px solid #bfe4f4;
  background: #d5edf8;
  line-height: 50px;
  text-align: center;
}
#edd_purchase_submit .edd_cart_amount {
  font-size: 26px;
  padding-left: 5px;
}
#edd_purchase_submit .edd-submit,
#edd_purchase_submit .edd-cancel {
  font-size: 18px;
}
#edd_purchase_submit .edd-submit {
  padding: 15px 25px;
  text-transform: uppercase;
}
.edd-cancel {
  margin-top: 0;
  margin-bottom: 0;
}
.edd-cancel a {
  display: inline-block;
  text-decoration: none;
  padding-top: 0;
  padding-bottom: 0;
}
#edd_final_total_wrap {
  font-size: 24px;
  margin: 0;
}
.field {
  padding-bottom: 10px;
}
.field input {
  width: 95%;
}
.nav-account {
  font-size: 1.5rem;
  color: #3b86c4;
  margin: 0;
}
.nav-account.alignright {
  float: none;
}
.nav-account.text-right {
  text-align: left;
}
.edd_form h3.legend {
  padding-top: 15px;
}
.ac-sidebar {
  font-size: 1.4rem;
  color: #171717;
}
.ac-sidebar p,
.ac-sidebar ul {
  margin-top: 5px;
}
.ac-sidebar ul {
  list-style: disc;
  margin-left: 20px;
}
.fh-account {
  padding-bottom: 60px;
}
#edd_login_form legend {
  border: 0;
  margin: 0;
}
#edd_login_form .edd_submit {
  float: left;
}
#edd_login_form .edd-lost-password {
  display: inline-block;
  margin-top: .5em;
  font-size: 14px;
  padding-top: 30px;
}
.tml-action-links li {
  display: inline;
}
.col-pw input[type=text],
.col-pw input[type=password] {
  width: 100%;
}
.col-pw .submit {
  float: left;
}
.col-pw .tml-action-links {
  float: right;
}
.forgetmenot input[type=checkbox],
.forgetmenot label {
  display: inline;
}
.page-template-page-pro-php #container {
  background: #141414;
  color: #ffffff;
}
.page-template-page-pro-php .hentry {
  padding-bottom: 80px;
}
.pro-pre-launch {
  position: relative;
  padding-top: 0;
  font-size: 20px;
}
.pro-pre-launch .page-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.75);
  position: relative;
  min-height: 4em;
}
.pro-title {
  display: inline-block;
  text-shadow: 0 0 5px #fbf7c1,0 0 10px #fbf7c1,0 0 50px #fbf7c1;
  position: relative;
  margin-right: 2px;
}
.pro-title .pro {
  display: inline-block;
  font-size: 4em;
  line-height: 20px;
}
.pro-title .glow-border {
  background: #fff;
  position: absolute;
  bottom: -1.8em;
  left: 0;
  width: 98%;
  height: 8px;
  -webkit-box-shadow: 0 0 15px 3px #fbf7c1;
  -moz-box-shadow: 0 0 15px 3px #fbf7c1;
  box-shadow: 0 0 15px 3px #fbf7c1;
}
.pro-page {
  padding-top: 136px;
}
.pro-page .entry-content {
  padding-top: 80px;
  text-align: center;
}
.panel-dark {
  background: rgba(0, 0, 0, 0.7);
  padding: 25px;
  text-align: left;
  width: 425px;
  margin: 0 auto;
}
.panel-dark .newsletter-form {
  padding: 0 0 10px;
}
.panel-dark .newsletter-form p {
  margin: 0 0 20px;
}
.pro-subscribe-success ol,
.pro-subscribe-success p {
  margin: 0;
}
.pro-subscribe-success a {
  color: #19a80e;
  text-decoration: none;
}
.pro-subscribe-success ol {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 14px;
}
.pro-subscribe-success ol li {
  padding: 15px 0;
}
.pro-subscribe-success p {
  font-size: 20px;
}
.related-posts ul {
  margin: 0;
}
.related-posts ul li:last-child {
  margin-right: 0;
}
.related-posts li {
  float: left;
  width: 50%;
}
.related-posts a {
  text-decoration: none;
}
.related-posts .post-link {
  display: block;
}
.related-posts img {
  margin: 0 0 1rem;
}
.rel-post-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.post-cat {
  display: inline-block;
  font-size: 0.875em;
  text-decoration: none;
}
.post-cat:after {
  content: ',';
}
.post-cat:last-child:after {
  content: '';
}
.rel-post-name {
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 5px 0;
  margin: 0;
}
.rel-post-name a {
  color: #372f2b;
}
.rel-post-name a:hover {
  color: #438ac4;
}
.related-posts .comments-link {
  color: #888;
  font-size: 10px;
  background: url(../img/bubble-tiny.png) no-repeat left center;
  padding-left: 15px;
}
.related-posts .comments-link:hover {
  color: #289dbf;
}
.dl-table {
  font-size: 14px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 40px;
  display: block;
}
.dl-table tr,
.dl-table td,
.dl-table th,
.dl-table thead,
.dl-table tbody,
.dl-table tfoot {
  display: block;
}
.dl-table thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.dl-table td {
  /* Behave  like a "row" */
  border: none;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 40%;
}
.dl-table td.empty {
  display: none;
}
.dl-table td:before {
  /* Now like a table header */
  position: absolute;
  /* Top/left values mimic padding */
  top: 1em;
  left: 6px;
  width: 45%;
  padding-right: 10px;
  white-space: nowrap;
  content: attr(data-label);
  font-weight: bold;
}
.dl-table tfoot td {
  padding-left: 6px;
  width: 37%;
  display: inline-block;
  border: 0;
}
.dl-table .icon-trash {
  text-decoration: none;
  font-size: 16px;
}
.col-id {
  color: #ff6d29;
}
.edd-purchase-history .grid_9 {
  margin-bottom: 1em;
}
.column .button,
.edd_invoice .edd_invoice_link {
  padding: 5px 10px;
  font-size: 1.3rem;
}
.page-template-page-users-php p {
  margin-top: 0;
}
.edd_purchase_receipt_product_name {
  min-width: 125px;
}
.comments {
  border-top: 2px solid #e2e1e0;
}
.comments-title {
  border-bottom: 2px solid #e2e1e0;
  font-size: 25px;
  font-family: proxima-nova, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #372f2b;
  padding: 12px 0;
}
.comment {
  padding: 30px 0 35px;
  border-bottom: 1px solid #e2e1e0;
  font-size: 15px;
}
.comment .alert-info {
  margin: 10px 0;
}
.comments .last {
  border-bottom: 0;
}
.comment-author img {
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.comment-header {
  text-transform: uppercase;
}
.comment-author-name,
.comment-author-name > .url {
  color: #372f2b;
  text-decoration: none;
  letter-spacing: 1px;
}
.comment-pubdate {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
}
.is-author,
.has-tag {
  display: inline-block;
  background: #9ac090;
  background: -moz-linear-gradient(top, #9ac090 0, #7cac74 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9ac090), color-stop(100%, #7cac74));
  background: -webkit-linear-gradient(top, #9ac090 0, #7cac74 100%);
  background: -o-linear-gradient(top, #9ac090 0, #7cac74 100%);
  background: -ms-linear-gradient(top, #9ac090 0, #7cac74 100%);
  background: linear-gradient(to bottom, #9ac090 0, #7cac74 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9ac090', endColorstr='#7cac74', GradientType=0);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
  line-height: 1;
  padding: 6px 1em;
  font-size: 12px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.is-author {
  margin-left: 10px;
  padding: 6px 5px;
}
.comment-reply-link {
  background: url(../img/icon-reply.png) no-repeat left 5px;
  padding-left: 25px;
  font-family: "Proxima Nova Semibold", 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.comment-form {
  padding-top: 20px;
}
.comment-form ul {
  margin: 0;
}
.comment-form li {
  margin: 1em 0;
}
.comment-form li,
.comment-form p {
  padding-bottom: 5px;
}
.respond {
  font-size: 15px;
}
.respond input,
.respond textarea {
  width: 80%;
  background-color: #f9f9f9;
}
.respond textarea {
  height: 100px;
}
.respond .btn-comment-submit {
  width: 178px;
  padding: 0;
  background: url(../img/btn-submit-comment.png) no-repeat left top;
  height: 38px;
  color: #fff;
  border: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-family: Helvetica, Arial, sans-serif;
  padding-left: 40px;
}
.respond .btn-comment-submit:hover {
  background-position: left bottom;
}
.commentlist li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.commentlist li ul.children {
  margin: 35px 0 0;
}
.commentlist li ul.children li {
  border-top: 1px solid #e2e1e0;
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-top: 0;
  padding-bottom: 0;
  border: 0;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .comment_content {
  margin-left: 50px;
}
.commentlist .comment_content p {
  margin: .7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: 0;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}
.nocomments {
  margin: 0 20px 1.1em;
}
.fh-gallery {
  padding-bottom: 1.5rem;
}
.fh-gallery .thumbs {
  margin: 8px 0 0 -12px;
  list-style: none;
}
.fh-gallery .thumbs li {
  display: inline-block;
  width: 19.25%;
  padding-left: 12px;
}
.fh-gallery .thumbs li a,
.fh-gallery .thumbs li img {
  display: block;
}
.fh-gallery .thumbs li a {
  border: 2px solid #ccc;
  -webkit-transition: border-color 0.25s ease-in-out;
  -moz-transition: border-color 0.25s ease-in-out;
  -ms-transition: border-color 0.25s ease-in-out;
  -o-transition: border-color 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out;
}
.fh-gallery .thumbs li a:hover {
  border-color: #262626;
}
.fh-gallery img {
  margin: 0;
  display: block;
  width: 100%;
}
.mod-button .icon {
  font-size: 2rem;
  height: 2.6rem;
}
.mod-block {
  padding: 15px;
  background: #ffffff;
}
.mod-block .fh-lpbox {
  margin: 0;
  border: 0;
}
.sidebar-product .fh-lpbox {
  margin-bottom: 10px;
}
.mod-pro {
  padding-bottom: 1.2rem;
  font-size: 1.7rem;
}
.mod-pro a {
  text-decoration: none;
}
.mod-pro-access {
  background: #363636;
  color: #ffffff;
}
.mod-pro-access .mod-title {
  color: #ffffff;
}
.mod-pro-access li {
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px dashed #464646;
}
.mod-pro-access .icon {
  font-size: 18px;
  height: 16px;
  line-height: 1;
}
.mod-pro-access a.button {
  margin-top: 10px;
  display: block;
  text-transform: none;
}
.compat-box {
  background: #fff;
  border: 3px solid #d1d1d1;
  padding: 1.5rem;
  font-size: 1.4rem;
  color: #666666;
}
.compat-box h3,
.compat-box h4 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.compat-box h3 {
  font-size: 1.4rem;
}
.compat-box p {
  margin: 10px 0;
  font-size: 1.4rem;
}
.compat-box img.alignleft {
  margin: 0;
  max-width: 40%;
}
.compat-box a {
  text-decoration: none;
}
.compat-box h4,
.compat-box a {
  font-size: 1.2rem;
}
.compat-link {
  font-size: 1.2rem;
  width: 100%;
  clear: both;
  padding-top: 10px;
}
.compat-link a {
  color: #0c607c;
  border-bottom: 1px solid #0c607c;
  text-transform: uppercase;
}
.compat-link a .icon {
  margin: 0;
  padding-left: 2px;
}
.alert {
  font-size: 3.2rem;
  color: #372f2b;
  background: #fffde9;
  background: -moz-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fffde9), color-stop(100%, #fffcda));
  background: -webkit-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: -o-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: -ms-linear-gradient(top, #fffde9 0, #fffcda 100%);
  background: linear-gradient(to bottom, #fffde9 0, #fffcda 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffde9', endColorstr='#fffcda', GradientType=0);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 30px;
}
.alert-inner {
  padding: 16px 18px 14px;
  -moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.67);
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.67);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.67);
}
.btn-alert {
  background: #be3035;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: .2rem;
  padding: 10px 12px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.btn-alert:hover {
  color: #fff;
  background: #9a061a;
}
.alert-alt {
  color: #000;
  text-align: center;
  padding: 25px 0 35px;
  margin-bottom: 45px;
  font-size: 24px;
}
.alert-alt p {
  margin: 0 0 10px;
}
.alert-alt .btn-alert {
  float: none;
}
.bg-light-wrapper .alert {
  margin-bottom: 0;
}
.breadcrumbs {
  font-size: 1.3rem;
  padding: 10px 14px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 1rem;
}
.breadcrumbs a,
.breadcrumbs .trail-end {
  display: inline-block;
  padding: 3px 5px;
  vertical-align: middle;
}
.trail-end {
  font-weight: 600;
}
.sep {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  width: 0;
  height: 0;
  font-size: 0;
  border-top: 4px solid rgba(255, 255, 255, 0);
  border-bottom: 4px solid rgba(255, 255, 255, 0);
  border-left: 4px solid #aaaaaa;
}
.single-breadcrumbs {
  font-size: 1.3rem;
  text-transform: uppercase;
  padding-bottom: 22px;
}
.single-breadcrumbs a {
  color: #372f2b;
}
.single-breadcrumbs a:hover,
.single-breadcrumbs a:focus {
  color: #ef4135;
}
.single-breadcrumbs .sep:after {
  border-left-color: #ffffff;
}
#main .trail-browse {
  display: none;
}
.pagination {
  clear: both;
  padding: 20px 0;
}
.paging-top {
  padding-top: 45px;
}
.blog .post .grid_2 {
  float: left;
  margin-right: 1em;
}
.page-navigation,
.wp-prev-next {
  padding-top: 1em;
}
.fh-page-navi,
.page-numbers {
  margin: 0;
}
.fh-page-navi li,
.page-numbers li,
.fh-page-navi a,
.page-numbers a {
  line-height: 25px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  font-size: 0.875em;
}
.fh-page-navi li,
.page-numbers li {
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: center;
  text-transform: uppercase;
}
.fh-page-navi a,
.page-numbers a {
  background: #888;
  display: block;
  text-decoration: none;
}
.fh-page-navi a:hover,
.page-numbers a:hover,
.fh-page-navi a:focus,
.page-numbers a:focus {
  background: #7bab73;
}
.fh-page-navi .fh-current,
.page-numbers .fh-current,
.fh-page-navi .current,
.page-numbers .current,
.fh-page-navi a,
.page-numbers a {
  color: #fff;
  width: 25px;
}
.fh-page-navi .current,
.page-numbers .current {
  display: block;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.fh-page-navi .more-pages a,
.page-numbers .prev,
.page-numbers .next {
  font-size: 0.875em;
}
.fh-page-navi .more-pages a,
.fh-page-navi .fh-last-page-link a,
.fh-page-navi .fh-first-page-link a,
.fh-page-navi .current,
.page-numbers .prev,
.page-numbers .next,
.page-numbers .current {
  color: #fff;
  background: #9ac090;
}
.fh-page-navi .more-pages a,
.fh-page-navi .fh-last-page-link a,
.fh-page-navi .fh-first-page-link a,
.page-numbers .prev,
.page-numbers .next {
  width: auto;
  padding: 0 10px;
}
.fh-page-navi li.fh-current,
.fh-page-navi .current {
  background: #7bab73;
}
.edd_pagination ul.page-numbers {
  margin: 0;
  padding: 10px;
  background: #eee;
  text-align: right;
}
.sidebar-product {
  padding-top: 0;
}
.mod {
  margin-bottom: 1.6rem;
}
.mod .eddsw-search-field {
  width: 100%;
  margin: 0 6px 1rem 0;
}
.mod .button,
.mod .searchsubmit {
  display: inline-block;
  text-transform: uppercase;
}
.mod .searchsubmit {
  font-size: 1.3rem;
  height: 35px;
  vertical-align: top;
}
.mod-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.mod-header a {
  float: right;
  font-size: 15px;
}
.mod-header a:hover {
  color: #007c36;
}
.col-sidebar {
  margin-top: 1em;
}
.col-sidebar .mod-block {
  padding: 10px 14px;
}
.col-sidebar .mod-title {
  padding: 5px 0;
  font-size: 1.8rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: 400;
}
.sidebar-nav {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  margin: 0;
}
.sidebar-nav > li {
  border-bottom: 1px solid #f5f5f5;
  padding: 0.75rem 0;
}
.sidebar-nav > li:last-child {
  border: 0;
}
.sidebar-nav a {
  text-decoration: none;
}
.sidebar-nav .icon {
  font-size: 1.7rem;
  color: #888;
  padding-right: 5px;
}
.sidebar-nav .children {
  margin: 1rem 0;
  border-left: 1px solid #aaaaaa;
}
.sidebar-nav .children li {
  position: relative;
  padding: 5px 0 5px 1.4rem;
}
.sidebar-nav .children li:before {
  content: '';
  border-bottom: 1px solid #aaa;
  width: 1.4rem;
  height: 0;
  position: absolute;
  left: 0;
  top: 1.5rem;
}
.sidebar-nav .current-cat > a,
.sidebar-nav .current-subcat > a {
  color: #c33d42;
}
.side-nav-item > a,
.side-nav-item > .icon {
  display: inline-block;
  vertical-align: top;
}
.side-nav-item > a {
  max-width: 82%;
}
.side-nav-item .icon {
  font-size: 1.3rem;
  color: #888;
  padding-right: 5px;
}
.side-nav-item,
.sub-item {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
.widget_edd_cart_widget .edd-cart-number-of-items,
.widget_edd_cart_widget .edd-cart {
  font-size: 1.4rem;
}
.widget_edd_cart_widget .edd-cart li {
  padding: 5px 0;
}
.widget_edd_cart_widget .edd-cart-item {
  border-bottom: 1px dotted #aaaaaa;
}
.widget_edd_cart_widget .edd-cart-item-title {
  width: 65%;
  line-height: 1.2;
}
.widget_edd_cart_widget .edd-cart-item-price {
  width: 20%;
}
.widget_edd_cart_widget .edd-remove-from-cart {
  width: 20px;
}
.widget_edd_cart_widget .edd_subtotal {
  font-size: 1.5rem;
  font-weight: 700;
}
.mod-related .product {
  width: 25%;
}
.mod-ad {
  border: 5px solid #be3035;
  padding: 30px;
  text-align: center;
}
.mod-ad-title {
  color: #be3035;
  font-size: 16px;
  letter-spacing: .26em;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.mod-ad-body {
  padding-top: 25px;
  line-height: 1.15;
}
.mod-ad-body h4 {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mod-ad-body strong {
  color: #372f2b;
  font-size: 20px;
}
.mod-ad-body a {
  display: inline-block;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.mod-list {
  font-size: 1.5rem;
}
.mod-list li {
  border-bottom: 1px solid #dcdcdc;
  padding: 7px 0 9px;
}
.mod-list .last {
  border: 0;
}
.mod-list,
.mod-list a {
  color: #372f2b;
}
.mod-list li:first-child a {
  padding-top: 10px;
}
.mod-paypal {
  overflow: hidden;
}
.mod-paypal img {
  float: left;
  margin-right: 1em;
}
.cat-item {
  border-top: 1px solid #dcdcdc;
}
.cat-item a,
.cat-item-all a {
  display: block;
  text-decoration: none;
  padding: 8px 0;
  background: url(../img/arrow-small.png) no-repeat right center;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color 0.5s ease-in-out;
  -ms-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
.mod-list .last {
  border: 0;
}
.mod-list li:first-child a {
  padding-top: 10px;
}
.mod-newsletter .mod-title {
  background: url(../img/icon-newsletter.png) no-repeat left 6px;
  padding-left: 45px;
  font-size: 20px;
}
.newsletter-form input {
  width: 190px;
  height: 36px;
  margin-right: 7px;
  font-size: 15px;
}
.newsletter-form button {
  width: 100px;
  height: 36px;
  font-size: 16px;
}
.mod-search {
  background: #eaeaea;
  border: 1px solid #a3a3a3;
  padding: 20px 15px;
}
.mod-search p {
  font-size: 13px;
  margin-top: 5px;
}
.mod-search .widget_search {
  overflow: hidden;
  padding: 25px 0;
}
.mod-search input {
  display: inline-block;
  vertical-align: middle;
}
.mod-search .input-text {
  width: 65%;
  margin-right: 5px;
}
.mod-search .button {
  height: 36px;
  padding: 0 1.5rem;
}
.fh-lpbox {
  font-size: inherit;
  border: 7px solid #fff;
  padding: 5px;
  color: #838280;
}
.fh-lpbox .alert-inner {
  border: 1px dashed #b8b8b8;
}
.fh-lpbox .mod-title {
  font-size: 2.4rem;
  color: #0889c4;
  border-bottom: 1px dashed #b8b8b8;
  padding-bottom: 10px;
  margin-bottom: 1.4rem;
}
.fh-lpbox .button {
  display: block;
  text-transform: none;
  margin-top: 1.6rem;
}
.fh-lpbox p {
  margin-bottom: 0;
}
#edd_purchase_receipt {
  margin-bottom: 40px;
}
#edd_purchase_receipt h3 {
  margin-bottom: .5em;
  font-size: 28px;
}
#edd_purchase_receipt_products .edd_purchase_receipt_files {
  margin: 0;
}
#edd_purchase_receipt_products .edd_purchase_receipt_files > li {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#edd_purchase_receipt_products .edd_purchase_receipt_files > li li {
  padding-bottom: 0;
}
#edd_purchase_receipt_products .edd_purchase_receipt_files > li a {
  text-decoration: none;
}
#edd_purchase_receipt_products .edd_download_file {
  list-style: none;
}
.fh-db {
  display: inline-block;
}
.edd_download_file .button {
  font-size: 14px;
  width: 250px;
  margin-right: 15px;
  vertical-align: middle;
}
.edd_bundled_product_name {
  text-transform: none;
  letter-spacing: 0;
}
.entry-content .edd_purchase_receipt_files,
.entry-content .edd_purchase_receipt_files ul {
  list-style: none;
  margin: 0;
}
#edd_purchase_receipt_products tfoot {
  background: #e0e0e0;
  font-size: 18px;
  font-weight: 700;
}
.mod-newsletter .mod-title {
  background: url(../img/icon-newsletter.png) no-repeat left 6px;
  padding-left: 45px;
  font-size: 20px;
}
.mod-newsletter input {
  font-size: 15px;
  width: 160px;
  vertical-align: middle;
  margin-right: 7px;
}
.mod-newsletter button {
  width: 100px;
  height: 36px;
}
.footer .menu-item a {
  border: 0;
}
.scroll {
  background-color: #d7d7d7;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 5em;
  right: 26px;
  text-decoration: none;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: none;
}
.scroll .icon {
  display: block;
  font-size: 34px;
  width: 18px;
  height: 22px;
  margin: 0;
}
.scroll-link {
  text-decoration: none;
  color: #ffffff;
}
.footer-note {
  background: url(../img/ripped-paper.png) repeat-x #000000;
  padding: 50px 0 30px;
  margin: 0 0 10px;
  text-align: center;
  color: #9a9a9a;
  font-size: 18px;
  line-height: 1.122em;
}
.footer-note .footer-title {
  font-size: 20px;
  letter-spacing: -1px;
  color: #f5f5f5;
}
.footer-note p {
  margin: 10px 1em 1em;
}
.footer-note-link a {
  color: #525252;
  font-size: 12px;
}
.main-footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0 40px;
}
.main-footer .widget_nav_menu .footer-title {
  display: none;
}
.main-footer .menu {
  list-style: none;
  margin: 5px 0;
  padding: 0;
  font-size: 15px;
}
.main-footer .menu-item {
  padding: 10px 0;
  border-bottom: 1px solid #454545;
}
.main-footer .menu-item a {
  color: #fff;
  text-decoration: none;
}
.main-footer .widget_text {
  margin-top: 1em;
}
.main-footer .widget_text .footer-title {
  color: #c6464a;
  font-size: 13px;
}
.footer-title {
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
}
.small-title {
  color: #c6464a;
  font-size: 13px;
}
.footer-col {
  width: 190px;
  margin-right: 15px;
  float: left;
}
.footer-links {
  list-style: none;
  margin: 5px 0;
  padding: 0;
  font-size: 15px;
}
.copyright {
  clear: both;
  color: #377ebe;
  padding-top: 1em;
}
.page-landing {
  background: #f0f0f0;
}
.entry-landing {
  padding: 30px;
}
.fh-landing-image {
  float: left;
}
.fh-content {
  width: 65%;
}
.fh-content h1 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 1em;
}
.fh-content .mymail-wrapper {
  padding-bottom: 15px;
}
.fh-content .mymail-wrapper input[type="email"] {
  width: 100%;
  padding: 1em;
  height: 3em;
}
.fh-content .button {
  padding: 14px;
}
#edd_checkout_wrap .fh-progress-bar {
  margin: 1em 0;
  list-style: none;
}
.fh-progress-bar {
  font-size: 1.4rem;
}
.fh-progress-bar li {
  float: left;
  width: 28.65%;
  background: #dcdcdc;
  padding: 7px 15px 5px 20px;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #888;
  height: 36px;
}
.fh-progress-bar li a {
  display: block;
  text-decoration: none;
  color: #888888;
}
.fh-progress-bar .step4 {
  width: 14%;
}
.fh-progress-bar li:not(.step4):before,
.fh-progress-bar li:not(.step4):after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fh-progress-bar li:not(.step4):before {
  border-top: 18px solid #dcdcdc;
  border-bottom: 18px solid #dcdcdc;
  border-left: 9px solid #f0f0f0;
  right: -9px;
  z-index: 1;
}
.fh-progress-bar li:not(.step4):after {
  border-top: 18px solid #f0f0f0;
  border-bottom: 18px solid #f0f0f0;
  border-left: 9px solid #dcdcdc;
  z-index: 2;
}
.fh-progress-bar li.completed {
  background: #7bab73;
}
.fh-progress-bar li.completed:after {
  border-left-color: #7bab73;
}
.fh-progress-bar li.completed a {
  color: #ffffff;
}
.fh-progress-bar li.current {
  background: #888;
  color: #ffffff;
}
.fh-progress-bar li.current:after {
  border-left-color: #888888;
}
.fh-progress-bar .icon-checkmark {
  font-size: 12px;
  display: inline-block;
  border: 1px solid #fff;
  line-height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  text-align: center;
  margin: 0;
  float: right;
}
.step2 li.step1:before,
.step3 li.step2:before {
  border-top-color: #888;
  border-bottom-color: #888888;
}
.step3 li.step1:before {
  border-top-color: #7bab73;
  border-bottom-color: #7bab73;
}
#edd-next-submit-wrap {
  margin: 0;
}
#edd_next_button {
  font-size: 20px;
}
.header-alert {
  border: 0;
  font-size: 2.8rem;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #000000;
}
.header-alert .alert-inner {
  border-left: 0;
  border-right: 0;
}
.header-alert .alert-inner p {
  margin: 0;
}
.header-alert .fh-clock {
  padding-right: 5px;
  font-size: 30px;
}
.big-entry {
  padding: 2% 0;
  line-height: 1.6;
}
.big-entry h2,
.big-entry h3 {
  font-weight: 400;
}
.big-entry h2 {
  font-size: 3.2rem;
  margin-bottom: 40px;
}
.big-entry h3 {
  font-size: 2.6rem;
  padding-top: 30px;
  margin-bottom: 0;
}
.icon-block {
  padding-bottom: 15px;
}
.icon-block .grid_2 {
  text-align: center;
}
.icon-block .icon {
  font-size: 6rem;
  color: #000;
  padding-top: 10px;
}
.l-grid {
  max-width: 740px;
  margin: 40px auto;
}
.price-box {
  border: 1px solid #aaa;
  background: #fafafa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 2em;
}
.price-box h2 {
  padding: 30px 0;
  background: #fefefe;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.price-box p {
  padding: 20px;
  margin: 0;
}
.price-box .price {
  font-size: 2.6rem;
  line-height: 1;
  height: 120px;
  padding: 2rem 0;
  background: #e5e5e5;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
.price-box .big {
  font-size: 200%;
}
.price-box .big,
.price-box .currency {
  display: inline-block;
  vertical-align: top;
}
.price-box .currency {
  position: relative;
  top: 5px;
  padding-right: 2px;
}
.price-box .price-set {
  display: block;
  font-size: 2rem;
}
.recommended {
  border: 2px solid #438ac4;
  position: relative;
  margin-bottom: 0;
}
.recommended .recommend-label {
  background: #438ac4;
  padding: 0 15px;
  line-height: 2.6rem;
  color: #fcfefd;
  display: inline-block;
  position: absolute;
  right: -2px;
  top: -2.6rem;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.arrow-label-wrap {
  position: absolute;
  top: 34%;
  right: -25%;
}
.arrow-label {
  display: inline-block;
  background: #d84747;
  color: #fff;
  padding: 0 20px 0 10px;
  line-height: 34px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  position: relative;
}
.arrow-label:after {
  right: 100%;
  top: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #d84747;
  border-width: 17px;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}
@-ms-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}
.bounce {
  -webkit-animation: bounce 2.5s infinite;
  -moz-animation: bounce 2.5s infinite;
  -ms-animation: bounce 2.5s infinite;
  animation: bounce 2.5s infinite;
}
/******************************
NAV WITH ICON AND DESCRIPTION
******************************/
.nav-icons .menu-link {
  text-decoration: none;
  color: #000000;
  font-size: 2.4rem;
  display: block;
  padding: 20px 20px 20px 65px;
  position: relative;
}
.nav-icons .menu-link:hover {
  background-color: #f7f7f7;
}
.nav-icons .menu-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 1px;
  border-bottom: 2px dotted #e4e3e8;
}
.nav-icons .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  height: 28px;
  margin-top: -14px;
  font-size: 2.2rem;
}
.sidebar-left .current-menu-item .menu-link,
.sidebar-left .current-menu-item .menu-link:hover {
  background-color: #fffde8;
}
.nav-desc {
  display: block;
  font-size: 1.4rem;
  color: #888;
}
hr {
  border: 0;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 1.6rem;
}
.tpl-twocol-left .panel {
  padding: 10px;
}
.twocol-left {
  padding: 20px;
  /* &:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #f8f6f7;
    border-right: 1px solid #f0efeb;
  } */
}
.twocol-left h1 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.twocol-left img {
  margin-bottom: 1.5em;
}
.sidebar-left {
  padding-left: 10px;
}
.tpl-twocol-left .sidebar-left,
.tpl-twocol-left .grid_8 {
  width: 100%;
}
.column-wrap {
  padding-bottom: 30px;
}
.column-wrap .grid:first-child {
  margin-left: 0;
}
.column-wrap .grid:last-child {
  margin-right: 0;
  float: right;
}
.column-wrap p {
  margin-top: 0;
}
.column-wrap p:empty {
  margin: 0;
}
.column-wrap h2,
.column-wrap h3 {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
.column-wrap .wp-caption {
  background: none;
  padding: 0;
}
.column-wrap .wp-caption img {
  margin-bottom: 1em;
}
.column-wrap .wp-caption a {
  text-decoration: none;
}
.testimonials blockquote {
  margin: 0 0 10px;
}
.testimonials .cite {
  font-size: 1.4rem;
}
.testimonial {
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}
#edd_cc_fields p {
  padding-right: 38%;
}
#edd-card-number-wrap {
  background: url(../img/credit-cards.png) no-repeat right 92%;
  background-size: 34% auto;
}
#edd-card-name-wrap {
  background: url(../img/rapidssl-seal.gif) no-repeat right 96%;
}
#edd-card-cvc-wrap {
  background: url(../img/cc.png) no-repeat right 96%;
  background-size: 34% auto;
}
#edd_mailchimp p {
  margin: 0;
}
#edd_purchase_submit input[type="checkbox"],
#edd_purchase_submit label {
  display: inline-block;
  margin-right: 5px;
  max-width: 90%;
  line-height: 1.2;
  text-align: left;
  vertical-align: top;
}
#edd_mailchimp input[type="checkbox"] {
}
.entry-content .search-box {
  max-width: 80%;
}
.entry-content .search-box input[type=text] {
  width: 84%;
}
.blog-banner {
  padding: 1em 0;
}
.blog-banner .banner-title {
  font-size: 3rem;
  color: #f0f0f0;
}
.banner-tag {
  font-size: 1.8rem;
  color: #c5c5c5;
}
.list-checked li {
  position: relative;
  padding: 0 0 1.2rem 3rem;
}
.list-checked li:before {
  font-family: fh-custom;
  content: "\e600";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.7rem;
  color: #82b13f;
}
.probox-dark {
  background: #262626;
  color: #fff;
  padding: 7px;
}
.probox-dark .mod-title {
  color: #fff;
  font-weight: normal;
  border-color: #888;
  margin: 0 auto 25px;
  padding-bottom: 20px;
}
.probox-dark .alert-inner {
  border-color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-top: 28px;
  padding-bottom: 30px;
}
.probox-dark .button {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.freebies-banner h1 {
  font-weight: normal;
}
.freebies-banner .single-row {
  height: 210px;
}
.freebies-banner .products {
  background: none;
  padding: 0;
  margin: 15px 0 10px;
}
.freebies-banner .product {
  background: #f0f0f0;
}
.freebies-banner .btn-large {
  padding: 0.65em 1.5em;
  width: auto;
}
.mod-single-item .left,
.mod-single-item .button {
  display: inline-block;
  vertical-align: middle;
  margin: 0.5em 0;
}
.mod-single-item .left {
  font-size: 0.875em;
  line-height: 1.15;
  margin-right: 10px;
}
.mod-single-item .button {
  font-size: 1.125em;
}
.btn-special {
  background: #fff0b4;
  border: 1px solid #fff;
  color: #676664;
  padding-left: 1em;
  padding-right: 1em;
}
.btn-special:hover {
  background: #fde270;
  color: #676664;
}
.js-search .main-menu-link {
  width: 75px;
  font-size: 1.8rem;
  line-height: 69px;
}
.js-search .main-menu-link:focus {
  outline: none;
}
.js-search.hover .main-menu-link {
  background: #292929;
}
.js-search-box .searchsubmit {
  float: right;
}
.js-search-box .main-search {
  margin-top: 20px;
}
.js-search-box .js-close {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.813em;
  color: #555;
  margin-right: 1em;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.js-search-box .js-close .icon {
  margin: 0;
}
.featured-items h2 .icon,
.mod-feat-items h3 .icon {
  font-size: 2.2rem;
  margin-right: 10px;
  line-height: 1.2;
}
.featured-items h2 {
  font-size: 2.6rem;
  line-height: 1;
  padding-bottom: 0.5em;
  position: relative;
  padding-left: 1.25em;
  float: left;
}
.featured-items .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.featured-items .product {
  width: 49%;
  max-width: none;
  margin: 7px 0 7px 1%;
}
.featured-items .single-row {
  max-height: none;
}
.tax-download_category .featured-items {
  padding: 0;
}
.single-download .page-header {
  margin-bottom: 0;
}
.error404 .page-header {
  margin: 0;
}
.error404 .page-header p {
  font-size: 1.8rem;
}
.error404 .banner-title {
  font-size: 6rem;
}
.content-404 {
  padding: 2em 0;
}
.content-404 h2 {
  padding-bottom: 1em;
}
.sidebar-freebies .mod-related ul,
.sidebar-post .mod-related ul {
  margin-left: -2%;
}
.sidebar-freebies .mod-related li,
.sidebar-post .mod-related li {
  display: inline-block;
  vertical-align: top;
  width: 47%;
  margin: 0 0 2% 2%;
}
.sidebar-freebies .mod-related .wp-post-image,
.sidebar-post .mod-related .wp-post-image {
  display: block;
  width: 100%;
}
.sidebar-freebies .btn-green,
.sidebar-post .btn-green {
  padding: 0.75em 1em;
  line-height: 1;
  font-weight: bold;
}
.sidebar-freebies .btn-green .icon,
.sidebar-post .btn-green .icon {
  height: 20px;
  font-size: 1.25em;
  margin-right: 10px;
  vertical-align: top;
}
.mod-block .single-row {
  max-height: none;
}
.search-no-results .eddsw-form-container {
  overflow: hidden;
}
.search-no-results #s {
  width: 75%;
}
.search-no-results .searchsubmit {
  float: right;
}
.page-template-page-users .container_12 .grid_9 {
  margin-bottom: 1em;
}
.mod-feat-items .mod-title {
  float: left;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* PRO EXCLUSIVES */
.pro-exclusives {
  background: url(../img/crossed_stripes.png) repeat;
  padding: 2em 2.5em;
  margin-bottom: 2em;
  position: relative;
}
.pro-exclusives .h2 {
  color: #fafafa;
}
.pro-exclusives .h2 .light {
  color: #dadada;
}
.pro-exclusives p {
  margin-top: 0;
  color: #dadada;
}
.pro-exclusives strong {
  color: #fbf6b2;
}
.pro-exclusives .close {
  text-decoration: none;
  color: #b9b9b9;
  font-size: 1.15em;
  font-weight: 600;
  position: absolute;
  top: 10px;
  right: 1em;
}
.pro-exclusives .close:hover {
  color: #ffffff;
}
.pro-exclusives .mc-field-group {
  padding-bottom: 10px;
}
.pro-exclusives .green {
  color: #bce445;
}
.pro-exclusives .error {
  margin-bottom: 0;
}
.joined {
  text-align: center;
  padding: 1em 0 3em;
}
.joined p {
  font-size: 1.25em;
  margin: 0;
}
.pro-exclusive-form {
  padding-top: 1em;
}
.pro-exclusive-form label {
  color: #dadada;
}
.pro-exclusive-form .field-text {
  width: 100%;
}
.pro-exclusive-form .button {
  background: url(../img/arrow-right.png) no-repeat 95% center #259abd;
  background-size: 10% auto;
  padding-right: 45px;
  font-weight: 600;
}
.pro-exclusive-form label,
.pro-exclusive-form input {
  font-weight: normal;
}
.pro-exclusive-form .asterisk {
  color: #ff0000;
}
.pro-exclusive-form .response {
  clear: both;
}
.pro-exclusive-form .ajax-loader,
.pro-exclusive-form .button {
  display: inline-block;
  vertical-align: middle;
}
.pro-exclusive-form .ajax-loader {
  padding-left: 5px;
}
.pro-submit {
  padding-top: 1.45em;
}
.pro-success {
  padding: 2em 0 0;
}
.alert-plain {
  background: #fff5d1;
  padding: 0.5em 1em;
}
.alert-plain a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.alert-plain a:hover {
  color: #289dbf;
}
.checkout-extra {
  font-size: 1.75em;
}
.fh-cart-checkout {
  max-width: 640px;
}
/* NEW DOWNLOAD CATEGORY PAGE */
.fh-cat-img {
  display: none;
}
.banner-title {
  margin-bottom: 10px;
}
.actions {
  padding-top: 2em;
  font-size: 0.875em;
  line-height: 1;
}
.scroll-down {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
}
.scroll-down a {
  display: block;
  background: #b9e2f4;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  line-height: 38px;
  text-align: center;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}
.scroll-down a .icon {
  margin: 0;
  font-size: 2em;
  width: 16px;
  height: 16px;
  color: #b9e2f4;
  text-shadow: 0 2px 0 #454545;
}
.banner-link {
  color: #8bd3f0;
  margin-right: 1em;
}
.banner-link .icon {
  margin-right: 10px;
  font-size: 1.25em;
  vertical-align: top;
}
.cat-footer {
  background: #fff5d6;
  margin-top: 5em;
  padding: 4em 0 3em;
  color: #3a2424;
}
.cat-footer .video-wrapper {
  margin: 0.75em 0;
}
.cat-footer .banner-link {
  color: #d84747;
  margin-right: 0;
}
.cat-footer-title {
  border-bottom: 1px solid #d8cbb2;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.tax-download_category .no-bg {
  background-image: none;
  padding-top: 1.5em;
}
.cat-footer-promo {
  background: url(../img/ripped-paper-dl.png) repeat-x #000000;
  padding: 3em 0 1em;
  color: #9A9A9A;
  font-size: 1.5em;
  line-height: 1.2;
}
.cat-footer-promo .h1 {
  color: #f0f0f0;
  font-size: 1.45em;
  margin-bottom: 1.2em;
}
.cat-footer-promo .btn-primary {
  margin-top: 1.5em;
}
.cat-promo {
  position: relative;
  padding: 0 4em 2em;
}
.cat-promo:before {
  content: '';
  display: block;
  width: 50%;
  height: 1px;
  background: #3a3a3a;
  position: absolute;
  bottom: 0;
  left: 25%;
}
.meta-page {
  color: #f8f8f8;
  text-transform: uppercase;
  padding: 0.75em 0;
}
.tax-download_category .breadcrumbs .trail-begin + li + li {
  display: none;
}
.vcard-wrapper {
  clear: both;
  padding-top: 2em;
}
address {
  font-style: normal;
}
.site-vcard {
  clear: both;
  color: #8e8e8e;
}
.site-vcard > span {
  display: inline-block;
  position: relative;
  padding: 0 0 5px 2em;
}
.site-vcard .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.social-media {
  padding-top: 1em;
}
.social-media h3 {
  color: #a9a9a9;
  margin-bottom: 5px;
}
.social-media a {
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: 32px;
  text-indent: -999em;
  margin-right: 3px;
}
.social-media .fb {
  background: url(../img/icon-facebook.png) no-repeat;
}
.social-media .tw {
  background: url(../img/icon-twitter.png) no-repeat;
}
.social-media .gp {
  background: url(../img/icon-googleplus.png) no-repeat;
}
.social-media .rss {
  background: url(../img/icon-rss.png) no-repeat;
}
.mod-extra {
  margin-bottom: 2em;
  padding: 3em 1.5em 2em;
}
.mod-extra .block-title {
  float: none;
  padding-bottom: 2em;
}
.mod-extra .column {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 2em;
}
.mod-extra .column h3,
.mod-extra .column .h3 {
  color: #3f86c6;
}
.mod-extra .column .icon {
  font-size: 0.875em;
  color: #000;
  position: absolute;
  left: 0;
  top: 1px;
}
.bottom-group .block-title {
  font-weight: normal;
  position: relative;
  margin-bottom: 2em;
}
.bottom-group .block-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 100%;
  height: 1px;
  background: #e3e3e3;
  z-index: 0;
}
.bottom-group .block-title span {
  background: #f0f0f0;
  position: relative;
  z-index: 1;
  padding: 0 0.5em;
}
.bottom-group .mod-extra {
  padding: 2em 3em;
  position: relative;
}
.bottom-group .mod-extra .h3 {
  font-size: 1.25em;
  max-width: 65%;
  margin: 0 auto;
}
.bottom-group .force-height {
  min-height: 390px;
  padding-bottom: 3em;
}
.bottom-group .force-height p:last-child {
  position: absolute;
  bottom: 1em;
  left: 0;
  width: 100%;
  padding: 0 3em;
}
.bottom-group .col-full .h1 {
  font-size: 2.125em;
  margin-top: 0.75em;
}
.bottom-group .col-full blockquote {
  font-size: 1.5em;
  margin: 2em auto;
  max-width: 60%;
  color: #282828;
}
.bottom-group .col-full .column {
  margin-top: 3em;
  margin-bottom: 3em;
}
.bottom-group .col-full .btn-primary {
  text-transform: none;
  padding: 1em 3em;
  font-size: 1.125em;
}
.bbp-author-avatar {
  display: inline-block;
  vertical-align: middle;
  max-width: 25px;
}
.pro-share {
  padding: 1em;
  color: #fff;
  font-size: 1.5em;
}
.pro-share .buttons {
  padding-top: 10px;
}
.pro-share .share-button {
  display: inline-block;
  padding: 0 5px;
}
.pro-share .fb-share-button > span {
  top: -9px;
}
.panel .cleanlogin-container {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
  max-width: none;
}
.panel .cleanlogin-form input[type="text"] {
  padding-top: 12px;
  padding-bottom: 12px;
  height: auto;
  text-align: center;
}
.pw-reset {
  max-width: 450px;
  margin: 0 auto;
}
.pw-reset .cleanlogin-notification {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.pw-reset p {
  margin-top: 0;
}
.pw-reset a {
  text-decoration: none;
}
.pw-reset .cleanlogin-form-bottom,
.pw-reset .cleanlogin-form-login-link {
  display: none;
}
.tax-download_category .banner-title,
.tax-download_category .meta-page {
  display: inline-block;
  vertical-align: baseline;
}
.tax-download_category .banner-title {
  margin-right: 1em;
}
.top-banner {
  display: none;
  background: #2698ba;
  text-align: center;
  color: #fff;
  font-size: 0.875em;
  line-height: 1;
}
.top-banner .top-banner-title {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 1.125em;
  padding-right: 0.75em;
  width: 80%;
}
.top-banner .button {
  display: inline-block;
  vertical-align: middle;
  background-color: #262626;
  padding: 0 1em;
  height: 34px;
  line-height: 34px;
  -moz-box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.25);
}
.top-banner .button:hover {
  background-color: #125063;
}
.top-banner .button .right-angle {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 10px;
}
.top-banner-body {
  padding: 1em 0;
  width: 95%;
  max-width: 1110px;
  margin: 0 auto;
}
.blog .page-header,
.category .page-header,
.single-post .page-header {
  margin-bottom: 0;
  background-color: #262626;
}
.blog .page-header a,
.category .page-header a,
.single-post .page-header a {
  color: #9dbdcc;
  text-decoration: none;
}
.blog .page-header a:hover,
.category .page-header a:hover,
.single-post .page-header a:hover {
  color: #ffffff;
}
.blog .toolbar-bottom,
.category .toolbar-bottom,
.single-post .toolbar-bottom {
  margin-bottom: 3em;
}
.blog .toolbar-bottom .fh-page-navi,
.category .toolbar-bottom .fh-page-navi,
.single-post .toolbar-bottom .fh-page-navi {
  width: 100%;
  text-align: center;
}
.blog .page-navigation,
.category .page-navigation,
.single-post .page-navigation {
  text-align: center;
}
.content-post .col-main {
  margin-bottom: 2em;
}
.fh-feat-post {
  background-color: #262626;
}
.fh-feat-post .wp-post-image {
  width: auto;
  max-height: 500px;
  display: block;
  margin: 0 auto;
}
.fh-feat-post .video-wrapper {
  padding-bottom: 22.875%;
}
.fh-feat-post .feat-post-title {
  font-weight: normal;
  padding: 1em;
}
.fh-feat-post .feat-post-title h2 {
  color: #ffffff;
  font-size: 2.25em;
}
.fh-feat-post .byline {
  color: #ececec;
  text-align: center;
  border: 0;
}
.fh-feat-post .feat-post-wrap {
  display: inline-block;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.fh-feat-post .post-link {
  text-decoration: none;
}
.fh-feat-post .post-link .feat-figure {
  position: relative;
}
.fh-feat-post .post-link:hover .feat-post-title h2 {
  color: #d8f1fd;
}
.blog-byline {
  background-color: #ffffff;
  padding: 1.5em 0;
  color: #c33d42;
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;
}
.blog-byline a {
  color: #c33d42;
  text-decoration: none;
}
.blog-byline a:hover {
  color: #922227;
}
.blog-byline .col-main {
  line-height: 1.5;
  padding-bottom: 1em;
  margin-bottom: 0;
}
.blog-byline .share-button {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
}
.blog-byline .share-button iframe {
  display: block;
}
.blog-byline .gplus-button > div {
  display: block !important;
}
.byline-item {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.5em 0.5em;
}
.fh-post-grid {
  display: inline-block;
  vertical-align: top;
  margin-left: -4px;
  padding: 0 1%;
}
.fh-4-grid {
  width: 50%;
}
.fh-post {
  background: #ffffff;
  border: 4px solid #e0e0e0;
  margin-bottom: 1.5em;
  overflow: hidden;
}
.fh-post:hover {
  border-color: #555555;
}
.fh-post .post-link {
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.fh-post .post-link:hover {
  background-color: #fff;
}
.fh-post .post-link:hover .post-title {
  color: #438ac4;
}
.fh-post .post-link:hover .byline > span {
  background-color: #555555;
  color: #ffffff;
}
.fh-post .wp-post-image {
  margin-bottom: 10px;
}
.fh-post .post-title {
  font-size: 1em;
  padding: 0 1.5em 1em;
  min-height: 75px;
}
.fh-post .byline {
  color: #6b6969;
  font-size: 0.75em;
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.fh-post .byline span {
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  background-color: #e0e0e0;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color 0.5s ease-in-out;
  -ms-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
.fh-posts {
  padding: 2em 0 0 0.5em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.fh-posts .sidebar {
  background-color: #ffffff;
}
.gray-bar {
  background-color: #454545;
}
.fh-categories {
  margin: 0 auto;
}
.fh-categories .cat-item,
.fh-categories .cat-item-all {
  border-top-color: #333;
}
.fh-categories .cat-item a,
.fh-categories .cat-item-all a {
  background: none;
  padding: 7px 10px;
  color: #ffffff;
  border-top: 3px solid #454545;
}
.fh-categories .cat-item a:hover,
.fh-categories .cat-item-all a:hover {
  background-color: #777;
  border-top-color: #2d2d2d;
}
.fh-categories .current-cat a,
.fh-categories .current-cat a:hover {
  background-color: #f0f0f0;
  color: #454545;
  border-top-color: #000000;
}
.blog .fh-categories .cat-item-all a,
.blog .fh-categories .cat-item-all a:hover {
  background-color: #f0f0f0;
  color: #454545;
  border-top-color: #000000;
}
.single-widget .mod {
  background: url(../img/pinstriped_suit.png) repeat;
  color: #ffffff;
  text-align: center;
  padding-top: 1.5em;
}
.single-widget .mod-title {
  color: #ffffff;
}
.single-widget .mymail-wrapper input[type="email"] {
  width: 40%;
  padding: 10px 1em;
}
.single-widget .mymail-wrapper .button {
  height: 42px;
}
.single-post .fh-feat-post {
  margin-bottom: 2em;
}
.single-post .blog-banner {
  padding: 1.5em 0;
  text-transform: capitalize;
}
.single-post .post-content p {
  margin: 0 0 1.5em;
}
.single-post .post-content p:first-child {
  font-size: 1.5em;
  line-height: 1.45;
}
.single-post .post-content .wp-caption-text {
  margin: 1em 2em;
}
.sidebar .mod-related-posts .post-category {
  line-height: 1.2;
  padding-top: 10px;
}
.sidebar .mod-related-posts .rel-post-name {
  font-size: 1em;
}
.sidebar .mod-download .small {
  margin-bottom: 0;
}
.sidebar .mymail-wrapper input[type="email"] {
  margin-bottom: 5px;
  width: 100%;
}
.sidebar .mymail-wrapper .button {
  font-size: 0.875em;
}
.archive-freebies .page-header {
  margin-bottom: 2em;
}
.sidebar-post .probox-dark {
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.065em;
}
.sidebar-post .probox-dark .mod-title {
  border-bottom: 0;
  padding-bottom: 0;
}
.sidebar-post .button {
  letter-spacing: 0;
}
.icon-holder {
  background-color: #c33d42;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1.5em;
}
.icon-holder .icon {
  margin: 0;
  width: 30px;
  height: auto;
  font-size: 2.5em;
  color: #fdd22b;
}
.blog-probox-text {
  font-size: 0.875em;
  font-weight: bold;
  padding: 0 1.75em 1em;
}
/*
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) {
  .fh-sitename {
    display: inline-block;
    padding: 15px 0 0 6px;
  }
  .fh-mascot,
  .site-name {
    float: left;
  }
}
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 768px) {
  /* ==========================================================================
  Grid >> 12 Columns
========================================================================== */
  /* .container_12 .grid_1 { width:60px; }
.container_12 .grid_2 { width:140px; }
.container_12 .grid_3 { width:220px; }
.container_12 .grid_4 { width:300px; }
.container_12 .grid_5 { width:380px; }
.container_12 .grid_6 { width:460px; }
.container_12 .grid_7 { width:540px; }
.container_12 .grid_8 { width:620px; }
.container_12 .grid_9 { width:700px; }
.container_12 .grid_10 { width:780px; }
.container_12 .grid_11 { width:860px; }
.container_12 .grid_12 { width:940px; }

.alpha { margin-left: 0; }
.omega { margin-right: 0; } */
  .grid_1,
  .grid_2,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8,
  .grid_9,
  .grid_10,
  .grid_11,
  .grid_12 {
    float: left;
    margin-left: 1%;
    margin-right: 1%;
  }
  .grid_1.alignright,
  .grid_2.alignright,
  .grid_3.alignright,
  .grid_4.alignright,
  .grid_5.alignright,
  .grid_6.alignright,
  .grid_7.alignright,
  .grid_8.alignright,
  .grid_9.alignright,
  .grid_10.alignright,
  .grid_11.alignright,
  .grid_12.alignright {
    float: right;
  }
  .container_12 .grid_1 {
    width: 6.333%;
  }
  .container_12 .grid_2 {
    width: 14.667%;
  }
  .container_12 .grid_3 {
    width: 23%;
  }
  .container_12 .grid_4 {
    width: 31.333%;
  }
  .container_12 .grid_5 {
    width: 39.667%;
  }
  .container_12 .grid_6 {
    width: 48%;
  }
  .container_12 .grid_7 {
    width: 56.333%;
  }
  .container_12 .grid_8 {
    width: 64.667%;
  }
  .container_12 .grid_9 {
    width: 73%;
  }
  .container_12 .grid_10 {
    width: 81.333%;
  }
  .container_12 .grid_11 {
    width: 89.667%;
  }
  .container_12 .grid_12 {
    width: 98%;
  }
  .alpha {
    margin-left: 0;
  }
  .omega {
    margin-right: 0;
  }
  h1 {
    font-size: 3.6rem;
  }
  .fh-sitename {
    padding-left: 7px;
  }
  #menu-top-nav {
    display: inline-block;
  }
  .top-nav {
    text-align: right;
    font-size: 1.4rem;
  }
  .top-nav .dropdown-wrapper {
    width: 100%;
    min-width: 15em;
    background: #000;
    font-size: 1.6rem;
    top: 70px;
  }
  .ac-menu-item:first-child {
    border-left: 1px solid #7d7d7d;
  }
  .promo {
    padding-left: 1em;
  }
  .promo-title,
  .promo-intro {
    text-align: left;
  }
  .promo-buttons .button {
    margin: 0 10px 10px 0;
    text-align: left;
    padding: 0.5em 1em;
  }
  .main-search .icon-search {
    display: inline-block;
    font-size: 2.8rem;
    color: #777;
    line-height: 42px;
    margin: 0 1em 0 0.75em;
  }
  .main-search .eddsw-search-field {
    font-size: 2.4rem;
    width: 75%;
    margin-bottom: 0;
  }
  .main-search .searchsubmit {
    width: 12.75%;
    float: right;
  }
  .promo-items {
    padding: 4.5rem 0;
  }
  .promo-items .product {
    width: 16.66%;
  }
  .product {
    width: 20%;
  }
  .featured-items h2 {
    font-size: 2.8rem;
    padding-bottom: 1em;
  }
  .featured-items .product {
    width: 24%;
  }
  .promo-item h2 {
    font-size: 3rem;
  }
  .promo-item .mod-title {
    font-size: 2.4rem;
  }
  .odd .promo-item .grid_6.omega {
    padding-right: 0;
  }
  .even .promo-item .grid_6.omega {
    padding-left: 0;
    margin-left: 0;
  }
  .even .promo-img {
    float: right;
    margin-right: 0;
  }
  .even .grid_6.alignright {
    float: left;
  }
  .promo-item .products-wrapper {
    padding-top: 40px;
  }
  .qtip .item-preview-title {
    font-size: 2rem;
  }
  .toolbar .breadcrumbs {
    border: 0;
    margin: 0;
    padding-bottom: 0;
  }
  .toolbar .breadcrumbs-inline,
  .toolbar .fh-page-navi,
  .toolbar ul.page-numbers {
    display: inline-block;
    vertical-align: middle;
  }
  .toolbar .breadcrumbs-inline {
    width: 39%;
  }
  .toolbar .fh-page-navi,
  .toolbar ul.page-numbers {
    width: 60%;
  }
  .page-navigation {
    padding-top: 0;
    text-align: right;
  }
  .blog .col-main {
    width: 100%;
    margin: 0;
  }
  .page-template-page-store .col-main,
  .tax-download_category .col-main,
  .search .col-main,
  .page-template-page-store .col-sidebar,
  .tax-download_category .col-sidebar,
  .search .col-sidebar {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .mod-pro-access li {
    overflow: hidden;
  }
  .mod-pro-access .file-name {
    float: left;
    padding-top: 5px;
  }
  .mod-pro-access .button {
    float: right;
  }
  .testimonials {
    width: 30%;
    position: absolute;
    right: 0;
    top: 160px;
    padding-right: 20px;
  }
  .section-blog .section-title {
    margin-bottom: 50px;
  }
  .footer-note-link {
    padding-top: 30px;
  }
  .main-footer {
    padding-top: 80px;
  }
  .main-footer .widget_nav_menu {
    float: left;
    width: 21%;
    max-width: 190px;
    margin-right: 10px;
  }
  .main-footer .widget_nav_menu .footer-title {
    display: block;
  }
  .main-footer .widget_text,
  .main-footer .social-media {
    width: 32%;
    max-width: 300px;
    float: right;
    margin-top: 0;
  }
  .main-footer .menu-item {
    border-bottom: 0;
  }
  .nav-icons .menu-link {
    padding: 20px 40px 20px 75px;
  }
  .tpl-twocol-left .sidebar-left,
  .tpl-twocol-left .grid_8 {
    width: 100%;
  }
  .single .article-header,
  .page .article-header {
    margin-bottom: 25px;
  }
  .field-wrapper {
    padding-bottom: 18px;
  }
  .field {
    width: 49%;
    display: inline-block;
    padding-bottom: 0;
  }
  .dl-table {
    display: table;
  }
  .dl-table thead,
  .dl-table tbody,
  .dl-table tfoot {
    display: table-header-group;
  }
  .dl-table tr {
    display: table-row;
  }
  .dl-table td,
  .dl-table th,
  .dl-table tfoot td {
    display: table-cell;
  }
  .dl-table thead tr {
    position: static;
  }
  .dl-table td {
    padding-left: 10px;
  }
  .dl-table td.empty {
    display: table-cell;
  }
  .dl-table td:before {
    content: '';
  }
  .dl-table tfoot td {
    display: table-cell;
    width: auto;
  }
  .dl-table th.title {
    padding-left: 15px;
    padding-right: 15px;
  }
  .dl-table .dl-thumb {
    float: left;
    margin: 0 15px 0 0;
    padding: 2px;
  }
  .item-name {
    float: left;
    font-size: 15px;
    padding-top: 5px;
    max-width: 122px;
    line-height: 1.1;
  }
  .column {
    width: 15%;
  }
  .column.col-item {
    width: 32%;
  }
  .col-small {
    width: 6%;
  }
  .column-wide {
    width: 60%;
  }
  .column-wide .item-name {
    max-width: 300px;
  }
  .edd_invoice {
    text-align: center;
  }
  .col-files {
    width: 430px;
  }
  .col-price {
    width: 120px;
  }
  .page-template-page-users .container_12 .grid_9,
  .page-template-page-users .container_12 .grid_3 {
    width: 100%;
    margin-left: 0;
  }
  .page-template-page-users .container_12 .grid_9 {
    margin-bottom: 1em;
  }
  .column-wrap {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    padding-left: 1em;
    padding-right: 1em;
  }
  .fh-page-navi,
  .page-numbers {
    text-align: right;
  }
  .fh-page-navi li,
  .page-numbers li {
    font-size: 1em;
  }
  .fh-page-navi li,
  .page-numbers li,
  .fh-page-navi a,
  .page-numbers a {
    line-height: 30px;
  }
  .fh-page-navi .fh-current,
  .page-numbers .fh-current,
  .fh-page-navi .current,
  .page-numbers .current,
  .fh-page-navi a,
  .page-numbers a {
    width: 30px;
    text-align: center;
  }
  .title-link {
    text-align: right;
    float: right;
  }
  .freebies-item {
    width: 24%;
  }
  .sidebar-freebies .mod-related li,
  .sidebar-post .mod-related li {
    width: 22%;
  }
  .mod-related .product {
    width: 25%;
  }
  .mod-feat-items .product,
  .recent-products .product {
    width: 16.66%;
  }
  .content .user-sidebar {
    width: 25%;
  }
  /* NEW DOWNLOAD CATEGORY PAGE */
  .banner-header {
    position: relative;
  }
  .fh-cat-img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    max-width: 40%;
    max-height: 100%;
  }
  .cat-banner-wrapper {
    padding-right: 40%;
  }
  .actions {
    padding-top: 4em;
  }
  .banner-link {
    margin-right: 3em;
  }
  .social-media {
    padding-top: 0;
  }
  .freebies-tool {
    float: right;
  }
  .freebies .product {
    width: 14.285%;
  }
  .fh-4-grid {
    width: 33.33%;
  }
  .single-post .col-main .wrap {
    padding: 3em 4.5em;
  }
  .single-post .col-main .category-free-psd-flyer-templates {
    padding: 2em;
  }
  .single-post .col-main .category-free-psd-flyer-templates .post-content {
    padding: 0 2em;
  }
}
@media only screen and (min-width: 800px) {
  .top-banner {
    display: block;
  }
  .top-banner .top-banner-title {
    font-size: 1.25em;
    width: auto;
  }
}
/*
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) {
  .logo,
  .fh-mascot {
    height: 80px;
  }
  .fh-mascot,
  .fh-sitename {
    vertical-align: middle;
  }
  .site-title {
    font-size: 3.2rem;
  }
  .site-desc {
    font-size: 1.6rem;
  }
  .top-nav {
    font-size: 1.5rem;
  }
  .top-nav .dropdown-wrapper {
    top: 80px;
  }
  .main-nav .main-menu-link {
    padding: 0 1.4rem;
  }
  .main-nav .menu-item-depth-0 {
    margin-left: 1rem;
  }
  .main-nav .main-menu-link,
  .main-nav .menu-item-depth-0 {
    line-height: 80px;
    height: 80px;
  }
  .promo-title {
    font-size: 4.2rem;
  }
  .promo-buttons {
    font-size: 2rem;
  }
  .promo-buttons .button {
    padding: 0.65em 1em;
    display: inline-block;
    vertical-align: middle;
  }
  .promo-buttons .price {
    font-size: 3.6rem;
  }
  .promo-buttons .callout-text {
    font-size: 1.4rem;
  }
  .page-template-page-store .col-main,
  .tax-download_category .col-main,
  .search .col-main {
    width: 74.75%;
    float: left;
  }
  .page-template-page-store .col-sidebar,
  .tax-download_category .col-sidebar,
  .search .col-sidebar {
    width: 24.25%;
    margin-top: 0;
    float: right;
  }
  .col-sidebar {
    margin-top: 0;
  }
  .mod-pro-access .file-name,
  .mod-pro-access .button {
    float: none;
  }
  .mod-pro .btn-large {
    font-size: 2rem;
  }
  .mod-pro .price {
    font-size: 3rem;
  }
  .compat-link {
    width: 55%;
    clear: none;
    padding-top: 0;
  }
  .mod-related .product {
    width: 50%;
  }
  .freebies-item {
    width: 19%;
  }
  .freebies-tool img {
    float: left;
  }
  .block {
    margin: 0 15px 15px;
  }
  .mod .eddsw-search-field {
    width: 60%;
  }
  .js-search .main-menu-link {
    line-height: 74px;
  }
  .main-col {
    margin-bottom: 2em;
  }
  .tpl-twocol-left .sidebar-left {
    width: 31.333%;
  }
  .tpl-twocol-left .grid_8 {
    width: 64.667%;
  }
  .ac-panel .col {
    width: 48%;
    min-height: 360px;
    margin: 0;
  }
  .pw-link.alignright,
  .nav-account.alignright {
    float: right;
  }
  .pw-link.text-right,
  .nav-account.text-right {
    text-align: right;
  }
  .edd-purchase-history .grid_9 {
    margin-bottom: 0;
  }
  .page-template-page-users .container_12 .grid_9 {
    width: 74%;
  }
  .page-template-page-users .container_12 .grid_3 {
    width: 25%;
  }
  .column-wrap {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sidebar-freebies .mod-related li,
  .sidebar-post .mod-related li {
    width: 47%;
  }
  .twocol-left {
    padding: 40px 0 40px 50px;
    position: relative;
  }
  .twocol-left:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #f8f6f7;
    border-right: 1px solid #f0efeb;
  }
  .main-footer .widget_nav_menu {
    width: 22%;
    max-width: 255px;
  }
  .top-banner {
    font-size: 1em;
  }
  .top-banner .button {
    margin: 0;
  }
  .fh-4-grid {
    width: 25%;
  }
  .fh-categories .cat-item,
  .fh-categories .cat-item-all {
    float: left;
    border: 0;
  }
  .fh-categories .cat-item a,
  .fh-categories .cat-item-all a {
    padding: 1em;
  }
  .single-post .col-main,
  .single-post .sidebar {
    float: left;
  }
  .single-post .col-main {
    width: 70%;
    padding-right: 1em;
  }
  .single-post .sidebar {
    width: 30%;
  }
  .blog-byline {
    text-align: left;
  }
  .blog-byline .col-main {
    padding-left: 5.143em;
    padding-bottom: 0;
  }
  .blog-byline .sidebar {
    padding-left: 15px;
  }
  .byline-item {
    padding: 0 3.5em 0 0;
  }
}
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {
  .mod-single-item .left {
    width: 40%;
  }
  .mod-single-item .button {
    width: 55%;
  }
  .fh-categories .cat-item,
  .fh-categories .cat-item-all {
    float: left;
  }
  .fh-categories .cat-item a,
  .fh-categories .cat-item-all a {
    padding: 1em 1.5em;
  }
}
/*
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.
*/
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    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;
  }
}
