@charset "UTF-8";
/*------------------------------------*\
    #SETUP
\*------------------------------------*/
/**
 * Settings, variables and tools.
 */
/**
 * Settings layer
 *
 * This layer contains variables, such as colours, sizes and fonts.
 * It does not produce any CSS.
 */
/* new colors */
/*#799946;*/
/*#81aa26;*/
/*#406225;*/
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
/*@font-face {
  font-family: 'FontAwesome';
  src: url($fontDir + 'fontawesome-webfont.eot?v=4.4.0');
  src: url($fontDir + 'fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url($fontDir + 'fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url($fontDir + 'fontawesome-webfont.woff?v=4.4.0') format('woff'), url($fontDir + 'fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url($fontDir + 'fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}*/
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/font/fontawesome/fontawesome-webfont.eot?v=4.4.0");
  src: url("/assets/font/fontawesome/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("/assets/font/fontawesome/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("/assets/font/fontawesome/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("/assets/font/fontawesome/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("/assets/font/nosh/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

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

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

@font-face {
  font-family: "youtube-icomoon";
  src: url("//www.nosh.com/assets/font/icomoon/youtube-icomoon.eot?fcvn3d");
  src: url("//www.nosh.com/assets/font/icomoon/youtube-icomoon.eot?#iefixfcvn3d") format("embedded-opentype"), url("//www.nosh.com/assets/font/icomoon/youtube-icomoon.woff?fcvn3d") format("woff"), url("//www.nosh.com/assets/font/icomoon/youtube-icomoon.ttf?fcvn3d") format("truetype"), url("//www.nosh.com/assets/font/icomoon/youtube-icomoon.svg?fcvn3d#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Create mixin to allow for use in other SCSS files */
/**
 * Utilities layer
 *
 * This layer contains functions and mixins.
 * Does not output CSS.
 */
/**
 * Mixin intended for hiding text from an element,
 * e.g. when a <div> contains an image but needs to have placeholder text.
 */
/*
 * Cross browser opacity
 */
/**
 * Mixin for media queries
 */
/**
 * Mixin for background images which have a retina equivalent.
 */
/**
 * Mixin for styles of placeholder text in text field
 */
/**
 * Mixin for styles of placeholder text in text field
 */
/**
 * Mixin for trunkated text
 */
/**
 * Mixin for transform
 */
/**
 * Mixin for transition
 */
/**
 * Mixin for flexbox
 */
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li a:hover, .compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li a:focus, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) > a:hover, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) > a:focus,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) .main-nav-link:hover,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) .main-nav-link:focus,
.compact-menu.compact-menu-white .main-nav .main-nav-item > a:hover,
.compact-menu.compact-menu-white .main-nav .main-nav-item > a:focus,
.compact-menu.compact-menu-white .main-nav .main-nav-item .main-nav-link:hover,
.compact-menu.compact-menu-white .main-nav .main-nav-item .main-nav-link:focus, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible a:hover, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible a:focus, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible a.active, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu a:hover, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu a:focus, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu a.active,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible a:hover,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible a:focus,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible a.active,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu a:hover,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu a:focus,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu a.active, .drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a:hover span, .drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a:focus span {
  color: #8ebb4f;
  text-decoration: none;
  transition: text-shadow 0.25s ease-in-out;
  text-shadow: -0.15px 0 0 #8ebb4f, 0.15px 0 0 #8ebb4f;
}

.compact-menu .bevnet-logo, .header .bevnet-logo {
  width: 60px;
  height: 12px;
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/nosh-logos.png");
  overflow: hidden;
  text-indent: -9999px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .compact-menu .bevnet-logo, .header .bevnet-logo {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/nosh-logos@2.png");
    background-size: 351px auto;
  }
}

.compact-menu.compact-menu-white .main-nav .drop-down, .drop-down {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 220px;
  margin-left: -118px;
  border-top: 5px solid transparent;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-inner, .drop-down .drop-down-inner {
  background: #fff;
  padding: 15px 15px 15px 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  font-size: 13px;
  color: #231F20;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-inner li, .drop-down .drop-down-inner li {
  padding: 10px 0px 0px 0px;
  border-top: 1px dashed #808080;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-inner li:first-child, .drop-down .drop-down-inner li:first-child {
  border-top: none !important;
}
.compact-menu.compact-menu-white .main-nav .drop-down:before, .drop-down:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  margin-left: -7px;
}
.compact-menu.compact-menu-white .main-nav .drop-down:after, .drop-down:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid rgba(77, 78, 78, 0.2);
  margin-left: -8px;
  z-index: -1;
}
.compact-menu.compact-menu-white .main-nav .drop-down a, .drop-down a {
  color: #231F20;
  text-transform: uppercase;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list, .drop-down .drop-down-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li, .drop-down .drop-down-list li {
  margin: 10px 0 0;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li:first-child, .drop-down .drop-down-list li:first-child {
  margin-top: 0;
}

.info-block, .story {
  margin-bottom: 8px;
  background: #fff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}
/*------------------------------------*\
    #BLOCKS
\*------------------------------------*/
/**
 * These are single-use blocks.
 */
/**
 * Blocks layer
 *
 * This is the top layer and should contain the most specific classes.
 * Consider moving classes from this layer to the patterns layer if it becomes evident they are reusable.
 */
/* Main blocks */
/*new mobile icon menu styles*/
.compact-menu-visible .open-menu-grey .circle-btn {
  background-image: none;
  width: 38px;
}
.compact-menu-visible .open-menu-grey .circle-btn span {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.compact-menu-visible .open-menu-grey .circle-btn:before {
  -webkit-transform: translateY(12px) rotate(135deg);
  -moz-transform: translateY(12px) rotate(135deg);
  -ms-transform: translateY(12px) rotate(135deg);
  -o-transform: translateY(12px) rotate(135deg);
  transform: translateY(12px) rotate(135deg);
}
.compact-menu-visible .open-menu-grey .circle-btn:after {
  -webkit-transform: translateY(-12px) rotate(-135deg);
  -moz-transform: translateY(-12px) rotate(-135deg);
  -ms-transform: translateY(-12px) rotate(-135deg);
  -o-transform: translateY(-12px) rotate(-135deg);
  transform: translateY(-12px) rotate(-135deg);
}

.open-menu-grey {
  display: block;
}
.open-menu-grey .circle-btn {
  background-image: none;
  width: 44px;
  height: 35px;
  border-radius: 0;
}
.open-menu-grey .circle-btn:after, .open-menu-grey .circle-btn:before,
.open-menu-grey .circle-btn span {
  background-color: #4c4d4d;
  content: "";
  display: block;
  height: 3px;
  margin: 0 0 9px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*new mobile icon menu styles end*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #24A54A;
  z-index: 3;
  color: #24A54A;
  border-bottom: 1px solid rgba(77, 78, 78, 0.1);
}
@media (min-width: 992px) {
  .header {
    background: #fff;
    height: 72px;
  }
  .header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background-color: #24A54A;
    content: "";
  }
}
@media (min-width: 1300px) {
  .header:before {
    width: calc((100vw - 1260px) / 2);
  }
}
.header .page-wrapper {
  padding: 0 10px;
}
.header a {
  color: #24A54A;
  text-decoration: none;
}
.header a:hover, .header a:focus {
  color: #24A54A;
  text-decoration: underline;
}
.header .logo {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 125px;
  height: 33px;
  text-align: left;
  margin: 0 0 0 -62.5px;
  opacity: 1;
}
.header .logo:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url("//d2btcxja5g5zgs.cloudfront.net/assets/nosh/NOSH_Logo.svg");
  background-size: contain;
}
@media (min-width: 992px) {
  .header .logo {
    margin: 0;
    left: 10px;
    top: 0;
    padding-right: 10px;
    width: 106px;
    height: 71px;
    background-color: #24A54A;
  }
  .header .logo:after {
    width: 100px;
    height: 32px;
    margin-left: 0;
    top: 24px;
  }
  .header .logo:before {
    content: "";
    position: absolute;
    top: 0px;
    right: -11px;
    height: 71px;
    width: 71px;
    background-color: #24A54A;
    transform: skewX(-16deg);
  }
}
@media (min-width: 1200px) {
  .header .logo {
    padding-right: 10px;
    width: 150px;
  }
  .header .logo:after {
    width: 120px;
    height: 32px;
    margin-left: 0;
    top: 19px;
  }
}
.header .logo a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-indent: -9999px;
}
.header .socials-holder {
  background: #7ea648;
  text-align: right;
  height: 30px;
  display: none;
}
@media (min-width: 992px) {
  .header .socials-holder {
    display: block;
  }
}
.header .bevnet-logo {
  position: relative;
  display: none;
  text-align: left;
  vertical-align: top;
  margin: 0 10px 0 0;
  padding: 5px 0;
  height: 30px;
  background-repeat: no-repeat;
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/BevNET_logo_black.svg");
  background-size: contain;
  background-position: 0 50%;
  transition: opacity 0.25s ease-in-out;
}
@media (min-width: 1024px) {
  .header .bevnet-logo {
    margin: 0 10px 0 0;
  }
}
@media (min-width: 1200px) {
  .header .bevnet-logo {
    margin: 0 10px 0 0;
  }
}
.header .bevnet-logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/BevNET_logo_green.svg");
  background-size: contain;
  background-position: 0 50%;
  opacity: 0;
}
.header .bevnet-logo:hover {
  background: none;
}
.header .bevnet-logo:hover:before {
  opacity: 1;
}
@media (min-width: 992px) {
  .header .bevnet-logo {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .header .bevnet-logo {
    margin-right: 10px;
  }
}
.header .navbar {
  padding: 22px 0 22px 130px;
  display: none;
}
@media (min-width: 992px) {
  .header .navbar {
    float: right;
    padding-right: 20px;
    display: block;
  }
}
@media (min-width: 1200px) {
  .header .navbar {
    float: right;
    padding-right: 20px;
    display: block;
  }
}
.header .user-menu {
  float: right;
  position: relative;
  padding-left: 10px;
  margin-left: 4px;
}
@media (max-width: 992px) {
  .header .user-menu {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .header .user-menu {
    padding-left: 5px;
  }
}
@media (min-width: 1200px) {
  .header .user-menu {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .header .user-menu:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -18px;
    height: 36px;
    background: #eaeaea;
    width: 1px;
  }
}
.header .user-menu .user-menu-item {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 992px) {
  .header .user-menu .user-menu-item {
    display: none;
  }
  .header .user-menu .user-menu-item.item-search {
    display: block;
  }
}
.header .user-menu .account {
  margin: 0;
  float: none;
}
.header .nav-icon-btn {
  position: relative;
  color: inherit;
  display: inline-block;
  background: transparent;
  color: inherit;
  line-height: 32px;
  overflow: hidden;
  text-indent: -999em;
  width: 20px;
  height: 32px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  vertical-align: middle;
}
.header .nav-icon-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: inherit;
}
.header .nav-icon-btn:hover, .header .nav-icon-btn.active {
  background-image: none !important;
}
.header .nav-icon-btn:hover:before, .header .nav-icon-btn.active:before {
  opacity: 1;
}
.header .nav-icon-btn.search-icon {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Search.svg");
  margin-right: 5px;
}
.header .nav-icon-btn.search-icon:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Search-green.svg");
}
@media (max-width: 992px) {
  .header .nav-icon-btn.search-icon, .header .nav-icon-btn.search-icon:before {
    background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Search-white.svg");
    background-size: 24px 24px;
  }
}
.header .nav-icon-btn.user-icon {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/User.svg");
}
.header .nav-icon-btn.user-icon:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/User-green.svg");
}
.header .nav-icon-btn.user-icon.user-img {
  height: 20px;
  background-image: none;
}
.header .nav-icon-btn.user-icon.user-img:before {
  background-image: none;
}
.header .nav-icon-btn.user-icon.user-img img {
  display: block;
  width: 20px;
  border-radius: 50%;
}
.header .account-nav .menu-item.has-drop-down:hover .drop-down {
  display: block;
}
.header .main-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header .main-nav .menu-item {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}
@media (min-width: 1024px) {
  .header .main-nav .menu-item {
    margin-left: 8px;
  }
}
@media (min-width: 1200px) {
  .header .main-nav .menu-item {
    margin-left: 12px;
  }
}
.header .main-nav .menu-item:first-child {
  margin-left: 0;
}
@media (min-width: 992px) {
  .header .main-nav .menu-item.has-drop-down:nth-child(1) .drop-down-extended .drop-down-inner, .header .main-nav .menu-item.has-drop-down:nth-child(2) .drop-down-extended .drop-down-inner {
    margin-left: 100px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .header .main-nav .menu-item {
    margin-left: 15px;
  }
}
.header .main-nav .menu-item > a {
  color: #464646;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .header .main-nav .menu-item > a {
    font-size: 14px;
  }
}
.header .main-nav .menu-item > a:hover {
  color: #24A54A;
  text-decoration: none;
}
.header .main-nav .menu-item.has-drop-down:hover .drop-down {
  display: block;
}
.header .main-nav.main-nav-social {
  display: none;
}
@media (min-width: 1200px) {
  .header .main-nav.main-nav-social {
    display: inline-block;
    margin-top: 20px;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    padding: 0 20px 0 8px;
  }
}
.header .search-form {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #231F20;
}
.header .search-field {
  position: relative;
  transition: width 0.4s ease-out 0.25s;
  text-align: right;
}
.header .search-field.expand input {
  display: inline-block;
}
.header .search-field.expand .icon-clear {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/icons/clear.svg");
  background-size: contain;
  z-index: 1;
  opacity: 0.5;
}
.header .search-field input {
  width: 100%;
  height: 42px;
  padding: 0 27px 0 0;
  margin: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 16px;
  background-color: #231F20;
  line-height: 42px;
  box-sizing: border-box;
  display: none;
}
.header .search-field input:focus {
  box-shadow: none;
  outline: 0;
}
.header .search-field input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.51);
}
.header .search-field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.51);
}
.header .search-field input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.51);
}
.header .search-field input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.51);
}
.header .search-field input::-webkit-autofill {
  background-color: #231F20 !important;
  background-image: none;
  color: rgba(255, 255, 255, 0.51);
}
.header .open-menu {
  position: absolute;
  top: 17px;
  left: 3px;
  display: block;
  opacity: 1;
  transition: opacity 0.15s ease-in-out 0.8s, top 0.25s ease-in-out 0.8s;
}
@media (min-width: 992px) {
  .header .open-menu {
    display: none;
  }
}
.header .account-nav {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .header .account-nav {
    margin-top: 12px;
  }
}
.header.hide-controls .logo,
.header.hide-controls .open-menu {
  top: -150%;
  opacity: 0;
  transition: opacity 0.15s ease-in-out, top 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .header.hide-controls .logo,
.header.hide-controls .open-menu {
    top: 0;
    opacity: 1;
    transition: none;
  }
}

.drop-down {
  z-index: 2;
  display: none;
  left: 0;
}
@media (min-width: 992px) {
  .drop-down.drop-down-extended {
    position: fixed;
    left: auto;
    top: 48px;
    width: 400px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .drop-down.drop-down-extended {
    left: 0;
  }
}
.drop-down.drop-down-extended .drop-down-inner {
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(77, 78, 78, 0.1);
  border-radius: 3px;
  border: solid 1px rgba(77, 78, 78, 0.1);
  border-bottom: 2px solid #24A54A;
  padding: 0 5px 15px 10px;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list {
  margin: 0;
  list-style-type: none;
  max-width: 400px;
  float: left;
  position: relative;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list:before {
  content: "";
  width: 1px;
  position: absolute;
  height: calc(100% - 5px);
  left: 190px;
  top: 9px;
  background-color: #ececec;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item {
  width: 190px;
  float: left;
  border-top: none;
  margin: 0;
  padding-top: 20px;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item:nth-child(2n-1) {
  clear: left;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a {
  color: #464646;
  padding: 0 20px;
  font-weight: bold;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  display: inline-block;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a:hover, .drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a:focus {
  text-decoration: none;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a:hover span, .drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item a:focus span {
  text-decoration: none;
}
.drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item .menu-item-description {
  color: rgba(73, 74, 71, 0.8);
  font-size: 14px;
  line-height: 20px;
  padding: 0 20px;
  margin: -3px 0 7px;
}
.drop-down.drop-down-preview {
  margin-left: -110px;
  left: 50%;
}
.drop-down.drop-down-preview.flydown-events {
  width: 290px;
  left: 50%;
  margin-left: -158px;
}
.drop-down.drop-down-preview.flydown-events .event-item + .event-item {
  border-top: 1px solid #dddddd;
  margin-top: 20px;
  padding-top: 14px;
}
.drop-down.drop-down-preview.flydown-events .event-item .ill {
  width: 72px;
  height: 72px;
  margin: 0 10px 0 0;
  float: left;
}
.drop-down.drop-down-preview.flydown-events .event-item .ill img {
  max-width: 100%;
}
.drop-down.drop-down-preview.flydown-events .event-item .description {
  overflow: hidden;
  padding-top: 5px;
  font-size: 11px;
  line-height: 1.3;
  color: #aeb6b6;
}
.drop-down.drop-down-preview.flydown-events .event-item .description p {
  margin: 0 0 2px;
  color: inherit;
  line-height: inherit;
}
.drop-down.drop-down-preview.flydown-events .event-item .description a {
  text-transform: none;
  margin-top: 6px;
  font-weight: 600;
  color: #24A54A;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: "Noto Sans", sans-serif;
}
.drop-down.drop-down-preview.flydown-events .event-item .description a:hover {
  text-decoration: none;
}
.drop-down.drop-down-preview.flydown-events .event-item .description-title {
  margin: 0 0 3px;
  color: #231F20;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.2px;
  font-weight: 600;
}
.drop-down.drop-down-preview.flydown-events .event-item .description-title > a {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
.drop-down.drop-down-preview.flydown-social .newsletter-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #464646;
}
.drop-down.drop-down-preview .drop-down-inner {
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(77, 78, 78, 0.1);
  border-radius: 3px;
  border: solid 1px rgba(77, 78, 78, 0.1);
  border-bottom: 2px solid #24A54A;
  padding: 18px 20px 12px 20px;
}
.drop-down.drop-down-preview .drop-down-inner img {
  border-radius: 3px;
}
.drop-down.drop-down-preview .drop-down-inner p {
  color: #464646;
  line-height: 20px;
  margin: 8px 0 10px;
}
.drop-down.drop-down-preview .drop-down-inner .drop-down-buttons {
  margin-top: 14px;
  border-top: 1px solid #f4f4f4;
  padding-top: 8px;
  text-align: center;
}
.drop-down.drop-down-preview .drop-down-inner .drop-down-buttons a {
  color: #24A54A;
  font-weight: 600;
  display: inline-block;
  background-color: transparent;
  text-transform: capitalize;
  height: 19px;
  line-height: 19px;
  font-size: 12px;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #c6c6c6;
  font-family: "Noto Sans", sans-serif;
}
.drop-down.drop-down-preview .drop-down-inner .drop-down-buttons a:first-child {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}
.drop-down.drop-down-preview .drop-down-inner .drop-down-buttons a:hover {
  color: #24A54A;
  text-decoration: none;
}
.drop-down.drop-down-socials {
  margin-left: -104px;
}
.drop-down.drop-down-socials .drop-down-inner {
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(77, 78, 78, 0.1);
  border-radius: 3px;
  border: solid 1px rgba(77, 78, 78, 0.1);
  border-bottom: 2px solid #24A54A;
  padding: 18px 20px 18px 20px;
}
.drop-down.drop-down-socials .drop-down-inner h4 {
  color: #464646;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0 0 7px;
}
.drop-down.drop-down-socials .drop-down-inner hr {
  width: 100%;
  height: 1px;
  background-color: rgba(77, 78, 78, 0.1);
  margin: 12px 0 14px;
  border: none;
}
.drop-down.drop-down-socials .drop-down-inner input {
  font-size: 13px;
}
.drop-down.drop-down-socials .drop-down-inner .btn-success {
  height: 28px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.compact-menu {
  position: fixed;
  background: rgba(49, 49, 49, 0.95);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 1;
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: opacity 0.75s, -webkit-transform 0.5s;
  -ms-transition: opacity 0.75s, -ms-transform 0.5s;
  transition: opacity 0.75s, transform 0.5s;
  overflow-y: auto;
  /* compact menu new styles */
  /* compact menu new styles end */
}
.compact-menu-visible .compact-menu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.compact-menu .header-bar {
  padding: 10px 15px;
}
.compact-menu .header-bar::after {
  clear: both;
  content: "";
  display: table;
}
.compact-menu .close-menu {
  float: left;
}
.compact-menu .account {
  float: right;
}
.compact-menu .main-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
}
.compact-menu .main-nav .menu-item.has-drop-down .drop-down {
  display: block;
}
.compact-menu .main-nav > li,
.compact-menu .main-nav .main-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0 8px;
  /*&.dropdown-visible,
   &.open-menu {
  > a,
  .main-nav-link {
    &:after {
  	background-position: -250px -30px;
  	transform: rotateZ(-90deg);
    }
  }

  a {
    text-decoration: none;
  }

  .drop-down {
    display: block;
  }
   }*/
}
.compact-menu .main-nav > li > a,
.compact-menu .main-nav > li .main-nav-link,
.compact-menu .main-nav .main-nav-item > a,
.compact-menu .main-nav .main-nav-item .main-nav-link {
  color: #fff;
  padding: 14px 22px 14px 3px;
  text-transform: uppercase;
  display: block;
  position: relative;
  text-decoration: none;
  /*&:after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background-position: -268px -30px;
    right: 3px;
    top: 50%;
    margin: -7px 0 0;

    @include background-retina($imageDir + 'icons', '.png', $width: $image-icons-width);
  }*/
}
.compact-menu .main-nav > li > a:hover, .compact-menu .main-nav > li > a:focus,
.compact-menu .main-nav > li .main-nav-link:hover,
.compact-menu .main-nav > li .main-nav-link:focus,
.compact-menu .main-nav .main-nav-item > a:hover,
.compact-menu .main-nav .main-nav-item > a:focus,
.compact-menu .main-nav .main-nav-item .main-nav-link:hover,
.compact-menu .main-nav .main-nav-item .main-nav-link:focus {
  text-decoration: none;
  color: #8ebb4f;
}
.compact-menu .main-nav .drop-down {
  display: block;
  position: relative;
  left: 0 !important;
  right: 0;
  top: 0 !important;
  bottom: 0;
  margin: 0 0 20px 0;
  padding: 0 16px;
  border: 0;
  width: auto;
  max-width: 100%;
}
.compact-menu .main-nav .drop-down:before {
  display: none;
}
.compact-menu .main-nav .drop-down-inner {
  background: transparent;
  color: #24A54A;
  padding: 0;
  border-radius: 0;
  border: 0;
}
.compact-menu .main-nav .drop-down-inner p {
  color: inherit;
}
.compact-menu .main-nav .drop-down-inner img {
  border-radius: 0;
}
.compact-menu .main-nav .drop-down-inner .event-item {
  overflow: hidden;
}
.compact-menu .main-nav .drop-down-inner .event-item + .event-item {
  margin-top: 15px;
  padding-top: 15px;
}
.compact-menu .main-nav .drop-down-inner .event-item .description > a {
  display: inline-block;
  color: #a1a4a4;
}
.compact-menu .main-nav .drop-down-inner .event-item .description-title {
  color: #fff;
}
.compact-menu .main-nav .drop-down-inner .drop-down-buttons {
  text-align: left;
}
.compact-menu .main-nav .drop-down-inner .drop-down-buttons > a {
  color: #a1a4a4;
}
.compact-menu .main-nav .drop-down-inner .drop-down-list {
  width: auto;
  max-width: 100%;
  float: none;
}
.compact-menu .main-nav .drop-down-inner .drop-down-list:before {
  display: none;
}
.compact-menu .main-nav .drop-down-inner .drop-down-list li.menu-item {
  float: none;
  display: block;
  height: auto;
  width: auto;
  padding: 0 20px;
  margin: 0 -20px;
}
.compact-menu .main-nav .drop-down-inner .drop-down-list li.menu-item .menu-item-description {
  color: inherit;
  padding: 0;
}
.compact-menu .main-nav .drop-down-inner .drop-down-list li.menu-item > a {
  padding: 6px 0;
  text-transform: none;
  font-weight: bold;
  color: #fff;
  display: block;
  text-decoration: none;
}
.compact-menu.compact-menu-white {
  background: #fff;
}
.compact-menu.compact-menu-white .main-nav {
  font-size: 26px;
  text-transform: uppercase;
}
.compact-menu.compact-menu-white .main-nav .header-register-btn {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #ececec;
}
.compact-menu.compact-menu-white .main-nav .header-register-btn a {
  font-weight: 400;
  background-color: #8ebb4f;
  padding: 10px 0;
  display: inline-block;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-radius: 70px;
  padding: 21px 30px;
  width: 300px;
  text-align: center;
}
.compact-menu.compact-menu-white .main-nav .header-register-btn a:hover, .compact-menu.compact-menu-white .main-nav .header-register-btn a:focus {
  background-color: #85bc2a;
  color: "";
}
.compact-menu.compact-menu-white .main-nav .header-register-btn a:after {
  background-image: none;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn),
.compact-menu.compact-menu-white .main-nav .main-nav-item {
  border-top: 1px solid #ececec;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn):first-child,
.compact-menu.compact-menu-white .main-nav .main-nav-item:first-child {
  border: none;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible > a:hover:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible .main-nav-link:hover:after, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu > a:hover:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu .main-nav-link:hover:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible > a:hover:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible .main-nav-link:hover:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu > a:hover:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu .main-nav-link:hover:after {
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 14px solid #8ebb4f;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible > a:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible .main-nav-link:after, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu > a:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu .main-nav-link:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible > a:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible .main-nav-link:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu > a:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu .main-nav-link:after {
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 14px solid #4c4d4d;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible a, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu a,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible a,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu a {
  text-decoration: none;
  color: #4c4d4d;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).dropdown-visible .drop-down, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn).open-menu .drop-down,
.compact-menu.compact-menu-white .main-nav .main-nav-item.dropdown-visible .drop-down,
.compact-menu.compact-menu-white .main-nav .main-nav-item.open-menu .drop-down {
  display: block;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) > a,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) .main-nav-link,
.compact-menu.compact-menu-white .main-nav .main-nav-item > a,
.compact-menu.compact-menu-white .main-nav .main-nav-item .main-nav-link {
  color: #4c4d4d;
  font-weight: 400;
  padding: 21px 30px 21px 70px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: text-shadow 0.25s ease-in-out;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) > a:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) .main-nav-link:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item > a:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item .main-nav-link:after {
  content: "";
  position: absolute;
  left: 30px;
  right: auto;
  top: 50%;
  margin: -9px 0 0;
  background-image: none;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #4c4d4d;
}
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) > a:hover:after, .compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) > a:focus:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) .main-nav-link:hover:after,
.compact-menu.compact-menu-white .main-nav > li:not(.header-register-btn) .main-nav-link:focus:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item > a:hover:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item > a:focus:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item .main-nav-link:hover:after,
.compact-menu.compact-menu-white .main-nav .main-nav-item .main-nav-link:focus:after {
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #8ebb4f;
}
.compact-menu.compact-menu-white .main-nav .drop-down {
  position: static;
  width: 100%;
  margin: 0;
  border: none;
  padding: 0 20px;
  display: none;
  border-top: none;
  color: #4c4d4d;
}
.compact-menu.compact-menu-white .main-nav .drop-down.drop-down-extended li.menu-item .menu-item-description {
  font-family: "proxima-nova-light", sans-serif;
  font-weight: 300;
  padding: 0 26px 26px 50px;
  font-size: 18px;
}
@media (min-width: 992px) {
  .compact-menu.compact-menu-white .main-nav .drop-down.drop-down-extended li.menu-item .menu-item-description {
    font-size: 22px;
  }
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-inner {
  background: none;
  padding: 0;
  box-shadow: none;
  font-size: 26px;
  color: #4c4d4d;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li:first-child {
  border: none;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li a {
  padding: 21px 30px 21px 50px;
  text-transform: uppercase;
  font-weight: normal;
  color: #4c4d4d;
  display: block;
  text-decoration: none;
}
.compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li a:hover, .compact-menu.compact-menu-white .main-nav .drop-down .drop-down-list li a:focus {
  text-decoration: none;
}
.compact-menu.compact-menu-white .header-bar {
  height: 72px;
}
.compact-menu.compact-menu-white .footer-bar {
  display: none;
}
.compact-menu .footer-bar {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
}
.compact-menu .footer-bar::after {
  clear: both;
  content: "";
  display: table;
}
.compact-menu .social {
  float: left;
}
.compact-menu .social-link.facebook {
  background-position: -155px -5px;
}
.compact-menu .social-link.twitter {
  background-position: -180px -5px;
}
.compact-menu .social-link.linkedin {
  background-position: -205px -5px;
}
.compact-menu .social-link.youtube {
  background-position: -230px -5px;
}
.compact-menu .social-link.instagram {
  background-position: -255px -5px;
}
.compact-menu .social-link.email {
  background-position: -280px -5px;
}
.compact-menu .bevnet-logo {
  background-position: -218px -144px;
  float: right;
  margin-top: 3px;
  transition: opacity 0.25s ease-in-out;
}
.compact-menu .bevnet-logo:hover {
  opacity: 0.75;
}

.alert-visible .compact-menu .main-bar {
  padding-top: 40px;
}

div#body_bottom .header-flydown {
  display: none;
}

.greenbutton {
  background-color: #24A54A;
  border-radius: 25px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.greenbutton a {
  color: white !important;
}

.main {
  background: #fff;
  padding: 24px 0 5px;
}
@media (min-width: 992px) {
  .main {
    padding: 20px 0 35px;
  }
}
.event-page .main {
  padding-top: 0;
}

.expand-control .main {
  padding-top: 50px;
}
@media (min-width: 992px) {
  .expand-control .main {
    padding-top: 20px;
  }
}

/* fix for addthis */
.addthis_sharing_toolbox [class*=icon-] span {
  position: static;
  margin: 0px;
}

/**
 * Photo galleries
 */
.photogallery {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.photogallery li {
  float: left;
  display: block;
  list-style: none;
  padding: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 16.66%;
}
.photogallery li img {
  max-width: 100%;
}
.photogallery li .cropper {
  position: relative;
  max-height: 99px;
  max-width: 99px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1024px) {
  .photogallery li {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .photogallery li {
    width: 20%;
  }
}
@media (max-width: 580px) {
  .photogallery li {
    width: 25%;
  }
}
@media (max-width: 460px) {
  .photogallery li {
    width: 33.33%;
  }
}

/* Breadcrumbs  */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
}
.breadcrumb a,
.breadcrumb .breadcrumb-item {
  color: #24A54A;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.breadcrumb a:after,
.breadcrumb .breadcrumb-item:after {
  color: #d8d8d8;
  font-size: 28px;
  content: "›";
  display: block;
  position: absolute;
  top: -13px;
  right: -11px;
  font-weight: 300;
}
.breadcrumb a:hover,
.breadcrumb .breadcrumb-item:hover {
  color: #24A54A;
}
.breadcrumb span,
.breadcrumb .breadcrumb-item.active {
  color: rgba(77, 78, 78, 0.6);
  margin-right: 0;
  font-weight: normal;
}
.breadcrumb span:after,
.breadcrumb .breadcrumb-item.active:after {
  display: none;
}

.form-mutual {
  margin-bottom: 22px;
}
.form-mutual.marg0 {
  margin-bottom: 0;
}
.form-mutual.marg0 .form-mutual-link {
  margin-top: 0;
}
.form-mutual.marg0 .form-mutual-content {
  padding-top: 0;
}
.form-mutual.marg0 .form-mutual-content p {
  margin-bottom: 20px;
}

.form-mutual-link {
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 1.11;
  color: #231F20;
}

@media (max-width: 767px) {
  .form-mutual-link {
    font-size: 14px;
    font-weight: 600;
    color: #24A54A;
    padding: 0;
    margin: 0 17px 0 0;
  }

  .form-mutual {
    margin-bottom: 34px;
  }
}
.form-mutual-toggle {
  margin-bottom: 22px;
}
.form-mutual-toggle.marg0 {
  margin-bottom: 0;
}
.form-mutual-toggle.marg0 .form-mutual-toggle-link {
  margin-top: 0;
}
.form-mutual-toggle.marg0 form-mutual-toggle-content {
  padding-top: 0;
}
.form-mutual-toggle.marg0 form-mutual-toggle-content p {
  margin-bottom: 20px;
}

.form-mutual-toggle-link {
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 1.11;
  color: #231F20;
}
.form-mutual-toggle-link.form-mutual-toggle-link-collapsible {
  padding-left: 23px;
  cursor: pointer;
}

.form-mutual-toggle-link-collapsible:before {
  content: "";
  display: block;
  width: 8px;
  height: 20px;
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/arrow-right.svg");
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}

.form-mutual-toggle-link-collapsible:hover {
  text-decoration: underline;
}

.form-mutual-toggle-link-collapsible.active:before {
  transform: rotate(90deg);
}

.form-mutual-toggle-content {
  padding-top: 13px;
}
.form-mutual-toggle-content.form-mutual-toggle-content-collapsible {
  display: none;
}

@media (max-width: 767px) {
  .form-mutual-toggle-link {
    font-size: 14px;
    font-weight: 600;
    color: #24A54A;
    padding: 0;
    margin: 0 17px 0 0;
  }
  .form-mutual-toggle-link:before {
    display: none;
  }

  .form-mutual-toggle {
    margin-bottom: 34px;
  }
}
span.k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg {
  top: 0;
  right: 0;
  font-weight: 300;
  color: #c63322;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  box-shadow: none;
  z-index: 2;
}
span.k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg.field-validation-error {
  position: absolute;
}
span.k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg span.k-icon {
  display: none;
}

.form-group-optional span.k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg {
  right: 60px;
}

.captcha-error {
  color: #c63322;
}

.content {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 0px;
}
.content .Apple-converted-space {
  visibility: hidden;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .content {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.post-template-default .content:before {
  content: none;
}

.footer {
  /* new styles for footer */
  /* new styles for footer end */
  color: #231F20;
}
.footer.grey-footer {
  font-family: "Noto Sans", sans-serif;
}
.footer.grey-footer .footer-links .other-products .footer-nosh, .footer.grey-footer .footer-links .other-products .footer-bewnet, .footer.grey-footer .footer-links .other-products .footer-brewbound, .footer.grey-footer .footer-links .nosh-footer-logo {
  background-repeat: no-repeat;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  background-image: url("/assets/images/nosh-logos.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .footer.grey-footer .footer-links .other-products .footer-nosh, .footer.grey-footer .footer-links .other-products .footer-bewnet, .footer.grey-footer .footer-links .other-products .footer-brewbound, .footer.grey-footer .footer-links .nosh-footer-logo {
    background-image: url("/assets/images/nosh-logos@2.png");
    background-size: 382px auto;
  }
}
.footer.grey-footer .footer-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer.grey-footer .footer-links {
  background-color: #ebebeb;
  padding: 38px 0 46px;
}
.footer.grey-footer .footer-links .col-logo-aside {
  margin: 0 auto;
  order: 3;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 100%;
  -moz-flex: 1 100%;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  flex-flow: column;
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  box-ordinal-group: 3;
  -webkit-order: 3;
  -moz-order: 3;
  order: 3;
  -ms-flex-order: 3;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
@media (min-width: 992px) {
  .footer.grey-footer .footer-links .col-logo-aside {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 auto;
    -moz-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    width: 310px;
  }
}
@media (min-width: 1200px) {
  .footer.grey-footer .footer-links .col-logo-aside {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 auto;
    -moz-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    box-ordinal-group: 1;
    -webkit-order: 1;
    -moz-order: 1;
    order: 1;
    -ms-flex-order: 1;
    width: 306px;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
  }
}
.footer.grey-footer .footer-links .col-btns-aside {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 100%;
  -moz-flex: 1 100%;
  -ms-flex: 1 100%;
  flex: 1 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.footer.grey-footer .footer-links .col-btns-aside a {
  margin: 10px 0;
  float: left;
}
.footer.grey-footer .footer-links .col-btns-aside a:last-child {
  margin-left: 30px;
}
@media (min-width: 992px) {
  .footer.grey-footer .footer-links .col-btns-aside {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 50%;
    -moz-flex: 1 50%;
    -ms-flex: 1 50%;
    flex: 1 50%;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    -webkit-order: 2;
    -moz-order: 2;
    order: 2;
    -ms-flex-order: 2;
    width: 310px;
  }
}
@media (min-width: 1200px) {
  .footer.grey-footer .footer-links .col-btns-aside {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 auto;
    -moz-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    box-ordinal-group: 3;
    -webkit-order: 3;
    -moz-order: 3;
    order: 3;
    -ms-flex-order: 3;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
    padding-right: 20px;
  }
}
.footer.grey-footer .footer-links .col-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 100%;
  -moz-flex: 1 100%;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  flex-flow: column;
}
@media (min-width: 992px) {
  .footer.grey-footer .footer-links .col-content {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 50%;
    -moz-flex: 1 50%;
    -ms-flex: 1 50%;
    flex: 1 50%;
    width: calc(100% - 620px);
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    -webkit-order: 2;
    -moz-order: 2;
    order: 2;
    -ms-flex-order: 2;
  }
}
@media (min-width: 768px) {
  .footer.grey-footer .footer-links .col-content {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: distribute;
  }
}
@media (min-width: 1200px) {
  .footer.grey-footer .footer-links .col-content {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 auto;
    -moz-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
.footer.grey-footer .footer-links .footer-sponsor-btn, .footer.grey-footer .footer-links .footer-register-btn {
  text-transform: uppercase;
  width: 128px;
  margin-top: 10px;
}
.footer.grey-footer .footer-links .footer-sponsor-btn:hover, .footer.grey-footer .footer-links .footer-register-btn:hover, .footer.grey-footer .footer-links .footer-sponsor-btn:focus, .footer.grey-footer .footer-links .footer-register-btn:focus {
  text-decoration: none;
}
.footer.grey-footer .footer-links .footer-register-btn {
  background-color: #8ebb4f;
  padding: 10px 0;
  display: inline-block;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.footer.grey-footer .footer-links .footer-register-btn:hover, .footer.grey-footer .footer-links .footer-register-btn:focus {
  background-color: #85bc2a;
  color: "";
}
.footer.grey-footer .footer-links .footer-sponsor-btn {
  background-color: #f9ab26;
  padding: 10px 0;
  display: inline-block;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.footer.grey-footer .footer-links .footer-sponsor-btn:hover, .footer.grey-footer .footer-links .footer-sponsor-btn:focus {
  background-color: #fcbd25;
  color: "";
}
.footer.grey-footer .footer-links .col-nav {
  margin-top: 0;
  padding: 0 15px;
  max-width: 200px;
}
.footer.grey-footer .footer-links .nosh-footer-logo {
  height: 74px;
  width: 310px;
  background-position: 0 0;
  margin: 0 0 35px 4px;
}
.footer.grey-footer .footer-links .other-products {
  width: 310px;
}
.footer.grey-footer .footer-links .other-products .footer-brewbound {
  background-position: 0 -84px;
  margin: 9px 0 0;
  width: 90px;
  height: 18px;
}
.footer.grey-footer .footer-links .other-products .footer-bewnet {
  background-position: -90px -84px;
  margin: 9px 0 0 20px;
  width: 74px;
  height: 18px;
}
.footer.grey-footer .footer-links .other-products .footer-nosh {
  background-position: -168px -75px;
  width: 57px;
  height: 27px;
  float: right;
}
.footer.grey-footer .footer-links .nav-title {
  color: #4c4d4d;
  font-weight: 600;
  padding-bottom: 12px;
  font-size: 14px;
  margin: 20px 0 0;
}
.footer.grey-footer .footer-links .nav a {
  color: #4c4d4d;
  text-transform: uppercase;
}
.footer.grey-footer .footer-links .nav a li:last-child {
  margin-bottom: 0;
}
.footer.grey-footer .footer-links .nav a:hover {
  color: #8ebb4f;
  text-decoration: none;
  transition: text-shadow 0.25s ease-in-out;
  text-shadow: -0.25px 0 0 #8ebb4f, 0.25px 0 0 #8ebb4f;
}
@media only screen and (max-width: 768px) {
  .footer.grey-footer .footer-links {
    padding-bottom: 50px;
  }
  .footer.grey-footer .footer-links .nosh-footer-logo {
    height: 65px;
    width: 270px;
    background-size: 330px auto;
  }
  .footer.grey-footer .footer-links .other-products {
    width: 270px;
  }
  .footer.grey-footer .footer-social-links .nav {
    overflow: visible;
    margin: 0 0 10px;
  }
}
.footer.grey-footer .footer-copyright {
  text-transform: uppercase;
  padding: 15px 0;
  background-color: #4c4d4d;
}
.footer-links {
  font-weight: 300;
  background: #f8f8f8;
  padding-top: 7px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .footer-links {
    padding-bottom: 50px;
    padding-top: 0;
  }
}
.footer-links a {
  color: #231F20;
  text-decoration: none;
}
.footer-links a:hover {
  color: #24A54A;
  text-decoration: none;
}
.footer-links a:focus {
  color: #407a3a;
  text-decoration: none;
  background-color: transparent;
}
.footer-links .nav-title {
  color: rgba(77, 78, 78, 0.8);
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
.footer-links .nav-title:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-position: -268px -30px;
  right: -4px;
  top: 50%;
  margin: -7px 0 0;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .footer-links .nav-title:after {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons@2.png");
    background-size: 305px auto;
  }
}
@media (min-width: 768px) {
  .footer-links .nav-title:after {
    content: none;
  }
}
.footer .footer-social-links {
  text-align: center;
}
.footer .footer-social-links .nav > li {
  display: inline-block;
  margin: 0 4px 15px;
}
.footer .footer-social-links .nav > li a {
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  text-indent: -9999em;
}
.footer .footer-social-links .nav > li a .fa {
  display: none;
}
.footer .footer-social-links .nav > li a, .footer .footer-social-links .nav > li a:before {
  background-size: contain;
}
.footer .col-nav {
  margin: 0;
  border-bottom: 1px solid rgba(77, 78, 78, 0.1);
}
@media (min-width: 768px) {
  .footer .col-nav {
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .footer .col-nav {
    margin: 40px 0 0 0;
  }
}
.footer .nav {
  margin: 0 0 6px 10px;
  padding: 0;
  list-style-type: none;
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease-in-out;
}
.footer .nav.open {
  height: auto;
  overflow: visible;
}
@media (min-width: 768px) {
  .footer .nav {
    height: auto;
    overflow: visible;
  }
}
.footer .nav li {
  margin: 0 0 5px;
}
.footer .nav a {
  padding: 0;
  display: inline;
}
.footer .nav a:hover {
  background: none;
}
@media (min-width: 768px) {
  .footer .nav {
    margin: 0;
  }
}
.footer-logo {
  height: 60px;
  width: 100px;
  background-repeat: no-repeat;
  margin: 12px auto 15px;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/nosh-logo-r.svg");
  background-size: contain;
  overflow: hidden;
  text-indent: -9999px;
}
@media (min-width: 768px) {
  .footer-logo {
    height: 70px;
    width: 120px;
  }
}
@media (min-width: 992px) {
  .footer-logo {
    margin-top: 20px;
    height: 96px;
    width: 163px;
  }
}
.footer-copyright {
  color: #949494;
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.4;
  text-align: center;
  background: #231F20;
  padding: 3px 0 5px;
}
.footer-copyright a {
  color: #949494;
  text-decoration: none;
}
.footer-copyright a:hover {
  color: #6b6b6b;
}
@media (min-width: 992px) {
  .footer-copyright {
    font-size: 14px;
    padding: 10px 0;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.story::after {
  clear: both;
  content: "";
  display: table;
}
.story .ill {
  float: left;
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .story .ill {
    width: auto;
    height: auto;
    position: static;
  }
}
.story .ill img {
  max-height: 100%;
  max-width: none;
  position: absolute;
  top: -9999px;
  left: -9999px;
  bottom: -9999px;
  right: -9999px;
  margin: auto;
}
@media (min-width: 768px) {
  .story .ill img {
    max-width: 100%;
    max-height: none;
    position: static;
    width: 100%;
  }
}
.story .heading {
  padding: 5px 10px 0;
  display: table;
}
@media (min-width: 768px) {
  .story .heading {
    padding-top: 15px;
    min-width: 200px;
  }
}
.story .heading .story-title {
  margin: 0 0 10px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .story .heading .story-title {
    margin-bottom: 2px;
    text-transform: none;
  }
}
.story .text {
  padding: 10px 10px 0;
  clear: both;
  display: none;
}
@media (min-width: 768px) {
  .story .text {
    display: block;
  }
}
.story .text p {
  margin: 0 0 5px;
}

.story-button-holder {
  margin-top: 8px;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .story-button-holder {
    border-top: 1px solid rgba(77, 78, 78, 0.1);
    padding-top: 14px;
  }
}
@media (max-width: 991px) {
  .story-button-holder {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.story-button-holder .pull-right {
  float: none !important;
}
@media (min-width: 768px) {
  .story-button-holder .pull-right {
    float: right !important;
  }
}
.story-button-holder .pull-right.product-listing-control-next {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .story-button-holder .pull-right.product-listing-control-next {
    margin-top: 0;
  }
}
.story-button-holder .pull-left.product-listing-control-prev {
  float: none !important;
}
@media (min-width: 768px) {
  .story-button-holder .pull-left.product-listing-control-prev {
    float: left !important;
  }
}

.top-stories-holder {
  position: relative;
  margin: 0 -10px 16px;
  /*&:before {
    content: '';
    position: absolute;
    height: 1px;
    left: -10px;
    right: -10px;
    bottom: 0;

    @include respond-to($mobile-breakpoint) {
      left: 10px;
      right: 10px;
    }
  }*/
}
.top-stories-holder::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 768px) {
  .top-stories-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}
@media (min-width: 992px) {
  .top-stories-holder {
    margin-bottom: 24px;
  }
}
.top-stories-holder .top-story-column {
  width: 100%;
}
@media (min-width: 768px) {
  .top-stories-holder .top-story-column {
    float: left;
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column wrap;
    -moz-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}
.top-stories-holder .top-story-column.full-width {
  width: 100%;
}
.top-stories-holder .top-story-column .col-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
  height: 50%;
}
.top-stories-holder .top-story-column .col-2::after {
  clear: both;
  content: "";
  display: table;
}
.top-stories-holder .top-story-column .col-2 .top-story {
  float: left;
  width: calc(50% - 20px);
}

.top-story {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 3px;
  border: solid 1px #e5e5e5;
  margin: 0 10px 14px;
  position: relative;
}
.top-story.livestream-embed .description {
  position: relative;
}
.top-story.main-story {
  width: calc(100% - 20px);
}
.top-story .ill img {
  width: 100%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.top-story .meta {
  color: rgba(77, 78, 78, 0.8);
  font-size: 12px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .top-story .meta {
    font-size: 14px;
  }
}
.top-story .description {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px 15px 10px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.top-story .description .description-text {
  height: 80px;
  overflow: hidden;
  margin: 2px 0 0;
}
.top-story .description .top-story-title {
  color: #393b3b;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 6px;
  margin-top: 0 !important;
}
@media (min-width: 768px) {
  .top-story .description .top-story-title {
    font-size: 16px;
    margin-bottom: 2px;
  }
}
@media (min-width: 992px) {
  .top-story .description .top-story-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .top-story .description .top-story-title {
    font-size: 24px;
    max-height: 70px;
  }
}
.top-story.preview .description {
  position: relative;
  overflow: hidden;
  padding: 6px 8px 7px;
}
.top-story.preview .description .top-story-title {
  color: #393b3b;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.top-story.preview .meta {
  font-size: 12px;
}
.top-story.livestream-embed {
  margin-bottom: 16px;
}

.aside-block {
  border: 1px solid #e5e5e5;
  margin: 16px 0;
  padding: 22px 16px 11px;
  border-radius: 3px;
}
.aside-block:first-child {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .aside-block:first-child {
    margin-top: -18px;
  }
}
@media (min-width: 992px) {
  .aside-block.m24 {
    margin-top: -24px;
  }
}
@media (min-width: 992px) {
  .aside-block {
    margin: 35px 0 25px;
  }
}
.aside-block.aside-facebook {
  padding-top: 8px;
}
.aside-block .sub-title {
  margin-bottom: 0;
}
.aside-block .aside-block-link {
  color: #24A54A;
  font-weight: 600;
  text-decoration: none;
  padding-top: 2px;
}
.aside-block .aside-block-link:hover {
  color: #24A54A;
  text-decoration: none;
}
.aside-block .main-btn-transparent {
  width: 100%;
  text-align: center;
}
.aside-block .tag-nav {
  border: none;
  margin-bottom: 8px;
}
.aside-block .sub-nav,
.aside-block .sub-nav-item {
  margin-bottom: 0;
}
.aside-block .sub-nav-link {
  font-size: 12px;
  padding: 6px 7px 7px;
}
.aside-block.aside-block-events .media-list {
  margin-bottom: 2px;
}
.aside-block.aside-block-events .media-list-item {
  padding: 15px 0;
}
.aside-block.aside-block-events .media-list-item:last-child {
  border-bottom: none;
}
.aside-block.aside-block-events .vertical-center-block .vertical-center-block-item {
  padding-left: 8px;
}
.aside-block.aside-block-events .media-list-text {
  color: #a1a4a4;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  line-height: 1.33;
}
.aside-block.aside-block-events .aside-block-link {
  display: block;
  padding-top: 4px;
}
.aside-block.aside-block-marketplace .vertical-center-block {
  display: block;
  text-align: center;
}
.aside-block.aside-block-marketplace .vertical-center-block .vertical-center-block-item-fixed {
  width: 124px;
  height: 124px;
  display: inline-block;
}
.aside-block.aside-block-marketplace .vertical-center-block .vertical-center-block-item {
  text-align: left;
  padding-left: 0;
  padding-top: 6px;
}

.early-info {
  display: block;
  padding: 0 0 12px 0;
  font-size: 16px;
  color: #231F20;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  margin-top: 13px;
}
.early-info li {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
}
.early-info li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
.early-info li:last-child {
  margin-bottom: 0;
}
.early-info .date:before {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/calendar.svg");
}
.early-info .place:before {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/location.svg");
}
.early p {
  line-height: 1.43;
  color: #231F20;
}
.early p a {
  font-weight: 600;
  color: #24A54A;
  text-decoration: none;
}
.early p a:hover {
  text-decoration: underline;
}
.early .early-img {
  display: block;
  width: 150px;
  margin: 0 auto 25px auto;
}

.b-tab .b-tab-content {
  display: none;
}
.b-tab .b-tab-content.active {
  display: block;
}

@media (min-width: 992px) {
  .inner-page {
    margin-top: 20px;
  }
}

.filter-form {
  max-width: 400px;
  margin: 0 auto 30px;
}
@media (min-width: 1200px) {
  .filter-form {
    max-width: 170px;
    margin-bottom: 0;
  }
}

.info-block {
  margin: 35px 0 0;
  padding: 15px 20px 20px;
}
@media (min-width: 992px) {
  .info-block {
    margin-bottom: 25px;
  }
}
.info-block-item {
  margin-top: 30px;
  position: relative;
}
.info-block-item:first-child {
  margin-top: 0;
}
.info-block-item:first-child p {
  margin-left: 0;
}
.info-block-item:first-child:after {
  display: none;
}
@media (min-width: 1200px) {
  .info-block-item {
    margin-top: 0;
  }
  .info-block-item:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 1px;
    bottom: 0;
    background: #d9d9d9;
  }
  .info-block-item p {
    margin-left: 10px;
  }
}
.info-block-item p {
  margin-bottom: 15px;
}

.job-block {
  margin: 0 0 16px;
}
.job-block .job-block-all .media-list-title, .job-block-all .job-block .media-list-title, .job-block .job-block-featured .media-list-title, .job-block-featured .job-block .media-list-title {
  line-height: 1.3;
  margin: 0;
  white-space: normal;
}
.job-block:first-child {
  margin-top: -5px;
}
.job-block:last-child {
  margin-bottom: 0;
}
.job-block-featured .media-list-title {
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  min-height: 0;
}
.job-block-all .media-list-title {
  color: #231F20;
  font-size: 16px;
  font-weight: 600;
  padding-left: 14px;
}
.job-block-all .media-list-date-container {
  padding-left: 0;
}
.job-block-all .media-list-date {
  text-align: right;
  padding-right: 14px;
  line-height: 20px;
  margin: 0;
  color: rgba(35, 31, 32, 0.8);
}
.job-block-all .media-list-text {
  padding-left: 14px;
}
.job-block .sub-title {
  margin-bottom: 13px;
}
.job-block .media-list-item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.job-block .media-list-text {
  font-size: 16px;
  line-height: 1.38;
  color: #231F20;
}
.job-block-show-more {
  text-align: center;
  margin: 0 0 20px;
}
.job-block .vertical-center-block {
  width: 100%;
}
.job-block .vertical-center-block-item.cropped {
  height: 88px;
  width: 88px;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: contain;
}
.job-block .media-list {
  margin: 0 0 0px;
}
.job-block .vertical-center-block-item {
  padding-left: 20px;
  width: calc(100% - 88px);
  font-size: 0;
}
.job-block .vertical-center-block-inner {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.job-block .vertical-center-block-inner.info {
  width: 63%;
}
.job-block .vertical-center-block-inner.location {
  width: 27%;
  vertical-align: top;
}
.job-block .vertical-center-block-inner.category {
  width: 10%;
  font-size: 14px;
  text-align: right;
  vertical-align: top;
  padding-right: 0;
}
.job-block .vertical-center-block-inner.date {
  width: 10%;
  font-size: 14px;
  text-align: right;
  vertical-align: top;
  color: #231F20;
  padding-right: 0;
}
.job-block.multicolor .media-list-item {
  border-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.job-block.multicolor .media-list:nth-child(2n+1) {
  background: #fbfbfb;
}
.job-block.credit-card-block .vertical-center-block-inner.info {
  width: 53%;
}
.job-block.credit-card-block .vertical-center-block-inner.location {
  width: 27%;
  font-size: 14px;
  color: #231F20;
  margin: 2px 0 4px;
  padding-left: 19px;
  line-height: 1.1;
}
.job-block.credit-card-block .vertical-center-block-inner.category,
.job-block.credit-card-block .vertical-center-block-inner.date {
  width: 20%;
}
.job-block.style-2 .media-list-title {
  min-height: 0;
}
.job-block.style-2 .media-list:last-child .media-list-item {
  border-bottom: 0;
}
@media (max-width: 767px) {
  .job-block.style-2 .media-list-text {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(35, 31, 32, 0.8);
  }
}
.job-block + .job-block {
  margin-top: 36px;
}

.jobs-toggle-post {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  vertical-align: middle;
}
.jobs-toggle-post:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #c6c6c6;
}
.jobs-toggle-post a {
  text-decoration: none;
  font-weight: 600;
  color: #24A54A;
}

.vertical-middle {
  font-size: 0;
}
.vertical-middle > div[class^=col-] {
  display: inline-block;
  float: none;
  font-size: 14px;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .jobs-toggle-post {
    display: none;
  }
}
@media (max-width: 767px) {
  .jobs-intro {
    margin-bottom: 10px;
  }

  .job-block-featured .media-list-title {
    font-size: 14px;
    min-height: 0;
  }

  .job-block .vertical-center-block-item.cropped {
    width: 68px;
    height: 68px;
  }
  .job-block .vertical-center-block-inner.info, .job-block .vertical-center-block-inner.location, .job-block .vertical-center-block-inner.category, .job-block .vertical-center-block-inner.date {
    padding-right: 0;
  }
  .job-block .vertical-center-block-inner.info {
    display: block;
    width: 100%;
  }
  .job-block .vertical-center-block-inner.location, .job-block .vertical-center-block-inner.date {
    display: inline-block;
    width: auto;
  }
  .job-block .vertical-center-block-inner.category {
    display: block;
  }
  .job-block .vertical-center-block-inner .media-list-text {
    display: none;
  }
  .job-block .vertical-center-block-inner .media-list-location, .job-block .vertical-center-block-inner.category {
    font-size: 12px;
    line-height: 1.1;
  }
  .job-block .vertical-center-block-inner.date {
    font-size: 12px;
    line-height: 1.1;
    color: rgba(35, 31, 32, 0.8);
  }
  .job-block .vertical-center-block-inner .media-list-location {
    padding-left: 0;
    margin: 0;
  }
  .job-block .vertical-center-block-inner .media-list-location:before {
    display: none;
  }
  .job-block .vertical-center-block-inner.date:before {
    content: "(";
  }
  .job-block .vertical-center-block-inner.date:after {
    content: ")";
  }
  .job-block .job-block-featured .media-list-title {
    margin-bottom: 5px;
  }
  .job-block .media-list-item {
    padding: 12px 0;
  }

  .job-block-all {
    padding: 2px 14px;
  }
  .job-block-all .row {
    margin: 0;
  }
  .job-block-all .row > div[class^=col-] {
    padding: 0;
    display: inline-block;
    float: none;
    vertical-align: middle;
  }
  .job-block-all .row > div[class^=col-]:first-child {
    width: 100%;
  }
  .job-block-all .media-list-title {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    padding-left: 0;
    padding-bottom: 7px;
  }
  .job-block-all .media-list-location {
    padding-left: 0;
    font-size: 12px;
    margin: 0;
  }
  .job-block-all .media-list-location:before {
    display: none;
  }
  .job-block-all .media-list-date {
    font-size: 12px;
    line-height: 1.1;
  }
  .job-block-all .media-list-date:before {
    content: "(";
  }
  .job-block-all .media-list-date:after {
    content: ")";
  }
  .job-block-all .media-list-text {
    display: none;
  }

  .job-block.style-3 .job-block-all .media-list-title {
    padding-bottom: 0;
  }

  .vertical-middle > div[class^=col-] {
    display: block;
  }
}
.post-job .main-title {
  margin-bottom: 10px;
}
.post-job .post-job-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.post-job ul.k-header {
  border: 0;
  counter-reset: job-counter;
}
.post-job .k-item {
  position: relative;
  padding-bottom: 17px;
  box-shadow: none;
}
.post-job .k-item:before {
  content: counter(job-counter);
  counter-increment: job-counter;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 14px;
  line-height: 32px;
  font-weight: 800;
  color: rgba(35, 31, 32, 0.6);
  text-align: center;
  z-index: 1;
}
.post-job .k-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 16px;
  width: 1px;
  height: 100%;
  background: rgba(35, 31, 32, 0.1);
}
.post-job .k-item:last-child {
  padding-bottom: 0;
}
.post-job .k-item .k-content {
  padding-left: 47px;
  padding-top: 25px;
  border: 0;
}
.post-job .k-state-highlight:not(.k-state-active):before {
  content: "";
  background: #24A54A url("//d2azl42aua8mom.cloudfront.net/assets/images/checked.svg") no-repeat center center;
}
.post-job .k-state-active:before {
  background: #faaa22;
  color: #fff;
}
.post-job .k-link .k-icon {
  display: none;
}
.post-job .k-panelbar .k-item .k-link {
  background: transparent;
  padding-left: 47px;
  border: 0;
  box-shadow: none;
}
.post-job .subheading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  color: #231F20;
}
.post-job .subheading span {
  font-weight: 400;
}
.post-job span.k-widget {
  max-width: 100% !important;
}
.post-job .k-widget .form-group input[type=text] {
  max-width: 100%;
}
.post-job .post-job .k-widget .form-group input[type=text] {
  height: 22px;
}
.post-job .prevstepbutton,
.post-job .main-btn.poststep6 {
  margin-right: 16px;
}
.post-job .info-button.min-width, .post-job .main-btn.min-width {
  width: 160px;
}
@media (min-width: 768px) {
  .post-job .info-button.min-width, .post-job .main-btn.min-width {
    width: auto;
    min-width: 160px;
  }
}
.post-job table.k-editor-widget {
  margin-bottom: 20px;
}
.post-job #panelbar-1 .checkbox {
  margin-top: 22px;
  margin-bottom: 25px;
}
.post-job .form-info {
  color: rgba(35, 31, 32, 0.6) !important;
}
.post-job .form-group:after {
  content: "";
  display: block;
  clear: both;
}
.post-job .controls-row:not(.controls-expiration) {
  margin: 0 -8px !important;
  max-width: 707px;
}
.post-job .controls-row:after {
  content: "";
  display: block;
  clear: both;
}
.post-job .controls-row .span4 {
  width: 50%;
  padding: 0 8px;
  box-sizing: border-box;
}
.post-job .form-group .controls-row .form-control {
  width: 100% !important;
  height: 36px;
  box-sizing: border-box;
}
.post-job .controls-row .k-dropdown,
.post-job .form-group .k-dropdown {
  width: 100% !important;
}
.post-job #btn-additional-location,
.post-job .btn-delete-location {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #24A54A;
  padding-left: 21px;
  color: #24A54A;
  text-decoration: none;
}
.post-job #btn-additional-location:before,
.post-job .btn-delete-location:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/plus.svg") no-repeat center center;
  margin-top: -9px;
}
.post-job #btn-additional-location:hover,
.post-job .btn-delete-location:hover {
  text-decoration: underline;
}
.post-job .btn-delete-location:before {
  transform: rotate(45deg);
}
.post-job .checkbox label.postjob-checkbox {
  display: inline-block;
  color: #231F20;
}
.post-job .checkbox label.postjob-checkbox strong {
  font-size: 16px;
}
.post-job .row {
  box-sizing: border-box;
}
.post-job .row > div[class^=col-] {
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .post-job {
    margin-bottom: 30px;
  }
}
.post {
  color: #231F20;
  font-size: 14px;
  line-height: 1.5625;
  margin: -5px 0 0;
}
@media (min-width: 992px) {
  .post {
    font-size: 16px;
  }
}
.post p {
  margin: 0 0 15px;
}
@media (min-width: 992px) {
  .post p {
    margin-bottom: 25px;
  }
}
.post p a {
  color: #231F20;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.post p a:hover {
  color: #231F20;
  border-bottom-color: transparent;
}
.post .post-content-wrap a {
  color: #231F20;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.post .post-content-wrap a:hover {
  color: #231F20;
  border-bottom-color: transparent;
}
.post h2 {
  color: #231F20;
  font-size: 18px;
}
@media (min-width: 992px) {
  .post h2 {
    font-size: 20px;
  }
}
.post blockquote {
  color: rgba(77, 78, 78, 0.9);
  padding: 0 0 0 15px;
  margin: 25px 0;
  font-size: 14px;
  line-height: 22px;
  border-left: 4px solid #faaa22;
}
@media (min-width: 992px) {
  .post blockquote {
    font-size: 16px;
    line-height: 24px;
    margin: 30px 0;
  }
}
.post blockquote h3 {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .post blockquote h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
.post .meta {
  font-size: 14px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .post .meta {
    float: left;
    width: 73%;
  }
}
@media (min-width: 992px) {
  .post .meta {
    font-size: 16px;
    width: 73%;
  }
}
@media (min-width: 1200px) {
  .post .meta {
    width: 70%;
  }
}
@media (min-width: 1300px) {
  .post .meta {
    width: 73%;
  }
}
.post .meta .meta-photo {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 2px;
  vertical-align: middle;
  background-color: #faaa22;
  text-align: center;
}
.post .meta .meta-links {
  display: inline-block;
  vertical-align: middle;
  width: 83%;
}
@media (min-width: 1200px) {
  .post .meta .meta-links {
    width: 90%;
  }
}
.post .meta a,
.post .meta .author {
  color: rgba(77, 78, 78, 0.8);
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  border: none;
  margin-right: 22px;
  display: inline-block;
  position: relative;
}
.post .meta a:hover,
.post .meta .author:hover {
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 768px) {
  .post .meta a:after,
.post .meta .author:after {
    content: "";
    pointer-events: none;
    border-left: 1px solid #c6c6c6;
    position: absolute;
    top: 0;
    right: -12px;
    height: 100%;
    display: block;
  }
}
.post .meta time {
  font-size: 12px;
  color: rgba(77, 78, 78, 0.8);
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .post .meta time {
    font-size: 16px;
  }
}
.post .meta.meta-multiple {
  position: relative;
}
.post .meta.meta-multiple:after {
  position: absolute;
  right: 0;
  top: 9px;
  width: 13px;
  height: 13px;
  background-position: -268px -30px;
  content: "";
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .post .meta.meta-multiple:after {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons@2.png");
    background-size: 305px auto;
  }
}
@media (min-width: 768px) {
  .post .meta.meta-multiple:after {
    content: none;
  }
}
.post .meta.meta-multiple.open:after {
  transform: rotate(180deg);
}
.post .meta.meta-multiple .meta-photo img {
  margin-top: 7px;
}
.post .meta.meta-multiple .drop-down-authors .meta-photo img {
  margin-top: 0px;
}
.post .meta.meta-multiple .author.menu-item-has-children {
  border-bottom: 1px dashed #24A54A;
}
.post .meta.meta-multiple .author.menu-item-has-children:hover {
  text-decoration: none;
}
.post .meta.meta-multiple .author.menu-item-has-children:hover .drop-down.drop-down-authors {
  display: block;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors {
  margin-left: 0;
  left: -38px;
  z-index: 2;
  top: 24px;
  display: none;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .drop-down-inner {
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(77, 78, 78, 0.1);
  border-radius: 3px;
  border: solid 1px rgba(77, 78, 78, 0.1);
  border-bottom: 2px solid #24A54A;
  padding: 18px 16px 18px 10px;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .drop-down-inner li {
  border: none;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .drop-down-inner .meta-photo {
  margin-right: 4px;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid rgba(77, 78, 78, 0.2);
  margin-left: -8px;
  z-index: -1;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .menu-item .meta-links {
  width: 78%;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .menu-item .meta-links a {
  color: #231F20;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  margin-right: 0;
  display: block;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .menu-item .meta-links a:after {
  content: none;
}
.post .meta.meta-multiple .author.menu-item-has-children .drop-down.drop-down-authors .menu-item .meta-links span {
  color: rgba(77, 78, 78, 0.8);
  font-size: 14px;
  line-height: 1.43;
  display: block;
}
.post .meta .authors-mobile-nav {
  padding: 0;
  margin-left: 40px;
  list-style-type: none;
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease-in-out;
}
.post .meta .authors-mobile-nav li {
  margin-bottom: 4px;
}
.post .meta .authors-mobile-nav li a {
  color: #393b3b;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: block;
  margin: 0;
  padding: 0;
}
.post .meta .authors-mobile-nav li a:hover, .post .meta .authors-mobile-nav li a:focus {
  text-decoration: underline;
  background-color: transparent;
}
.post .meta .authors-mobile-nav li span {
  color: rgba(77, 78, 78, 0.8);
  font-size: 12px;
  line-height: 20px;
}
.post .meta .authors-mobile-nav.open {
  height: auto;
  overflow: visible;
}
.post .featured-image {
  width: 100%;
  margin-bottom: 18px;
}
.post .featured-image img {
  width: 100%;
  max-width: none;
  height: auto;
}
.post .featured-image .featured-image-title {
  color: rgba(77, 78, 78, 0.5);
  font-size: 12px;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 7px 0;
}
@media (min-width: 992px) {
  .post .featured-image .featured-image-title {
    font-size: 14px;
  }
}
.post-media {
  margin-bottom: 20px;
}
.post-comments {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .post-comments {
    margin-bottom: 25px;
  }
}
.post-share {
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .post-share {
    text-align: right;
  }
}
.post-share > div {
  margin-left: -4px;
}
@media (min-width: 768px) {
  .post-share > div {
    margin-left: 8px;
  }
  .post-share > div:first-child {
    margin-left: 0;
  }
}
.post-share .post-share-item {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  height: 32px;
  width: 66px;
  background-size: auto;
  background-repeat: no-repeat;
  padding-top: 5px;
}
.post-share .post-share-item:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
@media (min-width: 768px) {
  .post-share .post-share-item:first-child {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
  }
}
.post-share .post-share-item:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media (min-width: 768px) {
  .post-share .post-share-item:last-child {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
  }
}
@media (min-width: 768px) {
  .post-share .post-share-item {
    width: 32px;
    border-radius: 50%;
  }
}
.post-share .post-share-item iframe {
  opacity: 0.00001;
}
.post-share .post-share-item.facebook {
  background-color: #1b95e0;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/facebook.svg");
  background-position: 29px 9px;
}
@media (min-width: 768px) {
  .post-share .post-share-item.facebook {
    background-position: 12px 9px;
  }
}
.post-share .post-share-item.twitter {
  background-color: #4267b2;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/twitter.svg");
  background-position: 27px 11px;
}
@media (min-width: 768px) {
  .post-share .post-share-item.twitter {
    background-position: 10px 11px;
  }
}
.post-share .post-share-item.reddit {
  background-color: #6d91a6;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/reddit.svg");
  background-position: 24px 8px;
}
@media (min-width: 768px) {
  .post-share .post-share-item.reddit {
    background-position: 8px 8px;
  }
}
.post-share .post-share-item.linkedIn {
  background-color: #0077b5;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/linkedin.svg");
  background-position: 26px 9px;
}
@media (min-width: 768px) {
  .post-share .post-share-item.linkedIn {
    background-position: 10px 9px;
  }
}
.post-aside {
  margin-top: 8px;
}
.post-aside .media-list-item {
  padding-top: 12px;
  padding-bottom: 12px;
}
.post-aside .media-list-title {
  color: #393b3b;
  font-size: 12px;
  line-height: 1.5;
}
.post-aside .list-links {
  font-size: 12px;
}
.post-aside .list-links a {
  color: #24A54A;
  font-weight: 600;
  text-decoration: none;
}
.post-aside .list-links a:hover {
  color: #24A54A;
  text-decoration: none;
}
.post-aside .aside-block:last-child {
  margin-bottom: 0;
}
.post .gsc-control-cse {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.post .gsc-table-result, .post .gsc-thumbnail-inside, .post .gsc-url-top {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.post .gs-title {
  height: auto !important;
}
.post .gs-title a {
  color: #231F20 !important;
}

.post-tagged-companies {
  margin: 20px 0 34px;
}
.post-tagged-companies .post-tagged-companies-item {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 12px 12px 14px 12px;
  margin-bottom: 16px;
}
.post-tagged-companies .tagged-company-name {
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(77, 78, 78, 0.1);
}
.post-tagged-companies .tagged-company-name img {
  width: 76px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.post-tagged-companies .company-name-content {
  display: inline-block;
  vertical-align: middle;
}
.post-tagged-companies .company-name-content h6 {
  color: #393b3b;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 2px;
}
.post-tagged-companies .company-name-content ul.social {
  min-height: 24px;
}
.post-tagged-companies .company-name-content .company-link {
  display: inline-block;
  color: #231F20;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.post-tagged-companies .company-name-content .company-link:hover {
  color: #231F20;
  border-bottom-color: transparent;
}
.post-tagged-companies .tagged-company-description {
  min-height: 100px;
}
@media (min-width: 992px) {
  .post-tagged-companies .tagged-company-description {
    min-height: auto;
    height: 100px;
  }
}
.post-tagged-companies .tagged-company-description p {
  line-height: 1.4;
  font-size: 14px;
  margin-bottom: 5px;
}
.post-tagged-companies .tagged-company-description .title-desc {
  color: rgba(77, 78, 78, 0.8);
  font-weight: 600;
  margin-right: 2px;
}
.post-tagged-companies .list-links {
  margin-top: 6px;
}
.post-tagged-companies .list-links li {
  width: 49%;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  float: none;
}
.post-tagged-companies .list-links a {
  color: #24A54A;
  font-weight: 600;
  text-decoration: none;
}
.post-tagged-companies .list-links a:hover {
  color: #24A54A;
  text-decoration: none;
}
.post-tagged-companies .social {
  display: block;
  margin-top: 14px;
}

#google_ads_div_ShowCoverage_NOSH_ad_wrapper {
  paddding-left: 1.25em;
  paddding-right: 1.25em;
}
#google_ads_div_ShowCoverage_NOSH_ad_wrapper table {
  table-layout: fixed;
  width: 100% !important;
  border: none !important;
  margin: 0 !important;
}
#google_ads_div_ShowCoverage_NOSH_ad_wrapper table td {
  height: auto !important;
  border: none !important;
}
#google_ads_div_ShowCoverage_NOSH_ad_wrapper table td img {
  height: auto !important;
  width: auto !important;
  max-height: 100px;
}
#google_ads_div_ShowCoverage_NOSH_ad_wrapper table td h5 {
  margin-top: 0px;
  margin-bottom: 10px;
  border-bottom: #ececec 1px dashed;
}

/*
 * WordPress Floats
 */
.alignleft,
.alignright,
.aligncenter {
  display: block;
}

.alignleft,
.alignright {
  float: none;
  margin: 0 auto 1em auto;
  text-align: center;
}

.aligncenter {
  text-align: center;
  margin: 0 auto 1em auto;
}

@media (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }

  .alignright {
    float: right;
    margin: 0 0 1em 1em;
  }
}
/**
 * Post Company Blocks
 */
.post-associated-entity {
  border-bottom: 1px solid #d9d9d9;
  clear: both;
  margin-bottom: 1em;
}
.post-associated-entity::after {
  clear: both;
  content: "";
  display: table;
}
@media (max-width: 768px) {
  .post-associated-entity {
    padding-bottom: 3em;
    position: relative;
  }
}
.post-associated-entity .post-contact,
.post-associated-entity .actions {
  border-left: 1px solid #d9d9d9;
}
.post-associated-entity .post-links h2 {
  background-color: #231F20;
}
.post-associated-entity .post-contact h2 a {
  color: #8ebb4f;
}
.post-associated-entity .post-contact figure {
  float: right;
  margin-left: 0.5em;
  margin-right: -1em;
}
.post-associated-entity .post-contact figure img {
  max-height: 100px;
  max-width: 100px;
}
@media (max-width: 768px) {
  .post-associated-entity .post-links,
.post-associated-entity .post-contact {
    width: 100%;
  }
  .post-associated-entity .post-links h2 {
    display: none;
  }
  .post-associated-entity .post-links .wrap {
    padding-top: 0;
  }
  .post-associated-entity .post-contact,
.post-associated-entity .actions {
    border-left: none;
  }
  .post-associated-entity .actions .wrap {
    padding-top: 0;
  }
}
.post-associated-entity h2 {
  font-size: 1.4em;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #000;
  color: #fff;
  padding: 0 0.75em;
  margin: 0;
}
.post-associated-entity h2 a:hover {
  color: #fff;
}
.post-associated-entity .wrap {
  padding: 1em;
}
.post-associated-entity .wrap dl {
  margin: 0;
}
.post-associated-entity .wrap dl dt, .post-associated-entity .wrap dl dd {
  margin: 0;
}
.post-associated-entity .wrap dl dt {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8em;
  line-height: 1.375em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-associated-entity .wrap dl dd {
  line-height: 1.25em;
  color: #231F20;
  margin-bottom: 0.75em;
}
.post-associated-entity .wrap .social-links li {
  display: inline-block;
  margin-right: 0.5em;
}
.post-associated-entity .wrap .social-links li a {
  color: #231F20;
}
.post-associated-entity .wrap .social-links li a:hover {
  color: #8ebb4f;
}
.post-associated-entity .wrap .actions {
  clear: both;
  margin-bottom: 1em;
}
.post-associated-entity .wrap .btn {
  float: left;
  margin-right: 1em;
}
.post-associated-entity .wrap .btn:last-of-type {
  margin-right: 0;
}
/* Paywall */
#paywall-content .preview-content {
  position: relative;
}
#paywall-content .preview-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 136px;
  background: rgba(255, 255, 255, 0.2);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff);
}
#paywall-content .main-btn {
  color: #fff;
}
#paywall-content .video-black-box {
  background-color: black;
  width: 100%;
  height: 300px;
}
#paywall-content .video-black-box p {
  position: relative;
  top: 50%;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .rsContentSlider p {
    margin: 10px 10px 10px !important;
  }
  .rsContentSlider h3 {
    margin: 10px 10px 10px !important;
  }
}
.rsContentSlider {
  height: 500px;
}

@media (min-width: 460px) {
  .rsSlideRoot > p {
    margin-left: 5% !important;
    font-size: 0.9em;
  }

  .rsContentSlider {
    height: 560px;
  }
}
@media (min-width: 768px) {
  .rsSlideRoot > p {
    margin-left: 5% !important;
    font-size: 0.9em;
  }

  .rsContentSlider {
    height: 650px;
  }
}
.loginrequired {
  width: 100%;
  margin-top: 25px;
}
.loginrequired .headerrow {
  font-size: 1.75em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  background-color: black;
  color: #FAE631;
  text-tran: uppercase;
  font-weight: bold;
}
.loginrequired .bodyrow {
  padding-left: 20px;
  background-color: #CFEEF3;
  padding-top: 10px;
  padding-bottom: 10px;
  color: black;
  font-weight: bold;
}
.loginrequired .bodyrow a {
  text-decoration: none;
  border-bottom: 1px black solid;
}
.loginrequired .btn-subscribe {
  font-size: 1.2em !important;
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fae631;
  font-weight: 800;
  color: black;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 10px;
  border-radius: 25px;
  border: 0;
  border-bottom: 0px;
}
.loginrequired .subloginlink {
  color: #e21836 !important;
  border-bottom: 1px #e21836 solid !important;
}

/*# sourceMappingURL=application-ie9-3.css.map */
