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

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

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

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

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

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

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

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

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

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

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

Stylesheet: Mixins Stylesheet

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

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

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

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 767px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 767px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.btn-white, .btn-primary, .btn-secondary, input[type="button"], input[type="submit"] {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #332560;
  font-size: 13px;
  height: 35px;
  padding: 0.90em 1em;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.btn-white:hover, .btn-primary:hover, .btn-secondary:hover, input[type="button"]:hover, input[type="submit"]:hover, .btn-white:focus, .btn-primary:focus, .btn-secondary:focus, input[type="button"]:focus, input[type="submit"]:focus {
  color: #332560;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.btn-white {
  background-color: white;
}
.btn-white:hover, .btn-white:focus {
  background-color: #e6e6e6;
}
.btn-white:active {
  background-color: #e6e6e6;
}

.btn-primary {
  background-color: #332560;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #1f173b;
  color: white;
}
.btn-primary:active {
  background-color: #1f173b;
  color: white;
}

.btn-secondary {
  background-color: black;
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: black;
  color: white;
}
.btn-secondary:active {
  background-color: black;
  color: white;
}

.btn-small {
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
}

input[type="button"] {
  background-color: #332560;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
input[type="button"]:hover, input[type="button"]:focus {
  background-color: #1f173b;
  color: white;
}
input[type="button"]:active {
  background-color: #1f173b;
  color: white;
}

input[type="submit"] {
  background-color: #332560;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #1f173b;
  color: white;
}
input[type="submit"]:active {
  background-color: #1f173b;
  color: white;
}

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

Stylesheet: Form Styles

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

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

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  border-radius: 0;
  background-color: white;
  border: 1px solid #cccccc;
  height: 35px;
  font-weight: 700;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  border: 1px solid #a6a6a6;
  background-color: white;
}

label, span.required {
  display: none;
}

select {
  background-image: url("../images/select-purple.svg");
}

select option:disabled {
  opacity: 0.5;
  color: white;
}

/*
 * CAMPAIGN MONITOR
 */
#subForm {
  padding: 0;
  border: 0;
}
#subForm p {
  margin: 0;
  font-weight: 700;
}
#subForm input[type="text"], #subForm input[type="password"], #subForm input[type="datetime"], #subForm input[type="datetime-local"], #subForm input[type="date"], #subForm input[type="month"], #subForm input[type="time"], #subForm input[type="week"], #subForm input[type="number"], #subForm input[type="email"], #subForm input[type="url"], #subForm input[type="search"], #subForm input[type="tel"], #subForm input[type="color"], #subForm select, #subForm textarea, #subForm .field {
  height: 35px;
  line-height: 1;
  margin: 0 0 6px 0 !important;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  text-align: center;
  width: 100%;
}
#subForm input[type="text"]::-webkit-input-placeholder, #subForm input[type="password"]::-webkit-input-placeholder, #subForm input[type="datetime"]::-webkit-input-placeholder, #subForm input[type="datetime-local"]::-webkit-input-placeholder, #subForm input[type="date"]::-webkit-input-placeholder, #subForm input[type="month"]::-webkit-input-placeholder, #subForm input[type="time"]::-webkit-input-placeholder, #subForm input[type="week"]::-webkit-input-placeholder, #subForm input[type="number"]::-webkit-input-placeholder, #subForm input[type="email"]::-webkit-input-placeholder, #subForm input[type="url"]::-webkit-input-placeholder, #subForm input[type="search"]::-webkit-input-placeholder, #subForm input[type="tel"]::-webkit-input-placeholder, #subForm input[type="color"]::-webkit-input-placeholder, #subForm select::-webkit-input-placeholder, #subForm textarea::-webkit-input-placeholder, #subForm .field::-webkit-input-placeholder {
  opacity: 1;
  color: white;
}
#subForm input[type="text"]:-moz-placeholder, #subForm input[type="password"]:-moz-placeholder, #subForm input[type="datetime"]:-moz-placeholder, #subForm input[type="datetime-local"]:-moz-placeholder, #subForm input[type="date"]:-moz-placeholder, #subForm input[type="month"]:-moz-placeholder, #subForm input[type="time"]:-moz-placeholder, #subForm input[type="week"]:-moz-placeholder, #subForm input[type="number"]:-moz-placeholder, #subForm input[type="email"]:-moz-placeholder, #subForm input[type="url"]:-moz-placeholder, #subForm input[type="search"]:-moz-placeholder, #subForm input[type="tel"]:-moz-placeholder, #subForm input[type="color"]:-moz-placeholder, #subForm select:-moz-placeholder, #subForm textarea:-moz-placeholder, #subForm .field:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: white;
}
#subForm input[type="text"]::-moz-placeholder, #subForm input[type="password"]::-moz-placeholder, #subForm input[type="datetime"]::-moz-placeholder, #subForm input[type="datetime-local"]::-moz-placeholder, #subForm input[type="date"]::-moz-placeholder, #subForm input[type="month"]::-moz-placeholder, #subForm input[type="time"]::-moz-placeholder, #subForm input[type="week"]::-moz-placeholder, #subForm input[type="number"]::-moz-placeholder, #subForm input[type="email"]::-moz-placeholder, #subForm input[type="url"]::-moz-placeholder, #subForm input[type="search"]::-moz-placeholder, #subForm input[type="tel"]::-moz-placeholder, #subForm input[type="color"]::-moz-placeholder, #subForm select::-moz-placeholder, #subForm textarea::-moz-placeholder, #subForm .field::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: white;
}
#subForm input[type="text"]:-ms-input-placeholder, #subForm input[type="password"]:-ms-input-placeholder, #subForm input[type="datetime"]:-ms-input-placeholder, #subForm input[type="datetime-local"]:-ms-input-placeholder, #subForm input[type="date"]:-ms-input-placeholder, #subForm input[type="month"]:-ms-input-placeholder, #subForm input[type="time"]:-ms-input-placeholder, #subForm input[type="week"]:-ms-input-placeholder, #subForm input[type="number"]:-ms-input-placeholder, #subForm input[type="email"]:-ms-input-placeholder, #subForm input[type="url"]:-ms-input-placeholder, #subForm input[type="search"]:-ms-input-placeholder, #subForm input[type="tel"]:-ms-input-placeholder, #subForm input[type="color"]:-ms-input-placeholder, #subForm select:-ms-input-placeholder, #subForm textarea:-ms-input-placeholder, #subForm .field:-ms-input-placeholder {
  opacity: 1;
  color: white;
}
#subForm select {
  background-image: url("../images/select-white.svg");
  text-align: center;
}
#subForm button[type="submit"] {
  display: inline-block;
  position: relative;
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  text-decoration: none;
  color: #332560;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 0.90em 1em;
  border-radius: 0px;
  border: 0;
  cursor: pointer;
  background-color: #fbe3bc;
  color: #ff3367;
  width: 100%;
  text-transform: uppercase;
  height: 35px;
}
#subForm button[type="submit"]:hover {
  background-color: #f8cf8c;
}

.home #subForm {
  margin: 0 0 6px 0;
}

.sidebar #subForm {
  background-color: #ff3368;
  padding: 12px 15px 0 12px;
  border: 1px dashed #cc0035;
  color: white;
  text-align: center;
}
.sidebar #subForm h1, .sidebar #subForm h2, .sidebar #subForm h3, .sidebar #subForm h4 {
  margin: 0;
  color: white;
}
.sidebar #subForm p, .sidebar #subForm input {
  margin-bottom: 5px;
}
.sidebar #subForm input {
  background-color: transparent;
  color: white;
}
.sidebar #subForm input::-webkit-input-placeholder {
  color: white;
}
.sidebar #subForm input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
.sidebar #subForm input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
.sidebar #subForm input:-ms-input-placeholder {
  color: white;
}
.sidebar #subForm button {
  width: 100%;
  background-color: #fbe3bc;
}
.sidebar #subForm button:hover {
  background-color: #f8cf8c;
}

.purpleSub {
  background-color: #332560;
  border-radius: 10px;
  color: white;
  padding: 40px 40px;
}
.purpleSub h3 {
  font-size: 19px;
  margin: 5px 0 10px 0;
  color: #fff793;
}
.purpleSub .protected-post-form input, .purpleSub .protected-post-form input[type="password"] {
  height: 35px;
  border: 0;
  text-align: center;
}
.purpleSub #subForm {
  text-align: center;
}
.purpleSub #subForm p {
  margin: 12px 0;
}
.purpleSub #subForm input, .purpleSub #subForm select {
  background-color: white;
  color: #999999;
  text-align: center;
}
.purpleSub #subForm input::-webkit-input-placeholder, .purpleSub #subForm select::-webkit-input-placeholder {
  color: #999999;
}
.purpleSub #subForm input:-moz-placeholder, .purpleSub #subForm select:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}
.purpleSub #subForm input::-moz-placeholder, .purpleSub #subForm select::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
.purpleSub #subForm input:-ms-input-placeholder, .purpleSub #subForm select:-ms-input-placeholder {
  color: #999999;
}
.purpleSub #subForm select {
  background-image: url("../images/select-purple.svg");
}
.purpleSub button, .purpleSub #subForm button, .purpleSub input[type="submit"] {
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  width: 100%;
  background-color: #fff793;
  color: #332560;
  text-transform: uppercase;
  height: 35px;
}
.purpleSub button:hover, .purpleSub #subForm button:hover, .purpleSub input[type="submit"]:hover {
  background-color: #fff147;
}
.purpleSub hr {
  margin: 40px 130px 30px 130px;
}

/*
 * NINJA FORMS
 */
.ninja-forms-cont input, .ninja-forms-cont select {
  width: 100% !important;
}

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

Stylesheet: Base Mobile Stylesheet

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

******************************************************************/
.admin-bar .navbar-fixed-top {
  margin-top: 46px;
}

.article-header, .article-footer {
  border: 0;
}

.page .hentry .article-header {
  padding: 0;
}

.article-footer {
  display: none;
}

.page-title {
  margin-bottom: 0;
}

#content {
  background-image: url("../images/tsf-paper-3.jpg");
  background-repeat: repeat;
  margin: 0;
}
#content #inner-content {
  padding-top: 178px;
  padding-bottom: 60px;
}

hr {
  border-top: 1px dashed #332560;
  border-bottom: 0;
  color: #E6E6E6;
  background-color: #E6E6E6;
  height: 0px;
  margin: 3em 0px;
}

a, a:visited {
  color: #35a3d4;
  /* on hover */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #2686b0;
}

body {
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 0.80em;
  line-height: 1.6em;
  color: #686868;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "Gunplay-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

h1 {
  color: #35a3d4;
  margin: 0em 0 0.75em 0;
  font-size: 35px;
  line-height: 33px;
}

h2 {
  color: #7fc34e;
  margin: 0em 0 0.75em 0;
  font-size: 17px;
  line-height: 19px;
}

h3 {
  color: #ff3368;
  margin: 0em 0 0.5em 0;
}

h4 {
  color: #332560;
}

h5, h6 {
  color: #999999;
}

.paragraph-bold {
  font-weight: bold;
}

.paragraph-italic {
  font-weight: italic;
  color: #959595;
  font-size: 13px;
  line-height: 16px;
}

.gunplay-19 {
  font-family: "Gunplay-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 19px;
}

.responsive, .responsive img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content .copyright {
  font-size: 10px;
  line-height: 13px;
}

/*
 * NAV BAR
 */
.navbar-fixed-top {
  padding: 0;
  background-color: white;
  font-size: 14px;
  position: static;
}
.navbar-fixed-top a {
  font-weight: normal !important;
}
.navbar-fixed-top .navbar-support-widgets {
  background-color: #ff3368;
  text-align: right;
  padding: 10px 0;
}
.navbar-fixed-top .navbar-support-widgets .widget {
  margin: 0;
  margin: 0 10px;
  display: inline-block;
}
.navbar-fixed-top .navbar-support-widgets .widget_search {
  margin: 0;
}
.navbar-fixed-top .navbar-support-widgets .searchicon {
  cursor: pointer;
  color: white;
  font-size: 1.333em;
}
.navbar-fixed-top .navbar-support-widgets .searchform {
  display: none;
  padding: 0;
  border: 0;
}
.navbar-fixed-top .navbar-support-widgets .searchform #s {
  border-radius: 0;
  background: transparent;
  height: 19px;
  line-height: 19px;
  color: white;
  font-weight: bold;
  width: 75%;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid white;
}
.navbar-fixed-top .navbar-support-widgets .searchform #searchsubmit {
  background-color: transparent;
  line-height: 19px;
  color: white;
  font-weight: bold;
  height: 19px;
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  width: 25%;
}
.navbar-fixed-top .navbar-support-widgets .cart {
  margin-right: 0;
  line-height: 20px;
  background-image: url("../images/icon-shop.svg");
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 28px;
}
.navbar-fixed-top .navbar-support-widgets .cart a, .navbar-fixed-top .navbar-support-widgets .cart a:visited {
  text-transform: capitalize;
  font-weight: normal;
  color: white;
}
.navbar-fixed-top .navbar-support-widgets .cart a:hover, .navbar-fixed-top .navbar-support-widgets .cart a:focus, .navbar-fixed-top .navbar-support-widgets .cart a:visited:hover, .navbar-fixed-top .navbar-support-widgets .cart a:visited:focus {
  color: #ffb3c6;
}
.navbar-fixed-top .navbar-main {
  padding: 10px 0;
}
.navbar-fixed-top .navbar-header {
  padding: 0;
}
.navbar-fixed-top .navbar-main, .navbar-fixed-top .navbar-header {
  background-color: #fece30;
}
.navbar-fixed-top .navbar-main .logo, .navbar-fixed-top .navbar-header .logo {
  display: block;
  width: 225px;
  margin: auto;
}
.navbar-fixed-top .navbar-main .logo a, .navbar-fixed-top .navbar-header .logo a {
  display: block;
}
.navbar-fixed-top .navbar-main .logo a img, .navbar-fixed-top .navbar-header .logo a img {
  max-width: 100%;
  height: auto;
}
.navbar-fixed-top .toggle {
  color: #332560;
  font-size: 2em;
  margin: 25px 0;
}
.navbar-fixed-top nav {
  display: none;
}
.navbar-fixed-top .navbar-support-widgets {
  display: none;
}
.navbar-fixed-top .nav {
  display: block;
  font-family: "Gunplay-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.navbar-fixed-top .nav li a {
  border-top: 1px solid #f0b801;
}
.navbar-fixed-top .nav .current-menu-item > a, .navbar-fixed-top .nav .current_page_item > a, .navbar-fixed-top .nav .current-page-parent > a, .navbar-fixed-top .nav .current-menu-parent > a {
  color: #ff3368;
}
.navbar-fixed-top .nav .sub-menu {
  background-color: transparent;
  border-top: 1px solid #f0b801;
}
.navbar-fixed-top .nav .sub-menu li a {
  font-size: 13px;
  text-transform: lowercase;
  font-weight: bold !important;
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  border-top: 1px dashed #f0b801;
  color: #332560;
}
.navbar-fixed-top .nav .sub-menu .current-menu-item > a, .navbar-fixed-top .nav .sub-menu .current_page_item > a, .navbar-fixed-top .nav .sub-menu .current-page-parent > a, .navbar-fixed-top .nav .sub-menu .current-menu-parent > a {
  color: #ff3368;
}
.navbar-fixed-top .nav .social a {
  border-top: 0;
}
.navbar-fixed-top .social-media {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 10px;
}
.navbar-fixed-top a, .navbar-fixed-top a:visited {
  color: #332560;
  text-transform: uppercase;
  font-weight: bold;
}

.social {
  display: inline-block;
  border-top: 0 !important;
}
.social a, .social a:visited {
  padding-left: 0.5em;
  padding-right: 0.5em;
  color: white;
  /* on hover */
}
.social a:hover, .social a:focus, .social a:visited:hover, .social a:visited:focus {
  color: white;
}
.social i {
  color: #fece30;
  background-color: #332560;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  height: 35px;
  width: 35px;
}
.social i:hover, .social i:focus {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social i:before {
  text-align: center;
  display: block;
  font-size: 16pt;
  line-height: 35px;
}
.social .fontawesome-text {
  display: none;
}

/*
 * SIDEBAR
 */
.sidebar .widget {
  background-color: white;
  border: 1px dashed #c1c1c1;
  margin-bottom: 35px;
}
.sidebar .widget ul {
  padding: 0 20px;
}
.sidebar .widget ul li {
  border-top: 1px dashed #c1c1c1;
}
.sidebar .widget ul li:first-child {
  border-top: 0;
  padding-top: 0;
}
.sidebar .widgettitle {
  background-color: #7fc34e;
  padding: 5px 8px;
  color: white;
  font-size: 19px;
  margin: 0;
}
.sidebar .widget_categories {
  text-transform: uppercase;
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
}
.sidebar .widget_categories a {
  color: #332560;
  font-weight: bold;
}
.sidebar .widget_categories li {
  font-size: 1em;
}
.sidebar .widget_categories .current_cat a {
  color: #ff3368 !important;
}
.sidebar #subForm h3 {
  font-size: 2.5em;
  margin-bottom: 0.25em;
  line-height: 1em;
}
.sidebar #subForm p {
  margin-bottom: 1em;
}
.sidebar .recent-posts-widget-with-thumbnails {
  text-transform: uppercase;
}
.sidebar .recent-posts-widget-with-thumbnails a {
  color: #332560;
}
.sidebar .recent-posts-widget-with-thumbnails .widgettitle {
  background-color: #332560;
}
.sidebar .recent-posts-widget-with-thumbnails li {
  margin: 0;
  font-size: 11px;
  line-height: 16px;
}
.sidebar .recent-posts-widget-with-thumbnails img {
  margin-bottom: 0;
}
.sidebar .recent-posts-widget-with-thumbnails .rpwwt-post-title {
  display: block;
  margin-top: 6px;
}

/*
 * FOOTER
 */
.footer-widgets {
  font-size: 11px;
  line-height: 18px;
  background-color: #fece30;
  color: #332560;
}
.footer-widgets #inner-footer {
  padding: 20px 0 30px 0;
}
.footer-widgets #inner-footer .widgettitle, .footer-widgets #inner-footer .textwidget {
  color: #332560;
}
.footer-widgets #inner-footer .widgettitle {
  text-transform: uppercase;
  font-size: 1.125em;
}
.footer-widgets #inner-footer .widget {
  margin-bottom: 3em;
}
.footer-widgets #inner-footer #menu-social-media {
  text-align: center;
}
.footer-widgets #inner-footer .social i {
  background-color: #332560;
}
.footer-widgets #inner-footer .social i:hover, .footer-widgets #inner-footer .social i:focus {
  background-color: #654bba;
}
.footer-widgets #inner-footer .widget ul li {
  border-top: 1px dotted #332560;
}
.footer-widgets #inner-footer .widget ul li a {
  font-weight: bold;
  color: #332560;
}
.footer-widgets #inner-footer .widget ul li a:hover {
  font-weight: bold;
  color: #654bba;
}
.footer-widgets #inner-footer .widget_recent_entries, .footer-widgets #inner-footer .widget-easy-twitter-feed-widget-kamn {
  display: none;
}
.footer-widgets #inner-footer .widget-easy-twitter-feed-widget-kamn .widgettitle:after {
  font-family: FontAwesome;
  content: "\f099";
  margin-left: 6px;
  font-size: 18px;
}

.footer {
  font-size: 10px;
  line-height: 18px;
  color: #4a4a4a;
  background-color: transparent;
}
.footer #inner-footer {
  padding: 20px 0;
}
.footer #inner-footer a {
  font-weight: bold;
  color: #4a4a4a;
}
.footer #inner-footer a:hover {
  font-weight: bold;
  color: #242424;
}

/*
 * CONTENT
 */
.byline {
  display: none;
  font-size: 1.125em;
}
.byline .comments {
  display: none;
}

.current-cat a, .current-menu-item a {
  color: #ff3368 !important;
}

.entry-title, .archive-title {
  text-transform: uppercase;
  font-size: 3em;
  font-family: "Gunplay-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #35a3d4;
  margin-bottom: 0;
}

.archive-title {
  text-align: center;
  padding-bottom: 30px;
}

.entry-content {
  padding: 0;
}
.entry-content p {
  margin: 0 0 1em 0;
}
.entry-content blockquote {
  color: #332560;
  padding: 0;
  font-style: normal;
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  text-align: center;
  border: 0;
}
.entry-content blockquote h2 {
  font-size: 1em;
  color: #332560;
  margin-top: 0;
}
.entry-content blockquote p {
  margin: 0em 3.5em 0.5em 3.5em;
}
.entry-content blockquote .alignleft, .entry-content blockquote .alignright {
  display: inline-block;
}
.entry-content blockquote .alignleft {
  margin: 0 0.5em 0.5em 0;
}
.entry-content blockquote .alignright {
  margin: 0px 0 0.5em 0.5em;
}
.entry-content blockquote:after {
  content: "";
  display: table;
  clear: both;
}
.entry-content blockquote cite {
  color: #332560;
  font-weight: bold;
}
.entry-content table thead tr {
  border-bottom: 0px solid #d2eac0;
  background-color: white;
}
.entry-content table thead tr th {
  background-color: #7fc34e;
  border-bottom: 1px solid #d2eac0;
  border-right: 1px solid #d2eac0;
  color: white;
}

.comment-respond {
  border-top: 0;
}

/*
 * PAGE SPECIFIC
 */
.page #content #inner-content {
  padding-bottom: 0;
}
.page .entry-content {
  padding: 0;
}
.page .post-password-required {
  margin-bottom: 60px;
}
.page .post-password-required .form {
  text-align: center;
}

.home #content #inner-content {
  padding-top: 0px;
  padding-bottom: 0;
}
.home .entry-content {
  padding-top: 0;
}
.home .entry-content .quote h2 {
  font-size: 1em;
}
.home .entry-content .sugar-squad h3 {
  font-size: 1.25em;
  margin: 16px 0 16px 0;
}
.home .entry-content img {
  margin: 0;
  line-height: 1;
}
.home .entry-content blockquote {
  margin: 0;
}
.home .entry-content blockquote .alignright {
  margin: -27px 0 0.5em 0;
}
.home .entry-content p {
  margin-top: 0;
}

.blog .article-header .page-title, .archive .article-header .page-title, .search .article-header .page-title {
  margin-bottom: 20px;
}
.blog .article-header p, .archive .article-header p, .search .article-header p {
  font-size: 1.5em;
  line-height: 1.5em;
  text-align: center;
  width: 70%;
  display: block;
  margin: 0 auto 20px auto;
}
.blog .meta, .archive .meta, .search .meta {
  background-color: #9edae4;
  padding: 4px 8px;
  font-size: 1em;
  margin: 0;
  margin-bottom: 20px;
  color: white;
}
.blog .meta a, .archive .meta a, .search .meta a {
  color: white;
}
.blog .meta .categories, .archive .meta .categories, .search .meta .categories {
  font-family: "Gunplay-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  float: left;
  font-size: 19px;
}
.blog .meta .time, .archive .meta .time, .search .meta .time {
  float: right;
}
.blog .hentry, .archive .hentry, .search .hentry {
  padding: 0 0 16px 0;
  margin: 0 0 2em 0;
}
.blog article, .archive article, .search article {
  border: 1px dashed #c1c1c1 !important;
  background-color: white;
  margin: 0 0 2em 0;
}
.blog article aside, .archive article aside, .search article aside {
  margin: 0;
}
.blog article aside img, .archive article aside img, .search article aside img {
  margin: 0;
}
.blog article .article-header, .blog article .entry-content, .blog article .article-footer, .archive article .article-header, .archive article .entry-content, .archive article .article-footer, .search article .article-header, .search article .entry-content, .search article .article-footer {
  padding: 0;
}
.blog article .entry-title, .archive article .entry-title, .search article .entry-title {
  font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
  text-transform: none;
  font-size: 1.75em;
  margin: 10px 0;
}
.blog article .entry-title a, .archive article .entry-title a, .search article .entry-title a {
  color: #332560;
}
.blog article .entry-content .btn-small, .archive article .entry-content .btn-small, .search article .entry-content .btn-small {
  padding: 0;
  background-color: transparent;
  color: #332560;
}
.blog article .entry-content .btn-small:hover, .blog article .entry-content .btn-small:active, .archive article .entry-content .btn-small:hover, .archive article .entry-content .btn-small:active, .search article .entry-content .btn-small:hover, .search article .entry-content .btn-small:active {
  color: #161029;
}
.blog article .entry-content .author, .archive article .entry-content .author, .search article .entry-content .author {
  display: none;
}
.blog article .entry-content .excerpt-read-more, .archive article .entry-content .excerpt-read-more, .search article .entry-content .excerpt-read-more {
  text-align: right;
}
.blog article .col-sm-4, .blog article .col-sm-8, .archive article .col-sm-4, .archive article .col-sm-8, .search article .col-sm-4, .search article .col-sm-8 {
  padding-left: 15px;
  padding-right: 15px;
}
.blog .recipe .ingredients ul, .blog .recipe .ingredients ol, .archive .recipe .ingredients ul, .archive .recipe .ingredients ol, .search .recipe .ingredients ul, .search .recipe .ingredients ol {
  list-style-type: none !important;
  margin-left: 0 !important;
}

.search-no-results article {
  padding: 20px;
}

.search-results article:last-child {
  border-bottom: inherit;
}

/*
 * PAGINATION
 */
.pagination ul li, .pagination ul li a {
  font-weight: bold;
}
.pagination li {
  border-right: 0px solid #35a3d4;
}
.pagination li a {
  color: #332560;
}
.pagination li a:hover {
  color: white;
  background-color: #473385;
}
.pagination .current {
  color: white;
  background-color: #332560;
}
.pagination .current:hover {
  color: white;
  background-color: #332560;
}

/*
 * WOOCOMMERCE
 */
.woocommerce-page #content #inner-content {
  padding-bottom: 60px;
}

.woocommerce-page .page-title {
  border-bottom: 0;
  padding: 0;
  margin-bottom: 20px;
}

.woocommerce span.onsale {
  background-color: #332560;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #35a3d4;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: #2686b0;
}

.woocommerce div.product p.price {
  color: #332560;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #35a3d4;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: #2686b0;
}

.woocommerce input[type="text"], .woocommerce input[type="password"], .woocommerce input[type="datetime"], .woocommerce input[type="datetime-local"], .woocommerce input[type="date"], .woocommerce input[type="month"], .woocommerce input[type="time"], .woocommerce input[type="week"], .woocommerce input[type="number"], .woocommerce input[type="email"], .woocommerce input[type="url"], .woocommerce input[type="search"], .woocommerce input[type="tel"], .woocommerce input[type="color"], .woocommerce select, .woocommerce textarea, .woocommerce .field {
  height: 32px;
}

.woocommerce .quantity .qty {
  width: 4em;
}

.woocommerce span.onsale {
  text-transform: uppercase;
  min-height: 4em;
  min-width: 4em;
  line-height: 4em;
  background-color: #ff3368;
}

.woocommerce ul.product_list_widget {
  margin: 10px 0;
}

.woocommerce ul.product_list_widget li {
  padding: 10px 0;
  border-bottom: 1px solid dashed #999999;
}

.woocommerce .woocommerce-message {
  border-top-color: #8FAE1B;
}

.woocommerce .cart-empty, .woocommerce .return-to-shop {
  text-align: center;
}

.woocommerce .return-to-shop {
  display: none;
}

/*
 * TWITTER
 */
.twitterwidget .inline-media {
  display: none !important;
}

.twitterwidget {
  /*height: 140px;*/
  overflow: hidden;
}

/*
 * NINJA FORMS
 */
.ninja-forms-form-wrap input, .ninja-forms-form-wrap select, .ninja-forms-form-wrap textarea, .ninja-forms-field {
  height: 35px !important;
}

.ebookSignup {
  background-color: #ff3368;
  padding: 20px 0 10px 0;
}

#post-not-found {
  padding: 20px;
}

.ingredients ul {
  margin-left: 0 !important;
  list-style-type: none;
}

.footer {
  color: #332560;
}

.footer #inner-footer nav li {
  display: inline-block;
  border: 0;
}
.footer #inner-footer nav li a {
  color: #332560;
  border-top: 0;
  padding: 0 10px;
}

/*********************
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: 480px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
}
/*********************
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: 767px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  .admin-bar .navbar-fixed-top {
    margin-top: 32px;
  }

  .navbar-fixed-top {
    position: fixed;
  }
  .navbar-fixed-top a:hover, .navbar-fixed-top a:focus, .navbar-fixed-top a:visited:hover, .navbar-fixed-top a:visited:focus {
    transition: none;
    color: #332560;
  }
  .navbar-fixed-top .navbar-support-widgets {
    display: block;
  }
  .navbar-fixed-top .navbar-main {
    height: 125px;
  }
  .navbar-fixed-top .navbar-main .logo, .navbar-fixed-top .navbar-header .logo {
    width: 190px;
    text-align: left;
    margin: 0;
  }
  .navbar-fixed-top .navbar-header {
    width: 20%;
  }
  .navbar-fixed-top .top-nav {
    padding: 5px 0;
    margin: auto;
    text-align: center;
  }
  .navbar-fixed-top nav {
    width: 80%;
    display: block;
    float: left;
  }
  .navbar-fixed-top .nav li a {
    border-top: 0px solid #f0b801;
  }
  .navbar-fixed-top .nav li:hover ul {
    visibility: hidden;
  }
  .navbar-fixed-top .nav li:focus {
    color: #332560;
  }
  .navbar-fixed-top .nav .sub-menu {
    position: fixed;
    left: 0;
    margin-top: 15px;
    background-color: transparent;
    border: 0;
    width: 100%;
  }
  .navbar-fixed-top .nav .sub-menu li {
    float: none;
    display: inline-block;
  }
  .navbar-fixed-top .nav .sub-menu li a {
    padding: 0 6px;
    width: auto;
    border-top: 0;
  }
  .navbar-fixed-top .nav .sub-menu li a:after {
    font-family: "Arvo", "Georgia", Cambria, Times New Roman, Times, serif;
    color: #332560;
    font-weight: bold;
    content: '/';
    margin-left: 10px;
    font-size: 1em;
  }
  .navbar-fixed-top .nav .sub-menu li a:hover {
    color: #332560;
  }
  .navbar-fixed-top .nav .sub-menu li a:first-child {
    padding-left: 0;
  }
  .navbar-fixed-top .nav .sub-menu li:last-child a {
    padding-right: 0;
  }
  .navbar-fixed-top .nav .sub-menu li:last-child a:after {
    color: #332560;
    font-weight: bold;
    content: '';
    margin-left: 0px;
    font-size: 1em;
  }
  .navbar-fixed-top .nav .offset {
    width: 460px;
    margin-left: 235px;
    display: block;
    text-align: left;
    line-height: 1 !important;
  }
  .navbar-fixed-top .nav .menu-item-2286 .sub-menu .offset {
    text-align: center;
  }
  .navbar-fixed-top .nav .menu-item-2286 .sub-menu .offset li {
    float: none;
  }
  .navbar-fixed-top .nav .menu-item-272 .sub-menu .offset {
    text-align: right;
  }
  .navbar-fixed-top .nav .menu-item-272 .sub-menu .offset li {
    float: none;
  }
  .navbar-fixed-top .icon {
    text-align: center;
    padding: 0 1.5em 0 1.5em !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 40px;
    position: relative;
  }
  .navbar-fixed-top .icon a {
    padding-left: 0;
    padding-right: 0;
    padding-top: 45px;
    padding-bottom: 0;
  }
  .navbar-fixed-top .icon span {
    display: block;
  }
  .navbar-fixed-top .icon:hover {
    cursor: pointer;
  }
  .navbar-fixed-top .icon-home {
    background-image: url("../images/icon-home.svg");
  }
  .navbar-fixed-top .icon-home.current-menu-item, .navbar-fixed-top .icon-home.current-menu-parent {
    background-image: url("../images/icon-home-over.svg");
  }
  .navbar-fixed-top .icon-film {
    background-image: url("../images/icon-film.svg");
    background-position: 12px 0;
  }
  .navbar-fixed-top .icon-film.current-menu-item, .navbar-fixed-top .icon-film.current-menu-parent {
    background-image: url("../images/icon-film-over.svg");
    background-position: 12px 0;
  }
  .navbar-fixed-top .icon-schools {
    background-image: url("../images/icon-schools.svg");
  }
  .navbar-fixed-top .icon-schools.current-menu-item, .navbar-fixed-top .icon-schools.current-menu-parent {
    background-image: url("../images/icon-schools-over.svg");
  }
  .navbar-fixed-top .icon-book {
    background-image: url("../images/icon-book.svg");
  }
  .navbar-fixed-top .icon-book.current-menu-item, .navbar-fixed-top .icon-book.current-menu-parent {
    background-image: url("../images/icon-book-over.svg");
  }
  .navbar-fixed-top .icon-blog {
    background-image: url("../images/icon-blog.svg");
  }
  .navbar-fixed-top .icon-blog.current-menu-item, .navbar-fixed-top .icon-blog.current-menu-parent {
    background-image: url("../images/icon-blog-over.svg");
  }
  .navbar-fixed-top .icon-contact {
    background-image: url("../images/icon-contact.svg");
  }
  .navbar-fixed-top .icon-contact.current-menu-item, .navbar-fixed-top .icon-contact.current-menu-parent {
    background-image: url("../images/icon-contact-over.svg");
  }
  .navbar-fixed-top .icon-act {
    background-image: url("../images/icon-act.svg");
  }
  .navbar-fixed-top .icon-act.current-menu-item, .navbar-fixed-top .icon-act.current-menu-parent {
    background-image: url("../images/icon-act-over.svg");
  }
  .navbar-fixed-top .icon-app {
    background-image: url("../images/icon-app.svg");
  }
  .navbar-fixed-top .icon-app.current-menu-item, .navbar-fixed-top .icon-app.current-menu-parent {
    background-image: url("../images/icon-app-over.svg");
  }
  .navbar-fixed-top .icon-ambassador {
    background-image: url("../images/icon-ambassador.png");
    background-size:contain;
  }
  .navbar-fixed-top .icon-ambassador.current-menu-item, .navbar-fixed-top .icon-ambassador.current-menu-parent {
    background-image: url("../images/icon-ambassador.png");
  }
  .navbar-fixed-top .social a {
    padding: 20px 5px 0 5px;
  }
  .navbar-fixed-top .social-media {
    display: none;
  }
  .navbar-fixed-top .right {
    float: right;
  }
  .navbar-fixed-top .current-menu-item > a, .navbar-fixed-top .current_page_item > a, .navbar-fixed-top .current-page-parent > a, .navbar-fixed-top .current-menu-parent > a {
    color: #ff3368;
  }
  .navbar-fixed-top .current-menu-item > a:hover, .navbar-fixed-top .current_page_item > a:hover, .navbar-fixed-top .current-page-parent > a:hover, .navbar-fixed-top .current-menu-parent > a:hover {
    color: #ff3368;
  }
  .navbar-fixed-top .current-menu-item:after, .navbar-fixed-top .current_page_item:after, .navbar-fixed-top .current-page-parent:after, .navbar-fixed-top .current-menu-parent:after {
    color: #ff3368;
  }
  .navbar-fixed-top .current-menu-item:hover:after, .navbar-fixed-top .current_page_item:hover:after, .navbar-fixed-top .current-page-parent:hover:after, .navbar-fixed-top .current-menu-parent:hover:after {
    color: #ff3368;
  }

  #content #inner-content {
    padding-top: 200px;
  }

  .home #content #inner-content {
    padding-top: 165px;
  }
  .home .feature-1 {
    margin-bottom: 20px;
  }
  .home .vc_gitem-post-data-source-post_date {
    display: none;
  }

  .page .post-password-required .form .purpleSub .day {
    padding-right: 5px;
  }
  .page .post-password-required .form .purpleSub .month {
    padding: 0 5px;
  }
  .page .post-password-required .form .purpleSub .year {
    padding-left: 5px;
  }

  .ebookSignup {
    background-color: #ff3368;
    padding: 20px 0 10px 0;
  }
  .ebookSignup .cmSubForm img {
    margin-top: 8px;
    margin-bottom: 6px;
  }
}
/*********************
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: 992px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  .navbar-fixed-top .navbar-main {
    height: 150px;
  }
  .navbar-fixed-top .navbar-main .logo, .navbar-fixed-top .navbar-header .logo {
    width: 260px;
  }
  .navbar-fixed-top .top-nav {
    padding: 15px 0;
    float: left;
  }
  .navbar-fixed-top .icon {
    padding: 0 1.2em 0 1.2em !important;
  }
  .navbar-fixed-top .icon:after {
    font-family: FontAwesome;
    text-align: center;
    color: #332560;
    content: '\f078';
    font-size: 0.875em;
    margin-bottom: -5px;
  }
  .navbar-fixed-top .icon:hover:after {
    color: #332560;
  }
  .navbar-fixed-top .current-menu-item:after, .navbar-fixed-top .current_page_item:after, .navbar-fixed-top .current-page-parent:after, .navbar-fixed-top .current-menu-parent:after {
    color: #ff3368;
  }
  .navbar-fixed-top .current-menu-item:hover:after, .navbar-fixed-top .current_page_item:hover:after, .navbar-fixed-top .current-page-parent:hover:after, .navbar-fixed-top .current-menu-parent:hover:after {
    color: #ff3368;
  }
  .navbar-fixed-top .navbar-header {
    width: 30%;
  }
  .navbar-fixed-top nav {
    width: 70%;
  }


  .navbar-fixed-top .nav .sub-menu {
    margin-top: 25px;
  }
  .navbar-fixed-top .nav .offset {
    width: 415px;
    margin-left: 300px;
    display: block;
    text-align: left;
    line-height: 1 !important;
  }
  .navbar-fixed-top .nav .icon-film {
    background-image: url("../images/icon-film.svg");
    background-position: 10px 0;
  }
  .navbar-fixed-top .nav .icon-film.current-menu-item, .navbar-fixed-top .nav .icon-film.current-menu-parent {
    background-image: url("../images/icon-film-over.svg");
    background-position: 10px 0;
  }
  .navbar-fixed-top .social-media {
    margin-top: 36px;
    float: right;
    display: block;
  }

  #content #inner-content {
    padding-top: 225px;
  }

  .home #content #inner-content {
    padding-top: 180px;
  }
  .home .sugar-squad {
    height: 470px;
  }
  .home .feature-1 {
    margin-bottom: 42px;
  }

  .vc_gitem-post-data-source-post_excerpt {
    height: 95px;
    overflow: hidden;
  }

  .footer-widgets #inner-footer .widget {
    margin-bottom: 0;
  }
  .footer-widgets #inner-footer .widget_recent_entries, .footer-widgets #inner-footer .widget-easy-twitter-feed-widget-kamn {
    display: block;
  }
  .footer-widgets #inner-footer .widget-easy-twitter-feed-widget-kamn .widgettitle {
    margin-bottom: 4px;
  }
  .footer-widgets #inner-footer #menu-social-media {
    text-align: left;
  }
  .footer-widgets #inner-footer #menu-social-media li a {
    padding: 0 0.25em;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1200px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  .navbar-fixed-top .navbar-main {
    height: 150px;
  }
  .navbar-fixed-top .navbar-main .logo, .navbar-fixed-top .navbar-header .logo {
    width: 250px;
  }
  .navbar-fixed-top .top-nav {
    padding: 15px 0 37px 0px;
  }
  .navbar-fixed-top .icon {
    padding: 0 1.75em 0 1.75em !important;
  }
  .navbar-fixed-top .icon-contact {
    margin-right: 2em;
  }
  .navbar-fixed-top .navbar-header {
    width: 21%;
  }
  .navbar-fixed-top nav {
    width: 79%;
  }
  .navbar-fixed-top .social-media {
    margin-top: 46px;
  }
  .navbar-fixed-top .nav .sub-menu {
    margin-top: 30px;
  }
  .navbar-fixed-top .nav .offset {
    width: 495px;
    margin-left: 390px;
    display: block;
    text-align: left;
    line-height: 1 !important;
  }
  .navbar-fixed-top .nav .icon-film {
    background-image: url("../images/icon-film.svg");
    background-position: 15px 0;
  }
  .navbar-fixed-top .nav .icon-film.current-menu-item, .navbar-fixed-top .nav .icon-film.current-menu-parent {
    background-image: url("../images/icon-film-over.svg");
    background-position: 15px 0;
  }

  .page .post-password-required .form .purpleSub {
    background-image: url("../images/sugarsquad-form-bg.png");
    background-repeat: no-repeat;
    background-position: 20px 225px;
  }

  #content #inner-content {
    padding-top: 260px;
  }

  .footer-widgets #inner-footer .widget {
    margin-bottom: 0;
  }
  .footer-widgets #inner-footer .widget_recent_entries, .footer-widgets #inner-footer .widget-easy-twitter-feed-widget-kamn {
    display: block;
  }
  .footer-widgets #inner-footer .widget-easy-twitter-feed-widget-kamn .widgettitle {
    margin-bottom: 4px;
  }
  .footer-widgets #inner-footer #menu-social-media li a {
    padding: 0 0.5em;
  }

  .home #content #inner-content {
    padding-top: 192px;
  }
  .home .sugar-squad {
    height: 480px;
  }
  .home .sugar-squad img {
    padding: 4px 0;
  }
  .home .feature-1 {
    margin-bottom: 10px;
  }
  .home .vc_gitem-post-data-source-post_excerpt {
    height: 95px;
    overflow: hidden;
  }
  .home .vc_gitem-post-data-source-post_date {
    display: block;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
    width: 24px;
    height: 24px;
    background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
    background: url(img/test@2x.png) no-repeat;
    background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/

/*-----ADEN STYLEZZZ-----*/

.searchform #s{
  font-size: 13px;
  font-weight: normal !important;
}

.searchform ::-webkit-input-placeholder{
  color: rgba(255,255,255,0.6)
}

#sb_instagram{
  height: auto !important;
}

@media screen and (max-width: 766px) {
  #inner-content{
    padding: 30px !important;
    padding-bottom:0px !important;
  }
}

.social-media a:focus{
  outline: none;
}

@media screen and (max-width: 383px) {
  .vc_btn3, vc_btn3 a{
    /*min-height: 50px;*/
  }
}



/*--risky nav changes--*/
/*.nav{
  padding-top: 5px !important;
}

.navbar-main{
  height: 130px !important;
}

#inner-content{
  padding-top: 170px !important;
}

.logo{
  margin: auto !important;
  width: 240px !important;
  padding-bottom: 0 !important;
}

.social-media{
  margin-top: 20px !important
}*/

/*-- woo customisations --*/
.woocommerce-order-received .order_details .product-name small{
    font-size: 1.2em;
    font-weight: bold;
}
.woocommerce-order-received .order_details .product-name small a {
    display: inline-block;
    background: #332561;
    color: #fff;
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1em;
}
ul.light li.tweets_avatar{
background:none !important;
box-shadow: none;
padding: 0px !important;
    margin: 0px !important;
    border-top: 1px dotted #332560 !important;
    border-radius: 0px;
}
ul.light li.tweets_avatar:first-child{
border:0px !important;}
.tweets-intent-data{float: right !important;
    width: 50% !important;
    text-align: right !important;
margin-top:0px !important;}
.tweets-intent-data,.light .seperator_wpltf {
    border: 0px !important;
}
ul.tweet-actions {
    display: none !important;
}
.wptt_TwitterTweets > h4{position:relative;}
.wptt_TwitterTweets > h4:before {
    content: "\f099";
    font-family: FontAwesome;
    font-style: normal; g
    font-weight: normal;
    text-decoration: inherit;
/*--adjust as necessary--*/
    color: #332560;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 0;
    left: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px){
.navbar-main .container{
  width:100%;
}
  .navbar-fixed-top .social-media {
    display: none !important;
}}

@media only screen and (min-width: 768px) and (max-width: 880px){
.navbar-fixed-top .icon {
padding: 0 1em 0 1em !important;
}
.navbar-fixed-top .icon-film {
  background-position: 4px 0 !important;
}
.navbar-fixed-top .navbar-main .logo, .navbar-fixed-top .navbar-header .logo{
  width: 165px !important;
}
.navbar-fixed-top nav{
display:block !important;
}
}

