/******************************************************************
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.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  /*
  -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";
*/ }

.strikethru {
  text-decoration: line-through !important; }

/*
        FONT ATTRIBUTES
        size: copy, info, small, mini, heading, card_heading, major_heading, title, location_title
*/
/******************************************************************
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

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

/*********************
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? */
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Force table to not be like tables anymore */
  table.data {
    display: block;
    width: 100%;
    box-shadow: none;
    /* Hide table headers (but not display: none;, for accessibility) */ }
    table.data.narrow {
      width: auto; }
    table.data thead, table.data tbody, table.data th, table.data td, table.data tr {
      display: block; }
    table.data tr {
      margin-bottom: 12px; }
    table.data thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px; }
    table.data tbody tr {
      box-shadow: 0 3px 4px -2px #6D7A85; }
      table.data tbody tr td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 30%;
        vertical-align: top; }
        table.data tbody tr td:last-child {
          border-bottom: 0; }
        table.data tbody tr td:before {
          /* Now like a table header */
          /* Top/left values mimic padding */
          padding-right: 10px;
          white-space: nowrap;
          content: attr(data-label);
          text-align: left;
          font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
          font-weight: 400;
          font-size: 13px ;
          font-size: 1.3rem ; }
        table.data tbody tr td table {
          width: 100%; }
          table.data tbody tr td table tr {
            border: none; }
            table.data tbody tr td table tr td {
              padding-left: 0; }
      table.data tbody tr:not([class]):nth-child(2n) td {
        background-color: #fff; }
        table.data tbody tr:not([class]):nth-child(2n) td:nth-child(2n-1) {
          background-color: #f2f2f2; }
      table.data tbody tr:not([class]):nth-child(2n-1) td {
        background-color: #f2f2f2; }
        table.data tbody tr:not([class]):nth-child(2n-1) td:nth-child(2n) {
          background-color: #fff; }
      table.data tbody tr.requested:nth-child(2n) td, table.data tbody tr.requested:nth-child(2n-1) td, table.data tbody tr.preferred:nth-child(2n) td, table.data tbody tr.preferred:nth-child(2n-1) td {
        background-color: #e6efc2; }
        table.data tbody tr.requested:nth-child(2n) td:nth-child(2n), table.data tbody tr.requested:nth-child(2n-1) td:nth-child(2n), table.data tbody tr.preferred:nth-child(2n) td:nth-child(2n), table.data tbody tr.preferred:nth-child(2n-1) td:nth-child(2n) {
          background-color: #deeaae; }
      table.data tbody tr.rejected:nth-child(2n) td, table.data tbody tr.rejected:nth-child(2n-1) td, table.data tbody tr.excluded:nth-child(2n) td, table.data tbody tr.excluded:nth-child(2n-1) td {
        background-color: #fbe3e4; }
        table.data tbody tr.rejected:nth-child(2n) td:nth-child(2n), table.data tbody tr.rejected:nth-child(2n-1) td:nth-child(2n), table.data tbody tr.excluded:nth-child(2n) td:nth-child(2n), table.data tbody tr.excluded:nth-child(2n-1) td:nth-child(2n) {
          background-color: #f8cdce; }
    table.data.no-headers tbody tr {
      height: inherit !important; }
      table.data.no-headers tbody tr td {
        padding-left: 10%;
        padding-right: 10%; }
        table.data.no-headers tbody tr td:before {
          display: none; } }
/*# sourceMappingURL=responsive_tables.css.map */