@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
 */
.drop-down {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 220px;
  margin-left: -118px;
  border-top: 5px solid transparent;
}
.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;
}
.drop-down .drop-down-inner li {
  padding: 10px 0px 0px 0px;
  border-top: 1px dashed #808080;
}
.drop-down .drop-down-inner li:first-child {
  border-top: none !important;
}
.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;
}
.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;
}
.drop-down a {
  color: #231F20;
  text-transform: uppercase;
}
.drop-down .drop-down-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.drop-down .drop-down-list li {
  margin: 10px 0 0;
}
.drop-down .drop-down-list li:first-child {
  margin-top: 0;
}

.map, .events-list-box, .block {
  margin-bottom: 8px;
  background: #fff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}
/*------------------------------------*\
    #PATTERNS
\*------------------------------------*/
/**
 * These are reusable patterns, and should use the .p- prefix.
 * Internally they use Frames & Skins to create the objects.
 */
/**
 * Patterns layer
 *
 * This layer is for reusable patterns.
 */
.social {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
  font-size: 0;
  vertical-align: top;
}

.header .social {
  position: relative;
  /*&:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -18px;
      height: 36px;
      background: #eaeaea;
      width: 1px;
  }*/
}
@media (max-width: 1024px) {
  .header .social {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header .social {
    padding-left: 5px;
  }
}
@media (min-width: 1200px) {
  .header .social {
    padding-left: 10px;
  }
}

.social-item {
  display: inline-block;
  margin: 0 10px 0 0;
}
@media (min-width: 992px) {
  .social-item {
    margin-left: 15px;
    margin-right: 0;
  }
}

.social-link, .post-tagged-companies-item .social-item a {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  transition: opacity 0.25s ease-in-out;
  overflow: hidden;
  text-indent: -9999px;
  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) {
  .social-link, .post-tagged-companies-item .social-item a {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons@2.png");
    background-size: 305px auto;
  }
}
.social-link.facebook, .post-tagged-companies-item .social-item a.facebook {
  background-position: -5px -5px;
}
.social-link.twitter, .post-tagged-companies-item .social-item a.twitter {
  background-position: -30px -5px;
}
.social-link.linkedin, .post-tagged-companies-item .social-item a.linkedin {
  background-position: -55px -5px;
}
.social-link.youtube, .post-tagged-companies-item .social-item a.youtube {
  background-position: -80px -5px;
}
.social-link.instagram, .post-tagged-companies-item .social-item a.instagram {
  background-position: -105px -5px;
}
.social-link.email, .post-tagged-companies-item .social-item a.email {
  background-position: -130px -5px;
}
.social-link:hover, .post-tagged-companies-item .social-item a:hover {
  opacity: 0.75;
}

.header .social-item,
.footer-social-links .nav > li {
  position: relative;
  border: none;
  padding: 0;
  margin-left: 0;
  line-height: inherit;
  padding: 0;
}
@media (min-width: 1024px) {
  .header .social-item,
.footer-social-links .nav > li {
    margin-right: 5px;
  }
}
.header .social-item a,
.footer-social-links .nav > li a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 18px;
  height: 32px;
  padding: 0;
  color: inherit;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.header .social-item a:before,
.footer-social-links .nav > li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (min-width: 992px) {
  .header .social-item a:hover,
.footer-social-links .nav > li a:hover {
    background-image: none !important;
  }
  .header .social-item a:hover:before,
.footer-social-links .nav > li a:hover:before {
    opacity: 1;
  }
}
.header .social-item.newsletter a,
.footer-social-links .nav > li.newsletter a {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Mail.svg");
}
.header .social-item.newsletter a:before,
.footer-social-links .nav > li.newsletter a:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Mail-green.svg");
}
.header .social-item.facebook a,
.footer-social-links .nav > li.facebook a {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Facebook.svg");
}
.header .social-item.facebook a:before,
.footer-social-links .nav > li.facebook a:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Facebook-green.svg");
}
.header .social-item.twitter a,
.footer-social-links .nav > li.twitter a {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Twitter.svg");
}
.header .social-item.twitter a:before,
.footer-social-links .nav > li.twitter a:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Twitter-green.svg");
}
.header .social-item.instagram a,
.footer-social-links .nav > li.instagram a {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Instagram.svg");
}
.header .social-item.instagram a:before,
.footer-social-links .nav > li.instagram a:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Instagram-green.svg");
}
.header .social-item.youtube a,
.footer-social-links .nav > li.youtube a {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Youtube.svg");
}
.header .social-item.youtube a:before,
.footer-social-links .nav > li.youtube a:before {
  background-image: url("https://d2btcxja5g5zgs.cloudfront.net/assets/nosh/icons/Youtube-green.svg");
}

.footer-social-links .nav > li a {
  opacity: 0.3;
}

.post-tagged-companies-item .social-item a {
  width: 28px;
  height: 28px;
  background-color: rgba(77, 78, 78, 0.3);
  background-size: auto;
  background-position: 7px;
  border-radius: 15px;
}
.post-tagged-companies-item .social-item a:hover {
  background-color: #24A54A;
}
.post-tagged-companies-item .social-item a:focus {
  background-color: #24A54A;
}
.post-tagged-companies-item .social-item.facebook a {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/facebook.svg");
  background-position: 10px 7px;
}
.post-tagged-companies-item .social-item.twitter > a {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/twitter.svg");
  background-position: 8px 9px;
}
.post-tagged-companies-item .social-item.linkedin a {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/linkedin.svg");
  background-position: 8px 7px;
}
.post-tagged-companies-item .social-item.youtube > a {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/youtube.svg");
  background-size: 15px;
}
.post-tagged-companies-item .social-item.instagram a {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/ic-instagram.svg");
  background-position: 7px 7px;
}
.post-tagged-companies-item .social-item.email a {
  background-position: -130px -5px;
}
.post-tagged-companies-item .social-item.faicon a {
  background-image: none;
  font-size: 16px;
  text-indent: inherit;
  padding-left: 5px;
  color: white;
}

.post-tagged-companies-item .social-item {
  margin-left: 0;
  margin-right: 6px;
}
.post-tagged-companies-item .social-item.facebook a {
  background-position: 8px 5px;
}
.post-tagged-companies-item .social-item.twitter > a {
  background-position: 6px 7px;
}
.post-tagged-companies-item .social-item.linkedin a {
  background-position: 6px 5px;
}
.post-tagged-companies-item .social-item.instagram a {
  background-position: 5px 5px;
}
.post-tagged-companies-item .social-item a {
  width: 24px;
  height: 24px;
  border: none;
}

.text-field {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  position: relative;
  width: 100%;
}
.text-field input {
  border: none;
  background: none;
  height: 28px;
  line-height: 28px;
  padding: 0 14px;
  font-size: 14px;
  color: #231F20;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  outline: none;
  margin-bottom: 0;
}
.text-field input::-webkit-input-placeholder {
  color: #808080;
}
.text-field input::-moz-placeholder {
  color: #808080;
}
.text-field input:-moz-placeholder {
  color: #808080;
}
.text-field input:-ms-input-placeholder {
  color: #808080;
}
.text-field.icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  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) {
  .text-field.icon:before {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons@2.png");
    background-size: 305px auto;
  }
}
.text-field.icon input {
  padding-left: 28px;
}
.text-field.icon.search:before {
  content: none;
  /* width: 16px;
   height: 16px;
   top: 7px;
   background-image: url($imageDir + 'search_white.svg');
   background-size: contain;*/
}
.text-field.icon.filter:before {
  background-position: -145px -30px;
}

.alert-message,
.validation-summary-errors {
  margin: 10px 0 0 10px;
  padding: 15px;
  box-shadow: 0 0 2px rgba(77, 77, 77, 0.4);
  transition: opacity 0.15s ease-in-out 0.8s, top 0.25s ease-in-out 0.8s;
  opacity: 1;
  background-color: whitesmoke;
}
.alert-message.message-error, .alert-message.validation-summary-errors,
.validation-summary-errors.message-error,
.validation-summary-errors.validation-summary-errors {
  border-color: #e72a00;
  color: #e72a00;
  font-weight: bold;
}
.alert-message.message-success,
.validation-summary-errors.message-success {
  border-color: #8ebb4f;
  color: #8ebb4f;
  font-weight: bold;
}
.alert-message ul,
.validation-summary-errors ul {
  margin: 0;
}

.alert-message {
  margin-left: 0;
}

input {
  color: #231F20;
  font-size: 14px;
  border: 1px solid rgba(77, 78, 78, 0.3);
  padding: 3px 10px 5px 12px;
  height: 28px;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 8px;
}
input::-webkit-input-placeholder {
  color: rgba(77, 78, 78, 0.45);
}
input::-moz-placeholder {
  color: rgba(77, 78, 78, 0.45);
}
input:-moz-placeholder {
  color: rgba(77, 78, 78, 0.45);
}
input:-ms-input-placeholder {
  color: rgba(77, 78, 78, 0.45);
}
input:focus {
  outline: none;
}

.checkbox + .checkbox {
  margin-top: 0px;
}

.checkbox {
  margin-bottom: 8px;
}

input[type=radio]:not(:checked),
input[type=radio]:checked,
input[type=checkbox]:not(:checked),
input[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

input[type=radio]:not(:checked) + label,
input[type=radio]:checked + label,
input[type=checkbox]:not(:checked) + label,
input[type=checkbox]:checked + label,
input[type=checkbox] + input[type=hidden] + label {
  position: relative;
  cursor: pointer;
}

input[type=radio]:not(:checked) + label,
input[type=radio]:checked + label {
  padding-left: 19px;
}

input[type=checkbox]:not(:checked) + label,
input[type=checkbox]:checked + label,
input[type=checkbox] + label {
  padding-left: 19px;
}

input[type=radio]:not(:checked) + label:before,
input[type=radio]:checked + label:before,
input[type=checkbox]:not(:checked) + label:before,
input[type=checkbox]:checked + label:before,
input[type=checkbox] + input[type=hidden] + label:before {
  content: "";
  position: absolute;
  left: 0;
  border: 1px solid #24A54A;
  background: #fff;
}

input[type=radio]:not(:checked) + label:before,
input[type=radio]:checked + label:before {
  top: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

input[type=checkbox]:not(:checked) + label:before,
input[type=checkbox]:checked + label:before,
input[type=checkbox] + input[type=hidden] + label:before {
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

input[type=radio]:not(:checked) + label:hover:before,
input[type=radio]:checked + label:before,
input[type=checkbox]:not(:checked) + label:hover:before,
input[type=checkbox]:checked + label:before,
input[type=checkbox]:not(:checked) + input[type=hidden] + label:hover:before,
input[type=checkbox]:checked + input[type=hidden] + label:before {
  border-color: #24A54A;
}

input[type=radio]:not(:checked) + label:after,
input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  height: 8px;
  width: 8px;
  background: #24A54A;
  border-radius: 50%;
  transition: all 0.2s;
}

input[type=checkbox]:not(:checked) + label:after,
input[type=checkbox]:checked + label:after,
input[type=checkbox] + input[type=hidden] + label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  height: 10px;
  width: 12px;
  background-color: #24A54A;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/ic-check.svg");
  background-repeat: no-repeat;
  background-position: 2px 2px;
  transition: all 0.2s;
}

input[type=radio]:not(:checked) + label:after,
input[type=checkbox]:not(:checked) + label:after,
input[type=checkbox]:not(:checked) + input[type=hidden] + label:after {
  opacity: 0;
  transform: scale(0);
}

input[type=radio]:checked + label:after,
input[type=checkbox]:checked + label:after,
input[type=checkbox]:checked + input[type=hidden] + label:after {
  opacity: 1;
  transform: scale(1);
}

.checkbox label:before {
  box-sizing: border-box;
}

/*checkbox medium*/
.checkbox.large label {
  font-size: 16px;
  font-weight: 400;
}

/*kendo dropdown*/
.k-state-default > .k-select {
  font-size: 0;
}

.k-state-default > .k-select:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

span.k-dropdown {
  background: transparent;
}

.k-dropdown .k-dropdown-wrap.k-state-default {
  background: transparent;
  border-color: rgba(35, 31, 32, 0.4);
}
.k-dropdown .k-dropdown-wrap .k-input {
  height: 29px;
  line-height: 29px;
  padding-left: 12px;
  text-indent: 0;
}
.k-dropdown .k-dropdown-wrap.k-state-focused.k-state-hover {
  background: transparent;
}

.k-animation-container .k-list .k-state-selected {
  background: #24A54A;
  border-color: #24A54A;
}

/*table.k-editor*/
.k-editor.k-editor-widget {
  height: 344px !important;
  background-color: transparent;
  border-spacing: 0;
  border-radius: 3px;
  border-color: rgba(77, 78, 78, 0.4);
}
.k-editor.k-editor-widget .k-editor-toolbar {
  padding: 4px 6px;
}
.k-editor.k-editor-widget .k-button-group .k-tool {
  border-radius: 3px;
  border-color: transparent;
}
.k-editor.k-editor-widget .k-state-hover,
.k-editor.k-editor-widget .k-state-hover:hover {
  background: rgba(77, 78, 78, 0.1);
}
.k-editor.k-editor-widget .k-state-hover .k-italic,
.k-editor.k-editor-widget .k-state-selected .k-italic {
  background-position: -240px -24px;
}
.k-editor.k-editor-widget .k-state-hover .k-bold,
.k-editor.k-editor-widget .k-state-selected .k-bold {
  background-position: -240px 0;
}
.k-editor.k-editor-widget .k-state-hover .k-underline,
.k-editor.k-editor-widget .k-state-selected .k-underline {
  background-position: -240px -48px;
}
.k-editor.k-editor-widget .k-state-hover .k-createLink,
.k-editor.k-editor-widget .k-state-selected .k-createLink {
  background-position: -288px -48px;
}
.k-editor.k-editor-widget .k-button-group {
  position: relative;
  margin-right: 25px;
}
.k-editor.k-editor-widget .k-button-group:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -13px;
  width: 1px;
  height: 32px;
  background: rgba(77, 78, 78, 0.4);
  margin-top: -16px;
}
.k-editor.k-editor-widget .k-button-group:last-child {
  margin-right: 0;
}
.k-editor.k-editor-widget .k-button-group:last-child:before {
  display: none;
}
.k-editor.k-editor-widget .k-editable-area {
  border: 0;
  border-top: 1px solid rgba(77, 78, 78, 0.4);
  padding: 12px;
}
.k-editor.k-editor-widget iframe.k-content {
  box-sizing: border-box;
}

/*.k-upload*/
.k-widget.k-upload {
  background: transparent;
  border: 1px dashed rgba(77, 78, 78, 0.4);
}
.k-widget.k-upload .k-upload-button,
.k-widget.k-upload .k-button:active:hover,
.k-widget.k-upload .k-button.k-state-active:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.k-widget.k-upload .k-upload-button span,
.k-widget.k-upload .k-button:active:hover span,
.k-widget.k-upload .k-button.k-state-active:hover span {
  font-size: 14px;
  font-weight: 600;
  color: #24A54A;
}
.k-widget.k-upload .k-upload-files {
  border-style: dashed;
  margin: 0 15px 10px 15px;
}
.k-widget.k-upload .k-file {
  border-style: dashed;
}
.k-widget.k-upload .k-button:focus:not(.k-state-disabled):not([disabled]),
.k-widget.k-upload .k-button:focus:active:not(.k-state-disabled):not([disabled]) {
  box-shadow: none;
}

/*.form-control*/
input.form-control {
  border: 1px solid rgba(35, 31, 32, 0.4);
  border-radius: 3px;
  box-shadow: none;
}
input.form-control:focus {
  border-color: #6cbcdf;
  box-shadow: none;
}
input.form-control.input-validation-error, input.form-control.k-invalid {
  border-color: #ee3a25;
}

span.field-validation-error {
  position: absolute;
  top: 0;
  font-weight: 300;
  color: #c63322;
}
span.field-validation-error:not(.job-types-error) {
  right: 0;
}
@media (max-width: 767px) {
  span.field-validation-error {
    display: block;
    position: relative;
    font-size: 12px;
    margin-top: -5px;
  }
}

.form-group-optional span.field-validation-error {
  right: 60px;
}

.form-control.t170 {
  height: 170px;
}

.form-group {
  position: relative;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  color: #231F20;
}
.form-group label .optional {
  color: rgba(77, 78, 78, 0.6);
  font-weight: 300;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .form-group label .optional {
    font-size: 14px;
  }
}
.form-group .form-info {
  font-size: 12px;
  line-height: 1.67;
  color: rgba(35, 31, 32, 0.6);
}
.form-group .help-block {
  color: #231F20;
  margin-top: -4px;
  margin-bottom: 3px;
}
.form-group input.form-control + .form-info {
  margin-top: -8px;
}
.form-group .form-tips {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 767px) {
  .form-group .form-tips {
    font-size: 12px;
  }
}
.form-group select.form-control {
  box-shadow: none;
  border: 1px solid rgba(77, 78, 78, 0.4);
}
.form-group select.form-control:focus {
  border-color: #6cbcdf;
}
.form-group textarea.form-control {
  height: 150px;
  box-shadow: none;
  border: 1px solid rgba(77, 78, 78, 0.4);
}
.form-group textarea.form-control:focus {
  border-color: #6cbcdf;
}
.form-group textarea.form-control.h60 {
  height: 60px;
}
.form-group textarea.form-control.k-invalid, .form-group textarea.form-control.input-validation-error {
  border-color: #ee3a25;
}
.form-group .month-divider {
  padding: 8px;
}
.form-group.additional-validation span.field-validation-error {
  position: relative;
  float: right;
}

.circle-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  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) {
  .circle-btn {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons@2.png");
    background-size: 305px auto;
  }
}
.circle-btn.user {
  background-position: -5px -30px;
}
.circle-btn.close {
  background-position: -110px -30px;
}
.circle-btn.menu {
  width: 16px;
  height: 14px;
  border: none;
  border-radius: 0px;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/burger.svg");
  background-size: contain;
}
.circle-btn:hover, .circle-btn:focus {
  text-decoration: none;
}

.info-button,
.main-btn {
  display: inline-block;
  border: 1px solid #24A54A;
  font-size: 14px;
  color: #fff;
  padding: 7px 15px 8px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  background: #24A54A;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
.info-button:hover, .info-button:focus,
.main-btn:hover,
.main-btn:focus {
  color: #fff;
  text-decoration: none;
}
.info-button:hover,
.main-btn:hover {
  background: #97c654;
}
.info-button:focus,
.main-btn:focus {
  background: #24A54A;
  border-color: #24A54A;
}
.info-button.disabled:hover, .info-button.disabled:focus,
.main-btn.disabled:hover,
.main-btn.disabled:focus {
  background: #24A54A;
  color: #fff;
}
.info-button.main-btn-transparent,
.main-btn.main-btn-transparent {
  border: 1px solid #24A54A;
  text-transform: capitalize;
  color: #24A54A;
  padding: 7px 15px 8px;
  border-radius: 3px;
  font-weight: 600;
  background: transparent;
}
.info-button.main-btn-transparent:hover, .info-button.main-btn-transparent:focus,
.main-btn.main-btn-transparent:hover,
.main-btn.main-btn-transparent:focus {
  color: #fff;
  text-decoration: none;
}
.info-button.main-btn-transparent:hover,
.main-btn.main-btn-transparent:hover {
  background: #24A54A;
}
.info-button.main-btn-transparent:focus,
.main-btn.main-btn-transparent:focus {
  background: #24A54A;
  border-color: #24A54A;
}
.info-button.main-btn-transparent.disabled,
.main-btn.main-btn-transparent.disabled {
  opacity: 0.6;
}
.info-button.main-btn-transparent.disabled:hover, .info-button.main-btn-transparent.disabled:focus,
.main-btn.main-btn-transparent.disabled:hover,
.main-btn.main-btn-transparent.disabled:focus {
  background: none;
  color: #24A54A;
}
.info-button.main-btn-grey,
.main-btn.main-btn-grey {
  background: rgba(35, 31, 32, 0.2);
  border-color: rgba(35, 31, 32, 0.2);
}
.info-button.main-btn-grey:hover,
.main-btn.main-btn-grey:hover {
  background: #24A54A;
  border-color: #24A54A;
}
.info-button.min-width,
.main-btn.min-width {
  min-width: 160px;
  text-align: center;
}
.info-button.full,
.main-btn.full {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .info-button,
.main-btn {
    width: 100%;
    text-align: center;
  }
}

.simple-link {
  display: inline-block;
  text-transform: uppercase;
  color: #f14a1e;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
.simple-link:hover, .simple-link:focus {
  color: #e72a00;
}

.btn-success {
  font-weight: 600;
  background-color: #8ebb4f;
  border-color: #8ebb4f;
  transition: background 0.25s ease-in-out;
  border-radius: 3px;
}
.btn-success:hover {
  background-color: #97c654;
  border-color: #97c654;
}
.btn-success:focus, .btn-success:active {
  background-color: #24A54A;
  border-color: #24A54A;
}

.btn-orange {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background-color: #faaa22;
  border-color: #faaa22;
  text-transform: uppercase;
  margin: 16px 0;
  padding: 8px 6px;
  transition: background 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .btn-orange {
    padding-left: 12px;
    padding-right: 12px;
    margin: 20px 0 40px;
  }
}
.btn-orange span {
  display: inline-block;
  vertical-align: middle;
}
.btn-orange .btn-icon {
  width: 24px;
  height: 18px;
  background-repeat: no-repeat;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/message.svg");
  background-size: contain;
}
.btn-orange .separator {
  width: 1px;
  height: 24px;
  background-color: #ea9f1f;
  margin: 0 4px 0 6px;
}
@media (min-width: 768px) {
  .btn-orange .separator {
    margin: 0 6px 0 9px;
  }
}
.btn-orange:hover {
  color: #fff;
  background-color: #ffbd4d;
  border-color: #ffbd4d;
}
.btn-orange:focus, .btn-orange:active {
  color: #fff;
  background-color: #faaa22;
  border-color: #faaa22;
}

input.main-btn {
  line-height: 20px;
  width: auto;
  height: auto;
}
input.main-btn.full {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  input.main-btn {
    width: 100%;
    text-align: center;
  }
}

.banner {
  margin-bottom: 45px;
  text-align: center;
  overflow: hidden;
}

.adslot {
  margin: 0 auto;
}

.ad-mobile-bottom {
  bottom: 0;
  left: 50%;
  margin: 0 auto 0 -160px;
  width: 320px;
  position: fixed;
  z-index: 100000;
}

.main-title {
  color: #231F20;
  font-size: 20px;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.2;
  margin: 0 0 8px;
  padding: 0 0 10px 0;
  text-transform: capitalize;
  position: relative;
  border-bottom: 1px solid rgba(77, 78, 78, 0.1);
  /*&:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: $dividers-color;
    height: 1px;
  }*/
  /*span {
    background: #fff;
    position: relative;
    display: inline-block;
  }*/
}
.main-title.noborder {
  border: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .main-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 14px;
    padding: 0 0 4px 0;
  }
}

.main-title-desc {
  font-size: 16px;
  margin-top: 9px;
}

.sub-title {
  font-size: 15px;
  margin: 0 0 16px;
  padding-bottom: 6px;
  text-transform: uppercase;
  color: #464646;
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  border-bottom: 1px solid rgba(77, 78, 78, 0.1);
}
.sub-title.noborder {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 992px) {
  .sub-title {
    font-size: 20px;
    margin-bottom: 23px;
  }
}

.post-title {
  color: #231F20;
  margin: 0 0 15px;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.33;
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(77, 78, 78, 0.1);
}
@media (min-width: 768px) {
  .post-title {
    font-size: 30px;
  }
}

.media-list {
  margin: 0 0 12px;
  padding: 0;
  list-style-type: none;
}
.media-list-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  line-height: 1;
}
.media-list-item .post-type-label {
  color: #808080;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8em;
  font-weight: 600;
  line-height: 1em;
  margin: 0 0 0.5em;
}
.media-list-title {
  font-size: 14px;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.media-list-title a:hover, .media-list-title a:focus {
  text-decoration: underline;
}
.media-list-title small {
  font-size: inherit;
}
.media-list .vertical-center-block .media-list-title {
  white-space: normal;
}
.media-list-text {
  font-size: 14px;
  color: #808080;
  margin: 0;
}
.media-list-location {
  font-size: 14px;
  color: #231F20;
  margin: 2px 0 4px;
  padding-left: 19px;
  position: relative;
  line-height: 1.1;
}
.media-list-location:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/location.svg");
}
.media-list-location a {
  color: rgba(35, 31, 32, 0.8);
  text-decoration: none;
}
.media-list-location a:hover {
  text-decoration: underline;
}

.list-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  font-size: 13px;
}
.list-links li {
  display: inline-block;
  position: relative;
  margin: 0 0 0 7px;
  padding: 0 0 0 11px;
}
.list-links li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 16px;
  background: #c6c6c6;
}
.list-links li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.list-links li:first-child:before {
  display: none;
}

.vertical-center-block {
  display: table;
}
.vertical-center-block .vertical-center-block-item {
  display: table-cell;
  vertical-align: middle;
  padding-left: 7px;
}
.vertical-center-block .vertical-center-block-item:first-child {
  padding-left: 0;
}
.vertical-center-block .vertical-center-block-item img {
  max-width: none;
}
.vertical-center-block .vertical-center-block-item-fixed {
  width: 72px;
  height: 72px;
  overflow: hidden;
}

.meta {
  margin: 0;
  color: #808080;
  line-height: 1.2;
}

.tag-cloud {
  margin: 0 0 12px;
  padding: 0;
  list-style-type: none;
  font-weight: 600;
  font-size: 12px;
}
.tag-cloud-item {
  display: inline-block;
  margin-bottom: 0px;
  margin-right: 6px;
}
.tag-cloud-item a {
  display: block;
  padding: 4px 8px;
  border-radius: 3px;
  text-decoration: none;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  background: rgba(77, 78, 78, 0.4);
  text-decoration: none;
  color: #fff;
}
.tag-cloud-item a:hover {
  color: #fff;
  background: rgba(77, 78, 78, 0.3);
}

.tag-nav {
  border-top: 1px solid #e5e5e5;
  padding-top: 11px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .tag-nav {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
  }
}

.sub-nav {
  margin: 0 0 2px;
  padding: 0;
  list-style-type: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.sub-nav-item {
  display: inline-block;
  margin-bottom: 10px;
}
.sub-nav-link {
  display: block;
  padding: 9px 30px 8px;
  border-radius: 100px;
  text-decoration: none;
  color: #9a9a9a;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
.sub-nav-link:hover, .sub-nav-link:focus, .sub-nav-link.active {
  background: #f2f2f2;
  text-decoration: none;
  color: #4d6230;
}
.sub-nav.type-2 .sub-nav-link {
  font-size: 12px;
  font-weight: 400;
  padding: 10px 32px 8px;
}
.sub-nav.type-2 .sub-nav-link strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.sub-nav.type-2 .sub-nav-link:hover {
  text-decoration: none;
}

.sub-nav-mobile {
  max-width: 400px;
  margin: 0 auto 16px;
}
.sub-nav-mobile .btn-group {
  width: 100%;
}
.sub-nav-mobile .btn-group.open .btn {
  background: #989898;
  border-color: #989898;
  color: #fff;
  box-shadow: none;
}
.sub-nav-mobile .btn-group.open .btn:hover, .sub-nav-mobile .btn-group.open .btn:focus {
  background: #989898;
  border-color: #989898;
  color: #fff;
  box-shadow: none;
}
.sub-nav-mobile .btn-group.open .btn:hover:after, .sub-nav-mobile .btn-group.open .btn:focus:after {
  border-top-color: #fff;
}
.sub-nav-mobile .label-nav {
  color: #231F20;
  font-weight: 600;
  margin-bottom: 3px;
}
.sub-nav-mobile .btn {
  width: 100%;
  border-color: rgba(77, 78, 78, 0.3);
  padding: 7px 9px 9px 7px;
  color: #231F20;
  font-size: 14px;
  text-align: left;
  border-radius: 3px;
  position: relative;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
.sub-nav-mobile .btn:hover, .sub-nav-mobile .btn:focus {
  background: #989898;
  border-color: #989898;
  color: #fff;
  box-shadow: none;
}
.sub-nav-mobile .btn:hover:after, .sub-nav-mobile .btn:focus:after {
  border-top-color: #fff;
}
.sub-nav-mobile .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #989898;
  margin-top: -2px;
}
.sub-nav-mobile .dropdown-menu {
  left: 0px;
  right: 0px;
  margin: 2px 0 0;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.8);
}
.sub-nav-mobile .dropdown-menu:after {
  content: "";
  position: absolute;
  top: -5px;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.8);
}
.sub-nav-mobile .dropdown-menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sub-nav-mobile .dropdown-menu li:first-child {
  border: none;
}
.sub-nav-mobile .dropdown-menu a {
  padding: 10px 8px;
  color: #fff;
  text-decoration: none;
}
.sub-nav-mobile .dropdown-menu a:focus, .sub-nav-mobile .dropdown-menu a:hover {
  color: #d9d9d9;
  background: none;
}

.image-title {
  margin: 0 0 25px;
  position: relative;
}
.image-title-ill {
  position: relative;
}
.image-title-ill:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}
.image-title-ill img {
  width: 100%;
}
.image-title-info {
  margin: 25px 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 992px) {
  .image-title-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    border: none;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.333;
  }
  .image-title-info:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -5px;
  }
}
@media (min-width: 992px) {
  .image-title-info-wrap {
    max-width: 1180px;
    padding: 0 20px;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
  }
}
@media (min-width: 1200px) {
  .image-title-info-wrap {
    font-size: 29px;
  }
}
.image-title-info-title {
  text-transform: uppercase;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .image-title-info-title {
    color: #fff;
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .image-title-info-title {
    font-size: 43px;
  }
}
.image-title-info-text {
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .image-title-info-text {
    margin: 0;
  }
}

.intro {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .intro {
    margin-bottom: 45px;
  }
}
.intro-text {
  padding-right: 10px;
}
.intro-divider {
  position: relative;
}
@media (min-width: 992px) {
  .intro-divider:after {
    content: "";
    width: 1px;
    position: absolute;
    top: -5px;
    bottom: 11px;
    right: 5px;
    background: #293600;
  }
}
.intro p {
  margin-top: 0;
}

.events-list {
  margin-bottom: 15px;
}
.events-list-title {
  font-size: 28px;
  margin: 0 0 15px;
}
.events-list-box {
  padding: 20px;
  font-size: 14px;
  font-weight: bold;
}
.events-list-box-ill {
  margin: -20px -20px 15px;
}
.events-list-box-ill img {
  width: 100%;
}
.events-list-box-title {
  font-size: 18px;
  margin: 0;
}
.events-list-box-button {
  display: block;
  border: 1px solid #00a9e2;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 10px 7px;
  border-radius: 3px;
  margin-top: 15px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}
.events-list-box-button:hover {
  background: #00a9e2;
  color: #fff;
  text-decoration: none;
}
.events-list-box-button.pastevent {
  color: #808080 !important;
  border-color: #808080 !important;
}
.events-list-box-button.pastevent:hover {
  background: #808080 !important;
  color: #fff !important;
  text-decoration: none;
}
.events-list-box p {
  margin: 0;
}

.load-more {
  border-top: 1px solid #d9d9d9;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
}
@media (min-width: 992px) {
  .load-more {
    margin-bottom: 30px;
  }
}
.load-more-link {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding-left: 25px;
  position: relative;
  text-decoration: none;
}
.load-more-link:hover {
  text-decoration: underline;
}
.load-more-link:before {
  content: "";
  width: 16px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -8px 0 0;
  background-repeat: no-repeat;
  background-position: -286px -30px;
  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) {
  .load-more-link:before {
    background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/icons@2.png");
    background-size: 305px auto;
  }
}

.register-header {
  position: relative;
}
.register-header-ill img {
  width: 100%;
}
.register-header-info {
  background: #000;
  padding: 15px 0 20px;
}
@media (min-width: 992px) {
  .register-header-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
  }
}
.register-header-title {
  color: #fff;
  margin: 0;
  font-weight: bold;
  font-size: 38px;
}
@media (min-width: 992px) {
  .register-header-title {
    font-size: 42px;
  }
}
.register-header-text {
  color: #fff;
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  line-height: 1.3;
  font-family: "Noto Sans", sans-serif;
}
@media (min-width: 992px) {
  .register-header-text {
    font-size: 30px;
  }
}
.register-header-holder {
  color: #fff;
}
@media (min-width: 992px) {
  .register-header-holder {
    display: table;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .register-header-main {
    display: table-cell;
    width: 60%;
    vertical-align: middle;
  }
}
.register-header-secondary {
  padding-top: 25px;
}
@media (min-width: 992px) {
  .register-header-secondary {
    padding-top: 0;
    display: table-cell;
    width: 40%;
    vertical-align: middle;
    text-align: right;
  }
}
.register-header-button {
  display: inline-block;
  text-align: center;
  background: #7ea648;
  text-transform: uppercase;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  height: 50px;
  padding: 10px 52px 0;
  border-radius: 3px;
  margin: 0 0 4px;
  text-decoration: none;
}
.register-header-button:hover {
  text-decoration: none;
  color: #fff;
}
.register-header-notes {
  margin: 0;
}

.inner-nav {
  box-shadow: 0 4px 4px rgba(26, 26, 26, 0.15);
  background: #fff;
  z-index: 1;
  font-family: "Noto Sans", sans-serif;
}
.inner-nav.is_stuck .inner-nav-list-register-button {
  display: inline-block;
}
.inner-nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  font-size: 0;
}
.inner-nav-list-item {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  float: left;
}
@media (min-width: 992px) {
  .inner-nav-list-item {
    float: none;
  }
}
@media (min-width: 1200px) {
  .inner-nav-list-item {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.inner-nav-list-item:before {
  content: "";
  width: 1px;
  height: 30px;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -15px 0 0;
}
.inner-nav-list-item:first-child:before {
  display: none;
}
.inner-nav-list-item-more {
  float: right;
  margin: 15px 0 0;
}
.inner-nav-list-item-more:before {
  display: none;
}
.inner-nav-list-item-more .btn-group {
  font-size: 16px;
  text-transform: uppercase;
}
.inner-nav-list-item-more .btn-group .btn {
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  font-size: 16px;
  background: #d9d9d9;
  box-shadow: none;
  color: #231F20;
  padding: 0 10px 0 12px;
  margin: 0;
  border: none;
  border-radius: 2px;
  font-weight: bold;
}
.inner-nav-list-item-more .btn-group .btn .caret {
  margin-left: 5px;
}
.inner-nav-list-item-more .btn-group.open .dropdown-toggle {
  background: #ccc;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.inner-nav-list-item-more .btn-group .dropdown-menu {
  margin: 0;
  left: auto;
  right: 0;
  text-align: left;
}
.inner-nav-list-item-more .btn-group .dropdown-menu a {
  text-decoration: none;
}
.inner-nav-list-item-more .btn-group .dropdown-menu a:hover, .inner-nav-list-item-more .btn-group .dropdown-menu a.active {
  color: #7ea648;
  background: #f2f2f2;
}
.inner-nav-list-register-button {
  display: none;
}
.inner-nav-list-link, .inner-nav-list-button {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .inner-nav-list-link, .inner-nav-list-button {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
  }
}
.inner-nav-list-link {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #231F20;
  font-weight: bold;
  padding: 0 8px;
  text-decoration: none;
}
.inner-nav-list-link:focus {
  border: none;
  color: #231F20;
  text-decoration: none;
}
.inner-nav-list-link:hover, .inner-nav-list-link.active, .inner-nav-list-link:focus.active {
  text-decoration: none;
  border-bottom: 2px solid #7ea648;
  color: #7ea648;
}
.inner-nav-list-button {
  height: 40px;
  margin: 0;
  padding: 8px 15px 0;
}
@media (min-width: 1200px) {
  .inner-nav-list-button {
    height: 45px;
  }
}

/*.sponsors,
%sponsors {
  margin: 15px 0 30px;
  padding: 0;
  list-style-type: none;
  vertical-align: middle;
  text-align: center;

  @include respond-to($tablet-breakpoint) {
    text-align: left;
  }

  li {
    display: block;
    margin: 20px 0 0 0;
    vertical-align: middle;

    @include respond-to($tablet-breakpoint) {
      margin-left: -5px;
      padding: 5px 25px 15px 25px;
      display: inline-block;

      &:first-child {
        margin-left: 0;
      }
    }

  }
}*/
.sponsors {
  margin: 0;
  padding: 0;
  list-style-type: none;
  vertical-align: middle;
  text-align: center;
}
.sponsors li {
  display: inline-block;
  margin: 0;
  padding: 5px 25px 15px 25px;
}
@media (min-width: 992px) {
  .sponsors li {
    display: inline-block;
    margin-right: -4px;
  }
  .sponsors li:first-child {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sponsors li {
    width: 40% !important;
  }
}
.sponsors li img {
  max-width: 100%;
  max-height: 100%;
}

.map {
  width: 100%;
  position: relative;
  padding: 0;
}
@media (min-width: 992px) {
  .map {
    height: 300px;
  }
}
.map-holder {
  height: 300px;
}
@media (min-width: 992px) {
  .map-holder {
    height: 100%;
    float: right;
    height: 100%;
    width: 60%;
  }
}
.map-info {
  padding: 15px;
  background: #000;
  color: #fff;
}
@media (min-width: 992px) {
  .map-info {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background: rgba(0, 0, 0, 0.75);
    padding: 25px 30px 90px;
  }
}
.map-info p {
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .map-info-notes {
    position: absolute;
    bottom: 5px;
    left: 30px;
    right: 30px;
  }
}
.map-info-main {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .map-info-main {
    margin-bottom: 0;
  }
}
.map-info-main h3 {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Noto Sans", sans-serif;
}
.map-info a {
  text-decoration: underline;
}

.agenda {
  padding: 5px 0 0;
}
.agenda .tag-nav {
  margin-bottom: 5px;
}
.agenda .nav-tabs {
  margin: 0;
  padding: 11px 0;
  list-style-type: none;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 5px;
}
.agenda .nav-tabs li {
  margin: 0;
  width: 100%;
}
.agenda .nav-tabs li a {
  margin: 0;
  line-height: normal;
  border: none;
  border-radius: 100px;
  padding: 10px 32px 8px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  background-color: #7ea648;
}
.agenda .nav-tabs li a:hover, .agenda .nav-tabs li a:focus {
  background: none;
  color: #b8b8b8;
  outline: none;
  border: none;
  text-decoration: none;
}
.agenda .nav-tabs li a strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
@media (min-width: 767px) {
  .agenda .nav-tabs li a {
    border-radius: 100px;
    background-color: inherit;
    color: #9a9a9a;
  }
}
.agenda .nav-tabs li.active a {
  background: #f2f2f2;
  color: #4d6230;
}
@media (min-width: 767px) {
  .agenda .nav-tabs li {
    width: inherit;
  }
}
.agenda .agenda-print {
  text-align: right;
}
.agenda .alert {
  padding: 15px 0;
}
.agenda .alert a {
  font-weight: 600;
  color: #24A54A;
}
.agenda .alert a strong {
  font-weight: 800;
}
.agenda .timeline {
  margin: 0;
  padding: 15px 0 0;
  list-style-type: none;
  max-width: 700px;
}
.agenda .timeline-item {
  padding: 11px 0 11px 100px;
}
.agenda .timeline-item::after {
  clear: both;
  content: "";
  display: table;
}
.agenda .timeline-time {
  float: left;
  width: 80px;
  margin-left: -100px;
  font-size: 15px;
  position: relative;
  line-height: 1.33;
}
.agenda .timeline-time:after {
  content: "";
  width: 2px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  background: #d9d9d9;
}
.agenda .timeline-time p {
  margin: 0;
}
.agenda .timeline-description h4 {
  margin: 0;
  line-height: 1.25;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}
.agenda .timeline-description p {
  margin: 0;
}
.agenda .panel-default {
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.agenda .panel-heading {
  background: none;
  padding: 0;
  border-radius: 0;
}
.agenda .panel-title {
  line-height: 1.25;
}
.agenda .panel-title .accordion-toggle {
  background: #7ea648;
  color: #fff;
  margin: 0;
  line-height: normal;
  border: none;
  border-radius: 0;
  padding: 15px 20px 12px;
  display: block;
  text-transform: uppercase;
}
.agenda .panel-title .accordion-toggle:hover, .agenda .panel-title .accordion-toggle:focus {
  outline: none;
  text-decoration: none;
}
.agenda .panel-title .accordion-toggle strong {
  display: block;
  font-size: 20px;
}
.agenda .panel-title .accordion-toggle.collapsed {
  color: #b8b8b8;
  background: none;
}
.agenda .panel-body {
  border: none;
  padding: 0;
  border: none !important;
}
@media (max-width: 767px) {
  .agenda {
    padding: 0;
  }
  .agenda .agenda-print {
    text-align: left;
    margin-top: 10px;
  }
  .agenda .tag-nav {
    padding-top: 0;
    border: 0;
  }
}

.slider {
  padding: 5px 0 0;
  position: relative;
}
.slider.slider-popup {
  padding-top: 0;
}
.slider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.slider .slides::after {
  clear: both;
  content: "";
  display: table;
}
.slider .slides li {
  margin: 0 20px 0 0;
}
.slider .slides li.slider-popup-li {
  margin-right: 0;
}
.slider .slides li.slider-popup-li .slider-bio {
  padding: 20px;
}
.slider .slides li.open-bio {
  margin-bottom: 30px;
  position: relative;
}
.slider .slides li.open-bio .slider-box:after {
  position: absolute;
  left: 50%;
  bottom: -31px;
  content: "";
  margin-left: -10px;
  border: 10px solid transparent;
  border-bottom-color: #fcfcfc;
}
.slider .slides .slider-bio-text p {
  line-height: 1.5;
}
.slider-box {
  margin: 0px;
  position: relative;
  display: block;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
}
.slider-box.has-bio {
  cursor: pointer;
}
.slider-box img {
  width: 100%;
}
.slider-info {
  min-height: 70px;
  color: rgba(57, 59, 59, 0.6);
  font-size: 16px;
  line-height: 1.38;
  padding: 14px 8px 10px 8px;
}
@media (max-width: 767px) {
  .slider-info {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(77, 78, 78, 0.8);
  }
}
.slider-info h3 {
  color: #393b3b;
  font-family: "Open Sans", sans-serif;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .slider-info h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.29;
  }
}
.slider-info p {
  margin: 0 0 6px 0;
  min-height: 50px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .slider-info p {
    min-height: 36px;
    border: 0;
    padding-bottom: 0;
    margin: 0;
  }
}
.slider-more {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  color: #24A54A;
  text-decoration: none;
}
.slider-more:hover, .slider-more:focus {
  color: #24A54A;
}
@media (max-width: 767px) {
  .slider-more {
    display: none;
  }
}
.slider-bio {
  display: none;
  background: #fcfcfc;
  padding: 40px 20px 20px 6px;
  position: relative;
}
.slider-bio::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 992px) {
  .slider-bio {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.slider-bio-ill {
  max-width: 224px;
  margin: 0 auto 15px;
}
@media (min-width: 992px) {
  .slider-bio-ill {
    float: left;
    margin: 0 20px 0 0;
  }
}
.slider-bio-ill img {
  width: 100%;
}
.slider-bio-text {
  overflow: hidden;
}
.slider-bio-text header {
  margin: 0 0 24px;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .slider-bio-text header {
    margin-bottom: 10px;
  }
}
.slider-bio-text header p {
  font-size: 18px;
  line-height: 1.22;
  color: rgba(57, 59, 59, 0.6);
}
@media (max-width: 767px) {
  .slider-bio-text header p {
    font-size: 16px;
    line-height: 1.38;
  }
}
.slider-bio-text h3 {
  font-family: "Open Sans", sans-serif;
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 600;
  color: #393b3b;
}
@media (max-width: 767px) {
  .slider-bio-text h3 {
    margin-bottom: 0;
  }
}
.slider-bio-text h4 {
  margin: 0;
  font-size: 20px;
  color: #000;
}
@media (min-width: 992px) {
  .slider-bio-text h4 {
    font-size: 24px;
  }
}
.slider-bio-text .social-media {
  margin-bottom: 14px;
}
.slider-bio-text .social-media > span[class^=social-icon-] {
  position: relative;
  padding-left: 30px;
  margin-right: 32px;
}
@media (max-width: 767px) {
  .slider-bio-text .social-media > span[class^=social-icon-] {
    display: block;
    margin-bottom: 10px;
  }
}
.slider-bio-text .social-media > span[class^=social-icon-]:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 20px;
  margin-top: -10px;
}
.slider-bio-text .social-media > span[class^=social-icon-]:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 16px;
  background: #c6c6c6;
  margin-top: -8px;
}
@media (max-width: 767px) {
  .slider-bio-text .social-media > span[class^=social-icon-]:after {
    display: none;
  }
}
.slider-bio-text .social-media > span[class^=social-icon-]:last-child:after {
  display: none;
}
.slider-bio-text .social-icon-mail:before {
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/message_grey.svg") no-repeat center center;
}
.slider-bio-text .social-icon-phone:before {
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/call.svg") no-repeat center center;
}
@media (max-width: 767px) {
  .slider-bio-text .brand-contact-social {
    text-align: center;
  }
}
.slider-bio .close-bio {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0.75;
  transition: opacity 0.25s ease-in-out;
}
.slider-bio .close-bio:after, .slider-bio .close-bio:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 66%;
  height: 2px;
  background: #979898;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slider-bio .close-bio:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slider-bio .close-bio:hover {
  opacity: 1;
}
.slider-bio.show-bio {
  display: block;
}
.slider .event-rows {
  position: relative;
}
.slider .event-rows .slider-bio {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .slider .event-rows .slider-bio {
    padding-bottom: 10px;
  }
}
.slider .event-rows .slides {
  margin-left: -10px;
  margin-right: -10px;
  font-size: 0;
}
@media (max-width: 767px) {
  .slider .event-rows .slides {
    margin-left: -4px;
    margin-right: -4px;
  }
}
.slider .event-rows .slides li {
  width: 50%;
  margin: 0;
  padding: 0 4px 8px;
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
}
@media (min-width: 768px) {
  .slider .event-rows .slides li {
    width: 50%;
  }
}
@media (min-width: 860px) {
  .slider .event-rows .slides li {
    width: 33.333%;
  }
}
@media (min-width: 1024px) {
  .slider .event-rows .slides li {
    width: 25%;
    padding: 0 10px 20px;
  }
}
.slider .event-rows .slides li.open-bio {
  position: static;
}
.slider .flexslider {
  position: relative;
}
.slider.slider-tallimages .flex-direction-nav .flex-prev,
.slider.slider-tallimages .flex-direction-nav .flex-next {
  top: 110px;
}
.slider .flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.slider .flex-direction-nav .flex-prev,
.slider .flex-direction-nav .flex-next {
  border: 5px solid #fff;
  position: absolute;
  top: 90px;
  width: 40px;
  height: 40px;
  background: #7ea648;
  box-shadow: 0 0 10px white;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
}
.slider .flex-direction-nav .flex-prev:before,
.slider .flex-direction-nav .flex-next:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-top: -4px;
}
.slider .flex-direction-nav .flex-prev {
  left: 10px;
}
.slider .flex-direction-nav .flex-prev:before {
  margin-left: -3px;
  border-right: 5px solid #fff;
}
.slider .flex-direction-nav .flex-next {
  right: 10px;
}
.slider .flex-direction-nav .flex-next:before {
  margin-left: -2px;
  border-left: 5px solid #fff;
}
.slider .flex-direction-nav .flex-disabled {
  display: none;
}

.page-classifieds {
  /* Jobs Tables */
  /*Jobs stuff*/
  /* Classifieds Callout Ad */
  /* Jobs Callout Ad */
}
.page-classifieds h2 {
  font-size: 14px;
  margin: 2px 0px 0px 4px;
}
.page-classifieds h2 a:hover {
  color: #0099cc;
}
.page-classifieds .featureads {
  margin: 20px 5px 0px 5px;
}
.page-classifieds .featureads-img {
  float: left;
  width: 280px;
  margin-bottom: 5px;
}
.page-classifieds .featureads-img h2 {
  margin-top: 0;
}
.page-classifieds .featureads-img-jobs {
  margin: 10px 0;
}
.page-classifieds .featureads-img-jobs h2 {
  margin: 0;
}
.page-classifieds .featureads-link {
  float: right;
}
.page-classifieds .featureads-link a {
  font-size: 0.85em;
}
.page-classifieds .MasterTable_JobGrid .GridHeader_JobGrid,
.page-classifieds .MasterTable_JobGrid .ResizeHeader_JobGrid {
  border-bottom: 1px solid #eeeeee !important;
  color: #555555 !important;
}
.page-classifieds .MasterTable_JobGrid .GridHeader_JobGrid,
.page-classifieds .MasterTable_JobGrid .ResizeHeader_JobGrid,
.page-classifieds .MasterTable_JobGrid th,
.page-classifieds .MasterTable_JobGrid td {
  padding-left: 0 !important;
}
.page-classifieds .class-row {
  width: 100%;
}
.page-classifieds .row-left {
  width: 49%;
  float: left;
}
.page-classifieds .row-right {
  width: 49%;
  float: right;
}
.page-classifieds .box h2,
.page-classifieds .featureads h2 {
  text-decoration: none;
}
.page-classifieds .box h2 a,
.page-classifieds .featureads h2 a {
  letter-spacing: 0;
  color: #333333;
  text-decoration: none;
  margin-top: 4px;
  margin-bottom: 8px;
  margin-left: 3px;
}
.page-classifieds .box h2.section-title,
.page-classifieds .featureads h2.section-title {
  color: #333333;
  font-size: 1.6em;
  margin: 0 0 0.25em;
}
.page-classifieds .box h2.section-title a,
.page-classifieds .featureads h2.section-title a {
  border-bottom: 1px dashed #333333;
  color: #333333;
}
.page-classifieds .box {
  margin-bottom: 20px !important;
  min-height: 0px !important;
}
.page-classifieds .class-row {
  float: left;
  width: 100%;
}
.page-classifieds .smalltext {
  margin-left: 5px;
}
.page-classifieds .smalltext p {
  font-size: 10px;
  line-height: 13px;
}
.page-classifieds .bodytext {
  margin: 8px 5px 5px 5px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
}
.page-classifieds .bodytext ul {
  list-style-type: circle !important;
  list-style-position: inside !important;
  margin-left: 15px !important;
  font-size: 11px !important;
  font-family: Verdana, Arial, Helvetica, sans-serif !important;
}
.page-classifieds h2.connecttalent {
  font-size: 20px !important;
  margin-top: 10px;
}
.page-classifieds .leftside-candidate {
  width: 420px;
  float: left;
  border-right: solid 1px #dddddd;
  min-height: 275px;
  margin-bottom: 10px;
}
.page-classifieds .rightside-candidate {
  width: 200px;
  float: right;
  margin-bottom: 10px;
}
.page-classifieds ul.candidatelist {
  margin: 8px 0px 0px 15px;
}
.page-classifieds ul.candidatelist li {
  font-family: Verdana, Arial, Helvetica, sans-serif !important;
}
.page-classifieds h3.pricead {
  font-weight: normal;
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
}
.page-classifieds img.post-ad-button {
  margin: 10px auto 0px auto;
}
.page-classifieds .gradientbox p {
  color: #333333;
}
.page-classifieds table.jobsnapshot {
  width: 250px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.page-classifieds table.jobsnapshot tr td {
  padding-top: 8px;
  vertical-align: top;
}
.page-classifieds .indentedpanel {
  margin-left: 15px;
}
.page-classifieds .nextstepbutton {
  text-align: center;
  float: right;
  margin: 10px 10px 10px 0px;
}
.page-classifieds h2.subheading {
  float: left;
  width: 600px;
  line-height: 25px;
  margin: 10px 0 20px 10px;
}
.page-classifieds a.subeditbutton {
  float: right;
  width: 50px;
  font-size: 12px;
  line-height: 25px;
}
.page-classifieds div.snapshot {
  margin-top: 1.5em;
  min-height: 250px;
}
.page-classifieds .snapshot .btn {
  margin: 0.5em 0;
}
.page-classifieds div.snapshot-left h2 {
  font-family: "alternate-gothic-no-2-d", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6em;
}
.page-classifieds div.snapshot-left table tr td {
  padding-bottom: 10px;
  padding-right: 10px;
}
.page-classifieds div.snapshot-right {
  margin-bottom: 10px;
}
.page-classifieds div.jobinformation table {
  margin-left: 10px;
}
.page-classifieds div.jobinformation table tr td {
  padding: 2px;
}
.page-classifieds div.contactinfo {
  margin-top: 10px;
}
.page-classifieds div.contactinfo table {
  margin-left: 10px;
}
.page-classifieds div.employernote {
  margin-left: 10px;
}
.page-classifieds div.resumeinclude {
  margin-top: 10px;
  margin-left: 10px;
}
.page-classifieds div.employercontactsubmit a {
  min-width: 100px;
}
.page-classifieds div.resumeplug {
  margin-bottom: 10px;
}
.page-classifieds div.resumeplug h2 {
  margin-top: 8px !important;
}
.page-classifieds div.resumeplug p {
  color: #333333;
  margin-left: 5px;
  margin-bottom: 8px;
}
.page-classifieds div.resumeplug ul {
  margin-left: 20px;
}
.page-classifieds a.resumepostlink {
  min-width: 150px;
  text-align: center;
  margin: 10px auto 10px 250px;
}
.page-classifieds a.jc {
  text-decoration: underline !important;
}
.page-classifieds div.adcontent ul {
  margin-left: 30px;
}
.page-classifieds .adcontent img {
  max-width: 100%;
}
.page-classifieds .newsstyle {
  font-size: 0.9em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-classifieds .newsstyle li:first-child > a {
  border-top: 0;
}
.page-classifieds .newsstyle li > a {
  border-top: 1px solid #eeeeee;
  display: block;
  padding: 0.4em 0;
}
.page-classifieds .post-ad {
  display: block;
  margin: 0 0 2em;
  text-align: center;
}
.page-classifieds .post-ad a {
  display: block;
  outline: 0;
}
.page-classifieds .post-ad h3,
.page-classifieds .post-ad .post-text {
  margin: 0;
}
.page-classifieds .post-ad h3 {
  font-family: "alternate-gothic-no-2-d", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 1em;
  padding-top: 0.1em;
  text-transform: uppercase;
}
.page-classifieds .post-ad h3 img {
  vertical-align: top;
  margin-right: 10px;
}
.page-classifieds .post-ad .post-text {
  color: #DD003C;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.8em;
}
.page-classifieds .jobs-callout-ad {
  margin: 20px auto;
  width: 595px;
  height: 161px;
  background-image: url("https://dg6qn11ynnp6a.cloudfront.net/Bg_Images/jobs-middle.png");
  background-repeat: no-repeat;
}
.page-classifieds .jobs-callout-ad.logged-in .info-container {
  padding-top: 18px;
}
.page-classifieds .jobs-callout-ad .info-container {
  text-align: center;
  width: 380px;
  padding: 8px 0 0;
}
.page-classifieds h4.callout {
  font-size: 20px;
  color: #333333;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.page-classifieds h5.callout-sub {
  font-size: 14px;
  color: #333333;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.page-classifieds ul.jobreasons,
.page-classifieds ul.jobreasons li ul.jobreasons li a {
  font-family: Verdana, Arial, Helvetica, sans-serif !important;
}
.page-classifieds ul.jobreasons {
  margin: 3px 0 0;
  padding: 0px;
}
.page-classifieds ul.jobreasons li {
  font-size: 0.9em;
  list-style: disc inside none;
}
.page-classifieds ul.jobreasons li a {
  text-decoration: underline;
}
.page-classifieds ul.jobreasons li a:hover {
  text-decoration: underline;
}
.page-classifieds .jobs-callout-ad .signupbutton {
  margin-top: 7px;
}
.page-classifieds .send-to-friend {
  border-color: #cccccc;
  border-style: solid;
  border-width: 1px 0;
  font-weight: bold;
  margin: 0 0 1em;
  padding: 0.5em 0;
  text-align: center;
}

/* /.page-classifieds */
.section-video {
  margin-top: 18px;
}

.post-slider {
  margin: 0 0 20px;
  position: relative;
}
.post-slider.hp-video-slider header {
  height: 66px;
}
.post-slider.hp-video-slider .slides li .post figure {
  height: 137px;
}
.post-slider.brand-video-slider header {
  height: 46px;
}
@media (min-width: 992px) {
  .post-slider {
    margin: 0 0 26px;
  }
}
.post-slider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.post-slider .slides::after {
  clear: both;
  content: "";
  display: table;
}
.post-slider .slides li {
  float: left;
  width: 263px;
}
.post-slider .slides li .post {
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0 20px 0 0;
  /*
  @include respond-to('max-width', $tablet) {

  	.featured-image {
  		float: none;
  		max-width: none;
  		width: 100%;
  	}

  	.post-header {
  		margin-left: 0;
  	}
  } // $tablet
  */
}
.post-slider .slides li .post figure {
  margin: 0;
  position: relative;
}
.post-slider .slides li .post figure {
  height: 210px;
}
.post-slider .slides li .post figure,
.post-slider .slides li .post figure img {
  float: none;
  max-height: none;
  max-width: none;
  width: 100%;
}
.post-slider .slides li .post figure .play-overlay {
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  color: #8ebb4f;
  left: 0;
  padding: 0.5em 0.7em 0.3em;
  position: absolute;
  text-align: center;
}
.post-slider .slides li .post .post-info {
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 10px 15px 12px;
}
@media (min-width: 992px) {
  .post-slider .slides li .post .post-info {
    padding-left: 7px;
    padding-right: 7px;
  }
}
.post-slider .slides li .post header {
  float: none;
  padding: 0;
  width: auto;
}
.post-slider .slides li .post header h2, .post-slider .slides li .post header h3 {
  font-weight: 600;
  height: 3.6em;
  margin: 0;
  overflow: hidden;
}
.post-slider .slides li .post header h4 {
  color: #231F20;
  font-size: 14px;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 6px;
}
.post-slider .slides li .post header h4 a {
  color: #231F20;
}
.post-slider .slides li .post footer {
  font-size: 12px;
}
.post-slider .slides li .post footer .post-meta {
  font-size: 12px;
  color: #231F20;
  margin-bottom: 0;
}
.post-slider .flex-direction-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.post-slider .flex-direction-nav .flex-prev,
.post-slider .flex-direction-nav .flex-next {
  background: rgba(77, 78, 78, 0.35);
  border: 0;
  box-shadow: 0 0 10px white;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 50px;
}
.post-slider .flex-direction-nav .flex-prev::before,
.post-slider .flex-direction-nav .flex-next::before {
  content: "";
  height: 32px;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  position: absolute;
  top: 50%;
  width: 32px;
  background-repeat: no-repeat;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/slider-arrow.svg");
  background-size: contain;
}
.post-slider .flex-direction-nav .flex-prev {
  left: 0;
}
.post-slider .flex-direction-nav .flex-prev::before {
  transform: rotateY(180deg);
}
.post-slider .flex-direction-nav .flex-next {
  right: 0;
}
.post-slider .flex-direction-nav .flex-disabled {
  display: none;
}

.companies-slider {
  margin: 0;
  position: relative;
}
.companies-slider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.companies-slider .slides::after {
  clear: both;
  content: "";
  display: table;
}
.companies-slider .slides li {
  float: left;
  width: 100%;
}
.companies-slider .slides li .social-item {
  width: auto;
  display: inline-block;
}
.companies-slider .flex-control-nav {
  margin: 0;
  padding: 0;
  text-align: center;
  height: 4px;
}
.companies-slider .flex-control-nav li {
  display: inline-block;
  margin: 0 6px;
}
.companies-slider .flex-control-nav li a {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  cursor: pointer;
  text-indent: -9999px;
  background-color: rgba(77, 78, 78, 0.26);
}
.companies-slider .flex-control-nav li a:hover, .companies-slider .flex-control-nav li a.flex-active {
  background-color: #24A54A;
}
.companies-slider .flex-control-nav li a .flex-active {
  cursor: default;
}
.companies-slider .flex-direction-nav {
  display: none;
}

.images-slider {
  margin: 0 0 20px;
  position: relative;
}
@media (min-width: 992px) {
  .images-slider {
    margin: 0 0 34px;
  }
}
.images-slider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.images-slider .slides::after {
  clear: both;
  content: "";
  display: table;
}
.images-slider .slides li {
  float: left;
  width: 100%;
}
.images-slider .slides li .image-item {
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.images-slider .slides li .image-item figure {
  margin: 0;
  position: relative;
}
.images-slider .slides li .image-item figure,
.images-slider .slides li .image-item figure img {
  float: none;
  max-height: none;
  max-width: none;
  width: 100%;
}
.images-slider .slides li .image-item .post-info {
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 10px 7px;
}
@media (min-width: 992px) {
  .images-slider .slides li .image-item .post-info {
    padding: 13px 15px 16px;
  }
}
.images-slider .slides li .image-item .post-info p {
  color: rgba(77, 78, 78, 0.8);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.images-slider .slides li .image-item .post-info .pages-count {
  color: rgba(77, 78, 78, 0.6);
  font-size: 14px;
  display: block;
  text-align: right;
}
.images-slider .flex-direction-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.images-slider .flex-direction-nav .flex-prev,
.images-slider .flex-direction-nav .flex-next {
  background: rgba(77, 78, 78, 0.35);
  border: 0;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  margin-top: -100px;
  width: 52px;
}
.images-slider .flex-direction-nav .flex-prev::before,
.images-slider .flex-direction-nav .flex-next::before {
  content: "";
  height: 32px;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  position: absolute;
  top: 50%;
  width: 32px;
  background-repeat: no-repeat;
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/slider-arrow.svg");
  background-size: contain;
}
.images-slider .flex-direction-nav .flex-prev {
  left: 0;
}
.images-slider .flex-direction-nav .flex-prev::before {
  transform: rotateY(180deg);
}
.images-slider .flex-direction-nav .flex-next {
  right: 0;
}
.images-slider .flex-direction-nav .flex-disabled {
  display: none;
}

/*------------------------------------*\
    #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.
 */
.page-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

@media (min-width: 992px) {
  .col-content {
    width: calc(100% - 320px);
  }
  .inner-page .col-content {
    margin-top: -8px;
  }

  .col-aside {
    width: 320px;
  }
}

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