/* Box Widget */
/* Admin Styles */
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

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

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

Stylesheet: Typography

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

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

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

/******************************************************************
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? */
/*********************
BOX SHADOW
*********************/
/*@include box-shadow(10px, 10px, 10px, #cccccc, false); */
.color_list {
  display: block;
  clear: both; }
  .color_list select {
    display: block; }
    .color_list select option {
      display: block;
      float: left;
      margin: 0 5px; }
  .color_list li.color_boxes {
    list-style-type: none;
    display: block;
    margin: 0 5px;
    float: left; }
    .color_list li.color_boxes span.boxcolor {
      display: block;
      height: 40px;
      width: 40px; }
      .color_list li.color_boxes span.boxcolor.tan {
        background-color: #99816a; }
      .color_list li.color_boxes span.boxcolor.light-tan {
        background-color: #eee8e2; }
      .color_list li.color_boxes span.boxcolor.lime-green {
        background-color: #adbf50; }
      .color_list li.color_boxes span.boxcolor.yellow-green {
        background-color: #edf99d; }
  .color_list input[type=radio] {
    display: none;
    margin-right: 10px;
    margin-left: 0px;
    clear: none;
    float: left; }
    .color_list input[type=radio] + label span.boxcolor {
      display: block;
      height: 40px;
      width: 40px;
      cursor: pointer; }
      .color_list input[type=radio] + label span.boxcolor.tan {
        background-color: #99816a; }
      .color_list input[type=radio] + label span.boxcolor.light-tan {
        background-color: #eee8e2; }
      .color_list input[type=radio] + label span.boxcolor.lime-green {
        background-color: #adbf50; }
      .color_list input[type=radio] + label span.boxcolor.yellow-green {
        background-color: #edf99d; }
    .color_list input[type=radio]:checked + label span.boxcolor {
      border: 2px solid #c2e1f5;
      margin-top: -2px; }

.icon_options {
  display: block;
  clear: both;
  width: 80%;
  height: 300px;
  padding: .8em;
  overflow-y: scroll;
  border: 1px solid #4d4d4d; }
  .icon_options li.icon_list {
    list-style-type: none;
    margin: 5px;
    float: left;
    display: block; }
  .icon_options input[type=radio] {
    display: none;
    clear: none;
    float: left; }
  .icon_options input[type=radio] + label span {
    display: block;
    height: 50px;
    width: 50px;
    padding: 10px;
    text-align: center;
    line-height: 1.3em;
    font-family: 'fonticons';
    font-size: 30px;
    cursor: pointer;
    border: 1px solid #4d4d4d; }
  .icon_options input[type=radio]:checked + label span {
    border: 2px solid #c2e1f5;
    margin-top: -2px; }

/*Front End Styles */
.widget-ficon-box a.featurebox {
  color: #000000;
  display: block;
  padding: 0 20px 300px 20px;
  margin-bottom: -300px;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 5px #333333;
  -moz-box-shadow: 0px 0px 5px #333333;
  box-shadow: 0px 0px 5px #333333; }
  .widget-ficon-box a.featurebox .description {
    padding-bottom: 30px;
    display: block; }
  .widget-ficon-box a.featurebox:hover, .widget-ficon-box a.featurebox:active {
    color: #000000; }
  .widget-ficon-box a.featurebox.tan {
    background-color: #99816a; }
  .widget-ficon-box a.featurebox.light-tan {
    background-color: #eee8e2; }
  .widget-ficon-box a.featurebox.lime-green {
    background-color: #adbf50; }
  .widget-ficon-box a.featurebox.yellow-green {
    background-color: #edf99d; }
  .widget-ficon-box a.featurebox .icon_container {
    display: block;
    background: #fff;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    margin: -40px auto 0 auto;
    text-align: center;
    font-size: 40px;
    padding-top: 10px; }
  .widget-ficon-box a.featurebox h2 {
    font-family: "Quattrocento", Cambria, Times New Roman, Times, serif;
    text-transform: uppercase;
    font-weight: bold; }
.widget-ficon-box a.featureicon {
  color: #000000;
  display: block;
  text-align: center;
  text-decoration: none; }
  .widget-ficon-box a.featureicon:hover, .widget-ficon-box a.featureicon:active {
    color: #000000; }
    .widget-ficon-box a.featureicon:hover .icon_container.tan, .widget-ficon-box a.featureicon:active .icon_container.tan {
      color: #7f6a57; }
    .widget-ficon-box a.featureicon:hover .icon_container.light-tan, .widget-ficon-box a.featureicon:active .icon_container.light-tan {
      color: #ddd1c5; }
    .widget-ficon-box a.featureicon:hover .icon_container.lime-green, .widget-ficon-box a.featureicon:active .icon_container.lime-green {
      color: #94a53c; }
    .widget-ficon-box a.featureicon:hover .icon_container.yellow-green, .widget-ficon-box a.featureicon:active .icon_container.yellow-green {
      color: #e5f672; }
  .widget-ficon-box a.featureicon .icon_container {
    font-size: 40px; }
    .widget-ficon-box a.featureicon .icon_container.tan {
      color: #99816a; }
    .widget-ficon-box a.featureicon .icon_container.light-tan {
      color: #eee8e2; }
    .widget-ficon-box a.featureicon .icon_container.lime-green {
      color: #adbf50; }
    .widget-ficon-box a.featureicon .icon_container.yellow-green {
      color: #edf99d; }
  .widget-ficon-box a.featureicon h2 {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: normal; }

@media only screen and (max-width: 768px) {
  .icon_container {
    margin: 10px auto !important; } }
