@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
 */
.event-page.event-page-new .header.white a:hover, .event-page.event-page-new .header.white a:focus, .event-page.event-page-new .header.white a.active {
  color: #8ebb4f;
  text-decoration: none;
  transition: text-shadow 0.25s ease-in-out;
  text-shadow: -0.15px 0 0 #8ebb4f, 0.15px 0 0 #8ebb4f;
}

/*------------------------------------*\
    #BLOCKS
\*------------------------------------*/
/**
 * These are single-use blocks.
 */
/**
 * Blocks layer
 *
 * This is the top layer and should contain the most specific classes.
 * Consider moving classes from this layer to the patterns layer if it becomes evident they are reusable.
 */
/* Main blocks */
.event-news {
  color: #231F20;
  clear: both;
  display: block;
  font-size: 14px;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .event-news {
    margin-bottom: 28px;
  }
}
.event-news.has-thumbnail .pull-left {
  margin-right: 15px;
}
.event-news.has-thumbnail .post-info {
  overflow: hidden;
}
.event-news .newsthumbnail {
  width: 84px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .event-news .newsthumbnail {
    width: 100px;
  }
}
@media (min-width: 992px) {
  .event-news .newsthumbnail {
    width: 120px;
  }
}
.event-news .post-info h2 {
  color: #231F20;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .event-news .post-info h2 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .event-news .post-info h2 {
    font-size: 20px;
  }
}
.event-news .post-info .post-meta {
  color: #231F20;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.25em;
  margin: 0 0 0.35em 0;
}
.event-news .post-info .post-meta a {
  color: #231F20;
}
.event-news .post-info .post-meta a, .event-news .post-info .post-meta a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .event-news .post-info .post-meta {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .event-news .post-info .post-meta {
    font-size: 14px;
  }
}
.event-news .post-info .description {
  line-height: normal;
  display: none;
}
@media (min-width: 768px) {
  .event-news .post-info .description {
    font-size: 12px;
    display: block;
  }
}
@media (min-width: 992px) {
  .event-news .post-info .description {
    font-size: 14px;
    margin-top: 13px;
  }
}

/*
 * Breakpoints
 */
.event-page.event-page-new {
  padding-top: 80px;
}
.event-page.event-page-new .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #8ebb4f;
  z-index: 3;
  color: #fff;
  /* new header styles */
  /* new header styles end */
}
@media (min-width: 992px) {
  .event-page.event-page-new .header {
    height: 80px;
  }
  .event-page.event-page-new .header:before {
    display: none;
  }
}
@media (min-width: 1300px) {
  .event-page.event-page-new .header:before {
    width: calc((100vw - 1260px) / 2);
  }
}
.event-page.event-page-new .header a {
  text-decoration: none;
}
.event-page.event-page-new .header.white {
  background: #fff;
  color: #4c4d4d;
  border-bottom: 1px solid #ececec;
  font-family: "Noto Sans", sans-serif;
  height: 80px;
}
.event-page.event-page-new .header.white .circle-btn {
  border-color: #fff;
}
.event-page.event-page-new .header.white .circle-btn.menu {
  background-position: -75px -30px;
  background-size: auto;
}
.event-page.event-page-new .header.white .alert-bar a,
.event-page.event-page-new .header.white .alert-bar a:hover {
  font-family: "Open Sans", sans-serif !important;
  color: #fff;
}
.event-page.event-page-new .header.white .page-wrapper {
  max-width: 1340px;
  padding: 0 10px;
}
@media (max-width: 992px) {
  .event-page.event-page-new .header.white .page-wrapper {
    padding: 0;
  }
}
.event-page.event-page-new .header.white .open-menu {
  right: 17px;
  left: auto;
  top: 25px;
}
.event-page.event-page-new .header.white a {
  color: #4c4d4d;
}
@media (min-width: 992px) {
  .event-page.event-page-new .header.white .navbar-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
    height: 80px;
  }
  .event-page.event-page-new .header.white .navbar-wrapper .navbar {
    height: 100%;
    padding: 0;
    width: 100%;
  }
}
.event-page.event-page-new .header.white .navbar {
  padding: 15px 0 10px 180px;
  float: left;
  display: none;
}
@media (min-width: 992px) {
  .event-page.event-page-new .header.white .navbar {
    display: block;
  }
}
@media (min-width: 1200px) {
  .event-page.event-page-new .header.white .navbar {
    padding-left: 220px;
  }
}
@media (min-width: 992px) {
  .event-page.event-page-new .header.white .main-nav {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
  }
}
.event-page.event-page-new .header.white .main-nav > li,
.event-page.event-page-new .header.white .main-nav .main-nav-item {
  display: inline-block;
  margin-left: 12px;
  position: relative;
}
.event-page.event-page-new .header.white .main-nav > li:first-child,
.event-page.event-page-new .header.white .main-nav .main-nav-item:first-child {
  margin-left: 0;
}
@media (min-width: 992px) {
  .event-page.event-page-new .header.white .main-nav > li,
.event-page.event-page-new .header.white .main-nav .main-nav-item {
    height: 100%;
    margin-left: 0;
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .event-page.event-page-new .header.white .main-nav > li,
.event-page.event-page-new .header.white .main-nav .main-nav-item {
    margin-left: 15px;
  }
}
.event-page.event-page-new .header.white .main-nav > li.has-drop-down > a:hover:after, .event-page.event-page-new .header.white .main-nav > li.has-drop-down > a:focus:after, .event-page.event-page-new .header.white .main-nav > li.has-drop-down > a.active:after,
.event-page.event-page-new .header.white .main-nav > li.has-drop-down .main-nav-link:hover:after,
.event-page.event-page-new .header.white .main-nav > li.has-drop-down .main-nav-link:focus:after,
.event-page.event-page-new .header.white .main-nav > li.has-drop-down .main-nav-link.active:after,
.event-page.event-page-new .header.white .main-nav .main-nav-item.has-drop-down > a:hover:after,
.event-page.event-page-new .header.white .main-nav .main-nav-item.has-drop-down > a:focus:after,
.event-page.event-page-new .header.white .main-nav .main-nav-item.has-drop-down > a.active:after,
.event-page.event-page-new .header.white .main-nav .main-nav-item.has-drop-down .main-nav-link:hover:after,
.event-page.event-page-new .header.white .main-nav .main-nav-item.has-drop-down .main-nav-link:focus:after,
.event-page.event-page-new .header.white .main-nav .main-nav-item.has-drop-down .main-nav-link.active:after {
  border-top-color: #8ebb4f;
}
.event-page.event-page-new .header.white .main-nav > li > a:not(.register),
.event-page.event-page-new .header.white .main-nav > li .main-nav-link,
.event-page.event-page-new .header.white .main-nav .main-nav-item > a:not(.register),
.event-page.event-page-new .header.white .main-nav .main-nav-item .main-nav-link {
  text-transform: uppercase;
  font-weight: 400;
  height: 100%;
}
.event-page.event-page-new .header.white .main-nav > li > a:not(.register) span,
.event-page.event-page-new .header.white .main-nav > li .main-nav-link span,
.event-page.event-page-new .header.white .main-nav .main-nav-item > a:not(.register) span,
.event-page.event-page-new .header.white .main-nav .main-nav-item .main-nav-link span {
  white-space: nowrap;
}
@media (min-width: 992px) {
  .event-page.event-page-new .header.white .main-nav > li > a:not(.register),
.event-page.event-page-new .header.white .main-nav > li .main-nav-link,
.event-page.event-page-new .header.white .main-nav .main-nav-item > a:not(.register),
.event-page.event-page-new .header.white .main-nav .main-nav-item .main-nav-link {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
}
.event-page.event-page-new .header.white .main-nav .drop-down.drop-down-extended {
  top: 60px;
}
.event-page.event-page-new .header.white .main-nav .drop-down.drop-down-extended .drop-down-inner {
  width: auto;
  margin: 0 !important;
}
.event-page.event-page-new .header.white .main-nav .drop-down.drop-down-extended .drop-down-inner .drop-down-list {
  max-width: none;
  float: none;
  overflow: hidden;
}
.event-page.event-page-new .header.white .main-nav .drop-down.drop-down-extended .drop-down-inner .drop-down-list:before {
  left: 50%;
}
.event-page.event-page-new .header.white .main-nav .drop-down.drop-down-extended .drop-down-inner .drop-down-list li.menu-item {
  width: calc(50% - 2px);
}
.event-page.event-page-new .header.white .header-register-btn.menu-item-type-custom.menu-item-object-custom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.event-page.event-page-new .header.white .header-register-btn.menu-item-type-custom.menu-item-object-custom a {
  font-weight: 400;
  width: 128px;
  background-color: #8ebb4f;
  padding: 10px 0;
  display: inline-block;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.event-page.event-page-new .header.white .header-register-btn.menu-item-type-custom.menu-item-object-custom a:hover, .event-page.event-page-new .header.white .header-register-btn.menu-item-type-custom.menu-item-object-custom a:focus {
  background-color: #85bc2a;
  color: "";
}
.event-page.event-page-new .header.white .logo {
  box-shadow: none;
  left: 10px;
  position: relative;
  margin: 0;
  display: inline-block;
  height: 79px;
  width: 198px;
  top: 0;
  text-align: left;
  background-color: #fff;
  transition: opacity 0.15s ease-in-out 0.8s, top 0.25s ease-in-out 0.8s;
  opacity: 1;
}
.event-page.event-page-new .header.white .logo:after {
  width: 240px;
  height: 48px;
  margin-left: 0;
  margin: 0;
  left: 0;
  background-image: url(/assets/images/nosh-logos.png);
  background-size: 100%;
}
@media (max-width: 992px) {
  .event-page.event-page-new .header.white .logo:after {
    top: 15px;
  }
}
@media (max-width: 768px) {
  .event-page.event-page-new .header.white .logo:after {
    width: 170px;
    height: 33px;
    top: 22px;
  }
}
.event-page.event-page-new .header.white .logo .print {
  display: none;
}
.event-page.event-page-new .header.white .logo a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-indent: -9999px;
}
.event-page.event-page-new .header.white .logo:before {
  display: none;
}
@media (min-width: 992px) {
  .event-page.event-page-new .header.white .logo {
    margin: 0 10px 0 0;
    left: 0;
    width: 178px;
    height: 79px;
    position: relative;
    float: left;
  }
}
@media (min-width: 1200px) {
  .event-page.event-page-new .header.white .logo {
    margin-right: 50px;
  }
}
.event-page.event-page-new .compact-menu {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 1;
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: opacity 0.75s, -webkit-transform 0.5s;
  -ms-transition: opacity 0.75s, -ms-transform 0.5s;
  transition: opacity 0.75s, transform 0.5s;
  overflow-y: auto;
}
.event-page.event-page-new .compact-menu .circle-btn {
  border-color: #fff;
}
.event-page.event-page-new .compact-menu .header-bar {
  padding: 25px 15px;
}
.event-page.event-page-new .compact-menu .header-bar::after {
  clear: both;
  content: "";
  display: table;
}
.event-page.event-page-new .compact-menu .close-menu {
  float: left;
}
.event-page.event-page-new .compact-menu .account {
  float: right;
}
.event-page.event-page-new .compact-menu .main-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Noto Sans", sans-serif;
  font-size: 24px;
}
.event-page.event-page-new .compact-menu .main-nav > li > a {
  color: #fff;
  font-weight: bold;
  padding: 5px 15px 5px 15px;
  display: block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
.event-page.event-page-new .compact-menu .main-nav > li,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  margin: auto;
}
.event-page.event-page-new .compact-menu .main-nav > li:first-child,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item:first-child {
  border: none;
}
.event-page.event-page-new .compact-menu .main-nav > li.dropdown-visible > a:after,
.event-page.event-page-new .compact-menu .main-nav > li.dropdown-visible .main-nav-link:after, .event-page.event-page-new .compact-menu .main-nav > li.open-menu > a:after,
.event-page.event-page-new .compact-menu .main-nav > li.open-menu .main-nav-link:after,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.dropdown-visible > a:after,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.dropdown-visible .main-nav-link:after,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.open-menu > a:after,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.open-menu .main-nav-link:after {
  background-position: -268px -30px;
}
.event-page.event-page-new .compact-menu .main-nav > li.dropdown-visible a, .event-page.event-page-new .compact-menu .main-nav > li.open-menu a,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.dropdown-visible a,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.open-menu a {
  text-decoration: none;
}
.event-page.event-page-new .compact-menu .main-nav > li.dropdown-visible .drop-down, .event-page.event-page-new .compact-menu .main-nav > li.open-menu .drop-down,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.dropdown-visible .drop-down,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item.open-menu .drop-down {
  display: block;
  padding: 0 20px;
}
.event-page.event-page-new .compact-menu .main-nav > li > a,
.event-page.event-page-new .compact-menu .main-nav > li .main-nav-link,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item > a,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item .main-nav-link {
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
  display: block;
  position: relative;
  text-decoration: none;
}
.event-page.event-page-new .compact-menu .main-nav > li > a:hover, .event-page.event-page-new .compact-menu .main-nav > li > a:focus,
.event-page.event-page-new .compact-menu .main-nav > li .main-nav-link:hover,
.event-page.event-page-new .compact-menu .main-nav > li .main-nav-link:focus,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item > a:hover,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item > a:focus,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item .main-nav-link:hover,
.event-page.event-page-new .compact-menu .main-nav .main-nav-item .main-nav-link:focus {
  text-decoration: none;
  color: #8ebb4f;
}
.event-page.event-page-new .compact-menu .main-nav .drop-down-inner {
  color: #fff;
}
.event-page.event-page-new .alert-bar {
  top: 79px;
}
.event-page.event-page-new.compact-menu-visible .compact-menu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.event-page .main {
  font-size: 16px;
  line-height: 1.5625;
}
.event-page .main .intro a {
  color: #7ea648;
  text-decoration: none;
}
.event-page .main .intro a:hover {
  text-decoration: underline;
}
.event-page .main .events-list-box-button {
  border-color: #7ea648;
  color: #7ea648;
}
.event-page .main .events-list-box-button:hover {
  background: #7ea648;
  color: #fff;
}
.event-page .main .load-more-link {
  color: #7ea648;
}
.event-page .past-event-box {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.21);
  padding: 25px 30px 20px 30px;
  margin: 20px 0 0;
}
.event-page .past-event-box h3 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 32px;
  margin: 0 0 15px;
}
.event-page .past-event-box ul {
  margin: 0;
  padding: 0;
  color: #888;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
}
.event-page .past-event-box ul li {
  padding: 5px 0;
}
.event-page .past-event-box ul .glyphicon {
  color: #888;
  font-size: 15px;
  margin-right: 18px;
}
.event-page .eventsMore {
  margin-top: 50px;
}

.event-wrapper {
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  line-height: 1.5625;
  color: #231F20;
}
.event-wrapper.event-wrapper-popup {
  padding-right: 0;
  padding-left: 0;
}
.event-wrapper .container-fluid {
  max-width: 1220px;
  padding-right: 10px;
  padding-left: 10px;
}
.event-wrapper .row {
  margin-right: -10px;
  margin-left: -10px;
}
.event-wrapper .col-xs-1, .event-wrapper .col-sm-1, .event-wrapper .col-md-1, .event-wrapper .col-lg-1, .event-wrapper .col-xs-2, .event-wrapper .col-sm-2, .event-wrapper .col-md-2, .event-wrapper .col-lg-2, .event-wrapper .col-xs-3, .event-wrapper .col-sm-3, .event-wrapper .col-md-3, .event-wrapper .col-lg-3, .event-wrapper .col-xs-4, .event-wrapper .col-sm-4, .event-wrapper .col-md-4, .event-wrapper .col-lg-4, .event-wrapper .col-xs-5, .event-wrapper .col-sm-5, .event-wrapper .col-md-5, .event-wrapper .col-lg-5, .event-wrapper .col-xs-6, .event-wrapper .col-sm-6, .event-wrapper .col-md-6, .event-wrapper .col-lg-6, .event-wrapper .col-xs-7, .event-wrapper .col-sm-7, .event-wrapper .col-md-7, .event-wrapper .col-lg-7, .event-wrapper .col-xs-8, .event-wrapper .col-sm-8, .event-wrapper .col-md-8, .event-wrapper .col-lg-8, .event-wrapper .col-xs-9, .event-wrapper .col-sm-9, .event-wrapper .col-md-9, .event-wrapper .col-lg-9, .event-wrapper .col-xs-10, .event-wrapper .col-sm-10, .event-wrapper .col-md-10, .event-wrapper .col-lg-10, .event-wrapper .col-xs-11, .event-wrapper .col-sm-11, .event-wrapper .col-md-11, .event-wrapper .col-lg-11, .event-wrapper .col-xs-12, .event-wrapper .col-sm-12, .event-wrapper .col-md-12, .event-wrapper .col-lg-12 {
  padding-right: 10px;
  padding-left: 10px;
}
.event-wrapper .post-single {
  border: none !important;
  box-shadow: none !important;
  margin: 40px 0 0 !important;
  padding: 0 !important;
}
.event-wrapper .post-wrap {
  padding: 0 !important;
}
.event-wrapper .info-button {
  background-color: #ffaa22 !important;
  color: white;
  border: none;
  border-radius: 0px !important;
}
@media (min-width: 580px) {
  .event-wrapper .info-button {
    margin-top: 40px !important;
  }
}
@media (max-width: 768px) {
  .event-wrapper .info-button {
    width: auto;
  }
}

.event-article {
  margin-top: 40px !important;
}

@media (max-width: 767px) {
  .page-livestream .event-article {
    margin-top: 17px !important;
  }
}
.events-past {
  margin-top: 60px;
  color: #666;
}
.events-past-box {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  padding: 10px;
}
.events-past-box::after {
  clear: both;
  content: "";
  display: table;
}
.events-past-ill {
  float: left;
}
.events-past-ill img {
  width: 100px;
}
.events-past-description {
  overflow: hidden;
  padding: 5px 0 0;
  padding-left: 10px;
}
.events-past-title {
  margin: 0;
  text-transform: uppercase;
  color: #666;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
}
.events-past-text {
  margin: 0;
  font-size: 14px;
}
.events-past-text a {
  font-weight: bold;
}
.events-past .year {
  font-size: 35px;
  line-height: 40px;
  position: relative;
  margin: 30px 0 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}
.events-past .year:after, .events-past .year:before {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 185px / 2);
  left: 0;
  height: 1px;
  background: #d1d1d1;
}
.events-past .year:before {
  left: auto;
  right: 0;
}

.event-box {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  padding: 20px;
  color: #666;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .event-box {
    min-height: 270px;
  }
}
.event-box-ill {
  margin: -20px -20px 15px;
}
.event-box-ill img {
  width: 100%;
}
.event-box-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #666;
}
.event-box-meta {
  margin: 0;
  font-size: 14px;
}
.event-box-button {
  display: block;
  border: 1px solid #8ebb4f;
  color: #8ebb4f;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 10px 6px;
  border-radius: 3px;
  margin-top: 15px;
  -webkit-transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}
.event-box-button:hover {
  background: #8ebb4f;
  color: #fff;
  text-decoration: none;
}
.event-box-button.pastevent {
  color: #666;
  border-color: #666;
}
.event-box-button.pastevent:hover {
  background: #666;
  color: #fff;
  text-decoration: none;
}

.event-box {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  padding: 20px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .event-box {
    min-height: 270px;
  }
}
.event-box-ill {
  margin: -20px -20px 15px;
}
.event-box-ill img {
  width: 100%;
}
.event-box-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.event-box-meta {
  margin: 0;
  font-size: 14px;
}
.event-box-button {
  display: block;
  border: 1px solid #8ebb4f;
  color: #8ebb4f;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 5px 6px;
  border-radius: 3px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 800px !important;
  text-decoration: none;
  -webkit-transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}
.event-box-button:hover {
  background: #8ebb4f;
  color: #fff;
  text-decoration: none;
}
.event-box-button.pastevent {
  color: #666;
  border-color: #666;
}
.event-box-button.pastevent:hover {
  background: #666;
  color: #fff;
  text-decoration: none;
}

.event-load-more {
  border-top: 1px solid #cccccc;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-top: 12px;
}
.event-load-more-link {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding-left: 25px;
  position: relative;
}
.event-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: -5px -5px;
}

.event-over {
  background: #f3f3f3;
  padding: 30px 0;
  color: #7ea648;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  box-shadow: inset 0 -4px 4px -4px rgba(26, 26, 26, 0.15), inset 0 4px 4px -4px rgba(26, 26, 26, 0.15);
}
.event-over a {
  text-decoration: underline;
  color: #7ea648;
}

.site-alert {
  padding: 30px 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  box-shadow: inset 0 -4px 4px -4px rgba(26, 26, 26, 0.15), inset 0 4px 4px -4px rgba(26, 26, 26, 0.15);
}
.site-alert a {
  text-decoration: underline;
}

.icon-youtube3:before {
  font-family: "youtube-icomoon";
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}

.icon-youtube3 {
  font-family: "Open Sans", sans-serif !important;
  color: #7ea648;
  font-weight: 600 !important;
  font-size: 16px;
}

.event-article, .event-article-popup {
  margin: 0;
  line-height: 1.25;
}
.event-article .agenda a, .event-article-popup .agenda a {
  text-decoration: none;
}
.event-article .agenda a:hover, .event-article-popup .agenda a:hover {
  text-decoration: underline;
}
.event-article p, .event-article-popup p {
  margin: 0 0 20px;
}
.event-article h2, .event-article-popup h2 {
  margin-top: 0px;
  font-family: "proxima-nova-condensed", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.event-article .event-title, .event-article-popup .event-title {
  margin-bottom: 20px;
  color: #231F20;
}
@media (max-width: 768px) {
  .event-article .event-title, .event-article-popup .event-title {
    font-size: 24px;
    line-height: 34px;
  }
  .event-article .event-title br, .event-article-popup .event-title br {
    display: none;
  }
}
.event-article .event-article-intro, .event-article-popup .event-article-intro {
  margin-bottom: 10px;
}
.event-article p + .event-article-link, .event-article-popup p + .event-article-link {
  margin-top: -10px;
  font-weight: bold;
  font-size: 14px;
}
.event-article-list, .event-article-popup-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.event-article-list li, .event-article-popup-list li {
  padding-left: 15px;
  position: relative;
}
.event-article-list li:before, .event-article-popup-list li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #231F20;
  position: absolute;
  top: 8px;
  left: 2px;
}
.event-article .map p, .event-article-popup .map p {
  margin-bottom: 10px;
}
.event-article .slider-info p, .event-article-popup .slider-info p {
  margin: 0;
}

/**
 * Agenda
 *
 * USED ON THE AGENDA PAGE FOR BEVNET LIVE WINTER 13 and on
 */
.agendatable {
  width: 100%;
  padding: 8px;
  font-family: Arial;
  font-size: 12px;
}
.agendatable > tr > td {
  border-top: #000;
  margin-top: 4px;
  padding-bottom: 5px;
  padding-top: 4px;
  vertical-align: top;
}
.agendatable .dayspacer {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  border-bottom: 2px black solid;
  padding-bottom: 0px !important;
  padding-top: 30px;
}
.agendatable .sessionspacer {
  height: 2px;
  border-bottom: 1px black dashed;
  margin-bottom: 5px;
}
.agendatable .sectionspacer {
  height: 10px;
}
.agendatable .sectiontitle {
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #EEEEEE;
  border-top: black 2px solid;
}
.agendatable .time {
  width: 140px;
  vertical-align: top;
  padding-top: 10px;
}
.agendatable .details {
  vertical-align: top;
  padding-top: 10px;
}
.agendatable .detailsbreak {
  text-align: left;
  font-weight: bold;
  vertical-align: top;
  padding-top: 10px;
}

/* Single event */
@media (min-width: 580px) {
  .inner-content {
    padding: 50px 0px !important;
  }
}
@media (max-width: 580px) {
  .inner-content {
    padding: 25px 0px !important;
  }
}
.event-promo {
  height: 340px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.event-promo:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.event-promo .event-callout {
  background-color: white;
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 1.25em;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .event-promo .event-callout {
    font-size: 0.85em;
    text-align: center;
    letter-spacing: 3px;
  }
}
.event-promo .event-callout .glyphicon {
  margin-top: 3px;
}
.event-promo .event-buttons-big .col-sm-6 > .left {
  padding: 0px 5px 0px 0px !important;
  margin-right: 5px !important;
  margin-left: -10px !important;
}
.event-promo .event-buttons-big .col-sm-6 > .right {
  padding: 0px 0px 0px 5px !important;
  margin-left: 5px !important;
  margin-right: -10px !important;
}
.event-promo .event-promo-text {
  text-align: center;
  z-index: 10;
  color: #fff;
  width: 580px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.event-promo .event-promo-text .event-promo-title {
  font-size: 2.75em;
  font-family: jaf-facitweb, sans-serif;
  font-weight: bold;
  color: #fff;
  margin: 0px 0px 10px 0px;
}
.event-promo .event-promo-text .event-promo-early,
.event-promo .event-promo-text .event-promo-title,
.event-promo .event-promo-text .event-promo-date,
.event-promo .event-promo-text .event-promo-location {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.57);
}
.event-promo .event-promo-text .event-promo-early {
  font-size: 1em;
  padding: 5px 0;
}
.event-promo .event-promo-text .event-promo-button {
  width: 200px;
  height: 46px;
  line-height: 43px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  display: block;
  border: 2px solid #FFF;
  border-radius: 3px;
  color: #fff;
  font-size: 1.25em;
  text-decoration: none;
}
.event-promo .event-promo-text .event-promo-button.right {
  float: right;
}
.event-promo .event-promo-text .event-promo-button.register {
  background-color: #7ea648;
  border: 2px solid #7ea648;
}
.event-promo .event-promo-text .event-promo-button.big {
  margin-top: 20px;
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}
.event-promo .event-promo-text .event-new-logo > img {
  position: relative !important;
  width: 600px;
}
@media only screen and (max-width: 768px) {
  .event-promo .event-promo-text .event-new-logo > img {
    width: 100%;
  }
}
.event-promo .event-promo-text .row {
  padding: 5px 0;
}
.event-promo .event-promo-text .row:after {
  content: "";
  display: block;
  clear: both;
}
.event-promo .event-promo-text .row .col-sm-6 {
  width: 50%;
  float: left;
  padding: 0 10px;
}
.event-promo .event-promo-text .event-promo-date,
.event-promo .event-promo-text .event-promo-location {
  width: 50%;
  font-size: 1.875em;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .event-promo .event-promo-text {
    position: relative;
    text-align: left;
    top: auto;
    left: auto;
    margin: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    width: auto;
  }
  .event-promo .event-promo-text .event-promo-title {
    font-size: 2.25em;
  }
  .event-promo .event-promo-text .event-promo-date,
.event-promo .event-promo-text .event-promo-location {
    font-size: 1.5em;
    width: auto !important;
    float: none !important;
  }
  .event-promo .event-promo-text .event-promo-button {
    width: 125px;
    font-size: 1em;
  }
}
.event-promo img {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .event-promo img {
    width: auto;
    height: 130%;
    max-width: none !important;
  }
}
.event-promo video.bgvid {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .event-promo {
    height: auto;
    padding: 30px;
  }
  .event-promo .bgvid {
    display: none;
  }
}

.event-signup-wrapper {
  background-color: #ebebeb;
  padding: 1.563em 0 1.875em 0;
  clear: both;
}
.event-signup-wrapper .event-signup {
  width: 580px;
  margin: auto;
}
.event-signup-wrapper .event-signup h3 {
  text-align: center;
  margin: 0.625em 0 1.25em 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 200;
  font-size: 1.625em;
}
.event-signup-wrapper .event-signup .event-signup-form .event-signup-form-input {
  float: left;
  width: 65.5%;
  margin-right: 3.5%;
  border-radius: 3px;
  border: 1px solid #cccccc;
  line-height: 38px;
  padding: 0 10px;
  height: 40px;
}
.event-signup-wrapper .event-signup .event-signup-form .event-signup-form-input::-webkit-input-placeholder, .event-signup-wrapper .event-signup .event-signup-form .event-signup-form-input::-moz-placeholder, .event-signup-wrapper .event-signup .event-signup-form .event-signup-form-input:-ms-input-placeholder {
  color: #757575;
  font-style: italic;
}
.event-signup-wrapper .event-signup .event-signup-form .event-signup-form-submit {
  width: 31%;
  float: left;
  border-radius: 3px;
  line-height: 34px;
  background-color: transparent;
  border: 3px solid #7ea648;
  padding: 0;
  text-transform: uppercase;
  color: #7ea648;
  font-weight: bold;
  height: 40px;
}
.event-signup-wrapper .event-signup .event-signup-form .event-signup-form-submit:hover, .event-signup-wrapper .event-signup .event-signup-form .event-signup-form-submit:focus {
  outline: none;
}
.event-signup-wrapper .event-signup .event-signup-form:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .event-signup-wrapper {
    padding: 1em 0;
  }
  .event-signup-wrapper .event-signup {
    width: auto;
    padding: 0 1em;
  }
  .event-signup-wrapper .event-signup h3 {
    font-size: 1.375em;
    margin: 0 0 10px;
    text-align: left;
  }
  .event-signup-wrapper .event-signup .event-signup-form .event-signup-form-input {
    margin: 0 0 20px;
  }
  .event-signup-wrapper .event-signup .event-signup-form .event-signup-form-input,
.event-signup-wrapper .event-signup .event-signup-form .event-signup-form-submit {
    width: 100%;
    float: none;
  }
}

.event-wrapper.event-wrapper-redesign h2 {
  margin: 1.25em 0 0.83em 0;
}
.event-wrapper.event-wrapper-redesign ul {
  padding: 0 0 0 1.25em;
}
.event-wrapper.event-wrapper-redesign a {
  font-weight: bold;
  font-size: 0.875em;
}
.event-wrapper.event-wrapper-redesign .event-days {
  margin-bottom: 1.25em;
}
.event-wrapper.event-wrapper-redesign .event-days .event-days-selector {
  padding: 0.625em 2.5em 0.625em 1.25em;
  display: inline-block;
  color: #b8b8b8;
  text-decoration: none;
}
.event-wrapper.event-wrapper-redesign .event-days .event-days-selector span {
  font-weight: 700;
}
.event-wrapper.event-wrapper-redesign .event-days .event-days-selector-active {
  color: #FFF;
  background-color: #7ea648;
}
.event-wrapper.event-wrapper-redesign .event-agenda-list {
  margin: 0;
  padding: 0;
}
.event-wrapper.event-wrapper-redesign .event-agenda-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 1.25em;
}
.event-wrapper.event-wrapper-redesign .event-agenda-list li:after {
  content: "";
  display: block;
  clear: both;
}
.event-wrapper.event-wrapper-redesign .event-agenda-list li .event-agenda-time {
  font-size: 0.938em;
  width: 80px;
  float: left;
  border-right: 2px solid #cacaca;
  margin-right: 1.25em;
}
.event-wrapper.event-wrapper-redesign .event-agenda-list li .event-agenda-text {
  overflow: hidden;
}
.event-wrapper.event-wrapper-redesign .event-agenda-list li .event-agenda-text .event-agenda-text-title {
  font-weight: bold;
}
.event-wrapper.event-wrapper-redesign .event-map {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
}
.event-wrapper.event-wrapper-redesign .event-map .event-map-info {
  background-color: rgba(0, 0, 0, 0.75);
}
.event-wrapper.event-wrapper-redesign .event-map .event-map-info p {
  margin: 0 0 40px 0;
}
.event-wrapper.event-wrapper-redesign .event-map .event-map-info a {
  font-weight: normal;
  color: #7ea648 !important;
  font-size: inherit;
}
.event-wrapper.event-wrapper-redesign .event-map .event-map-info h2 {
  color: #fff;
  font-size: 1.25em;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.event-wrapper.event-wrapper-redesign .event-map .event-map-holder {
  width: 100%;
}

.event-map {
  position: relative;
}
.event-map .event-map-holder {
  min-height: 300px;
}
.event-map-info {
  padding: 15px;
  background: #000;
  color: #fff;
}
.event-map-info a {
  color: #fff !important;
}
@media all and (min-width: 1024px) {
  .event-map-info {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background: rgba(0, 0, 0, 0.75);
    padding: 25px 30px 90px;
  }
}

@media (min-width: 580px) {
  .event-article {
    line-height: 1.76;
  }
}
.event-article p {
  margin: 0 0 20px;
}
@media (max-width: 580px) {
  .event-article p {
    font-size: 1.25em;
  }
}
.event-article .agenda-menu-holder li {
  float: none;
  display: inline-block;
}
.event-article .agenda-timetable {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.event-article .agenda-timetable > li {
  display: block;
  position: relative;
  font-size: 0;
  margin-bottom: 30px;
}
.event-article .agenda-timetable > li:before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 12px;
  bottom: 0;
  width: 1px;
  background: #231F20;
  opacity: 0.1;
}
.event-article .agenda-timetable > li:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 28px;
  height: 28px;
  background: #d8d8d8;
  border-radius: 50%;
  z-index: 1;
}
.event-article .agenda-timetable > li:first-child:before {
  top: 0;
}
.event-article .agenda-timetable > li:last-child {
  margin-bottom: 0;
}
.event-article .agenda-timetable > li:last-child:before {
  bottom: auto;
  height: 30px;
}
.event-article .agenda-timetable > li.on-air {
  background: #fff;
  padding: 29px 0;
  box-shadow: 0 0 4px 0 rgba(126, 167, 68, 0.27);
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li.on-air {
    padding: 20px 0;
  }
}
.event-article .agenda-timetable > li.on-air:before {
  bottom: auto;
  height: 30px;
}
.event-article .agenda-timetable > li.on-air:after {
  display: none;
}
.event-article .agenda-timetable > li.on-air:first-child:before {
  display: none;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li.on-air .agenda-timetable-time,
.event-article .agenda-timetable > li.on-air .agenda-timetable-description-holder {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.event-article .agenda-timetable > li.break .agenda-timetable-description h5 {
  color: #407a3a;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li.break .agenda-timetable-description h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.event-article .agenda-timetable > li .on-air-label {
  display: inline-block;
  position: absolute;
  top: -14px;
  left: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 4px 16px;
  border-radius: 30px;
  background: #faaa22;
}
.event-article .agenda-timetable > li .agenda-timetable-time,
.event-article .agenda-timetable > li .agenda-timetable-delimiter,
.event-article .agenda-timetable > li .agenda-timetable-description-holder {
  display: inline-block;
  width: calc(100% - 212px);
  height: 100%;
  vertical-align: top;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-time,
.event-article .agenda-timetable > li .agenda-timetable-delimiter,
.event-article .agenda-timetable > li .agenda-timetable-description-holder {
    display: block;
    width: 100%;
    padding-left: 37px;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-time {
  position: relative;
  line-height: 15px;
  padding: 5px 15px 0 37px;
  width: 212px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(35, 31, 32, 0.7);
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-time {
    width: 100%;
    margin-bottom: 5px;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-time span {
  display: block;
  font-size: 16px;
  color: #faaa22;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-time span {
    display: none;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-delimiter {
  display: none;
}
.event-article .agenda-timetable > li .agenda-timetable-description {
  width: 73%;
  background: #FFF;
  text-align: left;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-description {
    width: 100%;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-description ul {
  margin: 0;
  padding: 0;
}
.event-article .agenda-timetable > li .agenda-timetable-description ul:last-child {
  margin: 0;
}
.event-article .agenda-timetable > li .agenda-timetable-description h5 {
  font-size: 20px;
  color: #231F20;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-description h5 {
    font-size: 18px;
    line-height: 1.33;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-item-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.8);
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-item-description {
    font-size: 14px;
    line-height: 1.43;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-item-description li {
  list-style-type: none;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker {
  min-height: 40px;
  border: 1px solid rgba(35, 31, 32, 0.1);
  padding: 11px 9px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker:last-child {
  margin-bottom: 0;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.bio-screen {
  cursor: pointer;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.bio-screen:hover {
  background-color: #d6d7dc;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.open-bio .slider-bio {
  display: block;
  white-space: normal;
  background: none;
  padding-bottom: 0;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.open-bio .slider-bio .close-bio:after, .event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.open-bio .slider-bio .close-bio:before {
  background: black;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker > div:first-child {
  font-size: 0;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .photo {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 7px;
  background-size: cover;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .photo img {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .photo {
    float: left;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .agenda-timetable-speaker-name {
  display: inline-block;
  width: calc(100% - 47px);
  font-size: 14px;
  color: rgba(35, 31, 32, 0.8);
  vertical-align: middle;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .agenda-timetable-speaker-name strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .agenda-timetable-speaker-name strong {
    color: #231F20;
  }
}
@media only screen and (max-width: 480px) {
  .event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker .agenda-timetable-speaker-name {
    overflow: hidden;
    display: block;
  }
}
.event-article .agenda-timetable > li .agenda-timetable-description .slider-bio-text {
  font-size: 16px;
  line-height: 1.5;
  color: #231F20;
}
.event-article .agenda-timetable > li .agenda-timetable-description .slider-bio-text p:last-child {
  margin-bottom: 0;
}
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.open-bio .slider-bio .close-bio:after,
.event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker.open-bio .slider-bio .close-bio:before {
  left: 4px;
  width: 66%;
  height: 2px;
  background: #979898;
}
.event-article .agenda-timetable > li .agenda-timetable-description .close-bio {
  top: -43px;
  right: -2px;
}
@media only screen and (max-width: 480px) {
  .event-article .agenda-timetable > li .agenda-timetable-description .agenda-timetable-speaker {
    white-space: normal;
  }
}
.event-article .agenda-timetable > li:last-child .agenda-timetable-delimiter {
  background-position: left -274px;
  background-repeat: no-repeat;
}

.force-desaturate img {
  -webkit-filter: grayscale(1) !important;
  -webkit-filter: grayscale(100%) !important;
  filter: gray !important;
  filter: grayscale(100%) !important;
}
.force-desaturate img:hover {
  -webkit-filter: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  filter: none !important;
}

.page-events-speakerbio {
  padding-top: 0;
  background-color: #fff;
}

.white-title h2 {
  color: white !important;
}

.highlightgrid {
  color: white !important;
  font-weight: normal;
}
.highlightgrid h1, .highlightgrid h4 {
  text-transform: uppercase;
  color: white !important;
}
.highlightgrid h4 {
  margin-top: 0px;
}
.highlightgrid h1 {
  line-height: 48px;
  margin-bottom: 70px !important;
}
@media only screen and (min-width: 768px) {
  .highlightgrid h1 {
    font-size: 42px;
  }
}
.highlightgrid .row {
  margin-bottom: 70px;
  line-height: 28px;
}
@media only screen and (min-width: 768px) {
  .highlightgrid .row .highlightcontent {
    border-left: #faaa22 4px solid;
    padding-left: 20px;
  }
  .highlightgrid .row .highlightimg {
    margin-right: 10px;
  }
}
.highlightgrid .row p {
  margin-bottom: 0px !important;
}
@media only screen and (max-width: 580px) {
  .highlightgrid .row {
    text-align: center;
  }
}
@media only screen and (max-width: 580px) {
  .highlightgrid img {
    margin-bottom: 10px;
  }
}

.highlightgrid-black {
  font-weight: normal;
}
.highlightgrid-black h1, .highlightgrid-black h4 {
  text-transform: uppercase;
}
.highlightgrid-black h4 {
  margin-top: 0px;
}
.highlightgrid-black h1 {
  line-height: 48px;
  margin-bottom: 70px !important;
}
@media only screen and (min-width: 768px) {
  .highlightgrid-black h1 {
    font-size: 42px;
  }
}
.highlightgrid-black .row {
  margin-bottom: 70px;
  line-height: 28px;
}
@media only screen and (min-width: 768px) {
  .highlightgrid-black .row .highlightcontent {
    border-left: #faaa22 4px solid;
    padding-left: 20px;
  }
  .highlightgrid-black .row .highlightimg {
    margin-right: 10px;
  }
}
.highlightgrid-black .row p {
  margin-bottom: 0px !important;
}
@media only screen and (max-width: 580px) {
  .highlightgrid-black .row {
    text-align: center;
  }
}
@media only screen and (max-width: 580px) {
  .highlightgrid-black img {
    margin-bottom: 10px;
  }
}

.no-margin-top {
  margin-top: 0px !important;
}
.no-margin-top .event-article {
  margin-top: 0px !important;
}
.no-margin-bottom {
  margin-bottom: 0px !important;
}
.no-margin-bottom .event-article {
  margin-bottom: 0px !important;
}

.gsc-control-cse,
.gsc-control-cse .gsc-table-result {
  font-family: inherit !important;
  font-size: 0.95em !important;
}

.gs-result a.gs-visibleUrl,
.gs-result .gs-visibleUrl {
  color: #8ebb4f !important;
}

.gs-result .gs-title,
.gs-result .gs-title * {
  color: #00a9e2 !important;
}
.gs-result .gs-title:hover,
.gs-result .gs-title *:hover {
  color: #007ea8 !important;
}

/* pagination */
.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: #8ebb4f !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
  color: #000 !important;
}

.archive-header .videoList p:last-of-type {
  font-size: 15px;
  line-height: 16px;
  font-family: "Noto Sans", sans-serif;
  color: #999;
  margin: 15px 0 30px;
}

.searchVideo {
  position: relative;
  margin: 5px 0 20px;
}
.searchVideo:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 14px;
  height: 14px;
  background: url("../ico01.png") no-repeat;
}
.searchVideo input[type=text] {
  width: 100%;
  border: 1px solid #c8c8c8;
  background: #f2f2f2;
  height: 33px;
  padding: 0 10px;
}

.videoList .videoWrap {
  margin: 0 -10px;
}
.videoList .imgBox {
  position: relative;
}
.videoList .imgBox img {
  width: 100%;
}
.videoList .time {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 5px;
  font-size: 15px;
  line-height: 22px;
  font-family: "Noto Sans", sans-serif;
}
.videoList .play {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: #24A54A;
  cursor: pointer;
}
.videoList .play span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 13px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -8px 0 0 -5px;
}
.videoList h3 {
  font-size: 20px;
  line-height: 22px;
  font-family: "Noto Sans", sans-serif;
  border-bottom: 1px solid #ececec;
  margin: 0;
  padding: 10px 0;
  color: #4d4e4e;
}
.videoList p {
  font-size: 15px;
  line-height: 16px;
  font-family: "Noto Sans", sans-serif;
  color: #999;
  margin: 15px 0 30px;
}
.videoList a {
  color: #4d4e4e;
  text-decoration: none;
}
.videoList a:hover {
  text-decoration: underline;
}

.videoGallery {
  position: relative;
}
.videoGallery .videoList {
  padding: 0;
}
.videoGallery .content {
  position: relative;
}
.videoGallery h2 {
  text-transform: uppercase;
  margin-top: 0;
}
.videoGallery p {
  font-size: 14px;
  line-height: 19px;
  font-family: "Noto Sans", sans-serif;
}
.videoGallery .link {
  position: absolute;
  top: 0;
  right: 0;
}
.videoGallery .box {
  width: 214px;
}
.videoGallery .slidee {
  margin: 0;
  padding: 0;
  list-style: none;
}
.videoGallery .slidee li {
  float: left;
  margin: 0 0 0 15px;
  padding: 0;
  width: 214px;
}
.videoGallery .slidee li:first-child {
  margin-left: 0;
}
.videoGallery .scrollbar {
  height: 7px;
  background: #e9e9e9;
  width: 100%;
  border-radius: 3px;
}
.videoGallery .handle {
  background: #c6c6c6;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 3px;
}
.videoGallery .prevPage,
.videoGallery .nextPage {
  position: absolute;
  top: 0;
  width: 25px;
  height: 120px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 120px;
  font-family: "Noto Sans", sans-serif;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.videoGallery .prevPage {
  left: 0;
}
.videoGallery .nextPage {
  right: 0;
}

.profilePromo h2 {
  font-size: 21px;
  line-height: 22px;
  font-family: "Noto Sans", sans-serif;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.profilePromo p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
}
.profilePromo .share {
  margin: 0 0 10px;
}
.profilePromo ul.social {
  list-style: none;
  margin: 0 0 25px;
}
.profilePromo ul.social li {
  float: left;
  margin: 0 12px 0 0;
}

.profileNav {
  border: solid #e6e6e6;
  border-width: 1px 0;
  box-shadow: 0px 1px 2px #e6e6e6, 0px -1px 2px #e6e6e6;
  list-style: none;
  margin: 0 0 35px;
  padding: 0;
}
.profileNav li {
  text-transform: uppercase;
  float: left;
  padding: 0 30px;
  font-size: 17px;
  line-height: 60px;
  font-family: "Noto Sans", sans-serif;
  position: relative;
}
.profileNav li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 30px;
  background: #d9d9d9;
  margin-top: -15px;
}
.profileNav li:first-child:before {
  display: none;
}
.profileNav a {
  text-decoration: none;
  color: #5a5a5a;
  display: inline-block;
  padding: 0 10px;
}
.profileNav a:hover,
.profileNav .active a {
  color: #7ea648;
  text-decoration: none;
}
.profileNav .active a {
  border-bottom: 2px solid #7ea648;
}

.profileInfo .info {
  padding: 0 30px;
}
.profileInfo h2 {
  font-size: 18px;
  line-height: 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.profileInfo p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
}
.profileInfo p.item {
  margin-top: 65px;
}

@media only screen and (max-width: 1024px) {
  .profileNav {
    margin: 0 -20px 35px;
  }

  .profileInfo .info {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 580px) {
  .archive-header .nav-sections {
    padding: 0 20px 15px;
  }
  .archive-header .nav-sections .btn-group {
    width: calc(100% - 40px);
  }
  .archive-header .nav-sections .btn-group .btn {
    width: 100%;
  }
  .archive-header .nav-sections .btn-group .btn .text {
    width: calc(100% - 25px);
    display: inline-block;
  }

  .videoList .imgBox img {
    width: 100%;
  }

  .videoGallery h2 {
    font-size: 16px;
  }
  .videoGallery .box {
    width: auto;
  }
  .videoGallery .slidee li {
    margin: 0 0 0 9px;
  }
  .videoGallery .link {
    position: static;
  }
  .videoGallery .content {
    padding-top: 20px;
  }

  .profilePromo .imgBox {
    text-align: center;
    padding: 0 0 20px;
  }

  .profileNav li {
    padding: 0 3px;
  }

  .profileInfo .info {
    padding: 0;
  }
}
.video-playlist-wrapper .video-playlist-header {
  font-weight: normal;
  margin: 0;
  font-size: 17px;
}
.video-playlist-wrapper .video-playlist {
  overflow-y: auto;
  max-height: 300px;
  font-size: 14px;
}
.video-playlist-wrapper .video-playlist ul {
  padding: 0;
  margin: 0;
}
.video-playlist-wrapper .video-playlist ul li {
  list-style: none;
  padding: 10px;
  display: table;
}
.video-playlist-wrapper .video-playlist ul li.video-current {
  background-color: #ebebeb;
}
.video-playlist-wrapper .video-playlist ul li .video-number {
  display: table-cell;
  padding: 0 10px 0 0;
  vertical-align: middle;
  font-weight: bold;
  font-size: 16px;
}
.video-playlist-wrapper .video-playlist ul li .video-image {
  display: table-cell;
  padding: 0 10px 0 0;
  width: 60px;
  overflow: hidden;
  vertical-align: middle;
}
.video-playlist-wrapper .video-playlist ul li .video-title {
  display: table-cell;
}

.videos-list a {
  color: #5a5a5a;
  text-decoration: none;
}
.videos-list a:hover {
  text-decoration: underline;
}
.videos-list .imgBox .video-playlist-icon,
.videos-list .imgBox .video-playlist-items {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: rgba(129, 159, 103, 0.85);
  cursor: pointer;
  z-index: 1;
  line-height: 35px;
}
.videos-list .imgBox .video-playlist-icon {
  text-align: center;
  color: #fff;
}
.videos-list .imgBox .video-playlist-items {
  right: 0;
  left: 37px;
  width: auto;
  color: #000;
  padding: 0 10px;
}
.videos-list h2 {
  margin: 1em 0 0.5em;
}
.videos-list .searchVideo input[type=text] {
  background: #fff;
}

.video-desc {
  margin-top: 20px;
}

/* Videos */
.rtmp-streaming-video {
  position: relative;
}
.rtmp-streaming-video img {
  width: 100%;
}
.rtmp-streaming-video .fa-play {
  color: #fff;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  position: absolute;
  top: 50%;
}
.rtmp-streaming-video .alert {
  left: 5%;
  margin: -1.5em 0 0;
  position: absolute;
  top: 50%;
  width: 90%;
}

.visible-mobile {
  display: none;
}

@media only screen and (max-width: 480px) {
  .hidden-mobile {
    display: none !important;
  }

  .visible-mobile {
    display: block;
  }
}
.brand-page .search-block {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .brand-page {
    margin-bottom: -29px;
  }
}
@media (max-width: 767px) {
  .brand-page .search-block {
    margin-bottom: 25px;
  }
  .brand-page .main-btn {
    width: 100%;
    text-align: center;
  }
}

/*simple-page-header*/
.simple-page-header {
  margin-bottom: 36px;
}
.simple-page-header p {
  margin-bottom: 15px;
}
.simple-page-header p strong {
  font-weight: 600;
}
.simple-page-header.type-2 .main-title {
  margin-bottom: 4px;
}
.simple-page-header.type-2 h4 span {
  font-weight: 400;
}
.simple-page-header.type-3 .main-title {
  border-bottom: 0;
}
.simple-page-header .addthis_sharing_toolbox:before {
  display: none;
  opacity: 0;
}
@media (max-width: 767px) {
  .simple-page-header {
    margin-bottom: 25px;
  }
  .simple-page-header .addthis_sharing_toolbox {
    margin-bottom: 15px;
  }
  .simple-page-header.type-2 .addthis_sharing_toolbox {
    margin-bottom: 0;
  }
  .simple-page-header.type-2 h4 {
    font-size: 16px;
    margin-top: 4px;
  }
  .simple-page-header.type-4 .addthis_sharing_toolbox {
    margin-bottom: 0;
  }
}

.line-devider {
  height: 1px;
  margin: 15px 0;
  background-color: rgba(35, 31, 32, 0.1);
}

/*search-bklock*/
.search-block {
  position: relative;
}
.search-block input[type=text], .search-block-submit {
  display: block;
  float: left;
}
.search-block input[type=text] {
  height: 37px;
  margin-bottom: 0;
  width: calc(100% - 168px);
}
.search-block-submit {
  float: right;
  width: 160px;
}
.search-block-submit .main-btn {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .search-block input[type=text] {
    width: 100%;
  }
  .search-block-submit {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .search-block-submit:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #24A54A url("//d2azl42aua8mom.cloudfront.net/assets/images/search.svg") no-repeat center center;
    margin: -7px 0 0 -7px;
  }
  .search-block-submit .main-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
  }
}

/*brand-filter*/
.brand-filter-entry {
  padding: 0;
  margin-bottom: 25px;
}
.brand-filter-entry li {
  display: inline-block;
  margin-right: 15px;
}
.brand-filter-entry li:last-child {
  margin-right: 0;
}
.brand-filter-entry a, .brand-filter-entry span {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  color: rgba(35, 31, 32, 0.8);
  text-decoration: none;
  text-transform: uppercase;
}
.brand-filter-entry span {
  color: rgba(35, 31, 32, 0.3);
}
.brand-filter-entry a:hover {
  text-decoration: underline;
}
.brand-filter-entry li.active a {
  color: #407a3a;
}
.brand-filter .k-dropdown {
  display: none;
  max-width: 767px !important;
}
@media (max-width: 767px) {
  .brand-filter {
    margin-bottom: 23px;
  }
  .brand-filter-entry {
    display: none;
  }
  .brand-filter .k-dropdown {
    display: block;
  }
}

/*brand-list*/
.brand-list {
  margin-bottom: 29px;
}
.brand-list h3 {
  font-weight: 400;
  margin-top: 0;
  text-transform: uppercase;
}
.brand-list ul {
  padding: 0;
  margin: 0;
}
.brand-list li {
  display: block;
  margin-bottom: 5px;
}
.brand-list li:last-child {
  margin-bottom: 0;
}
.brand-list a {
  font-size: 16px;
  line-height: 1.38;
  color: #231F20;
  text-decoration: none;
}
.brand-list a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .brand-list a {
    font-size: 14px;
  }
  .brand-list li {
    margin-bottom: 8px;
  }
}

/*brand-single*/
.brand-single .event-news {
  margin-bottom: 13px;
}
.brand-single .simple-page-header {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .brand-single .tag-nav {
    border: 0;
    padding: 0;
  }
}

/*product-single*/
.product-single .product-controls {
  margin-bottom: 18px;
  overflow: auto;
}
.product-single .product-controls .product-controls-prev,
.product-single .product-controls .product-controls-next {
  padding-left: 0;
  padding-right: 0;
}
.product-single .product-controls .product-controls-next {
  text-align: right;
}
.product-single .product-controls .product-controls-prev-link,
.product-single .product-controls .product-controls-next-link {
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.product-single .product-controls .product-controls-arrow {
  position: absolute;
  top: 10px;
}
.product-single .product-controls .product-controls-arrow-right {
  right: 0;
}
.product-single .product-controls .product-controls-arrow .fa-angle-left,
.product-single .product-controls .product-controls-arrow .fa-angle-right {
  color: #24A54A;
  font-size: 18px;
  font-weight: bold;
}
.product-single .product-controls .product-controls-content-left {
  margin-left: 15px;
}
.product-single .product-controls .product-controls-content-right {
  margin-right: 15px;
}
.product-single .product-controls .product-controls-label {
  text-transform: uppercase;
  color: #24A54A;
}
.product-single .product-controls .product-controls-name {
  color: #999999;
}
.product-single .simple-page-header {
  margin-bottom: 18px;
}

/*brand*/
.brand {
  margin-bottom: 28px;
}
.brand-img {
  padding-bottom: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  overflow: hidden;
  transform: translateZ(0);
}
.brand-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}
.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.brand-buttons {
  align-self: flex-end;
  width: 100%;
}
.brand-buttons a {
  margin-right: 20px;
}
.brand-buttons a:last-child {
  margin-right: 0;
}
.brand .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .brand {
    margin-bottom: 10px;
  }
  .brand .row {
    display: block;
  }
  .brand-img {
    width: 280px;
    height: 280px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }
  .brand-buttons .main-btn {
    margin-bottom: 8px;
  }
  .brand-buttons .main-btn:last-child {
    margin-bottom: 8px;
  }
}

.brand-contact-row {
  display: block;
  padding: 9px 10px;
}
.brand-contact-row:after {
  content: "";
  display: block;
  clear: both;
}
.brand-contact-row:nth-child(2n+1) {
  background: #fbfbfb;
}
.brand-contact-social a {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
  background: rgba(35, 31, 32, 0.3);
  border-radius: 50%;
  margin-right: 11px;
  transition: background 0.25s ease-in-out;
}
.brand-contact-social a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.brand-contact-social a.facebook:before {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/facebook.svg");
}
.brand-contact-social a.twitter:before {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/twitter.svg");
}
.brand-contact-social a.instagram:before {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/ic-instagram.svg");
}
.brand-contact-social a.linkedin:before {
  background-image: url("//d2azl42aua8mom.cloudfront.net/assets/images/linkedin.svg");
}
.brand-contact-social a:hover {
  background: #24A54A;
}
.brand-contact-social a:last-child {
  margin-right: 0;
}
.brand-contact span {
  display: block;
  float: left;
  font-size: 16px;
  word-break: break-word;
}
.brand-contact span:first-child {
  width: 110px;
  font-weight: 600;
  padding-right: 15px;
}
.brand-contact span:first-child.supplier-info-field {
  width: 125px;
}
.brand-contact span:last-child {
  width: calc(100% - 110px);
}
.brand-contact span:last-child.supplier-info-value {
  width: calc(100% - 125px);
}
.brand-contact a {
  color: #231F20;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.brand-contact a:hover {
  border-bottom-color: transparent;
}

/*prodcut*/
.prodcut {
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 20px;
}
.prodcut:hover {
  text-decoration: none;
}
.prodcut-img {
  display: block;
  position: relative;
  width: 100%;
  height: 223px;
  overflow: hidden;
  transform: translateZ(0);
  border-bottom: 1px solid #e5e5e5;
}
.prodcut-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}
.prodcut-img span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #231F20;
  background-color: rgba(255, 255, 255, 0.54);
  padding: 7px 15px;
  text-align: center;
  transform: translateY(-50%);
}
.prodcut-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.13;
  color: #393b3b;
  padding: 11px 10px;
  min-height: 58px;
}
.prodcut.disable {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .prodcut {
    margin-bottom: 9px;
  }
  .prodcut-img {
    height: 0;
    padding-bottom: 100%;
  }
  .prodcut-img span {
    font-size: 16px;
    padding: 10px 15px;
  }
  .prodcut-title {
    font-size: 14px;
    line-height: 1.29;
  }
}

@media (max-width: 767px) {
  .row.mob8 {
    margin-left: -4px;
    margin-right: -4px;
  }

  .row.mob8 > div[class^=col-] {
    padding-left: 4px;
    padding-right: 4px;
  }
}
/*brand-overview*/
.brand-overview {
  margin-bottom: 27px;
  color: #4d4e4e;
}
.brand-overview-line:after {
  content: "";
  display: block;
  clear: both;
}
.brand-overview-label {
  float: left;
  width: 105px;
  padding-right: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.brand-overview-info {
  float: left;
  width: calc(100% - 105px);
  font-size: 16px;
  line-height: 1.5;
}
.brand-overview-info .contact-name {
  margin-top: 0;
  margin-bottom: 0;
}
.brand-overview-info.empty {
  color: rgba(35, 31, 32, 0.6);
}
.brand-overview-line {
  margin-bottom: 9px;
}
.brand-overview-line:last-child {
  margin-bottom: 0;
}
.brand-overview a {
  color: #24A54A;
  text-decoration: none;
}
.brand-overview .product-lineup {
  padding-left: 0;
}
.brand-overview .product-lineup .prodcut a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .brand-overview-label, .brand-overview-info {
    float: none;
    width: 100%;
    padding-right: 0;
  }
  .brand-overview .map-link {
    font-size: 14px;
    font-weight: 600;
  }
}

/*popup*/
.popup-wrapper {
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  transition-delay: 0.3s;
}
.popup-wrapper .bg-layer {
  position: absolute;
  left: 0;
  top: -100px;
  right: 0;
  bottom: -100px;
  background: rgba(35, 31, 32, 0.3);
  transition: all 0.3s ease-out;
  opacity: 0;
}
.popup-wrapper.active {
  left: 0;
  transition-delay: 0s;
}
.popup-wrapper.active .bg-layer {
  opacity: 1;
}

.popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  font-size: 0;
  text-align: center;
  transition: all 0.3s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}
.popup-content:after {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  content: "";
}
.popup-content.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.popup-content .layer-close {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 10000px;
}
.popup-content .field-validation-error {
  font-size: 12px;
}

.popup-container {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 416px;
}
.popup-container .button-close {
  position: absolute;
  top: 21px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/close.svg") no-repeat center center;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
.popup-container .button-close:hover {
  opacity: 0.6;
}

.popup-align {
  padding: 24px;
  overflow: hidden;
}

.popup-form .sub-title {
  border: 0;
  margin-bottom: 13px;
}
.popup-form .form-group + h4 {
  margin-top: 25px;
}
.popup-form input.main-btn {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .popup-form a.main-btn {
    margin-bottom: 8px;
  }
}

/*brand-edit*/
.brand-edit {
  margin-top: 10px;
}
.brand-edit .form-group input[type=text].form-control {
  width: calc(100% - 24px);
  height: 20px;
}
.brand-edit .form-group textarea.brand-description {
  height: 500px;
  width: calc(100% - 24px);
}
@media (max-width: 767px) {
  .brand-edit .main-btn {
    padding-right: 0;
    padding-left: 0;
  }
  .brand-edit .main-btn.btn-with-margin {
    margin-top: 10px;
  }
}
.brand-edit .edit-brand-button-group {
  margin-top: 10px;
  margin-bottom: 30px;
}

.social-reaction-links {
  font-size: 0.8em;
  margin-top: 1em;
  padding: 1em 0 0;
}

.social-reaction-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-reaction-links ul li {
  list-style: none;
  padding: 0;
  height: 23px;
  text-align: left;
  float: left;
  margin: 0 0 0 0.5em;
}

.social-reaction-links ul li:first-child {
  margin-left: 0;
}

social-reaction-links .twitter-share-button {
  width: 95px !important;
}

.social-reaction-links #___plusone_0,
.social-reaction-links #___plusone_0 iframe {
  width: 65px !important;
}

.brand-media-image {
  margin-bottom: 1em;
  position: relative;
  text-align: center;
}
.brand-media-image img {
  max-height: none;
  max-width: 100%;
}

.brand-media-info {
  font-size: 0.85em;
  margin-top: 1.5em;
  text-align: center;
}
.brand-media-info h5 {
  display: inline-block;
  margin: 0 0.25em 0 0;
}
.brand-media-info p {
  display: inline-block;
  line-height: 1.8em;
  margin: 0 1em 0 0;
  vertical-align: top;
}

/*simple-text*/
.simple-text {
  font-size: 16px;
  line-height: 1.5;
  color: #231F20;
}
.simple-text ul {
  padding-left: 20px;
}
.simple-text li {
  margin-bottom: 5px;
}
.simple-text li:last-child {
  margin-bottom: 0;
}
.simple-text p {
  margin-bottom: 17px;
}
.simple-text a {
  color: #231F20;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.simple-text a:hover {
  border-bottom-color: transparent;
}
.simple-text strong {
  font-weight: 600;
}
.simple-text > *:last-child {
  margin-bottom: 0;
}
.simple-text.space24 p,
.simple-text.space24 blockquote {
  margin-bottom: 24px;
}
.simple-text.space24 > *:last-child {
  margin-bottom: 0;
}

blockquote {
  font-size: inherit;
  line-height: inherit;
  color: #231F20;
  font-weight: 600;
  color: rgba(35, 31, 32, 0.9);
  border-color: #faaa22;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  blockquote {
    font-size: 14px;
    line-height: 1.57;
  }
}

/*marketplace-text*/
.marketplace-text {
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .marketplace-text {
    margin-bottom: 22px;
  }
}

/*marketplace-location*/
.marketplace-location {
  margin-bottom: 14px;
}
.marketplace-location p {
  margin-bottom: 4px;
}

/*marketplace-contact*/
.marketplace-contact {
  padding-left: 0;
  margin-bottom: 19px;
}
.marketplace-contact li {
  display: block;
  margin-bottom: 3px;
}
.marketplace-contact li:after {
  content: "";
  display: block;
  clear: both;
}
.marketplace-contact li:last-child {
  margin-bottom: 0;
}
.marketplace-contact span {
  float: left;
  font-size: 16px;
  line-height: 1.5;
  color: #231F20;
}
.marketplace-contact span:first-child {
  width: 90px;
  font-weight: 600;
  padding-right: 10px;
}
.marketplace-contact span:last-child {
  width: calc(100% - 90px);
}
.marketplace-contact a {
  color: #231F20;
  word-break: break-word;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.marketplace-contact a:hover {
  border-bottom-color: transparent;
}
@media (max-width: 767px) {
  .marketplace-contact span:first-child,
.marketplace-contact span:last-child {
    float: none;
    width: 100%;
  }
}

.marketplace-posted {
  color: rgba(35, 31, 32, 0.6);
}
.marketplace-posted p {
  margin-bottom: 0;
}
.marketplace-posted + .swiper-double {
  margin-top: 25px;
}

/*swiper-double*/
.swiper-double {
  margin: 0 -6px;
}

.swiper-main {
  float: left;
  width: 77%;
  padding: 0 6px;
}
.swiper-main-item {
  height: 440px;
  background-color: rgba(35, 31, 32, 0.05);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.swiper-main-item.small {
  background-size: auto;
}
.swiper-main .swiper-button-prev,
.swiper-main .swiper-button-next {
  position: absolute;
  top: 50%;
  left: 0;
  width: 52px;
  height: 120px;
  background: rgba(35, 31, 32, 0.35);
  margin-top: -60px;
}
.swiper-main .swiper-button-prev:before,
.swiper-main .swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 30px;
  background: url("//d2azl42aua8mom.cloudfront.net/assets/images/arrow-swiper.svg") no-repeat center center;
  margin-top: -15px;
  margin-left: -8px;
}
.swiper-main .swiper-button-prev:before {
  margin-left: -12px;
  transform: rotate(180deg);
}
.swiper-main .swiper-button-next {
  left: auto;
  right: 0;
}
.swiper-main .swiper-button-disabled {
  display: none;
}
.swiper-main .swiper-container-horizontal .swiper-pagination {
  display: none;
  position: relative;
  bottom: 0;
}
.swiper-main .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: rgba(35, 31, 32, 0.26);
  opacity: 1;
}
.swiper-main .swiper-pagination-bullet-active {
  background: #24A54A;
}
.swiper-main .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
@media (max-width: 767px) {
  .swiper-main {
    width: 100%;
  }
  .swiper-main-item {
    height: 0;
    padding-bottom: 60%;
  }
  .swiper-main-item.small {
    background-size: contain;
  }
  .swiper-main .swiper-button-prev,
.swiper-main .swiper-button-next {
    display: none;
  }
  .swiper-main .swiper-container-horizontal .swiper-pagination {
    display: block;
  }
}

.swiper-second {
  position: relative;
  float: left;
  width: 23%;
  padding: 0 6px;
}
.swiper-second:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 6px;
  right: 14px;
  height: 141px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  z-index: 2;
  pointer-events: none;
}
.swiper-second-item {
  position: relative;
  height: 100%;
  background-color: rgba(35, 31, 32, 0.05);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: 8px;
  cursor: pointer;
}
.swiper-second-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(156, 168, 172, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.swiper-slide.current .swiper-second-item:before {
  opacity: 1;
}
.swiper-second .swiper-container {
  height: 440px;
}
.swiper-second .swiper-container-vertical .swiper-scrollbar {
  right: 1px;
  width: 1px;
  background: rgba(35, 31, 32, 0.2);
  border-radius: 0;
}
.swiper-second .swiper-scrollbar-drag {
  width: 3px;
  left: -1px;
  border-radius: 0;
  background: #aeb6b6;
}
@media (max-width: 767px) {
  .swiper-second {
    display: none;
  }
}

@media (max-width: 991px) {
  .col-aside {
    margin-top: 30px;
  }
}
.offering {
  position: relative;
  font-size: 0;
  margin-bottom: 40px;
}
.offering:last-child {
  margin-bottom: 0;
}
.offering figure {
  margin: 0;
  text-align: center;
}
.offering > div[class^=col-] {
  float: none;
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}
.offering h4 {
  margin: 0 0 19px 0;
}
.offering p a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.offering p a:hover {
  border-bottom-color: transparent;
}
.offering p strong {
  font-weight: 600;
}
.offering p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .offering {
    margin-bottom: 25px;
  }
  .offering figure {
    width: 68px;
    height: 68px;
    font-size: 0;
    border: solid 1px #f3f3f3;
  }
  .offering figure img {
    display: inline-block;
    max-height: 100%;
    vertical-align: middle;
  }
  .offering figure:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
  }
  .offering > div:first-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  .offering > div:last-child {
    width: 100%;
  }
  .offering h4 {
    display: table-cell;
    width: 9999px;
    padding-left: 75px;
    height: 68px;
    vertical-align: middle;
  }
  .offering p {
    margin-top: 6px;
  }
}

.contact-block {
  font-size: 16px;
  line-height: 1.5;
  color: #231F20;
}
.contact-block address {
  line-height: 1.5;
}
.contact-block a {
  color: #231F20;
  text-decoration: none;
  border-bottom: 1px solid #24A54A;
}
.contact-block a:hover {
  border-bottom-color: transparent;
}
.contact-block strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact-block .media-list.phone .row {
    margin: 0;
  }
  .contact-block .media-list.phone div[class^=col-] {
    display: inline-block;
    padding: 0;
    width: auto;
  }
  .contact-block .media-list.phone div[class^=col-]:first-child {
    min-width: 135px;
    margin-right: 14px;
  }
}

.news-submit-form .jobs-toggle.marg0 {
  margin-bottom: 20px;
}
.news-submit-form .jobs-toggle.marg0:first-child {
  margin-bottom: 0;
}

.listings-table {
  margin: 0 0 30px;
}
.listings-table .listings-table-with-images .media-list-title, .listings-table-with-images .listings-table .media-list-title {
  line-height: 1.3;
  margin: 0;
  white-space: normal;
}
.listings-table:first-child {
  margin-top: -5px;
}
.listings-table:last-child {
  margin-bottom: 0;
}
.listings-table-with-images .media-list-title {
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  min-height: 0;
}
.listings-table .sub-title {
  margin-bottom: 13px;
  border: none;
}
.listings-table .media-list {
  margin: 0 0 0px;
}
.listings-table .media-list-text {
  display: none;
}
.listings-table .media-list-item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.listings-table .media-list-checkmark {
  font-size: 14px;
  color: #231F20;
  margin: 2px 0 4px;
  padding-left: 19px;
  position: relative;
  line-height: 1.1;
}
.listings-table .vertical-center-block {
  width: 100%;
}
.listings-table .vertical-center-block-item {
  padding-left: 20px;
  width: calc(100% - 88px);
  font-size: 0;
}
.listings-table .vertical-center-block-item.cropped {
  height: 88px;
  width: 88px;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: contain;
}
.listings-table .vertical-center-block-item.listings-table-header-image {
  width: 88px;
}
.listings-table .vertical-center-block-inner {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.listings-table .vertical-center-block-inner.info {
  width: 30%;
}
.listings-table .vertical-center-block-inner.types {
  width: 43%;
  font-size: 14px;
  vertical-align: top;
}
.listings-table .vertical-center-block-inner.checkmark {
  width: 10%;
  vertical-align: top;
}
.listings-table .vertical-center-block-inner.actions {
  width: 7%;
  font-size: 14px;
  text-align: right;
  vertical-align: top;
  color: #231F20;
  padding-right: 0;
}
.listings-table .vertical-center-block-inner .links-container {
  display: flex;
}
.listings-table .vertical-center-block-inner .links-container .delete-retailer {
  margin-left: 10px;
}
.listings-table .listings-table-header {
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .listings-table-with-images .media-list-title {
    font-size: 14px;
    min-height: 0;
  }

  .listings-table .listings-table-with-images .media-list-title {
    margin-bottom: 5px;
  }
  .listings-table .media-list-item {
    padding: 12px 0;
  }
  .listings-table .vertical-center-block-item.cropped {
    width: 68px;
    height: 68px;
  }
  .listings-table .listings-table-header {
    display: none;
  }
  .listings-table .vertical-center-block-inner.info, .listings-table .vertical-center-block-inner.checkmark {
    padding-right: 0;
  }
  .listings-table .vertical-center-block-inner.info {
    display: block;
    width: 100%;
  }
  .listings-table .vertical-center-block-inner.types, .listings-table .vertical-center-block-inner.actions {
    display: none;
  }
  .listings-table .vertical-center-block-inner .media-list-checkmark {
    display: none;
  }
  .listings-table .vertical-center-block-inner .media-list-text {
    line-height: 1.38;
    color: #231F20;
    display: block;
  }
}
.draggable-item-hint {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid rgba(35, 31, 32, 0.1);
}

body.alert-visible:not(.page-account-subscribesinglepage) {
  padding-top: 88px !important;
}
@media (min-width: 992px) {
  body.alert-visible:not(.page-account-subscribesinglepage) {
    padding-top: 114px !important;
  }
}

.alert-bar {
  background: #ee3a25;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  padding: 6px 0;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 0;
}
.alert-bar a {
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 700;
}
.alert-bar a:hover {
  color: #fff;
}
.alert-bar em {
  border-right: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  margin-right: 14px;
  padding-right: 17px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .alert-bar {
    font-size: 14px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .alert-bar a, .alert-bar span {
    overflow: visible;
    text-align: center;
    white-space: normal;
  }
}
@media (min-width: 992px) {
  .alert-bar {
    top: 71px;
  }
}

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