/* ==========================================================================================================================================
 INIT
========================================================================================================================================== */
/*=====================================================================================================================================
 RESET
=====================================================================================================================================*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,800italic,800,400,700);
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic);
@import url(http://fonts.googleapis.com/css?family=Merriweather:400,400italic,900,900italic,700,700italic,300italic,300);
@import url(http://fonts.googleapis.com/css?family=Merriweather+Sans:400,800,800italic,400italic,700,700italic);
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700,400italic,700italic);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*=====================================================================================================================================
 BASE STYLES
=====================================================================================================================================*/
strong {
  font-weight: bold; }

em {
  font-style: italic; }

/*=====================================================================================================================================
 HTML5
=====================================================================================================================================*/
header, footer, section, article, aside, nav {
  display: block; }

/*=====================================================================================================================================
 WP-SPECIFIC
=====================================================================================================================================*/
.wp-caption {
  /*width:auto !important;*/ }

/*=====================================================================================================================================
 FLOAT CLEARING
=====================================================================================================================================*/
/* float clearing for IE6 */
/*
* html .clearfix{
  height: 1%;
  overflow: visible;
}
*/
/* float clearing for IE7 */
* + html .clearfix {
  min-height: 1%; }

/* float clearing for everyone else */
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

/*=====================================================================================================================================
 DEPRECATED CLASSES
=====================================================================================================================================*/
.clear {
  clear: both; }

.floatLeft {
  float: left; }

.floatRight {
  float: right; }

body {
  width: 100%;
  *zoom: 1; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/*----------------------------------------------------------------------------------------*\
 * AnimateSCSS
 *
 * Author	: Jason Hobbs
 * Website	: http://thecodezombie.co.uk
 * GitHub	: https://github.com/thecodezombie/animateSCSS/
 
 * Original Author  : Dan Eden
 * Website			: http://daneden.me/
 * GitHub			: https://github.com/daneden/animate.css
 *
 * This work is licensed under a the DBAD license: http://www.dbad-license.org/
\*----------------------------------------------------------------------------------------*/
/*---------------------------------------------------*\
 * Mixins:
 * animation - which animation you want to apply
 * duration  - how long it should last for
 * delay     - how long before the animation starts

\*---------------------------------------------------*/
/*============================================*\
	| Mixins to allow custom values of
	| durations & delays
\*============================================*/
/* Set the animation duration */
/* Choose the stock animation */
/* Apply a delay to the animation */
/*---------------------------------------------------*\
 * Animations:
 * Animations marked with a $ have a variable inside
 * which can be used to amend the preset values.
 *
 * Note: You don't need the 'Big' variants in Fading
 * as the variables allow you to choose the px value.
 * The default value just changes from 20 to 2000.
 
\*---------------------------------------------------*/
/* ! Attention Seekers */
/* ! Flippers */
/* ! Fading */
/* ! Fading Entrances */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -ms-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-ms-keyframes fadeInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(20px); }
  100% {
    opacity: 1;
    -ms-transform: translateX(0); } }
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight; }

/* ! Fading Exits */
/* ! Bouncing */
/* ! Bouncing Entrances */
/* ! Bouncing Exits */
/* ! Rotating */
/* ! Rotating Entrances */
/* ! Rotating Exits */
/* ! Rolling */
/* ! Rolling Entrances */
/* ! Rolling Exits */
/* ! Lightspeed */
/* ! Specials */
img {
  display: block;
  max-width: 100%;
  height: auto; }

/* ==========================================================================================================================================
 FONT + COLOUR
========================================================================================================================================== */
/*DETAILS*/
body {
  width: auto;
  font: 18px/1.5em 'Merriweather Sans', Arial, sans-serif; }

img {
  max-width: 100%;
  height: auto;
  margin: 0 auto; }

a {
  color: #000;
  text-decoration: none; }
  a:hover {
    color: #dc1f2e;
    text-decoration: none; }

.section-title {
  margin-bottom: 40px;
  height: 14px;
  overflow: visible;
  border-bottom: 1px solid #CCC;
  text-align: center; }
  .section-title span {
    display: inline-block;
    padding: 4px 8px;
    font: 18px/1.5em 'Merriweather Sans', Arial, sans-serif;
    font-size: 12px;
    color: #666;
    border: 1px solid #CCC;
    background: white; }

h3 {
  font: 18px/1.5em 'Merriweather Sans', Arial, sans-serif;
  font-weight: bold;
  margin: 10px 0 20px 0; }

button {
  padding: 0 1em;
  cursor: pointer;
  overflow: visible;
  position: relative;
  border: 0;
  font: 18px/1.5em 'Merriweather Sans', Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  background: #999; }
  button:hover {
    background: #dc1f2e; }
  button:active, button:focus {
    background: #333; }

#wpstats, #reply-title, .sharedaddy {
  display: none; }

/*hide addthis share counter*/
.addthis_pill_style {
  width: 50px !important; }

/* ==========================================================================================================================================
 HEADER
========================================================================================================================================== */
header {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 1s;
  -moz-animation-fill-mode: both;
  -o-animation-duration: 1s;
  -o-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s; }

section {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 1s;
  -moz-animation-fill-mode: both;
  -o-animation-duration: 1s;
  -o-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.25s;
  -moz-animation-delay: 1.25s;
  -o-animation-delay: 1.25s;
  animation-delay: 1.25s; }

header {
  width: 100%;
  padding: 20px 20px;
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
  z-index: 9999;
  top: 0;
  position: fixed;
  line-height: 1.2em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  @media screen and (min-width: 480px) {
    header {
      padding: 20px 16px; } }
  @media screen and (min-width: 768px) {
    header {
      padding: 20px 8px; } }
  header .controls {
    display: inline;
    float: left;
    width: 97.91667%;
    margin: 0 1.04167%; }
    header .controls h1 {
      display: block;
      float: left;
      margin-bottom: 4px;
      font-weight: bold;
      line-height: 1em;
      font-size: 10px; }
      header .controls h1 .logo {
        float: left;
        max-width: 50px; }
      header .controls h1 .text {
        float: left;
        margin: 8px 0 0 6px;
        width: 160px; }
        header .controls h1 .text span {
          display: block;
          margin-top: .3em;
          font-weight: normal;
          line-height: 1.3em; }
          header .controls h1 .text span a {
            border-bottom: 1px dotted red; }
            header .controls h1 .text span a:hover {
              color: red; }
        @media screen and (min-width: 480px) {
          header .controls h1 .text {
            margin-top: 14px;
            width: 300px; } }
  header #more-btn {
    float: right;
    margin-top: 15px; }
    header #more-btn a {
      cursor: pointer;
      font-size: 10px; }
      header #more-btn a span {
        display: none; }
        @media screen and (min-width: 480px) {
          header #more-btn a span {
            display: block;
            height: 20px;
            line-height: 20px;
            float: left;
            margin: 2px 7px 0 0; } }
      header #more-btn a i.fa {
        font-size: 18px;
        display: block;
        float: right;
        font-size: 24px;
        line-height: 20px;
        height: 20px; }
    @media screen and (min-width: 768px) {
      header #more-btn {
        margin-right: 10px; } }
    @media screen and (min-width: 1024px) {
      header #more-btn {
        margin-right: 5px; } }
  header #channels {
    width: 100%;
    clear: both;
    padding-top: 30px; }
    header #channels ul.main > li {
      overflow: hidden;
      margin-bottom: 20px; }
      header #channels ul.main > li h2 {
        font-size: 12px;
        font-weight: bold;
        line-height: 1.3em;
        margin-bottom: 10px; }
      header #channels ul.main > li li a {
        color: #333;
        font-size: 11px; }
        header #channels ul.main > li li a:hover {
          color: black;
          text-decoration: none; }
          header #channels ul.main > li li a:hover img {
            width: 102px;
            margin-bottom: 12px; }
      @media screen and (min-width: 320px) and (max-width: 479px) {
        header #channels ul.main > li {
          display: inline;
          float: left;
          width: 47.91667%;
          margin: 0 1.04167%;
          margin-bottom: 20px; }
          header #channels ul.main > li:nth-child(2n+1) {
            clear: both; } }
      @media screen and (min-width: 480px) and (max-width: 767px) {
        header #channels ul.main > li {
          display: inline;
          float: left;
          width: 22.91667%;
          margin: 0 1.04167%;
          margin-bottom: 20px; }
          header #channels ul.main > li:nth-child(4n+1) {
            clear: both; } }
      @media screen and (min-width: 768px) {
        header #channels ul.main > li {
          display: inline;
          float: left;
          width: 22.91667%;
          margin: 0 1.04167%;
          margin-bottom: 30px; }
          header #channels ul.main > li:nth-child(4n+1) {
            clear: both; } }
  header .btn-group.filters-button-group {
    font-size: 9px; }
    header .btn-group.filters-button-group .btn {
      margin: 8px 8px 0 0; }
    @media screen and (min-width: 768px) {
      header .btn-group.filters-button-group .btn {
        margin: 0; } }
    header .btn-group.filters-button-group .is-checked {
      color: #333;
      background-color: #e6e6e6; }
  @media screen and (min-width: 768px) {
    header h1 {
      margin-bottom: 0; }
    header .btn-group.filters-button-group {
      float: right; }
    header span {
      margin-bottom: 0px; } }

header.shrink {
  padding-top: 10px;
  padding-bottom: 10px; }

/* ==========================================================================================================================================
 SECTION#CONTENT
========================================================================================================================================== */
section#content {
  clear: both;
  margin: 120px 10px 0 20px; }

@media screen and (min-width: 480px) {
  section#content {
    margin: 120px 6px 0 20px; } }
@media screen and (min-width: 768px) {
  section#content {
    margin: 120px 0px 0 20px; } }
/* ==========================================================================================================================================
 MASONRY GRID
========================================================================================================================================== */
.grid-sizer, .entry-content {
  width: 46%; }

.gutter-sizer {
  width: 4%; }

@media screen and (min-width: 480px) {
  .grid-sizer, .entry-content {
    width: 46%; }

  .gutter-sizer {
    width: 4%; } }
@media screen and (min-width: 768px) {
  .grid-sizer, .entry-content {
    width: 31%; }

  .gutter-sizer {
    width: 2%; } }
@media screen and (min-width: 1024px) {
  .grid-sizer, .entry-content {
    width: 23%; }

  .gutter-sizer {
    width: 2%; } }
@media screen and (min-width: 1280px) {
  .grid-sizer, .entry-content {
    width: 18%; }

  .gutter-sizer {
    width: 2%; } }
/* ==========================================================================================================================================
 ENTRY CONTENT
========================================================================================================================================== */
.entry-content {
  z-index: 9999;
  overflow: hidden;
  margin-bottom: 20px;
  background: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  text-align: center; }
  .entry-content .post-link {
    display: block;
    overflow: hidden;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid #DDD;
    transition: all 0.2s linear; }
    .entry-content .post-link:hover {
      border-color: #CCC;
      color: #333;
      padding-bottom: 6px;
      border-bottom: 4px solid #DDD; }
      .entry-content .post-link:hover .feed-icon {
        color: #666; }
      .entry-content .post-link:hover .post-date {
        color: #999; }
  .entry-content figure {
    margin-bottom: 20px;
    overflow: hidden;
    max-height: 600px;
    background-color: #eee; }
  .entry-content .post-text .post-title {
    font: 18px/1.5em 'Merriweather Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: bold;
    margin: 15px 1%; }
  .entry-content .post-text .post-description {
    font-size: 12px;
    line-height: 1.4em;
    margin: 0 1%; }
  .entry-content .feed-icon {
    font-size: 14px;
    color: #CCC;
    transition: all 0.4s ease-in-out; }
  .entry-content .post-date {
    font-size: 10px;
    color: #CCC;
    transition: all 0.4s ease-in-out; }

/*TWITTER*/
.entry-content.twitter figure {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 20px auto; }
.entry-content.twitter .post-title {
  font-size: 10px; }
.entry-content.twitter .post-description {
  margin: 0 1% 5px 1%; }

/*CRKDPXLS*/
.entry-content.crkdpxls figure {
  margin-bottom: 20px; }
.entry-content.crkdpxls .post-title {
  margin: 0 10px 20px 10px; }
.entry-content.crkdpxls .post-description {
  margin: 0 10px 20px 10px; }

/*DROPMARK*/
.entry-content.dropmark .post-title {
  margin: 0 1em; }

/*INSTAGRAM*/
.entry-content.instagram .post-title {
  margin: 0 1em; }

/* ==========================================================================================================================================
 BOOTSTRAP MODAL WINDOW
========================================================================================================================================== */
.modal {
  padding: 90px 0 35px 0;
  text-align: center; }
  .modal button.close {
    margin-top: -14px;
    height: 44px; }
    .modal button.close:hover {
      background: none; }
  .modal .post-image {
    width: 100%;
    margin-bottom: 10px;
    max-height: 600px;
    overflow: hidden;
    text-align: center;
    background-color: black; }
    .modal .post-image img {
      margin: 0 auto; }
  .modal .video-container {
    margin-bottom: 10px; }
  .modal .modal-content {
    border-radius: 0; }
  .modal .modal-title {
    text-align: left;
    font-size: 11px; }
  .modal .modal-body {
    padding: 0; }
  .modal .post-description {
    margin: 0 20px 20px 20px; }
  .modal .post-meta {
    font-size: 10px;
    color: #CCC; }

/*TWITTER*/
.modal.twitter .post-image {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 20px auto; }
.modal.twitter .post-description {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 20px; }
  .modal.twitter .post-description img {
    display: none; }
  .modal.twitter .post-description a {
    color: #dc1f2e; }

.modal.crkdpxls .post-title {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 10px; }
.modal.crkdpxls .post-description {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 20px; }
  .modal.crkdpxls .post-description img {
    display: none; }
  .modal.crkdpxls .post-description a {
    color: #dc1f2e; }

/* ==========================================================================================================================================
 FLUID VIDEO
========================================================================================================================================== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  margin-bottom: 10px;
  overflow: hidden; }

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ==========================================================================================================================================
 INFINITE SCROLL
========================================================================================================================================== */
#infscr-loading {
  text-align: center;
  z-index: 10000;
  position: fixed;
  left: 50%;
  margin-left: -130px;
  bottom: 60px;
  width: 200px;
  padding: 20px;
  background: #000;
  opacity: 0.8;
  color: #FFF;
  box-shadow: 1px 1px 5px #333; }
  #infscr-loading img {
    display: inline; }

/*# sourceMappingURL=main.css.map */
