/************************************ 
GRAIN
compiled to: styles/css/main.css
compiled from: styles/scss/main.scss
Author: Brendan Moore-Penaskovic, Jared Smallridge, Christopher Schwab
Date: August 2014
*************************************/
/************************************ 
COMPILATION INSTRUCTIONS
- In terminal navigate to the styles/ folder.
- run : scss --sourcemap --watch sass/main.scss:css/main.css --style compressed
- run : scss --sourcemap --watch sass/grid.scss:css/grid.css --style compressed
- in chrome make sure you have enable css source maps in your web inspector settings. (in right hand column where css is located, click the gear icon)
	
*************************************/
/* THEME STYLES
****************************************/
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  background-color: #ecebea; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background: transparent;
  text-decoration: none;
  cursor: pointer; }

a {
  text-decoration: none; }

img {
  border: none; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0;
  display: inline-block; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin: 20px 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

ul, ol {
  padding-left: 20px; }

.clear {
  clear: both; }

/*
	MEDIA QUERY MIXIN
	breakpoint mixin (used for specific media queries for elements outside of media query sass files)
	--variables are in _variables.scss...DUH
*/
/*
	MIXIN used within standard media query sass files for common rules between all	
	ATTRIBUTE SELECTORS:	
	[attr="whatever"] // exact match	
	[attr=*"whatever"] // whatever can be found ANYWHERE in the attr	
	[attr^="whatever"] // begins with the match	
	[attr$="whatever"] // ends with the match
	[attr~="whatever"] // value is within a space separated list
	<a data-example="test whatever test" href="">test</a>
	[attr|="whatever"] // value is within a dash separated list
	<a data-example="test-whatever-test" href="">test</a>		
*/
/*
    While in edit mode a class of .editmode is placed on the body tag.
    Styles in here are for edit / design mode ONLY
*/
.EditMode {
  /* HOMEPAGE */
  /* FOOTER */ }
  .EditMode #video-wrapper {
    display: block !important;
    position: relative; }
  .EditMode nav {
    position: relative !important; }
  .EditMode nav.global {
    background: #ccc; }
  .EditMode .home-header .home-hero-wrapper {
    display: block !important;
    position: relative !important; }
  .EditMode header.main .CMSEditableRegionEdit {
    position: relative;
    z-index: 11; }
  .EditMode header.main .hero-img {
    position: relative !important;
    z-index: -1; }
  .EditMode #home-content #face-buckets {
    min-height: 1000px; }
    .EditMode #home-content #face-buckets #faces-wrapper {
      position: absolute;
      left: 25%;
      height: 100%; }
      .EditMode #home-content #face-buckets #faces-wrapper .bucket-row section {
        overflow: visible !important;
        height: 50% !important;
        padding: 0 !important;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transition: none !important;
        -moz-box-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
        transition: none !important; }
        .EditMode #home-content #face-buckets #faces-wrapper .bucket-row section > div {
          padding: 0 !important; }
        .EditMode #home-content #face-buckets #faces-wrapper .bucket-row section div.overlay {
          top: 100% !important; }
        .EditMode #home-content #face-buckets #faces-wrapper .bucket-row section:hover > div.overlay {
          top: 0;
          -webkit-transform: translateZ(0);
          -moz-transform: translateZ(0);
          -ms-transform: translateZ(0);
          -o-transform: translateZ(0);
          transform: translateZ(0);
          -webkit-transition: none !important;
          -moz-box-transition: none !important;
          -ms-transition: none !important;
          -o-transition: none !important;
          transition: none !important; }
  .EditMode #footer-social-wrapper ul li a {
    text-indent: 0px !important; }

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important; }

  a, a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; }

  select {
    background: #fff !important; }

  .navbar {
    display: none; }

  .table td, .table th {
    background-color: #fff !important; }

  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important; }

  .label {
    border: 1px solid #000; }

  .table {
    border-collapse: collapse !important; }

  .table-bordered th, .table-bordered td {
    border: 1px solid #ddd !important; }
 }

/* Extension classes (extend divs to full width of window) */
body, html {
  min-height: 100%;
  overflow: hidden; }

#curtain {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 100;
  background: #ecebea;
  display: none; }

#pagewrapper {
  background: #fff;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1; }

/* used to measure the scrollbar width */
.scrollbar-measure {
  width: 100px;
  height: 100px;
  overflow: scroll;
  position: absolute;
  top: -9999px; }

/*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */
@media only screen and (min-width : 1400px) {
  /*largescreen = 1400px, found in variables _grid-var.scss*/
  /*
		this is where the max-width comes into play. over 1400px we are using 
		this wrapper as our centering element. otherwise...let it flow baby.
	*/
  body, html {
    min-height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch; }

  #curtain {
    display: block; }

  #window-wrapper {
    width: 1400px;
    position: relative;
    margin: 0 auto;
    min-height: 1000px;
    overflow: hidden; }

  #pagewrapper {
    overflow: hidden; }
 }

.rotate {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }

.site-slide-wrap {
  padding-right: 10px;
  padding-right: 60px;
  /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */
  /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */ }
  @media only screen and (min-width : 481px) and (max-width : 767px) {
    .site-slide-wrap {
      padding-right: 0; } }
  @media only screen and (max-width : 480px) {
    .site-slide-wrap {
      padding-right: 0; } }

.clr, .clear {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; }

.hidden, .no-show {
  display: none; }

.side-close {
  margin: 60px 0; }

.extend, .extend-left, .extend-right {
  position: absolute;
  height: 100%;
  width: 1000px;
  top: 0;
  background: inherit;
  z-index: 0; }

.extend-left {
  right: 100%; }

.extend-right {
  left: 100%; }

.text-center {
  text-align: center; }

.center {
  margin-left: auto;
  margin-right: auto;
  float: none; }

.main_panel {
  height: 450px;
  border-bottom: 1px solid #fff; }
  .main_panel h1 {
    color: #fff;
    margin-top: 180px; }
  .main_panel img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }

.main_panel_head {
  height: 336px;
  background-color: #fff; }
  .main_panel_head h1 {
    margin-top: 85px; }

.main_panel_foot {
  height: 200px;
  background-color: #fff; }

.left {
  float: left; }

.right {
  float: right; }

.none {
  float: none;
  clear: both; }

.respond {
  width: 100%;
  display: block;
  height: auto; }

.relative {
  position: relative; }

.white-bg {
  background-color: #fff; }

.pad-left {
  padding-left: 25px; }

.padded {
  padding: 40px; }

.padded-v {
  padding: 40px 0; }

.padded-h {
  padding: 0 100px 0 40px; }

.dropbox {
  padding: 40px;
  width: 100px; }

.form-divide {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  margin: 45px 0; }

.block {
  display: block; }

img.auto {
  width: 100% !important;
  height: auto !important; }

.board-thumb {
  height: 125px;
  width: 144px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg); }

/*
    font-family: 'Merriweather', serif;
    font-family:'ITCAvantGardeW04-XLt';
    font-family:'ITCAvantGardeW04-Book';
    font-family:'ITCAvantGardeW04-Demi';
    font-family:'ITCAvantGardeW04-Medium 1122896';
    one more for numbers...
*/
body {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  color: #737271;
  font-family: 'Merriweather', serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

.header-style, h1, h2, h3, h4, h5, .date-font, ul.main-nav > li > a {
  font-family: 'ITCAvantGardeW04-XLt';
  text-transform: uppercase;
  color: #3d3b39;
  line-height: 1.1em;
  margin: 0;
  font-weight: 100; }

.header-image {
  background: url("../../images/header_image.png");
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 29px;
  position: relative;
  text-align: center; }

.board-spec-head {
  font-family: 'ITCAvantGardeW04-Book';
  font-size: 14px;
  color: #a09b97; }

h1 {
  font-size: 60px;
  margin-bottom: 10px; }

h2 {
  font-size: 40px;
  margin-bottom: 40px; }

h3 {
  font-size: 30px;
  margin-bottom: 30px; }

h4 {
  font-family: 'ITCAvantGardeW04-Book';
  font-size: 20px; }

h5 {
  font-size: 15px;
  color: #a09b97;
  font-family: 'ITCAvantGardeW04-Book'; }

.large-font {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 160%;
  font-family: 'Merriweather', serif;
  font-weight: 400; }

.rounded-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  -o-border-radius: 150px;
  -ms-border-radius: 150px;
  border-radius: 150px;
  behavior: url("/css/PIE.htc"); }

.med-font {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 160%;
  font-family: 'Merriweather', serif;
  font-weight: 400; }

.small-font {
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 160%;
  font-family: 'Merriweather', serif;
  font-weight: 400; }

.sidebar {
  font-size: 14px;
  font-style: italic;
  margin: 0;
  padding: 0;
  line-height: 160%;
  font-family: 'Merriweather', serif;
  font-weight: 400; }

.sidebarheadline {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 160%;
  font-family: 'Merriweather', serif;
  font-weight: 600; }

.sub-head {
  color: #a09b97;
  font-family: 'ITCAvantGardeW04-Book';
  text-transform: uppercase;
  font-size: 14px; }

.block h1, .block h2, .block h3:first-of-type {
  margin-top: 0; }

.hashtag {
  font-size: 30px;
  text-transform: uppercase; }

.step h2 {
  font-size: 80px; }

.light {
  font-family: 'TradeGothicNextW01-Ligh 693250'; }

.italic {
  font-family: 'Adobe Caslon W01 It';
  text-transform: lowercase;
  font-size: 11px; }

.bodylink {
  font-family: 'Adobe Caslon W01 It';
  text-transform: none !important;
  font-size: 18px;
  margin-right: 20px; }
  .bodylink:hover {
    color: #4c87c1; }

.radio-form label {
  display: inline-block;
  padding: 4px 11px;
  font-family: 'ITCAvantGardeW04-Book';
  font-size: 18px;
  color: #737271; }

.story-size {
  font-size: 4.5em; }

.date-font {
  font-size: 15px;
  color: #ecebea;
  font-weight: 700;
  font-family: 'ITCAvantGardeW04-Book'; }

.event-year {
  font-size: 100px;
  font-family: 'ITCAvantGardeW04-XLt'; }

/*input{
	color:#a09b97;
	@include placeholder(#a09b97);
}*/
form, input, label, select {
  font-family: 'ITCAvantGardeW04-Book', serif; }

label, form p {
  color: #a09b97;
  font-size: 16px; }

select option {
  margin: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); }

input[type="text"], input[type="password"], input[type="email"], textarea {
  height: 35px;
  display: block;
  width: 98%;
  text-indent: 10px;
  padding: 5px;
  margin: 10px 0;
  font-family: 'ITCAvantGardeW04-Book', serif;
  background: #fff;
  border: 1px solid #999;
  font-size: 14px;
  outline: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  behavior: url("/css/PIE.htc"); }

textarea {
  padding: 15px 5px; }

#gsb-menu input[type="text"], #gsb-menu input[type="password"], #gsb-menu input[type="email"], #gsb-menu textarea {
  background-color: #eee;
  color: #737271; }

input[type="submit"] {
  background: transparent; }

a, a:visited {
  color: #28ade6;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 0.3s ease;
  -moz-box-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-family: 'ITCAvantGardeW04-Book', serif; }
  a:hover, a:visited:hover {
    color: #6dc7ee;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: color 0.3s ease;
    -moz-box-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease; }

.button, .formidable .buttons .btn.primary, a.button, .formidable .buttons a.btn.primary {
  margin: 1em;
  padding: 15px 25px;
  border: 1px solid #a09b97;
  text-align: center;
  color: #a09b97;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  behavior: url("/css/PIE.htc");
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all ease 0.3s;
  -moz-box-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  font-family: 'ITCAvantGardeW04-Book', serif; }
  .button:hover, .formidable .buttons .btn.primary:hover, a.button:hover, .formidable .buttons a.btn.primary:hover {
    color: #fff !important;
    background: #a09b97;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all ease 0.3s;
    -moz-box-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s; }
  .button input, .formidable .buttons .btn.primary input, .button a, .formidable .buttons .btn.primary a, .button span, .formidable .buttons .btn.primary span, a.button input, .formidable .buttons a.btn.primary input, a.button a, .formidable .buttons a.btn.primary a, a.button span, .formidable .buttons a.btn.primary span {
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    border: none !important;
    background: transparent !important;
    -webkit-appearance: none !important;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: none !important;
    -moz-box-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important; }

.button.small, .formidable .buttons .small.btn.primary {
  padding: 5px 15px;
  font-size: 14px; }

.button.blue-button, .formidable .buttons .blue-button.btn.primary {
  background-color: #28ade6;
  color: #fff;
  border: none; }

.button.blue-button:hover, .formidable .buttons .blue-button.btn.primary:hover {
  background-color: #c1c336; }

header {
  height: 690px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  header .home-story-wrap p, header .home-story-wrap h1, header .home-story-wrap h2, header .home-story-wrap h2, header .home-story-wrap h3, header .home-story-wrap h4 {
    color: #fff; }
  header #blog-excerpt {
    margin-top: 30px; }
    header #blog-excerpt .blog_excerpt_content {
      position: relative;
      padding-bottom: 40px;
      border-bottom: 1px solid #737271;
      margin-top: 25px; }
      header #blog-excerpt .blog_excerpt_content .blog_date {
        color: #ecebea;
        font-size: 14px;
        margin-bottom: 10px; }
      header #blog-excerpt .blog_excerpt_content h3 {
        color: #fff;
        margin-bottom: 15px;
        font-weight: 700; }
      header #blog-excerpt .blog_excerpt_content p {
        color: #ecebea;
        font-size: 14px;
        line-height: 20px;
        line-height: 130%; }
      header #blog-excerpt .blog_excerpt_content a {
        font-size: 20px;
        margin-top: 20px;
        display: block; }

.stories_button {
  background-color: #ecebea;
  font-family: "ITCAvantGardeW04-XLt";
  padding: 10px;
  text-align: center;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  behavior: url("/css/PIE.htc"); }

#users-content {
  padding: 60px; }

#info-sidebar {
  max-width: 700px;
  margin: 0 auto;
  background: #3D3B39;
  padding: 50px;
  z-index: 0; }

#info-content {
  padding: 80px 50px 50px;
  position: relative; }

.close-info {
  position: absolute;
  top: 20px;
  right: 20px; }

.page-gallery .gallery-start {
  width: 24%; }

.gallery-start {
  width: 100%;
  height: 280px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer; }
  .gallery-start .cam {
    position: absolute;
    height: 55px;
    width: 55px;
    bottom: -1px;
    right: 0px; }

.video-cam {
  background: url('../../images/vidcam_bg.png'); }

.photo-cam {
  background: url('../../images/camera_bg.png'); }

.caption {
  text-align: center;
  font-style: italic;
  margin: 0 auto;
  font-size: 14px; }

.h-spacer {
  height: 1px;
  width: 100%; }

.v-spacer {
  width: 1px; }

.quote-marks {
  width: 23px;
  height: 20px;
  background: url('../../images/quote_marks.png');
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
  bottom: 7px; }

.instagram-block-wrap {
  overflow: hidden;
  position: relative;
  height: 312px;
  width: 100%;
  cursor: pointer; }

.instagram-block {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 312px;
  background-repeat: no-repeat;
  position: relative; }
  .instagram-block:hover .instagram-crosshairs {
    top: 0;
    display: block; }

.instagram-crosshairs {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: url('../../images/instagram_crosshair.png') center center no-repeat; }

.instagram-content {
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 2; }
  .instagram-content > div {
    padding: 30px;
    overflow: auto; }
  .instagram-content p {
    color: #525252;
    font-size: 17px;
    margin-top: 0; }

.header-hero-image {
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center; }
  .header-hero-image .header-title {
    display: block;
    padding-top: 150px; }

.formidable input {
  font-family: 'Merriweather', serif;
  width: 80%;
  height: 35px;
  padding: 5px;
  margin: 10px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  behavior: url("/PIE.htc"); }
.formidable textarea {
  height: 100px;
  font-family: 'Merriweather', serif;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  behavior: url("/PIE.htc"); }
.formidable .buttons .btn.primary {
  background-image: none !important;
  background: none;
  border-color: none;
  width: 50%;
  height: 50px; }

.fc-header-right {
  display: none; }

.fc-button-today {
  display: none; }

.fc-header {
  background-color: #ecebea;
  margin-bottom: 20px; }

.fc-header-center {
  text-align: left;
  position: relative;
  top: 20px;
  left: 5%; }

.fc-content {
  font-family: 'Merriweather', serif;
  color: #737271; }

.fc-event-skin {
  background-color: #989898;
  border-color: #989898; }

.fc-event-time {
  display: none; }

.calendar .available {
  background-color: #fff; }

#setyear {
  display: none; }

#setmo {
  display: none; }

.event_nav {
  padding: 20px 0;
  position: relative;
  background-color: #ecebea; }

.title_year {
  float: none;
  position: absolute;
  margin-top: -105px;
  text-align: center;
  left: 30%;
  letter-spacing: 5px; }

.iCal {
  display: none; }

.backlink {
  display: none; }

.upcoming-events-wrap {
  border: 1px solid #ecebea;
  padding: 10px; }
  .upcoming-events-wrap h3 {
    margin: 20px 0 40px; }

.nextmo {
  position: relative;
  left: 65%; }

.prevmo {
  position: relative;
  left: 10%; }

.calendar {
  margin-top: 40px; }

.event_super_clean h5 {
  margin-left: 10px;
  padding-top: 2px;
  font-family: 'ITCAvantGardeW04-Demi'; }
.event_super_clean a {
  text-transform: uppercase;
  font-size: 20px; }
.event_super_clean p {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'ITCAvantGardeW04-Demi'; }

.board-detail-label p {
  font-family: 'ITCAvantGardeW04-XLt', sans-serif;
  text-transform: uppercase; }

.shopify-detail-wrap {
  width: 40%;
  margin-right: 10%; }
  .shopify-detail-wrap a {
    font-size: 40px;
    font-weight: 100; }

.shopify-button .button, .shopify-button .formidable .buttons .btn.primary, .formidable .buttons .shopify-button .btn.primary {
  padding: 5px 25px !important; }

.board-shopify-wrap {
  margin-top: 40px; }

.quantity-bubble {
  display: block;
  font-size: 11px;
  line-height: 15px;
  background: #28ADE6;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1px solid #28ADE6;
  position: absolute;
  top: 10px;
  right: 7px;
  width: 15px;
  height: 15px;
  text-align: center; }

.buy-ctr {
  text-align: right; }

.noscroll {
  overflow: hidden; }

#gsb-wrapper {
  width: 100%;
  min-height: 1400px;
  background: red;
  position: relative;
  z-index: 1; }

.main-logo {
  height: 75px;
  background: url('/themes/grain/images/nav_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 40px;
  width: 93%; }
  .main-logo a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 0; }

/*
	MENU
*/
/* MENU SCAFOLDING / MAIN LAYOUT */
#gsb-menu.resizing {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: none !important;
  -moz-box-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

#gsb-menu {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 0px;
  height: 100%;
  background: #302e2d;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.2s ease;
  -moz-box-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */
  /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */ }
  @media only screen and (min-width : 1400px) {
    #gsb-menu {
      position: fixed !important; } }
  @media only screen and (max-width : 480px) {
    #gsb-menu {
      left: 0;
      right: auto;
      width: 100%;
      height: 60px;
      overflow: hidden; } }
  #gsb-menu #gsb-icon-menu {
    width: 60px;
    background: #3d3b39;
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    z-index: 2;
    /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */ }
    @media only screen and (max-width : 480px) {
      #gsb-menu #gsb-icon-menu {
        left: 0;
        right: auto;
        width: 100%;
        height: 60px;
        position: relative; } }
  #gsb-menu #gsb-menu-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 500px;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */ }
    @media only screen and (max-width : 480px) {
      #gsb-menu #gsb-menu-wrapper {
        min-width: 0;
        top: 60px; } }
  #gsb-menu #gsb-menu-content {
    padding-bottom: 100px; }

#gsb-menu.third {
  width: 33%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease;
  -moz-box-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#gsb-menu.half {
  width: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease;
  -moz-box-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#gsb-menu.full {
  width: 90%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease;
  -moz-box-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

/*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */
@media only screen and (max-width : 480px) {
  #gsb-menu.full, #gsb-menu.half, #gsb-menu.third {
    height: 100%;
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.5s ease;
    -moz-box-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
 }

/*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */
@media only screen and (min-width : 481px) and (max-width : 767px) {
  #gsb-menu.full, #gsb-menu.half, #gsb-menu.third {
    height: 100%;
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.5s ease;
    -moz-box-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
 }

/* MENU BUTTONS */
.icon-menu-item {
  background-color: #3d3b39;
  position: relative;
  height: 60px;
  width: 60px;
  border-bottom: 1px solid #514e4c;
  cursor: pointer;
  /*
			    if query doesnt match one of our standard devices, use a custom one
			    example: @include BreakPoint(only screen and (min-width : 1101px)){ styles here }
		    */ }
  @media only screen and (max-width : 480px) {
    .icon-menu-item {
      border-bottom: none;
      float: left; } }
  .icon-menu-item a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5; }
    .icon-menu-item a span {
      opacity: 1; }

.no-touch .icon-menu-item:hover {
  background-color: #333; }
  .no-touch .icon-menu-item:hover a:hover {
    opacity: 1; }

/* SPECIFIC BUTTONS */
#close-menu {
  height: 61px;
  width: 60px;
  cursor: pointer;
  background: #837e79 url("/themes/grain/images/x.png") center no-repeat; }

a#menu-toggle {
  background: #28ade6 url("/themes/grain/images/menu-waves.png") no-repeat center center;
  opacity: 1; }

#menu-home-link a {
  background: url("/themes/grain/images/home.png") no-repeat center center; }

#menu-boards-link a {
  background: url("/themes/grain/images/boards-icon.png") no-repeat center center; }

a#account-toggle {
  background: url("/themes/grain/images/users.png") no-repeat center center; }

a#cart-toggle {
  background: url("/themes/grain/images/cart-icon.png") no-repeat center center; }
  a#cart-toggle.on {
    opacity: 1; }

/* on the homepage lets hide the homepage link */
.page-home #menu-home-link {
  display: none; }

/* DYNAMIC MENU CONTENT */
#dynamic-menu-content > div {
  padding: 20px; }
#dynamic-menu-content > img {
  max-width: 90%;
  display: block;
  height: auto;
  margin: 50px auto; }
#dynamic-menu-content p, #dynamic-menu-content h1, #dynamic-menu-content h2, #dynamic-menu-content h3 {
  color: #eee; }

#global-slider-content {
  padding: 25px; }
  #global-slider-content .main-logo {
    display: block;
    float: left;
    width: 150px; }

ul.social-media-links {
  padding-left: 0;
  display: block;
  float: left; }
  ul.social-media-links li {
    display: inline-block;
    width: 30px;
    height: 60px;
    margin-right: 20px;
    position: relative; }
    ul.social-media-links li a {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }
    ul.social-media-links li:hover {
      opacity: 0.4; }
  ul.social-media-links .instagram-link {
    background: url("/themes/grain/images/instagram.png") no-repeat center center; }
  ul.social-media-links .facebook-link {
    background: url("/themes/grain/images/facebook.png") no-repeat center center; }
  ul.social-media-links .twitter-link {
    background: url("/themes/grain/images/twitter.png") no-repeat center center; }

ul.main-nav {
  padding-left: 0; }
  ul.main-nav > li {
    list-style: none !important;
    padding: 25px 0 25px 10px;
    background: transparent;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: background 0.3s ease;
    -moz-box-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease; }
    ul.main-nav > li:hover {
      background: #282726;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-transition: background 0.3s ease;
      -moz-box-transition: background 0.3s ease;
      -ms-transition: background 0.3s ease;
      -o-transition: background 0.3s ease;
      transition: background 0.3s ease; }
    ul.main-nav > li > a {
      font-size: 60px;
      color: #fff;
      line-height: 0.9em;
      display: block; }
      ul.main-nav > li > a > span {
        display: block;
        font-size: 15px;
        padding-left: 3px;
        color: #a09b97;
        font-family: 'ITCAvantGardeW04-Book'; }
    ul.main-nav > li > a:hover {
      color: #28ade6; }
    ul.main-nav > li > ul {
      display: none;
      list-style: none; }
      ul.main-nav > li > ul .nav-selected {
        color: #fff; }
  ul.main-nav > li.nav-path-selected {
    background: #282726;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: background 0.3s ease;
    -moz-box-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease; }
    ul.main-nav > li.nav-path-selected > ul {
      display: block; }
  ul.main-nav > li.secondary-nav-item {
    width: 40%;
    float: left;
    background: transparent !important;
    margin-left: 20px; }
    ul.main-nav > li.secondary-nav-item > a {
      font-size: 24px;
      font-family: 'ITCAvantGardeW04-Book';
      display: inline; }
    ul.main-nav > li.secondary-nav-item > a:hover {
      color: #28ade6; }
    ul.main-nav > li.secondary-nav-item span {
      font-size: 16px;
      padding-left: 0; }

.account_login_wrapper {
  margin: 4px 60px; }
  .account_login_wrapper input {
    color: #666;
    background-color: #eee; }
    .account_login_wrapper input::-moz-placeholder {
      color: #a09b97;
      opacity: 1; }
    .account_login_wrapper input:-ms-input-placeholder {
      color: #a09b97; }
    .account_login_wrapper input::-webkit-input-placeholder {
      color: #a09b97; }
  .account_login_wrapper h3 {
    color: #ecebea;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecebea; }
  .account_login_wrapper .button, .account_login_wrapper .formidable .buttons .btn.primary, .formidable .buttons .account_login_wrapper .btn.primary {
    margin-top: 10px;
    margin-right: 10px; }
  .account_login_wrapper p {
    margin-bottom: 20px; }

#register-wrapper .controls {
  margin: 20px 0; }
#register-wrapper input[type="checkbox"] {
  margin-right: 5px; }

#logged-in-wrapper img {
  display: block;
  height: 130px;
  width: 130px;
  margin: 0 auto 20px auto; }
#logged-in-wrapper .button, #logged-in-wrapper .formidable .buttons .btn.primary, .formidable .buttons #logged-in-wrapper .btn.primary {
  margin-top: 0; }

#board-nav-content {
  position: relative;
  top: 60px; }
  #board-nav-content .side-nav-close {
    top: -40px; }

.board-type-panel h3 {
  color: #ddd !important;
  margin: 0; }

.board-panel {
  background-color: #fff;
  height: 152px;
  border-bottom: 1px solid #a09b97;
  padding: 15px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: block;
  overflow: hidden; }
  .board-panel .text {
    position: absolute;
    z-index: 4; }
    .board-panel .text h4 {
      color: #3d3b39 !important;
      margin: 0; }
    .board-panel .text p.desc {
      font-family: 'ITCAvantGardeW04-Book';
      font-size: 14px;
      color: #999 !important; }
  .board-panel .board-thumb {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 185px;
    width: 163px;
    position: absolute;
    bottom: -53px;
    left: 50%; }
  .board-panel a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 5; }

.crew-side-image {
  height: 257px;
  width: 257px;
  margin: 0 auto 40px; }

.crew-side-info {
  position: relative;
  top: 0;
  left: 40px;
  width: 80%;
  display: none;
  text-align: center;
  padding-top: 60px; }
  .crew-side-info h3 {
    color: #ecebea;
    margin-bottom: 5px; }
  .crew-side-info .crew-title {
    font-size: 14px;
    font-family: 'ITCAvantGardeW04-Book';
    margin: 0 0 20px 0; }
  .crew-side-info .crew-bio {
    font-size: 14px;
    width: 100%;
    color: #ecebea; }

#crew-nav-content {
  width: 67%;
  position: relative;
  margin: 0 auto;
  top: 40px;
  left: 0;
  margin-left: 32%;
  padding-bottom: 40px; }

.top-bot-border {
  border-top: 1px solid #3d3b39;
  border-bottom: 1px solid #3d3b39; }

.page-gallery .nav-close {
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 100; }
.page-gallery #slide-wrap.gallery-flyout {
  right: 120%; }

.gallery-slide-wrap {
  position: relative;
  overflow: hidden; }

.gallery-main-image {
  height: auto;
  width: 90%;
  margin: 0 auto 60px;
  position: relative; }
  .gallery-main-image img {
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
    max-width: 100%;
    max-height: 640px; }

.gallery-main-video {
  cursor: pointer; }
  .gallery-main-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer; }
    .gallery-main-video .video-overlay:hover {
      height: 180px;
      width: auto; }
  .gallery-main-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none; }

#board-spec-content {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  top: 40px;
  left: 0; }
  #board-spec-content .small-side-wrap {
    margin-top: 60px; }
  #board-spec-content .board-spec-details {
    text-align: center;
    position: relative;
    width: 55%;
    top: 40px;
    margin: 0 auto;
    margin-bottom: 60px; }

#board-nav-content .nav-close {
  top: -40px;
  right: 10px; }

.main-content {
  background: #fff; }

#branding_section {
  padding: 80px 0 155px 0;
  border-bottom: 1px solid black;
  background: #fff url('../../images/grain_wood.png');
  background-size: 40%;
  background-position: bottom right;
  background-repeat: no-repeat; }
  #branding_section .content_block_leftimage {
    margin-bottom: 190px; }
    #branding_section .content_block_leftimage h1 {
      font-size: 60px; }
    #branding_section .content_block_leftimage .left_image {
      height: 170px;
      background: url('../../images/grain_logo.png');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; }
  #branding_section .top_block p {
    font-size: 20px; }

#home_info_section {
  padding: 135px 0 0 0;
  background-color: #fff; }
  #home_info_section .content_block_leftimage {
    margin-bottom: 100px; }
    #home_info_section .content_block_leftimage .left_image {
      background: url('../../images/round_trees.png');
      background-size: 100%;
      background-position: center;
      background-repeat: no-repeat; }
    #home_info_section .content_block_leftimage .copy {
      margin-top: 50px; }
  #home_info_section .content_block_rightimage {
    margin-bottom: 50px; }
    #home_info_section .content_block_rightimage .right_image {
      background: url('../../images/heart_board.png');
      background-size: 100%;
      background-position: center;
      background-repeat: no-repeat; }

#instagram_section {
  background: url('../../images/wood_bg.png');
  background-repeat: repeat;
  padding: 40px 0 50px 0; }
  #instagram_section #instagram_head {
    padding-left: 6%; }
    #instagram_section #instagram_head .camera {
      background: url('../../images/camera.png');
      height: 40px;
      width: 40px;
      position: relative;
      right: 110px;
      background-size: 100%;
      background-position: center;
      background-repeat: no-repeat; }
      #instagram_section #instagram_head .camera a {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0; }
    #instagram_section #instagram_head p {
      color: #fff; }
    #instagram_section #instagram_head h2 {
      color: #fff; }
  #instagram_section .instagram_column {
    height: 310px; }
  #instagram_section .instagram_block {
    height: 100%;
    border-bottom: 1px solid black; }

#join_section {
  width: 1340px;
  text-align: center;
  background-color: #fff;
  padding: 100px 0; }

#shop-wrapper #grid-sizer {
  width: 19%;
  margin: 0 0.5% 30px; }
#shop-wrapper .img-ctr {
  margin: 0;
  width: 100%; }
#shop-wrapper .purchase-info {
  display: none; }

#cart-button {
  position: relative; }
  #cart-button .quantity-bubble {
    display: block;
    font-size: 11px;
    line-height: 15px;
    background: #FFF;
    color: #333;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 1px solid #28ADE6;
    position: absolute;
    top: 10px;
    right: 7px;
    width: 15px;
    height: 15px;
    text-align: center; }

.checkout-btn, .cart-btn {
  width: 30%;
  margin-right: 1%;
  margin-bottom: 50px;
  float: left; }

.shopify-cart h2 {
  font-size: 30px !important;
  padding: 0 0 10px !important;
  margin: 0 0 30px !important;
  border-bottom: 1px solid #333; }
.shopify-cart hr {
  background: #333; }

.cart-product {
  width: 100%;
  clear: both;
  margin: 0 0 30px;
  padding: 0 0 10px;
  border-bottom: 1px solid #333; }
  .cart-product span {
    display: block;
    color: #737270;
    font-size: 14px; }
  .cart-product .title {
    font-size: 18px;
    color: #999;
    font-weight: 200; }
  .cart-product .img {
    display: block;
    width: 30%;
    height: 200px;
    background-size: cover;
    background-position: center;
    float: left;
    border: 1px solid #999;
    margin: 0 20px 20px 0; }

.product-variant {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #333; }
  .product-variant input {
    width: 50px; }
  .product-variant span {
    color: #FFF;
    display: block;
    margin: 0 0 5px; }

.product-view img {
  width: 30%;
  float: left;
  margin: 0 15px 15px 0; }
.product-view h2 {
  font-size: 30px !important;
  padding: 0 0 10px !important;
  margin: 0 0 30px !important;
  border-bottom: 1px solid #333; }
.product-view p {
  font-size: 14px;
  margin: 0 0 10px; }

.story-panel {
  padding: 45px 0 130px 0;
  border-bottom: 1px solid #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer; }
  .story-panel h2 {
    color: #fff;
    margin-bottom: 20px; }
  .story-panel h1 {
    color: #fff; }
  .story-panel p {
    color: #fff; }
  .story-panel .stories_button {
    left: -16px;
    width: 75px;
    top: 20px;
    padding-right: 2px;
    padding-left: 2px;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    behavior: url('/css/PIE.htc'); }
    .story-panel .stories_button p {
      color: #a09b97; }
  .story-panel .story-date {
    position: relative;
    margin-top: 110px;
    left: -30px; }
    .story-panel .story-date p {
      color: #ecebea;
      font-size: 14px; }
  .story-panel .story-excerpt {
    border-right: 1px solid #938f89;
    padding-bottom: 40px; }
  .story-panel .author-info .author {
    font-family: 'ITCAvantGardeW04-Book';
    color: #ecebea; }
  .story-panel .author-info h4 {
    color: #ecebea; }
  .story-panel .author-info .author-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    margin-bottom: 20px; }

.read-more-stories {
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  background-color: #ecebea;
  width: 87%;
  margin: 20px 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  behavior: url("/css/PIE.htc");
  cursor: pointer; }
  .read-more-stories p {
    margin-left: 40px; }

.interior-panel-wrapper {
  background: #3d3b39; }

.interior-panel {
  padding: 120px 0 130px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  float: none; }
  .interior-panel .panel-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0.25;
    transition: all 250ms;
    -moz-transition: all 250ms;
    -webkit-transition: all 250ms;
    background-size: cover; }
  .interior-panel a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5; }
  .interior-panel h2 {
    font-size: 60px;
    position: relative;
    z-index: 4;
    color: #fff; }
  .interior-panel p {
    position: relative;
    z-index: 4;
    color: #fff; }

.interior-panel-wrapper:hover .panel-bg {
  opacity: 0.5;
  transition: all 250ms;
  -moz-transition: all 250ms;
  -webkit-transition: all 250ms; }

.board-category-wrap {
  cursor: pointer; }

#gallery-nav-content {
  padding: 0px 120px 0 60px;
  text-align: center; }
  #gallery-nav-content .gal-nav-icon {
    height: 30px;
    width: 30px;
    color: #fff;
    font-size: 24px;
    cursor: pointer; }
    #gallery-nav-content .gal-nav-icon:hover {
      font-size: 30px;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-transition: all 0.3s ease;
      -moz-box-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }

.gallery-nav {
  width: 100%;
  position: absolute; }
  .gallery-nav ul {
    display: block;
    margin: 0 auto;
    width: 30%; }
    .gallery-nav ul li {
      display: inline-block;
      float: left;
      padding: 10px;
      cursor: pointer;
      margin-right: 2%; }

.gallery-slide-wrap {
  padding-top: 60px; }
  .gallery-slide-wrap .next {
    cursor: pointer; }

#grid-sizer {
  width: 24%;
  float: left;
  margin-right: 1%; }

.page-gallery .gallery-start {
  width: 24%; }

.gallery-nav ul {
  margin: 0 auto;
  padding: 0; }

.gallery-nav ul li {
  margin: 0;
  padding: 0 20px;
  border-right: 1px solid #333; }

.gallery-nav ul li.last {
  border-right: 0px; }

.gallery-nav ul li a {
  color: black; }

#videoid {
  display: none;
  margin-top: 10px; }

#gallery-navigation {
  width: 60px;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 60px; }

#gallery-navigation .nav-item {
  width: 12px;
  height: 12px;
  border: 1px solid #CCC;
  display: block;
  margin: 15px auto;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%; }

#gallery-navigation .active {
  background: #CCC; }

.crew-wrap {
  opacity: 1; }

.crew-wrap:hover {
  opacity: 0.8; }

.crew-bucket {
  margin-bottom: 80px;
  cursor: pointer; }
  .crew-bucket .crew-image {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .crew-bucket h4 {
    color: #28ade6; }
  .crew-bucket .crew-title {
    font-size: 14px; }

.board-header {
  margin: 80px 0 20px 0; }

.board-side-image {
  width: 25%;
  height: 800px;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 100px;
  top: 100px;
  margin-right: 4%;
  background-image: url('../../images/wood_bg.png'); }

.board-header-partial {
  width: 66%;
  float: left;
  margin: 40px 0 80px 0; }

.build-buttons {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  margin: 40px 0; }

.board-spec-section {
  background-image: url('../../images/wood_bg.png');
  background-repeat: repeat;
  height: 100px;
  width: 100%;
  padding-bottom: 10px;
  margin-top: 40px;
  display: none; }

.question-wrap {
  background: #ecebea; }

.comment-section {
  text-align: center;
  margin-top: 60px; }
  .comment-section h4 {
    margin: 40px 0; }
  .comment-section .comment {
    margin: 20px;
    font-family: 'ITCAvantGardeW04-Book', serif;
    width: 85%;
    background-color: #fff;
    padding: 10px; }
  .comment-section .comment-byline {
    position: relative;
    bottom: 0;
    left: 35%;
    margin: 20px;
    font-size: 14px;
    font-weight: 700; }
  .comment-section .guestBook-manage-links {
    position: relative;
    left: 35%; }
  .comment-section textarea {
    width: 80%;
    height: 50px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    behavior: url("/css/PIE.htc"); }

.question {
  width: 95%;
  padding: 40px 0;
  border-bottom: 1px solid #ecebea; }

.question-show {
  display: block;
  cursor: pointer;
  margin: 40px auto !important;
  padding: 15px 15px;
  width: 80%;
  background-color: #ecebea; }

.bottom-board {
  margin: 40px auto;
  width: 100%;
  position: relative;
  height: 400px; }
  .bottom-board a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .bottom-board .bottom-board-panel {
    border: 1px solid #a09b97;
    width: 45.8%;
    padding: 25px;
    position: relative; }
    .bottom-board .bottom-board-panel h3 {
      margin-bottom: 10px;
      width: 75%; }
    .bottom-board .bottom-board-panel p {
      font-size: 14px; }
    .bottom-board .bottom-board-panel .bottom-board-image {
      position: absolute;
      top: -15px;
      right: 30px;
      width: 165px;
      height: 181px;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      -webkit-transform: rotate(270deg);
      -moz-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
      -o-transform: rotate(270deg);
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }

.board-panel-wrap {
  margin: 40px 0; }

.profile-head {
  position: relative;
  padding: 80px 0;
  border-bottom: 1px solid #ecebea; }
  .profile-head h1 {
    background: url("/themes/grain/images/header_image.png") top center no-repeat;
    padding-top: 20px;
    text-align: center; }
  .profile-head #profile-options {
    position: absolute;
    bottom: 10px;
    left: 0; }
    .profile-head #profile-options a {
      display: block;
      margin-left: 20px;
      text-transform: uppercase; }

.profile-content .profile-image {
  border-left: 1px solid #ecebea;
  padding-left: 2%; }
  .profile-content .profile-image img {
    display: block;
    margin-bottom: 50px;
    width: 150px;
    height: 150px; }
.profile-content .profile-details {
  padding-left: 2%;
  width: 60%; }
  .profile-content .profile-details .button, .profile-content .profile-details .formidable .buttons .btn.primary, .formidable .buttons .profile-content .profile-details .btn.primary {
    margin: 1em; }
.profile-content h4 {
  margin-bottom: 10px;
  font-size: 14px; }
.profile-content p {
  margin-bottom: 40px;
  font-size: 14px; }

.avatar-center {
  float: none !important;
  margin: 0 auto;
  position: relative;
  left: 15%; }
  .avatar-center .button, .avatar-center .formidable .buttons .btn.primary, .formidable .buttons .avatar-center .btn.primary {
    margin-top: 40px; }

#ccm-profile-body.edit-body {
  float: none;
  margin: 0 auto;
  width: 80%;
  text-align: center; }
  #ccm-profile-body.edit-body label {
    font-family: 'ITCAvantGardeW04-Book', sans-serif;
    font-size: 18px;
    text-transform: uppercase; }
  #ccm-profile-body.edit-body input {
    width: 30%;
    height: 35px;
    padding: 5px;
    margin: 10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    behavior: url("/css/PIE.htc"); }
  #ccm-profile-body.edit-body input[type='checkbox'] {
    height: 15px;
    width: 3%;
    margin-bottom: 40px;
    text-align: left; }
  #ccm-profile-body.edit-body textarea {
    width: 30%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    behavior: url("/css/PIE.htc"); }
  #ccm-profile-body.edit-body input[type="submit"] {
    align-items: flex-start;
    text-align: center;
    cursor: default;
    padding: 2px 6px 3px;
    border: 2px outset buttonface;
    border-image-source: none;
    border-image-slice: none;
    border-image-width: none;
    border-image-outset: none;
    border-image-repeat: none;
    background-color: none;
    box-sizing: none; }
  #ccm-profile-body.edit-body fieldset {
    border: none; }

.profile-footer {
  padding: 40px 0;
  border-top: 1px solid #ecebea; }

/*
	Looking for the variables??? _variables.scss
	Looking for BreakPoint Mixin??? _mixins.scss
*/
/* Smartphones (portrait and landscape) ----------- */
/* if screen less than, let's say, 700px wide */
@media screen and (max-width: 1400px) {
  .sticky-nav {
    position: fixed;
    top: 0;
    right: 0;
    overflow: scroll; }
 }

@media screen and (max-width: 1300px) {
  /* remove column float and make full-width */
  .ccm-layout-col {
    float: left !important;
    width: 80% !important; }

  /* remove column "spacing" */
  .ccm-layout-col-spacing {
    margin: 0 !important; }

  #shop-wrapper #grid-sizer, #shop-wrapper .product {
    width: 24%; }

  .v-spacer {
    display: none; }

  .equal-col {
    height: auto !important; }
 }

@media screen and (max-width: 1025px) {
  .sticky-nav {
    width: 65% !important; }

  #slide-wrap.home-nav-slide {
    right: 65%; }

  #slide-wrap.users-flyout {
    right: 65%; }

  #slide-wrap.board-flyout {
    right: 65% !important; }

  .sticky-nav .home-nav .nav-panel {
    width: 96%; }

  /* remove column float and make full-width */
  .ccm-layout-col {
    float: none !important;
    width: 70% !important;
    margin: 0 auto; }

  /* remove column "spacing" */
  .ccm-layout-col-spacing {
    margin: 0 !important; }

  .v-spacer {
    display: none; }

  #crew-nav-content {
    width: 100%;
    margin-left: 0; }

  .crew-bucket {
    width: 55%;
    margin: 40px auto;
    float: none; }

  .comment-section .comment {
    width: 78%; }

  #board-spec-content .board-spec-details {
    width: 36%; }

  .home-story-wrap {
    width: 90%; }

  .shopify-detail-wrap {
    width: 38%;
    margin-right: 5%; }

  .comment-join .join-btn {
    margin-left: 15%; }

  .equal-col {
    height: auto !important;
    margin: 0 auto;
    margin-bottom: 20px; }

  .instagram-block-wrap {
    width: 50%;
    float: left; }

  .instagram-content {
    width: 90%;
    padding: 10px 0 0 30px; }

  .bottom-board .bottom-board-panel {
    width: 43.8%; }

  .title_year {
    left: 32%; }

  .prevmo {
    left: 4%; }

  .nav-foot .pad-left {
    padding-left: 15px; }

  .secondary .mobile-full-nav {
    padding: 20px 10px;
    width: 95%; }

  #instagram_head {
    margin-left: 5%; }

  .crew-wrap {
    margin-left: 0; }

  .page-gallery .sticky-nav {
    width: 100% !important; }

  #gallery-navigation {
    display: none; }

  #shop-wrapper #grid-sizer, #shop-wrapper .product {
    width: 32%; }
 }

/********************************************************
****************************/
@media screen and (max-width: 769px) {
  p {
    font-size: 14px; }

  #slide-wrap.home-nav-slide {
    right: 92%; }

  #slide-wrap.users-flyout {
    right: 92%; }

  #slide-wrap.board-flyout {
    right: 92% !important; }

  .sticky-nav .home-nav .nav-panel {
    width: 96%; }

  h1 {
    font-size: 50px; }

  h2 {
    font-size: 40px; }

  h3 {
    font-size: 30px; }

  #slide-wrap.home-nav-slide {
    right: 92%; }

  .sticky-nav {
    width: 92% !important; }

  .sticky-nav .home-nav h2 {
    font-size: 35px; }

  .interior-panel h2 {
    font-size: 40px; }

  .prevmo {
    left: 1%; }

  .title_year {
    left: 28%;
    letter-spacing: 0; }

  .nextmo {
    left: 70%; }

  .event_nav .button, .event_nav .formidable .buttons .btn.primary, .formidable .buttons .event_nav .btn.primary {
    width: 15px; }

  .formidable .buttons, .formidable .input {
    margin-left: 0; }

  .equal-col {
    height: auto !important;
    margin: 0 auto;
    margin-bottom: 20px; }

  .crew-bucket {
    width: 78%; }

  .crew-side-image {
    width: 150px; }

  .story-size {
    font-size: 40px; }

  .story-head {
    width: 59%;
    margin-left: 0;
    margin-right: 0; }

  .home-story-wrap {
    width: 90%; }

  .author-info {
    display: none; }

  .story-excerpt {
    border-right: none !important; }

  .read-more-stories {
    width: 80%; }
    .read-more-stories p {
      margin-left: 10%; }

  #home-nav-content a {
    padding-left: 10px; }

  .rounded-image {
    height: 150px; }

  .board-side-image {
    width: 88%;
    height: 265px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -75px;
    left: 0;
    float: none !important;
    margin-bottom: -50px;
    -webkit-transform: rotate(90deg);
    display: block;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }

  .bottom-board .bottom-board-panel {
    width: 82%;
    margin-bottom: 40px; }

  .board-spec-section .padded {
    width: 85%; }

  .board-header {
    margin: 0 auto;
    width: 90%; }

  .board-header-partial {
    width: 90%;
    float: none;
    margin: 0 auto; }

  #comment-wrap .rounded-image {
    width: 50px !important;
    height: 50px !important; }

  .comment-section .comment {
    width: 60%; }

  .comment-section .guestBook-manage-links {
    left: 10%; }

  .comment-section .comment-byline {
    left: 10%; }

  .shopify-detail-wrap {
    width: 37%;
    margin-right: 7%; }

  .shopify-button {
    top: 20px;
    position: relative; }

  .comment-join {
    margin-left: 5%; }

  .question-wrap {
    padding: 0 0 0 10px; }

  /* remove column float and make full-width */
  .ccm-layout-col {
    float: none !important;
    width: 100% !important; }

  /* remove column "spacing" */
  .ccm-layout-col-spacing {
    margin: 0 !important; }
 }

@media screen and (max-width: 569px) {
  .gallery-nav ul {
    width: 100%;
    text-align: center; }

  .gallery-nav ul li {
    float: none; }

  .page-gallery .gallery-start {
    width: 100%; }

  .ccm-image-block {
    width: 100%;
    height: auto; }

  #shop-wrapper #grid-sizer, #shop-wrapper .product {
    width: 99%; }
 }

@media only screen and (max-width : 480px) {
  *[data-device-stackall~="phone"], *[data-device-stackall="phone"] {
    position: relative !important; }
    *[data-device-stackall~="phone"] .block, *[data-device-stackall="phone"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="phone"], *[data-device-stack="phone"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="phone"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="phone"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="phone"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="phone"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="phone"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="phone"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="phone"], div.container *[data-device-hide="phone"] {
    display: none !important; }

  div.container *[data-device-show~="phone"], div.container *[data-device-show="phone"] {
    display: block !important; }

  .sticky-nav {
    width: 100% !important; }

  p {
    font-size: 14px; }

  #slide-wrap.home-nav-slide {
    right: 100%; }

  #slide-wrap.users-flyout {
    right: 100%; }

  #slide-wrap.board-flyout {
    right: 100% !important; }

  .sticky-nav .home-nav .nav-panel {
    width: 96%; }

  h1 {
    font-size: 50px; }

  h2 {
    font-size: 40px; }

  h3 {
    font-size: 30px; }

  .stories_button {
    width: 25% !important; }

  .sticky-nav .home-nav h2 {
    font-size: 35px; }

  .interior-panel h2 {
    font-size: 40px; }

  #instagram_section {
    padding: 40px 10px 50px 10px; }

  .instagram-block-wrap {
    width: 100%; }

  .prevmo {
    left: 1%; }

  .title_year {
    left: 28%;
    letter-spacing: 0; }
    .title_year h3 {
      font-size: 15px; }

  .nextmo {
    left: 38%; }

  .event_nav .button, .event_nav .formidable .buttons .btn.primary, .formidable .buttons .event_nav .btn.primary {
    width: 15px; }

  .formidable .buttons, .formidable .input {
    margin-left: 0; }

  header {
    background-image: none;
    display: none; }

  .instagram-block-wrap .instagram-block .instagram-crosshairs {
    left: 150px; }

  .site-slide-wrap {
    padding-right: 0; }

  .home-nav {
    top: 60px !important; }

  .mobile-full-nav {
    width: 95%;
    padding: 25px 0;
    margin-bottom: 40px; }

  .pad-left {
    padding-left: 25px; }

  .main-logo {
    height: 75px;
    background: url("../../images/nav_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    float: none;
    width: 93%;
    margin: 0 auto 40px; }
    .main-logo a {
      padding-left: 0; }

  .nav-foot .main-logo {
    margin: 20px auto 40px; }
    .nav-foot .main-logo a {
      padding-left: 0 !important; }
  .nav-foot .social-media-links {
    padding-left: 0; }
  .nav-foot .pad-left {
    padding-left: 10px;
    float: none;
    width: 92%;
    margin: 0 0 95px 0; }

  .sticky-nav #close-sidebar {
    top: 0; }

  .social-media-links {
    padding-left: 0; }

  .secondary .mobile-full-nav {
    padding: 20px 10px;
    width: 94%; }

  #users-content .sub {
    width: 78%; }

  #users-content input {
    width: 95%; }

  #users-content {
    padding: 80px 20px; }
    #users-content .copyright {
      margin-top: 0; }

  .crew-bucket {
    width: 78%; }

  .crew-wrap {
    margin-left: 0; }

  .crew-side-image {
    width: 150px; }

  .story-size {
    font-size: 40px; }

  .story-head {
    width: 59%;
    margin-left: 0;
    margin-right: 0; }

  .home-story-wrap {
    width: 90%; }

  .author-info {
    display: none; }

  .story-excerpt {
    border-right: none !important; }

  .read-more-stories {
    width: 65%; }
    .read-more-stories p {
      margin-left: 10%; }

  #home-nav-content a {
    padding-left: 10px; }

  .rounded-image {
    height: 150px; }

  .board-side-image {
    width: 88%;
    height: 265px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    top: 130px;
    left: 0;
    float: none !important;
    -webkit-transform: rotate(90deg);
    display: block;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }

  @-moz-document url-prefix() {
    .board-side-image {
      top: 10px; } }

  .bottom-board .bottom-board-panel {
    width: 82%;
    margin-bottom: 40px; }

  .board-spec-section .padded {
    width: 85%; }

  .board-header-partial {
    width: 90%;
    float: none;
    margin: 0 auto; }

  #comment-wrap .rounded-image {
    width: 50px !important;
    height: 50px !important; }

  .comment-section .comment {
    width: 60%; }

  .comment-section .guestBook-manage-links {
    left: 10%; }

  .comment-section .comment-byline {
    left: 10%; }

  .shopify-detail-wrap {
    width: 37%;
    margin-right: 7%; }

  .shopify-button {
    top: 20px;
    position: relative; }

  .bottom-board .bottom-board-panel .bottom-board-image {
    width: 128px;
    height: 181px; }

  .comment-join {
    margin-left: 5%; }

  .question-wrap {
    padding: 0 0 0 10px; }

  #instagram_head {
    padding-left: 10%; }

  #instagram_section #instagram_head .camera {
    right: 17px;
    top: -154px; }

  #gallery-nav-content {
    padding: 0 60px; }

  .gallery-main-image {
    width: 100%; }

  .board-panel .board-thumb {
    height: 161px !important;
    width: 161px !important;
    top: 36px; }

  .stories_button {
    display: none; }

  .site-slide-wrap {
    top: 60px; }
 }

@media screen and (max-width: 321px) {
  .instagram-block-wrap .instagram-block .instagram-crosshairs {
    left: 80px; }

  .board-side-image {
    top: 40px; }

  .board-panel .board-thumb {
    height: 161px !important;
    width: 161px !important;
    top: 36px; }
 }

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
  *[data-device-stackall~="phone_landscape"], *[data-device-stackall="phone_landscape"] {
    position: relative !important; }
    *[data-device-stackall~="phone_landscape"] .block, *[data-device-stackall="phone_landscape"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="phone_landscape"], *[data-device-stack="phone_landscape"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="phone_landscape"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="phone_landscape"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="phone_landscape"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="phone_landscape"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="phone_landscape"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="phone_landscape"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="phone_landscape"], div.container *[data-device-hide="phone_landscape"] {
    display: none !important; }

  div.container *[data-device-show~="phone_landscape"], div.container *[data-device-show="phone_landscape"] {
    display: block !important; }
 }

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
  *[data-device-stackall~="phone_portrait"], *[data-device-stackall="phone_portrait"] {
    position: relative !important; }
    *[data-device-stackall~="phone_portrait"] .block, *[data-device-stackall="phone_portrait"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="phone_portrait"], *[data-device-stack="phone_portrait"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="phone_portrait"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="phone_portrait"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="phone_portrait"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="phone_portrait"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="phone_portrait"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="phone_portrait"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="phone_portrait"], div.container *[data-device-hide="phone_portrait"] {
    display: none !important; }

  div.container *[data-device-show~="phone_portrait"], div.container *[data-device-show="phone_portrait"] {
    display: block !important; }
 }

/* smaller than ipads, bigger than phones ----------- */
@media only screen and (min-width : 481px) and (max-width : 767px) {
  *[data-device-stackall~="smtablet"], *[data-device-stackall="smtablet"] {
    position: relative !important; }
    *[data-device-stackall~="smtablet"] .block, *[data-device-stackall="smtablet"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="smtablet"], *[data-device-stack="smtablet"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="smtablet"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="smtablet"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="smtablet"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="smtablet"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="smtablet"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="smtablet"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="smtablet"], div.container *[data-device-hide="smtablet"] {
    display: none !important; }

  div.container *[data-device-show~="smtablet"], div.container *[data-device-show="smtablet"] {
    display: block !important; }
 }

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
  *[data-device-stackall~="tablet"], *[data-device-stackall="tablet"] {
    position: relative !important; }
    *[data-device-stackall~="tablet"] .block, *[data-device-stackall="tablet"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="tablet"], *[data-device-stack="tablet"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="tablet"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="tablet"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="tablet"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="tablet"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="tablet"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="tablet"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="tablet"], div.container *[data-device-hide="tablet"] {
    display: none !important; }

  div.container *[data-device-show~="tablet"], div.container *[data-device-show="tablet"] {
    display: block !important; }
 }

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1025px) {
  *[data-device-stackall~="desktop"], *[data-device-stackall="desktop"] {
    position: relative !important; }
    *[data-device-stackall~="desktop"] .block, *[data-device-stackall="desktop"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="desktop"], *[data-device-stack="desktop"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="desktop"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="desktop"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="desktop"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="desktop"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="desktop"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="desktop"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="desktop"], div.container *[data-device-hide="desktop"] {
    display: none !important; }

  div.container *[data-device-show~="desktop"], div.container *[data-device-show="desktop"] {
    display: block !important; }
 }

/* Large screens ----------- */
@media only screen and (min-width : 1400px) {
  *[data-device-stackall~="largescreen"], *[data-device-stackall="largescreen"] {
    position: relative !important; }
    *[data-device-stackall~="largescreen"] .block, *[data-device-stackall="largescreen"] .block {
      float: none !important;
      display: block !important;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      position: relative !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }

  *[data-device-stack~="largescreen"], *[data-device-stack="largescreen"] {
    float: none !important;
    display: block !important;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  *[data-device-1col~="largescreen"] {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-2col~="largescreen"] {
    width: 50% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-3col~="largescreen"] {
    width: 33.33333% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-4col~="largescreen"] {
    width: 25% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-5col~="largescreen"] {
    width: 20% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  *[data-device-6col~="largescreen"] {
    width: 16.66667% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    float: left !important; }

  div.container *[data-device-hide~="largescreen"], div.container *[data-device-hide="largescreen"] {
    display: none !important; }

  div.container *[data-device-show~="largescreen"], div.container *[data-device-show="largescreen"] {
    display: block !important; }
 }

/* iPhone 4 ----------- */

/*# sourceMappingURL=../css/main.map */