@charset "UTF-8";
/*!
 * FullCalendar v3.10.5
 * Docs & License: https://fullcalendar.io/
 * (c) 2019 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left; }

.fc-rtl {
  text-align: right; }

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3; }

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3; }

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7; }

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer; }

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0; }

.fc-state-default {
  /* non-theme */
  border: 1px solid; }

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .2em;
  vertical-align: middle; }

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6; }

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear; }

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none; }

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block; }

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px; }

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); }

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px; }

.fc-popover .fc-header .fc-title {
  margin: 0 2px; }

.fc-popover .fc-header .fc-close {
  cursor: pointer; }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left; }

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right; }

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px; }

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0; }

.fc-clear {
  clear: both; }

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */ }

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */ }

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */ }

.fc th {
  text-align: center; }

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top; }

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */ }

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer; }

a[data-goto]:hover {
  text-decoration: underline; }

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0; }

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent; }

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */ }

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative; }

.fc-row .fc-bg {
  z-index: 1; }

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent; }

.fc-row .fc-bgevent-skeleton {
  z-index: 2; }

.fc-row .fc-highlight-skeleton {
  z-index: 3; }

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */ }

.fc-row .fc-helper-skeleton {
  z-index: 5; }

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent; }

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0; }

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0; }

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch; }

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */ }

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */ }

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */ }

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */ }

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed; }

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: .25; }

.fc-event .fc-content {
  position: relative;
  z-index: 2; }

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4; }

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none; }

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block; }

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px; }

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3); }

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0; }

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */ }

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */ }

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */ }

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px; }

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */ }

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */ }

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px; }

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */ }

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25; }

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden; }

.fc-day-grid-event .fc-time {
  font-weight: bold; }

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */ }

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */ }

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none; }

a.fc-more:hover {
  text-decoration: underline; }

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none; }

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */ }

.fc-more-popover {
  z-index: 2;
  width: 220px; }

.fc-more-popover .fc-event-container {
  padding: 10px; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red; }

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd; }

.fc-unthemed .fc-popover {
  background-color: #fff; }

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666; }

.fc-unthemed td.fc-today {
  background: #fcf8e3; }

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: .3; }

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/*
Acceptable font-family overrides for individual icons:
  "Arial", sans-serif
  "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative; }

.fc-icon-left-single-arrow:after {
  content: "\2039";
  font-weight: bold;
  font-size: 200%;
  top: -7%; }

.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%; }

.fc-icon-left-double-arrow:after {
  content: "\AB";
  font-size: 160%;
  top: -7%; }

.fc-icon-right-double-arrow:after {
  content: "\BB";
  font-size: 160%;
  top: -7%; }

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%; }

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%; }

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%; }

.fc-icon-x:after {
  content: "\D7";
  font-size: 200%;
  top: 6%; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px; }

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
  background-image: none; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal; }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome bold */ }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
  /* see through to fc-bg */ }

.fc.fc-bootstrap3 a {
  text-decoration: none; }

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline; }

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit; }

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none; }

.fc.fc-bootstrap4 a {
  text-decoration: none; }

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline; }

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit; }

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0; }

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff; }

.fc-bootstrap4 .fc-popover.card {
  position: absolute; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
  padding: 0; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none; }

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center; }

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em; }

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em; }

.fc-toolbar .fc-left {
  float: left; }

.fc-toolbar .fc-right {
  float: right; }

.fc-toolbar .fc-center {
  display: inline-block; }

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em; }

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0; }

/* title text */
.fc-toolbar h2 {
  margin: 0; }

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative; }

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2; }

.fc-toolbar .fc-state-down {
  z-index: 3; }

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4; }

.fc-toolbar button:focus {
  z-index: 5; }

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1; }

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */ }

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */ }

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden; }

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3; }

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px; }

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */ }

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right; }

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left; }

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0; }

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px; }

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080; }

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
  text-align: center; }

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em; }

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */ }

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */ }

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */ }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap; }

.fc-ltr .fc-axis {
  text-align: right; }

.fc-rtl .fc-axis {
  text-align: left; }

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1; }

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */ }

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent; }

.fc-time-grid > .fc-bg {
  z-index: 1; }

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */ }

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0; }

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1; }

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3; }

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4; }

.fc-time-grid .fc-now-indicator-line {
  z-index: 5; }

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */ }

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted; }

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */ }

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */ }

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px; }

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%; }

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */ }

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0; }

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */ }

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible; }

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */ }

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */ }

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px; }

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap; }

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap; }

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top; }

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */ }

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */ }

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\A0-\A0";
  /* seperate with a dash, wrapped in nbsp's */ }

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */ }

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize; }

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "="; }

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0; }

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */ }

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent; }

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent; }

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px; }

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */ }

.fc-list-view {
  border-width: 1px;
  border-style: solid; }

/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */ }

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px; }

.fc-list-table tr:first-child td {
  border-top-width: 0; }

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px; }

.fc-list-heading td {
  font-weight: bold; }

.fc-ltr .fc-list-heading-main {
  float: left; }

.fc-ltr .fc-list-heading-alt {
  float: right; }

.fc-rtl .fc-list-heading-main {
  float: right; }

.fc-rtl .fc-list-heading-alt {
  float: left; }

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */ }

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px; }

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0; }

.fc-rtl .fc-list-item-marker {
  padding-left: 0; }

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit; }

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline; }

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table; }

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee; }

/**
 *	This element is created inside your target element
 *	It is used so that your own element will not need to be altered
 **/
.time_circles {
  position: relative;
  width: 100%;
  height: 100%; }

/**
 *	This is all the elements used to house all text used
 * in time circles
 **/
.time_circles > div {
  position: absolute;
  text-align: center; }

/**
 *	Titles (Days, Hours, etc)
 **/
.time_circles > div > h4, html #jp-relatedposts .jp-relatedposts-items .time_circles > div > .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .time_circles > div > .jp-relatedposts-post-title, .time_circles > div > div#jp-relatedposts:before, html .time_circles > div > div#pv-jp-relatedposts:before {
  margin: 0px;
  padding: 0px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Century Gothic', Arial; }

/**
 *	Time numbers, ie: 12
 **/
.time_circles > div > span {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Century Gothic', Arial;
  font-size: 300%;
  margin-top: 0.4em;
  font-weight: bold; }

.ekko-lightbox {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 0 !important; }

.ekko-lightbox-container {
  position: relative; }

.ekko-lightbox-container > div.ekko-lightbox-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%; }

.ekko-lightbox iframe {
  width: 100%;
  height: 100%; }

.ekko-lightbox-nav-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex; }

.ekko-lightbox-nav-overlay a {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  transition: opacity .5s;
  color: #fff;
  font-size: 30px;
  z-index: 1; }

.ekko-lightbox-nav-overlay a > * {
  -ms-flex-positive: 1;
  flex-grow: 1; }

.ekko-lightbox-nav-overlay a > :focus {
  outline: none; }

.ekko-lightbox-nav-overlay a span {
  padding: 0 30px; }

.ekko-lightbox-nav-overlay a:last-child span {
  text-align: right; }

.ekko-lightbox-nav-overlay a:hover {
  text-decoration: none; }

.ekko-lightbox-nav-overlay a:focus {
  outline: none; }

.ekko-lightbox-nav-overlay a.disabled {
  cursor: default;
  visibility: hidden; }

.ekko-lightbox a:hover {
  opacity: 1;
  text-decoration: none; }

.ekko-lightbox .modal-dialog {
  display: none; }

.ekko-lightbox .modal-footer {
  text-align: left; }

.ekko-lightbox-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }

.ekko-lightbox-loader > div {
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center; }

.ekko-lightbox-loader > div > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  animation: a 2s infinite ease-in-out; }

.ekko-lightbox-loader > div > div:last-child {
  animation-delay: -1s; }

.modal-dialog .ekko-lightbox-loader > div > div {
  background-color: #333; }

@keyframes a {
  0%, to {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImVra28tbGlnaHRib3guY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGVBQ0UsOEJBQXlCLEFBQXpCLHVCQUF5QixBQUN6QixzQkFBb0IsQUFBcEIsbUJBQW9CLEFBQ3BCLHFCQUF3QixBQUF4Qix1QkFBd0IsQUFDeEIseUJBQTZCLENBQzlCLEFBQ0QseUJBQ0UsaUJBQW1CLENBQ3BCLEFBQ0QsZ0RBQ0Usa0JBQW1CLEFBQ25CLE1BQU8sQUFDUCxPQUFRLEFBQ1IsU0FBVSxBQUNWLFFBQVMsQUFDVCxVQUFZLENBQ2IsQUFDRCxzQkFDRSxXQUFZLEFBQ1osV0FBYSxDQUNkLEFBQ0QsMkJBQ0UsVUFBYSxBQUNiLGtCQUFtQixBQUNuQixNQUFPLEFBQ1AsT0FBUSxBQUNSLFdBQVksQUFDWixZQUFhLEFBQ2Isb0JBQWMsQUFBZCxZQUFjLENBQ2YsQUFDRCw2QkFDRSxXQUFRLEFBQVIsT0FBUSxBQUNSLG9CQUFjLEFBQWQsYUFBYyxBQUNkLHNCQUFvQixBQUFwQixtQkFBb0IsQUFDcEIsVUFBVyxBQUNYLHVCQUF5QixBQUN6QixXQUFZLEFBQ1osZUFBZ0IsQUFDaEIsU0FBYSxDQUNkLEFBQ0QsK0JBQ0Usb0JBQWEsQUFBYixXQUFhLENBQ2QsQUFDRCxvQ0FDRSxZQUFjLENBQ2YsQUFDRCxrQ0FDRSxjQUFnQixDQUNqQixBQUNELDZDQUNFLGdCQUFrQixDQUNuQixBQUNELG1DQUNFLG9CQUFzQixDQUN2QixBQUNELG1DQUNFLFlBQWMsQ0FDZixBQUNELHNDQUNFLGVBQWdCLEFBQ2hCLGlCQUFtQixDQUNwQixBQUNELHVCQUNFLFVBQVcsQUFDWCxvQkFBc0IsQ0FDdkIsQUFDRCw2QkFDRSxZQUFjLENBQ2YsQUFDRCw2QkFDRSxlQUFpQixDQUNsQixBQUNELHNCQUNFLGtCQUFtQixBQUNuQixNQUFPLEFBQ1AsT0FBUSxBQUNSLFNBQVUsQUFDVixRQUFTLEFBQ1QsV0FBWSxBQUNaLG9CQUFjLEFBQWQsYUFBYyxBQUVkLDBCQUF1QixBQUF2QixzQkFBdUIsQUFFdkIscUJBQXdCLEFBQXhCLHVCQUF3QixBQUV4QixzQkFBb0IsQUFBcEIsa0JBQW9CLENBQ3JCLEFBQ0QsMEJBQ0UsV0FBWSxBQUNaLFlBQWEsQUFDYixrQkFBbUIsQUFDbkIsaUJBQW1CLENBQ3BCLEFBQ0QsOEJBQ0UsV0FBWSxBQUNaLFlBQWEsQUFDYixrQkFBbUIsQUFDbkIsc0JBQXVCLEFBQ3ZCLFdBQWEsQUFDYixrQkFBbUIsQUFDbkIsTUFBTyxBQUNQLE9BQVEsQUFDUixtQ0FBNkMsQ0FDOUMsQUFDRCx5Q0FDRSxtQkFBcUIsQ0FDdEIsQUFDRCw0Q0FDRSxxQkFBdUIsQ0FDeEIsQUFVRCxhQUNFLE1BRUUsbUJBQW9CLEFBQ3BCLDBCQUE0QixDQUM3QixBQUNELElBQ0UsbUJBQW9CLEFBQ3BCLDBCQUE0QixDQUM3QixDQUNGIiwiZmlsZSI6ImVra28tbGlnaHRib3guY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLmVra28tbGlnaHRib3gge1xuICBkaXNwbGF5OiBmbGV4ICFpbXBvcnRhbnQ7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBwYWRkaW5nLXJpZ2h0OiAwcHghaW1wb3J0YW50O1xufVxuLmVra28tbGlnaHRib3gtY29udGFpbmVyIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLmVra28tbGlnaHRib3gtY29udGFpbmVyID4gZGl2LmVra28tbGlnaHRib3gtaXRlbSB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAwO1xuICBsZWZ0OiAwO1xuICBib3R0b206IDA7XG4gIHJpZ2h0OiAwO1xuICB3aWR0aDogMTAwJTtcbn1cbi5la2tvLWxpZ2h0Ym94IGlmcmFtZSB7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSB7XG4gIHotaW5kZXg6IDEwMDtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB0b3A6IDA7XG4gIGxlZnQ6IDA7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIGRpc3BsYXk6IGZsZXg7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhIHtcbiAgZmxleDogMTtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgb3BhY2l0eTogMDtcbiAgdHJhbnNpdGlvbjogb3BhY2l0eSAwLjVzO1xuICBjb2xvcjogI2ZmZjtcbiAgZm9udC1zaXplOiAzMHB4O1xuICB6LWluZGV4OiAxMDA7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhID4gKiB7XG4gIGZsZXgtZ3JvdzogMTtcbn1cbi5la2tvLWxpZ2h0Ym94LW5hdi1vdmVybGF5IGEgPiAqOmZvY3VzIHtcbiAgb3V0bGluZTogbm9uZTtcbn1cbi5la2tvLWxpZ2h0Ym94LW5hdi1vdmVybGF5IGEgc3BhbiB7XG4gIHBhZGRpbmc6IDAgMzBweDtcbn1cbi5la2tvLWxpZ2h0Ym94LW5hdi1vdmVybGF5IGE6bGFzdC1jaGlsZCBzcGFuIHtcbiAgdGV4dC1hbGlnbjogcmlnaHQ7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhOmhvdmVyIHtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuLmVra28tbGlnaHRib3gtbmF2LW92ZXJsYXkgYTpmb2N1cyB7XG4gIG91dGxpbmU6IG5vbmU7XG59XG4uZWtrby1saWdodGJveC1uYXYtb3ZlcmxheSBhLmRpc2FibGVkIHtcbiAgY3Vyc29yOiBkZWZhdWx0O1xuICB2aXNpYmlsaXR5OiBoaWRkZW47XG59XG4uZWtrby1saWdodGJveCBhOmhvdmVyIHtcbiAgb3BhY2l0eTogMTtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuLmVra28tbGlnaHRib3ggLm1vZGFsLWRpYWxvZyB7XG4gIGRpc3BsYXk6IG5vbmU7XG59XG4uZWtrby1saWdodGJveCAubW9kYWwtZm9vdGVyIHtcbiAgdGV4dC1hbGlnbjogbGVmdDtcbn1cbi5la2tvLWxpZ2h0Ym94LWxvYWRlciB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAwO1xuICBsZWZ0OiAwO1xuICBib3R0b206IDA7XG4gIHJpZ2h0OiAwO1xuICB3aWR0aDogMTAwJTtcbiAgZGlzcGxheTogZmxleDtcbiAgLyogZXN0YWJsaXNoIGZsZXggY29udGFpbmVyICovXG4gIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gIC8qIG1ha2UgbWFpbiBheGlzIHZlcnRpY2FsICovXG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAvKiBjZW50ZXIgaXRlbXMgdmVydGljYWxseSwgaW4gdGhpcyBjYXNlICovXG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG59XG4uZWtrby1saWdodGJveC1sb2FkZXIgPiBkaXYge1xuICB3aWR0aDogNDBweDtcbiAgaGVpZ2h0OiA0MHB4O1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5la2tvLWxpZ2h0Ym94LWxvYWRlciA+IGRpdiA+IGRpdiB7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcbiAgb3BhY2l0eTogMC42O1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMDtcbiAgbGVmdDogMDtcbiAgYW5pbWF0aW9uOiBzay1ib3VuY2UgMnMgaW5maW5pdGUgZWFzZS1pbi1vdXQ7XG59XG4uZWtrby1saWdodGJveC1sb2FkZXIgPiBkaXYgPiBkaXY6bGFzdC1jaGlsZCB7XG4gIGFuaW1hdGlvbi1kZWxheTogLTFzO1xufVxuLm1vZGFsLWRpYWxvZyAuZWtrby1saWdodGJveC1sb2FkZXIgPiBkaXYgPiBkaXYge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzMzO1xufVxuQC13ZWJraXQta2V5ZnJhbWVzIHNrLWJvdW5jZSB7XG4gIDAlLFxuICAxMDAlIHtcbiAgICAtd2Via2l0LXRyYW5zZm9ybTogc2NhbGUoMCk7XG4gIH1cbiAgNTAlIHtcbiAgICAtd2Via2l0LXRyYW5zZm9ybTogc2NhbGUoMSk7XG4gIH1cbn1cbkBrZXlmcmFtZXMgc2stYm91bmNlIHtcbiAgMCUsXG4gIDEwMCUge1xuICAgIHRyYW5zZm9ybTogc2NhbGUoMCk7XG4gICAgLXdlYmtpdC10cmFuc2Zvcm06IHNjYWxlKDApO1xuICB9XG4gIDUwJSB7XG4gICAgdHJhbnNmb3JtOiBzY2FsZSgxKTtcbiAgICAtd2Via2l0LXRyYW5zZm9ybTogc2NhbGUoMSk7XG4gIH1cbn1cbiJdfQ== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  color: transparent;
  top: 0%;
  bottom: 0;
  padding: 0;
  border: none;
  outline: none;
  z-index: 99;
  width: 40px; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: .5; }
  .slick-prev:before,
  .slick-next:before {
    font-size: 40px;
    line-height: 1;
    color: white;
    opacity: .5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Material Icons'; }

.slick-prev {
  left: -9px;
  background: none;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.6+0,0+100 */
  /*
background: -moz-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); 
background: -webkit-linear-gradient(left, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%);
background: linear-gradient(to right, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000', endColorstr='#00000000',GradientType=1 ); 
*/ }
  .slick-prev:before {
    content: '\e408'; }

.slick-next {
  right: -9px;
  background: none;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.6+100 */
  /*
background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%); 
background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%); 
background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=1 ); 
*/ }
  .slick-next:before {
    content: '\e409'; }

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 25px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*

Social icons

*/
@font-face {
  font-family: 'fontello';
  src: url("../fonts/fontello.eot?52760640");
  src: url("../fonts/fontello.eot?52760640#iefix") format("embedded-opentype"), url("../fonts/fontello.woff2?52760640") format("woff2"), url("../fonts/fontello.woff?52760640") format("woff"), url("../fonts/fontello.ttf?52760640") format("truetype"), url("../fonts/fontello.svg?52760640#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?52760640#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.icon-twitter:before {
  content: '\f099'; }

.icon-facebook:before {
  content: '\f09a'; }

.icon-rss:before {
  content: '\f09e'; }

.icon-linkedin:before {
  content: '\f0e1'; }

/*.icon-youtube:before { content: '\f167'; } */
.icon-youtube:before {
  content: ' '; }

.icon-spotify:before {
  content: '\f1bc'; }

.icon-twitter:before {
  content: '';
  background-image: url("../img/x-logo-white.svg");
  width: 15px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  translate: 0;
  translate: 2px -1px; }

/*

Colours

*/
/*
*
* Bootstrap 3.0
* 
*
*/
/*
$grid-breakpoints: (
  // Extra small screen / phone
  xs: 0,
  // Small screen / phone
  sm: 544px,
  // Medium screen / tablet
  md: 768px,
  // Large screen / desktop
  lg: 992px,
  // Extra large screen / wide desktop
  xl: 1200px
) !default;*/
/*$container-max-widths: (
  sm: 576px,
  md: 720px,
  lg: 940px,
  xl: 1140px
) !default;*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active {
  outline: 0; }

a:hover {
  outline: 0; }

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

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

button,
input,
input[type=search],
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

button::-moz-focus-inner,
input::-moz-focus-inner,
input[type=search]::-moz-focus-inner {
  border: 0;
  padding: 0; }


input,
input[type=search] {
  line-height: normal; }

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

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

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

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret, input[type=submit] > .caret, body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn > .caret,
  .dropup > .btn > .caret,
  .dropup > input[type=submit] > .caret,
  body .pea_cook_wrapper.pea_cook_bottomcenter .dropup > button.pea_cook_btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table, table {
    border-collapse: collapse !important; }
    .table td, table td,
    .table th,
    table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width; }

@-o-viewport {
  width: device-width; }

@-webkit-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #404040;
  background-color: #f9f9f9; }

[tabindex="-1"]:focus {
  outline: none !important; }

h1, h2, h3, h4, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, div#jp-relatedposts:before, html div#pv-jp-relatedposts:before, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

a {
  color: #b29454;
  text-decoration: none; }
  a:focus, a:hover {
    color: #b29454;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

pre {
  margin-top: 0;
  margin-bottom: 1rem; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
input[type=search],
label,
select,
summary,
textarea {
  touch-action: manipulation; }

table {
  background-color: transparent; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #818a91;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: left; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }


input,
input[type=search],
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  border-radius: 0; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }

input[type="search"] {
  box-sizing: inherit;
  -webkit-appearance: none; }

output {
  display: inline-block; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, div#jp-relatedposts:before, html div#pv-jp-relatedposts:before, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  font-weight: 700;
  line-height: 1.1;
  color: #94793f; }

h1 {
  font-size: 2rem; }

h2 {
  font-size: 1.35rem; }

h3 {
  font-size: 1rem; }

h4, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, div#jp-relatedposts:before, html div#pv-jp-relatedposts:before {
  font-size: 0.9rem; }

h5 {
  font-size: 0.8rem; }

h6 {
  font-size: 0.75rem; }

.h1 {
  font-size: 2rem; }

.h2 {
  font-size: 1.35rem; }

.h3 {
  font-size: 1rem; }

.h4 {
  font-size: 0.9rem; }

.h5 {
  font-size: 0.8rem; }

.h6 {
  font-size: 0.75rem; }

.lead {
  font-size: 1.25rem;
  font-weight: 400; }

.display-1 {
  font-size: 6rem;
  font-weight: 300; }

.display-2 {
  font-size: 5.5rem;
  font-weight: 300; }

.display-3 {
  font-size: 4.5rem;
  font-weight: 300; }

.display-4 {
  font-size: 3.5rem;
  font-weight: 300; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: normal; }

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 5px; }

.dl-horizontal {
  margin-right: -1.33rem;
  margin-left: -1.33rem; }
  .dl-horizontal::after {
    content: "";
    display: table;
    clear: both; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #f3f3f3; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  line-height: 1.6;
  color: #818a91; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #f3f3f3;
  border-left: 0; }

.blockquote-reverse .blockquote-footer::before {
  content: ""; }

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014"; }

.img-fluid, .carousel-inner > .carousel-item > img,
.carousel-inner > .carousel-item > a > img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 0.1rem; }

.img-thumbnail {
  padding: 0.25rem;
  line-height: 1.6;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 0.1rem;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 90%;
  color: #818a91; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  border-radius: 0.1rem; }

kbd {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 0.1rem; }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  line-height: 1.6;
  color: #373a3c; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.665rem;
  padding-right: 0.665rem; }
  .container::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .container {
      max-width: 576px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 764px; } }
  @media (min-width: 1220px) {
    .container {
      max-width: 940px; } }
  @media (min-width: 1420px) {
    .container {
      max-width: 1140px; } }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.665rem;
  padding-right: 0.665rem; }
  .container-fluid::after {
    content: "";
    display: table;
    clear: both; }

.row {
  margin-left: -0.665rem;
  margin-right: -0.665rem; }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 0.665rem;
  padding-right: 0.665rem; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.3333333333%; }

.col-xs-2 {
  width: 16.6666666667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.3333333333%; }

.col-xs-5 {
  width: 41.6666666667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.3333333333%; }

.col-xs-8 {
  width: 66.6666666667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.3333333333%; }

.col-xs-11 {
  width: 91.6666666667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.3333333333%; }

.col-xs-pull-2 {
  right: 16.6666666667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.3333333333%; }

.col-xs-pull-5 {
  right: 41.6666666667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.3333333333%; }

.col-xs-pull-8 {
  right: 66.6666666667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.3333333333%; }

.col-xs-pull-11 {
  right: 91.6666666667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.3333333333%; }

.col-xs-push-2 {
  left: 16.6666666667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.3333333333%; }

.col-xs-push-5 {
  left: 41.6666666667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.3333333333%; }

.col-xs-push-8 {
  left: 66.6666666667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.3333333333%; }

.col-xs-push-11 {
  left: 91.6666666667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 544px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 768px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1220px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1420px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left; }
  .col-xl-1 {
    width: 8.3333333333%; }
  .col-xl-2 {
    width: 16.6666666667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.3333333333%; }
  .col-xl-5 {
    width: 41.6666666667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.3333333333%; }
  .col-xl-8 {
    width: 66.6666666667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.3333333333%; }
  .col-xl-11 {
    width: 91.6666666667%; }
  .col-xl-12 {
    width: 100%; }
  .col-xl-pull-0 {
    right: auto; }
  .col-xl-pull-1 {
    right: 8.3333333333%; }
  .col-xl-pull-2 {
    right: 16.6666666667%; }
  .col-xl-pull-3 {
    right: 25%; }
  .col-xl-pull-4 {
    right: 33.3333333333%; }
  .col-xl-pull-5 {
    right: 41.6666666667%; }
  .col-xl-pull-6 {
    right: 50%; }
  .col-xl-pull-7 {
    right: 58.3333333333%; }
  .col-xl-pull-8 {
    right: 66.6666666667%; }
  .col-xl-pull-9 {
    right: 75%; }
  .col-xl-pull-10 {
    right: 83.3333333333%; }
  .col-xl-pull-11 {
    right: 91.6666666667%; }
  .col-xl-pull-12 {
    right: 100%; }
  .col-xl-push-0 {
    left: auto; }
  .col-xl-push-1 {
    left: 8.3333333333%; }
  .col-xl-push-2 {
    left: 16.6666666667%; }
  .col-xl-push-3 {
    left: 25%; }
  .col-xl-push-4 {
    left: 33.3333333333%; }
  .col-xl-push-5 {
    left: 41.6666666667%; }
  .col-xl-push-6 {
    left: 50%; }
  .col-xl-push-7 {
    left: 58.3333333333%; }
  .col-xl-push-8 {
    left: 66.6666666667%; }
  .col-xl-push-9 {
    left: 75%; }
  .col-xl-push-10 {
    left: 83.3333333333%; }
  .col-xl-push-11 {
    left: 91.6666666667%; }
  .col-xl-push-12 {
    left: 100%; }
  .col-xl-offset-0 {
    margin-left: 0%; }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%; }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%; }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%; }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%; }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%; }
  .col-xl-offset-12 {
    margin-left: 100%; } }

.table, table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem; }
  
  .table th,
  table th, .table td, table td {
    padding: 0.75rem;
    line-height: 1.6;
    vertical-align: top;
    border-top: 1px solid #f3f3f3; }
  .table thead th, table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #f3f3f3; }
  .table tbody + tbody, table tbody + tbody {
    border-top: 2px solid #f3f3f3; }
  .table .table, table .table, .table table, table table {
    background-color: #f9f9f9; }

.table-sm th,
.table-sm td {
  padding: 0.3rem; }

.table-bordered {
  border: 1px solid #f3f3f3; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #f3f3f3; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover tbody tr:hover {
  background-color: #f5f5f5; }

.table-active,
.table-active > th,
.table-active > td {
  background-color: #f5f5f5; }

.table-hover .table-active:hover {
  background-color: #e8e8e8; }
  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: #e8e8e8; }

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8; }

.table-hover .table-success:hover {
  background-color: #d0e9c6; }
  .table-hover .table-success:hover > td,
  .table-hover .table-success:hover > th {
    background-color: #d0e9c6; }

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7; }

.table-hover .table-info:hover {
  background-color: #c4e3f3; }
  .table-hover .table-info:hover > td,
  .table-hover .table-info:hover > th {
    background-color: #c4e3f3; }

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3; }

.table-hover .table-warning:hover {
  background-color: #faf2cc; }
  .table-hover .table-warning:hover > td,
  .table-hover .table-warning:hover > th {
    background-color: #faf2cc; }

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede; }

.table-hover .table-danger:hover {
  background-color: #ebcccc; }
  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #ebcccc; }

.table-responsive {
  display: block;
  width: 100%;
  min-height: 0.01%;
  overflow-x: auto; }

.thead-inverse th {
  color: #fff;
  background-color: #373a3c; }

.thead-default th {
  color: #404040;
  background-color: #f3f3f3; }

.table-inverse {
  color: #f3f3f3;
  background-color: #373a3c; }
  .table-inverse.table-bordered {
    border: 0; }
  .table-inverse th,
  .table-inverse td,
  .table-inverse thead th {
    border-color: #404040; }

.table-reflow thead {
  float: left; }

.table-reflow tbody {
  display: block;
  white-space: nowrap; }

.table-reflow th,
.table-reflow td {
  border-top: 1px solid #f3f3f3;
  border-left: 1px solid #f3f3f3; }
  .table-reflow th:last-child,
  .table-reflow td:last-child {
    border-right: 1px solid #f3f3f3; }

.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
  border-bottom: 1px solid #f3f3f3; }

.table-reflow tr {
  float: left; }
  .table-reflow tr th,
  .table-reflow tr td {
    display: block !important;
    border: 1px solid #f3f3f3; }

.form-control, input[type=text], input[type=search], input[type=email], input[type=password], input[type=url], textarea, select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #404040;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0.1rem; }
  .form-control::-ms-expand, input[type=text]::-ms-expand, input[type=search]::-ms-expand, input[type=email]::-ms-expand, input[type=password]::-ms-expand, input[type=url]::-ms-expand, textarea::-ms-expand, select::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus, input:focus[type=text], input:focus[type=search], input:focus[type=email], input:focus[type=password], input:focus[type=url], textarea:focus, select:focus {
    border-color: #66afe9;
    outline: none; }
  .form-control::placeholder, input[type=text]::placeholder, input[type=search]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=url]::placeholder, textarea::placeholder, select::placeholder {
    color: #999;
    opacity: 1; }
  .form-control:disabled, input:disabled[type=text], input:disabled[type=search], input:disabled[type=email], input:disabled[type=password], input:disabled[type=url], textarea:disabled, select:disabled, .form-control[readonly], input[readonly][type=text], input[readonly][type=search], input[readonly][type=email], input[readonly][type=password], input[readonly][type=url], textarea[readonly], select[readonly] {
    background-color: #f3f3f3;
    opacity: 1; }
  .form-control:disabled, input:disabled[type=text], input:disabled[type=search], input:disabled[type=email], input:disabled[type=password], input:disabled[type=url], textarea:disabled, select:disabled {
    cursor: not-allowed; }

.form-control-file,
.form-control-range {
  display: block; }

.form-control-label {
  padding: 0.375rem 0.75rem;
  margin-bottom: 0; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control, input[type="date"][type=text], input[type="date"][type=search], input[type="date"][type=email], input[type="date"][type=password], input[type="date"][type=url],
  input[type="time"].form-control,
  input[type="time"][type=text],
  input[type="time"][type=search],
  input[type="time"][type=email],
  input[type="time"][type=password],
  input[type="time"][type=url],
  input[type="datetime-local"].form-control,
  input[type="datetime-local"][type=text],
  input[type="datetime-local"][type=search],
  input[type="datetime-local"][type=email],
  input[type="datetime-local"][type=password],
  input[type="datetime-local"][type=url],
  input[type="month"].form-control,
  input[type="month"][type=text],
  input[type="month"][type=search],
  input[type="month"][type=email],
  input[type="month"][type=password],
  input[type="month"][type=url] {
    line-height: 2.35rem; }
  input[type="date"].input-sm,
  .input-group-sm input[type="date"].form-control,
  .input-group-sm input[type="date"][type=text],
  .input-group-sm input[type="date"][type=search],
  .input-group-sm input[type="date"][type=email],
  .input-group-sm input[type="date"][type=password],
  .input-group-sm input[type="date"][type=url],
  input[type="time"].input-sm,
  .input-group-sm input[type="time"].form-control,
  .input-group-sm input[type="time"][type=text],
  .input-group-sm input[type="time"][type=search],
  .input-group-sm input[type="time"][type=email],
  .input-group-sm input[type="time"][type=password],
  .input-group-sm input[type="time"][type=url],
  input[type="datetime-local"].input-sm,
  .input-group-sm input[type="datetime-local"].form-control,
  .input-group-sm input[type="datetime-local"][type=text],
  .input-group-sm input[type="datetime-local"][type=search],
  .input-group-sm input[type="datetime-local"][type=email],
  .input-group-sm input[type="datetime-local"][type=password],
  .input-group-sm input[type="datetime-local"][type=url],
  input[type="month"].input-sm,
  .input-group-sm input[type="month"].form-control,
  .input-group-sm input[type="month"][type=text],
  .input-group-sm input[type="month"][type=search],
  .input-group-sm input[type="month"][type=email],
  .input-group-sm input[type="month"][type=password],
  .input-group-sm input[type="month"][type=url] {
    line-height: 1.8625rem; }
  input[type="date"].input-lg,
  .input-group-lg input[type="date"].form-control,
  .input-group-lg input[type="date"][type=text],
  .input-group-lg input[type="date"][type=search],
  .input-group-lg input[type="date"][type=email],
  .input-group-lg input[type="date"][type=password],
  .input-group-lg input[type="date"][type=url],
  input[type="time"].input-lg,
  .input-group-lg input[type="time"].form-control,
  .input-group-lg input[type="time"][type=text],
  .input-group-lg input[type="time"][type=search],
  .input-group-lg input[type="time"][type=email],
  .input-group-lg input[type="time"][type=password],
  .input-group-lg input[type="time"][type=url],
  input[type="datetime-local"].input-lg,
  .input-group-lg input[type="datetime-local"].form-control,
  .input-group-lg input[type="datetime-local"][type=text],
  .input-group-lg input[type="datetime-local"][type=search],
  .input-group-lg input[type="datetime-local"][type=email],
  .input-group-lg input[type="datetime-local"][type=password],
  .input-group-lg input[type="datetime-local"][type=url],
  input[type="month"].input-lg,
  .input-group-lg input[type="month"].form-control,
  .input-group-lg input[type="month"][type=text],
  .input-group-lg input[type="month"][type=search],
  .input-group-lg input[type="month"][type=email],
  .input-group-lg input[type="month"][type=password],
  .input-group-lg input[type="month"][type=url] {
    line-height: 3.1666666667rem; } }

.form-control-static {
  min-height: 2.35rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0; }
  .form-control-static.form-control-sm, .input-group-sm > .form-control-static.form-control, .input-group-sm > input.form-control-static[type=text], .input-group-sm > input.form-control-static[type=search], .input-group-sm > input.form-control-static[type=email], .input-group-sm > input.form-control-static[type=password], .input-group-sm > input.form-control-static[type=url], .input-group-sm > textarea.form-control-static, .input-group-sm > select.form-control-static,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn, .input-group-sm > .input-group-btn > input.form-control-static[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-sm > .input-group-btn > button.form-control-static.pea_cook_btn, .form-control-static.form-control-lg, .input-group-lg > .form-control-static.form-control, .input-group-lg > input.form-control-static[type=text], .input-group-lg > input.form-control-static[type=search], .input-group-lg > input.form-control-static[type=email], .input-group-lg > input.form-control-static[type=password], .input-group-lg > input.form-control-static[type=url], .input-group-lg > textarea.form-control-static, .input-group-lg > select.form-control-static,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .input-group-lg > .input-group-btn > input.form-control-static[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-lg > .input-group-btn > button.form-control-static.pea_cook_btn {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > input[type=text], .input-group-sm > input[type=search], .input-group-sm > input[type=email], .input-group-sm > input[type=password], .input-group-sm > input[type=url], .input-group-sm > textarea, .input-group-sm > select,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn, .input-group-sm > .input-group-btn > input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-sm > .input-group-btn > button.pea_cook_btn {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.1rem; }

.form-control-lg, .input-group-lg > .form-control, .input-group-lg > input[type=text], .input-group-lg > input[type=search], .input-group-lg > input[type=email], .input-group-lg > input[type=password], .input-group-lg > input[type=url], .input-group-lg > textarea, .input-group-lg > select,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn, .input-group-lg > .input-group-btn > input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-lg > .input-group-btn > button.pea_cook_btn {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 0.1rem; }

.form-group {
  margin-bottom: 1rem; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-bottom: 0.75rem; }
  .radio label,
  .checkbox label {
    padding-left: 1.25rem;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }
    .radio label input:only-child,
    .checkbox label input:only-child {
      position: static; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: .25rem;
  margin-left: -1.25rem; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -.25rem; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: .75rem; }

input[type="radio"]:disabled, input[type="radio"].disabled,
input[type="checkbox"]:disabled,
input[type="checkbox"].disabled {
  cursor: not-allowed; }

.radio-inline.disabled,
.checkbox-inline.disabled {
  cursor: not-allowed; }

.radio.disabled label,
.checkbox.disabled label {
  cursor: not-allowed; }

.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5875rem;
  background-size: 1.5275rem 1.5275rem; }

.has-success .text-help,
.has-success .form-control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #5cb85c; }

.has-success .form-control, .has-success input[type=text], .has-success input[type=search], .has-success input[type=email], .has-success input[type=password], .has-success input[type=url], .has-success textarea, .has-success select {
  border-color: #5cb85c; }

.has-success .input-group-addon {
  color: #5cb85c;
  border-color: #5cb85c;
  background-color: #eaf6ea; }

.has-success .form-control-feedback {
  color: #5cb85c; }

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg=="); }

.has-warning .text-help,
.has-warning .form-control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #f0ad4e; }

.has-warning .form-control, .has-warning input[type=text], .has-warning input[type=search], .has-warning input[type=email], .has-warning input[type=password], .has-warning input[type=url], .has-warning textarea, .has-warning select {
  border-color: #f0ad4e; }

.has-warning .input-group-addon {
  color: #f0ad4e;
  border-color: #f0ad4e;
  background-color: white; }

.has-warning .form-control-feedback {
  color: #f0ad4e; }

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+"); }

.has-danger .text-help,
.has-danger .form-control-label,
.has-danger .radio,
.has-danger .checkbox,
.has-danger .radio-inline,
.has-danger .checkbox-inline,
.has-danger.radio label,
.has-danger.checkbox label,
.has-danger.radio-inline label,
.has-danger.checkbox-inline label {
  color: #d9534f; }

.has-danger .form-control, .has-danger input[type=text], .has-danger input[type=search], .has-danger input[type=email], .has-danger input[type=password], .has-danger input[type=url], .has-danger textarea, .has-danger select {
  border-color: #d9534f; }

.has-danger .input-group-addon {
  color: #d9534f;
  border-color: #d9534f;
  background-color: #fdf7f7; }

.has-danger .form-control-feedback {
  color: #d9534f; }

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4="); }

@media (min-width: 544px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .form-inline input[type=text], .form-inline input[type=search], .form-inline input[type=email], .form-inline input[type=password], .form-inline input[type=url], .form-inline textarea, .form-inline select {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control,
    .form-inline .input-group input[type=text],
    .form-inline .input-group input[type=search],
    .form-inline .input-group input[type=email],
    .form-inline .input-group input[type=password],
    .form-inline .input-group input[type=url],
    .form-inline .input-group textarea,
    .form-inline .input-group select {
      width: auto; }
  .form-inline .input-group > .form-control, .form-inline .input-group > input[type=text], .form-inline .input-group > input[type=search], .form-inline .input-group > input[type=email], .form-inline .input-group > input[type=password], .form-inline .input-group > input[type=url], .form-inline .input-group > textarea, .form-inline .input-group > select {
    width: 100%; }
  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.btn, input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0.1rem; }
  .btn:focus, input:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:focus, .btn.focus, input.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.focus.pea_cook_btn, .btn:active:focus, input:active:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active:focus, .btn:active.focus, input:active.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active.focus, .btn.active:focus, input.active:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.pea_cook_btn:focus, .btn.active.focus, input.active.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.focus.pea_cook_btn {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:focus, input:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:focus, .btn:hover, input:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:hover {
    text-decoration: none; }
  .btn.focus, input.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.focus.pea_cook_btn {
    text-decoration: none; }
  .btn:active, input:active[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active, .btn.active, input.active[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.pea_cook_btn {
    background-image: none;
    outline: 0; }
  .btn.disabled, input.disabled[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.disabled.pea_cook_btn, .btn:disabled, input:disabled[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:disabled {
    cursor: not-allowed;
    opacity: .65; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-primary, input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn {
  color: #fff;
  background-color: #94793f;
  border-color: #94793f; }
  .btn-primary:hover, input:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:hover {
    color: #fff;
    background-color: #705c30;
    border-color: #69562d; }
  .btn-primary:focus, input:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:focus, .btn-primary.focus, input.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.focus.pea_cook_btn {
    color: #fff;
    background-color: #705c30;
    border-color: #69562d; }
  .btn-primary:active, input:active[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active, .btn-primary.active, input.active[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.pea_cook_btn,
  .open > .btn-primary.dropdown-toggle,
  .open > input.dropdown-toggle[type=submit],
  body .pea_cook_wrapper.pea_cook_bottomcenter .open > button.dropdown-toggle.pea_cook_btn {
    color: #fff;
    background-color: #705c30;
    border-color: #69562d;
    background-image: none; }
    .btn-primary:active:hover, input:active:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active:hover, .btn-primary:active:focus, input:active:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active:focus, .btn-primary:active.focus, input:active.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:active.focus, .btn-primary.active:hover, input.active:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.pea_cook_btn:hover, .btn-primary.active:focus, input.active:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.pea_cook_btn:focus, .btn-primary.active.focus, input.active.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.active.focus.pea_cook_btn,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > input.dropdown-toggle:hover[type=submit],
    body .pea_cook_wrapper.pea_cook_bottomcenter .open > button.dropdown-toggle.pea_cook_btn:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > input.dropdown-toggle:focus[type=submit],
    body .pea_cook_wrapper.pea_cook_bottomcenter .open > button.dropdown-toggle.pea_cook_btn:focus,
    .open > .btn-primary.dropdown-toggle.focus,
    .open > input.dropdown-toggle.focus[type=submit],
    body .pea_cook_wrapper.pea_cook_bottomcenter .open > button.dropdown-toggle.focus.pea_cook_btn {
      color: #fff;
      background-color: #574725;
      border-color: #3b3019; }
  .btn-primary.disabled:focus, input.disabled:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.disabled.pea_cook_btn:focus, .btn-primary.disabled.focus, input.disabled.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.disabled.focus.pea_cook_btn, .btn-primary:disabled:focus, input:disabled:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:disabled:focus, .btn-primary:disabled.focus, input:disabled.focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:disabled.focus {
    background-color: #94793f;
    border-color: #94793f; }
  .btn-primary.disabled:hover, input.disabled:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.disabled.pea_cook_btn:hover, .btn-primary:disabled:hover, input:disabled:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn:disabled:hover {
    background-color: #94793f;
    border-color: #94793f; }

.btn-secondary, .newsletter-sign-up input[type=submit] {
  color: #771c1d;
  background-color: #f3f3f3;
  border-color: #f3f3f3; }
  .btn-secondary:hover, .newsletter-sign-up input:hover[type=submit] {
    color: #771c1d;
    background-color: #dad9d9;
    border-color: #d4d4d4; }
  .btn-secondary:focus, .newsletter-sign-up input:focus[type=submit], .btn-secondary.focus, .newsletter-sign-up input.focus[type=submit] {
    color: #771c1d;
    background-color: #dad9d9;
    border-color: #d4d4d4; }
  .btn-secondary:active, .newsletter-sign-up input:active[type=submit], .btn-secondary.active, .newsletter-sign-up input.active[type=submit],
  .open > .btn-secondary.dropdown-toggle,
  .newsletter-sign-up .open > input.dropdown-toggle[type=submit] {
    color: #771c1d;
    background-color: #dad9d9;
    border-color: #d4d4d4;
    background-image: none; }
    .btn-secondary:active:hover, .newsletter-sign-up input:active:hover[type=submit], .btn-secondary:active:focus, .newsletter-sign-up input:active:focus[type=submit], .btn-secondary:active.focus, .newsletter-sign-up input:active.focus[type=submit], .btn-secondary.active:hover, .newsletter-sign-up input.active:hover[type=submit], .btn-secondary.active:focus, .newsletter-sign-up input.active:focus[type=submit], .btn-secondary.active.focus, .newsletter-sign-up input.active.focus[type=submit],
    .open > .btn-secondary.dropdown-toggle:hover,
    .newsletter-sign-up .open > input.dropdown-toggle:hover[type=submit],
    .open > .btn-secondary.dropdown-toggle:focus,
    .newsletter-sign-up .open > input.dropdown-toggle:focus[type=submit],
    .open > .btn-secondary.dropdown-toggle.focus,
    .newsletter-sign-up .open > input.dropdown-toggle.focus[type=submit] {
      color: #771c1d;
      background-color: #c8c8c8;
      border-color: #b3b3b3; }
  .btn-secondary.disabled:focus, .newsletter-sign-up input.disabled:focus[type=submit], .btn-secondary.disabled.focus, .newsletter-sign-up input.disabled.focus[type=submit], .btn-secondary:disabled:focus, .newsletter-sign-up input:disabled:focus[type=submit], .btn-secondary:disabled.focus, .newsletter-sign-up input:disabled.focus[type=submit] {
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
  .btn-secondary.disabled:hover, .newsletter-sign-up input.disabled:hover[type=submit], .btn-secondary:disabled:hover, .newsletter-sign-up input:disabled:hover[type=submit] {
    background-color: #f3f3f3;
    border-color: #f3f3f3; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
    background-image: none; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1f7e9a; }
  .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info:disabled.focus {
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info.disabled:hover, .btn-info:disabled:hover {
    background-color: #5bc0de;
    border-color: #5bc0de; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #419641;
    background-image: none; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #2d672d; }
  .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success:disabled.focus {
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success.disabled:hover, .btn-success:disabled:hover {
    background-color: #5cb85c;
    border-color: #5cb85c; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316;
    background-image: none; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #b06d0f; }
  .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning:disabled.focus {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning.disabled:hover, .btn-warning:disabled:hover {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a;
    background-image: none; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #8b211e; }
  .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger:disabled.focus {
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger.disabled:hover, .btn-danger:disabled:hover {
    background-color: #d9534f;
    border-color: #d9534f; }

.btn-primary-outline {
  color: #94793f;
  background-image: none;
  background-color: transparent;
  border-color: #94793f; }
  .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline:active, .btn-primary-outline.active,
  .open > .btn-primary-outline.dropdown-toggle {
    color: #fff;
    background-color: #94793f;
    border-color: #94793f; }
  .btn-primary-outline:hover {
    color: #fff;
    background-color: #94793f;
    border-color: #94793f; }
  .btn-primary-outline.disabled:focus, .btn-primary-outline.disabled.focus, .btn-primary-outline:disabled:focus, .btn-primary-outline:disabled.focus {
    border-color: #c4ab75; }
  .btn-primary-outline.disabled:hover, .btn-primary-outline:disabled:hover {
    border-color: #c4ab75; }

.btn-secondary-outline {
  color: #f3f3f3;
  background-image: none;
  background-color: transparent;
  border-color: #f3f3f3; }
  .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline:active, .btn-secondary-outline.active,
  .open > .btn-secondary-outline.dropdown-toggle {
    color: #fff;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
  .btn-secondary-outline:hover {
    color: #fff;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
  .btn-secondary-outline.disabled:focus, .btn-secondary-outline.disabled.focus, .btn-secondary-outline:disabled:focus, .btn-secondary-outline:disabled.focus {
    border-color: white; }
  .btn-secondary-outline.disabled:hover, .btn-secondary-outline:disabled:hover {
    border-color: white; }

.btn-info-outline {
  color: #5bc0de;
  background-image: none;
  background-color: transparent;
  border-color: #5bc0de; }
  .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline:active, .btn-info-outline.active,
  .open > .btn-info-outline.dropdown-toggle {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info-outline:hover {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info-outline.disabled:focus, .btn-info-outline.disabled.focus, .btn-info-outline:disabled:focus, .btn-info-outline:disabled.focus {
    border-color: #b0e1ef; }
  .btn-info-outline.disabled:hover, .btn-info-outline:disabled:hover {
    border-color: #b0e1ef; }

.btn-success-outline {
  color: #5cb85c;
  background-image: none;
  background-color: transparent;
  border-color: #5cb85c; }
  .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline:active, .btn-success-outline.active,
  .open > .btn-success-outline.dropdown-toggle {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success-outline:hover {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success-outline.disabled:focus, .btn-success-outline.disabled.focus, .btn-success-outline:disabled:focus, .btn-success-outline:disabled.focus {
    border-color: #a3d7a3; }
  .btn-success-outline.disabled:hover, .btn-success-outline:disabled:hover {
    border-color: #a3d7a3; }

.btn-warning-outline {
  color: #f0ad4e;
  background-image: none;
  background-color: transparent;
  border-color: #f0ad4e; }
  .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline:active, .btn-warning-outline.active,
  .open > .btn-warning-outline.dropdown-toggle {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning-outline:hover {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning-outline.disabled:focus, .btn-warning-outline.disabled.focus, .btn-warning-outline:disabled:focus, .btn-warning-outline:disabled.focus {
    border-color: #f8d9ac; }
  .btn-warning-outline.disabled:hover, .btn-warning-outline:disabled:hover {
    border-color: #f8d9ac; }

.btn-danger-outline {
  color: #d9534f;
  background-image: none;
  background-color: transparent;
  border-color: #d9534f; }
  .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline:active, .btn-danger-outline.active,
  .open > .btn-danger-outline.dropdown-toggle {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger-outline:hover {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger-outline.disabled:focus, .btn-danger-outline.disabled.focus, .btn-danger-outline:disabled:focus, .btn-danger-outline:disabled.focus {
    border-color: #eba5a3; }
  .btn-danger-outline.disabled:hover, .btn-danger-outline:disabled:hover {
    border-color: #eba5a3; }

.btn-link {
  font-weight: normal;
  color: #b29454;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
    background-color: transparent; }
  .btn-link, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover {
    border-color: transparent; }
  .btn-link:focus, .btn-link:hover {
    color: #b29454;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link:disabled:focus, .btn-link:disabled:hover {
    color: #818a91;
    text-decoration: none; }

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 0.1rem; }

.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.1rem; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  transition: opacity .15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: .35s;
  transition-property: height; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: .25rem;
  margin-left: .25rem;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent; }

.dropdown-toggle:focus {
  outline: 0; }

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 1rem;
  color: #404040;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.1rem; }

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.6;
  color: #373a3c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0; }
  .dropdown-item:focus, .dropdown-item:hover {
    color: #2b2d2f;
    text-decoration: none;
    background-color: #f5f5f5; }
  .dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover {
    color: #fff;
    text-decoration: none;
    background-color: #94793f;
    outline: 0; }
  .dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    color: #818a91; }
  .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #818a91;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .form-control, .input-group input[type=text], .input-group input[type=search], .input-group input[type=email], .input-group input[type=password], .input-group input[type=url], .input-group textarea, .input-group select {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group input:focus[type=text], .input-group input:focus[type=search], .input-group input:focus[type=email], .input-group input:focus[type=password], .input-group input:focus[type=url], .input-group textarea:focus, .input-group select:focus, .input-group .form-control:active, .input-group input:active[type=text], .input-group input:active[type=search], .input-group input:active[type=email], .input-group input:active[type=password], .input-group input:active[type=url], .input-group textarea:active, .input-group select:active, .input-group .form-control:hover, .input-group input:hover[type=text], .input-group input:hover[type=search], .input-group input:hover[type=email], .input-group input:hover[type=password], .input-group input:hover[type=url], .input-group textarea:hover, .input-group select:hover {
      z-index: 3; }

.input-group-addon,
.input-group-btn, .input-group .form-control, .input-group input[type=text], .input-group input[type=search], .input-group input[type=email], .input-group input[type=password], .input-group input[type=url], .input-group textarea, .input-group select {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child),
  .input-group input:not(:first-child):not(:last-child)[type=text],
  .input-group input:not(:first-child):not(:last-child)[type=search],
  .input-group input:not(:first-child):not(:last-child)[type=email],
  .input-group input:not(:first-child):not(:last-child)[type=password],
  .input-group input:not(:first-child):not(:last-child)[type=url],
  .input-group textarea:not(:first-child):not(:last-child),
  .input-group select:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  color: #404040;
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 0.1rem; }
  .input-group-addon.form-control-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn, .input-group-sm > .input-group-btn > input.input-group-addon[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-sm > .input-group-btn > button.input-group-addon.pea_cook_btn {
    padding: 0.275rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.1rem; }
  .input-group-addon.form-control-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn, .input-group-lg > .input-group-btn > input.input-group-addon[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-lg > .input-group-btn > button.input-group-addon.pea_cook_btn {
    padding: 0.75rem 1.25rem;
    font-size: 1.25rem;
    border-radius: 0.1rem; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child, .input-group input:first-child[type=text], .input-group input:first-child[type=search], .input-group input:first-child[type=email], .input-group input:first-child[type=password], .input-group input:first-child[type=url], .input-group textarea:first-child, .input-group select:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > input[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:first-child > button.pea_cook_btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .btn-group > input[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:first-child > .btn-group > button.pea_cook_btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > input:not(:last-child):not(.dropdown-toggle)[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > button.pea_cook_btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn-group:not(:last-child) > input[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > .btn-group:not(:last-child) > button.pea_cook_btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child, .input-group input:last-child[type=text], .input-group input:last-child[type=search], .input-group input:last-child[type=email], .input-group input:last-child[type=password], .input-group input:last-child[type=url], .input-group textarea:last-child, .input-group select:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > input[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > button.pea_cook_btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .btn-group > input[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > .btn-group > button.pea_cook_btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > input:not(:first-child)[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:first-child > button.pea_cook_btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn-group:not(:first-child) > input[type=submit],
body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:first-child > .btn-group:not(:first-child) > button.pea_cook_btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn, .input-group-btn > input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn {
    position: relative; }
    .input-group-btn > .btn + .btn, .input-group-btn > input[type=submit] + .btn, body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn + .btn, .input-group-btn > .btn + input[type=submit], .input-group-btn > input[type=submit] + input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn + input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > .btn + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > input[type=submit] + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn + button.pea_cook_btn {
      margin-left: -1px; }
    .input-group-btn > .btn:focus, .input-group-btn > input:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn:focus, .input-group-btn > .btn:active, .input-group-btn > input:active[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn:active, .input-group-btn > .btn:hover, .input-group-btn > input:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn > button.pea_cook_btn:hover {
      z-index: 3; }
  
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > input[type=submit],
  body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:first-child > button.pea_cook_btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > input[type=submit],
  body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > button.pea_cook_btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }
    .input-group-btn:last-child > .btn:focus, .input-group-btn:last-child > input:focus[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > button.pea_cook_btn:focus, .input-group-btn:last-child > .btn:active, .input-group-btn:last-child > input:active[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > button.pea_cook_btn:active, .input-group-btn:last-child > .btn:hover, .input-group-btn:last-child > input:hover[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .input-group-btn:last-child > button.pea_cook_btn:hover,
    .input-group-btn:last-child > .btn-group:focus,
    .input-group-btn:last-child > .btn-group:active,
    .input-group-btn:last-child > .btn-group:hover {
      z-index: 3; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link, .menu-item > a {
  display: inline-block; }
  .nav-link:focus, .menu-item > a:focus, .nav-link:hover, .menu-item > a:hover {
    text-decoration: none; }
  .nav-link.disabled, .menu-item > a.disabled {
    color: #818a91; }
    .nav-link.disabled, .menu-item > a.disabled, .nav-link.disabled:focus, .menu-item > a.disabled:focus, .nav-link.disabled:hover, .menu-item > a.disabled:hover {
      color: #818a91;
      cursor: not-allowed;
      background-color: transparent; }

.nav-inline .nav-item, .nav-inline .menu-item {
  display: inline-block; }

.nav-inline .nav-item + .nav-item, .nav-inline .menu-item + .nav-item, .nav-inline .nav-item + .menu-item, .nav-inline .menu-item + .menu-item,
.nav-inline .nav-link + .nav-link,
.nav-inline .menu-item > a + .nav-link,
.nav-inline .menu-item > .nav-link + a,
.nav-inline .menu-item > a + a {
  margin-left: 1rem; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs::after {
    content: "";
    display: table;
    clear: both; }
  .nav-tabs .nav-item, .nav-tabs .menu-item {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs .nav-item + .nav-item, .nav-tabs .menu-item + .nav-item, .nav-tabs .nav-item + .menu-item, .nav-tabs .menu-item + .menu-item {
      margin-left: .2rem; }
  .nav-tabs .nav-link, .nav-tabs .menu-item > a {
    display: block;
    padding: 0.5em 1em;
    border: 1px solid transparent;
    border-radius: 0.1rem 0.1rem 0 0; }
    .nav-tabs .nav-link:focus, .nav-tabs .menu-item > a:focus, .nav-tabs .nav-link:hover, .nav-tabs .menu-item > a:hover {
      border-color: #f3f3f3 #f3f3f3 #ddd; }
    .nav-tabs .nav-link.disabled, .nav-tabs .menu-item > a.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .menu-item > a.disabled:focus, .nav-tabs .nav-link.disabled:hover, .nav-tabs .menu-item > a.disabled:hover {
      color: #818a91;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active, .nav-tabs .menu-item > a.active, .nav-tabs .nav-link.active:focus, .nav-tabs .menu-item > a.active:focus, .nav-tabs .nav-link.active:hover, .nav-tabs .menu-item > a.active:hover,
  .nav-tabs .nav-item.open .nav-link,
  .nav-tabs .open.menu-item .nav-link,
  .nav-tabs .nav-item.open .menu-item > a,
  .nav-tabs .open.menu-item .menu-item > a,
  .nav-tabs .nav-item.open .nav-link:focus,
  .nav-tabs .open.menu-item .nav-link:focus,
  .nav-tabs .nav-item.open .menu-item > a:focus,
  .nav-tabs .open.menu-item .menu-item > a:focus,
  .nav-tabs .nav-item.open .nav-link:hover,
  .nav-tabs .open.menu-item .nav-link:hover,
  .nav-tabs .nav-item.open .menu-item > a:hover,
  .nav-tabs .open.menu-item .menu-item > a:hover {
    color: #404040;
    background-color: #f9f9f9;
    border-color: #ddd #ddd transparent; }

.nav-pills::after {
  content: "";
  display: table;
  clear: both; }

.nav-pills .nav-item, .nav-pills .menu-item {
  float: left; }
  .nav-pills .nav-item + .nav-item, .nav-pills .menu-item + .nav-item, .nav-pills .nav-item + .menu-item, .nav-pills .menu-item + .menu-item {
    margin-left: .2rem; }

.nav-pills .nav-link, .nav-pills .menu-item > a {
  display: block;
  padding: 0.5em 1em;
  border-radius: 0.1rem; }

.nav-pills .nav-link.active, .nav-pills .menu-item > a.active, .nav-pills .nav-link.active:focus, .nav-pills .menu-item > a.active:focus, .nav-pills .nav-link.active:hover, .nav-pills .menu-item > a.active:hover,
.nav-pills .nav-item.open .nav-link,
.nav-pills .open.menu-item .nav-link,
.nav-pills .nav-item.open .menu-item > a,
.nav-pills .open.menu-item .menu-item > a,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .open.menu-item .nav-link:focus,
.nav-pills .nav-item.open .menu-item > a:focus,
.nav-pills .open.menu-item .menu-item > a:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .open.menu-item .nav-link:hover,
.nav-pills .nav-item.open .menu-item > a:hover,
.nav-pills .open.menu-item .menu-item > a:hover {
  color: #fff;
  cursor: default;
  background-color: #94793f; }

.nav-stacked .nav-item, .nav-stacked .menu-item {
  display: block;
  float: none; }
  .nav-stacked .nav-item + .nav-item, .nav-stacked .menu-item + .nav-item, .nav-stacked .nav-item + .menu-item, .nav-stacked .menu-item + .menu-item {
    margin-top: .2rem;
    margin-left: 0; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  padding: 0.5rem 1rem; }
  .navbar::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .navbar {
      border-radius: 0.1rem; } }

.navbar-full {
  z-index: 1000; }
  @media (min-width: 544px) {
    .navbar-full {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 544px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0; }

.navbar-fixed-bottom {
  bottom: 0; }

.navbar-sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%; }
  @media (min-width: 544px) {
    .navbar-sticky-top {
      border-radius: 0; } }

.navbar-brand {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem; }
  .navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }

.navbar-divider {
  float: left;
  width: 1px;
  padding-top: .425rem;
  padding-bottom: .425rem;
  margin-right: 1rem;
  margin-left: 1rem;
  overflow: hidden; }
  .navbar-divider::before {
    content: "\00a0"; }

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: none;
  border: 1px solid transparent;
  border-radius: 0.1rem; }
  .navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none; }

@media (min-width: 544px) {
  .navbar-toggleable-xs {
    display: block !important; } }

@media (min-width: 768px) {
  .navbar-toggleable-sm {
    display: block !important; } }

@media (min-width: 1220px) {
  .navbar-toggleable-md {
    display: block !important; } }

.navbar-nav .nav-item, .navbar-nav .menu-item {
  float: left; }

.navbar-nav .nav-link, .navbar-nav .menu-item > a {
  display: block;
  padding-top: .425rem;
  padding-bottom: .425rem; }
  .navbar-nav .nav-link + .nav-link, .navbar-nav .menu-item > a + .nav-link, .navbar-nav .menu-item > .nav-link + a, .navbar-nav .menu-item > a + a {
    margin-left: 1rem; }

.navbar-nav .nav-item + .nav-item, .navbar-nav .menu-item + .nav-item, .navbar-nav .nav-item + .menu-item, .navbar-nav .menu-item + .menu-item {
  margin-left: 1rem; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.8); }
  .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .menu-item > a {
  color: rgba(0, 0, 0, 0.3); }
  .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .menu-item > a:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .menu-item > a:hover {
    color: rgba(0, 0, 0, 0.6); }

.navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .menu-item.open > a, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .menu-item.open > a:focus, .navbar-light .navbar-nav .open > .nav-link:hover, .navbar-light .navbar-nav .menu-item.open > a:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .menu-item.active > a,
.navbar-light .navbar-nav .active > .nav-link:focus,
.navbar-light .navbar-nav .menu-item.active > a:focus,
.navbar-light .navbar-nav .active > .nav-link:hover,
.navbar-light .navbar-nav .menu-item.active > a:hover,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .menu-item > a.open,
.navbar-light .navbar-nav .nav-link.open:focus,
.navbar-light .navbar-nav .menu-item > a.open:focus,
.navbar-light .navbar-nav .nav-link.open:hover,
.navbar-light .navbar-nav .menu-item > a.open:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .menu-item > a.active,
.navbar-light .navbar-nav .nav-link.active:focus,
.navbar-light .navbar-nav .menu-item > a.active:focus,
.navbar-light .navbar-nav .nav-link.active:hover,
.navbar-light .navbar-nav .menu-item > a.active:hover {
  color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-divider {
  background-color: rgba(0, 0, 0, 0.075); }

.navbar-dark .navbar-brand {
  color: white; }
  .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
    color: white; }

.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .menu-item > a {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .menu-item > a:focus, .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .menu-item > a:hover {
    color: rgba(255, 255, 255, 0.75); }

.navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .menu-item.open > a, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .menu-item.open > a:focus, .navbar-dark .navbar-nav .open > .nav-link:hover, .navbar-dark .navbar-nav .menu-item.open > a:hover,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .menu-item.active > a,
.navbar-dark .navbar-nav .active > .nav-link:focus,
.navbar-dark .navbar-nav .menu-item.active > a:focus,
.navbar-dark .navbar-nav .active > .nav-link:hover,
.navbar-dark .navbar-nav .menu-item.active > a:hover,
.navbar-dark .navbar-nav .nav-link.open,
.navbar-dark .navbar-nav .menu-item > a.open,
.navbar-dark .navbar-nav .nav-link.open:focus,
.navbar-dark .navbar-nav .menu-item > a.open:focus,
.navbar-dark .navbar-nav .nav-link.open:hover,
.navbar-dark .navbar-nav .menu-item > a.open:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .menu-item > a.active,
.navbar-dark .navbar-nav .nav-link.active:focus,
.navbar-dark .navbar-nav .menu-item > a.active:focus,
.navbar-dark .navbar-nav .nav-link.active:hover,
.navbar-dark .navbar-nav .menu-item > a.active:hover {
  color: white; }

.navbar-dark .navbar-divider {
  background-color: rgba(255, 255, 255, 0.075); }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.1rem; }

.page-item {
  display: inline; }
  .page-item:first-child .page-link, .page-item:first-child .pagination .page-numbers, .pagination .page-item:first-child .page-numbers {
    margin-left: 0;
    border-bottom-left-radius: 0.1rem;
    border-top-left-radius: 0.1rem; }
  .page-item:last-child .page-link, .page-item:last-child .pagination .page-numbers, .pagination .page-item:last-child .page-numbers {
    border-bottom-right-radius: 0.1rem;
    border-top-right-radius: 0.1rem; }
  .page-item.active .page-link, .page-item.active .pagination .page-numbers, .pagination .page-item.active .page-numbers, .page-item.active .page-link:focus, .page-item.active .pagination .page-numbers:focus, .pagination .page-item.active .page-numbers:focus, .page-item.active .page-link:hover, .page-item.active .pagination .page-numbers:hover, .pagination .page-item.active .page-numbers:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #94793f;
    border-color: #94793f; }
  .page-item.disabled .page-link, .page-item.disabled .pagination .page-numbers, .pagination .page-item.disabled .page-numbers, .page-item.disabled .page-link:focus, .page-item.disabled .pagination .page-numbers:focus, .pagination .page-item.disabled .page-numbers:focus, .page-item.disabled .page-link:hover, .page-item.disabled .pagination .page-numbers:hover, .pagination .page-item.disabled .page-numbers:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd; }

.page-link, .pagination .page-numbers {
  position: relative;
  float: left;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.6;
  color: #b29454;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }
  .page-link:focus, .pagination .page-numbers:focus, .page-link:hover, .pagination .page-numbers:hover {
    color: #b29454;
    background-color: #f3f3f3;
    border-color: #ddd; }

.pagination-lg .page-link, .pagination-lg .pagination .page-numbers, .pagination .pagination-lg .page-numbers {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3333333333; }

.pagination-lg .page-item:first-child .page-link, .pagination-lg .page-item:first-child .pagination .page-numbers, .pagination .pagination-lg .page-item:first-child .page-numbers {
  border-bottom-left-radius: 0.1rem;
  border-top-left-radius: 0.1rem; }

.pagination-lg .page-item:last-child .page-link, .pagination-lg .page-item:last-child .pagination .page-numbers, .pagination .pagination-lg .page-item:last-child .page-numbers {
  border-bottom-right-radius: 0.1rem;
  border-top-right-radius: 0.1rem; }

.pagination-sm .page-link, .pagination-sm .pagination .page-numbers, .pagination .pagination-sm .page-numbers {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5; }

.pagination-sm .page-item:first-child .page-link, .pagination-sm .page-item:first-child .pagination .page-numbers, .pagination .pagination-sm .page-item:first-child .page-numbers {
  border-bottom-left-radius: 0.1rem;
  border-top-left-radius: 0.1rem; }

.pagination-sm .page-item:last-child .page-link, .pagination-sm .page-item:last-child .pagination .page-numbers, .pagination .pagination-sm .page-item:last-child .page-numbers {
  border-bottom-right-radius: 0.1rem;
  border-top-right-radius: 0.1rem; }

.embed-responsive, .embed-youtube, .embed-vimeo, span[class^="embed-"] {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item, .embed-youtube .embed-responsive-item, .embed-vimeo .embed-responsive-item, span[class^="embed-"] .embed-responsive-item,
  .embed-responsive iframe,
  .embed-youtube iframe,
  .embed-vimeo iframe,
  span[class^="embed-"] iframe,
  .embed-responsive embed,
  .embed-youtube embed,
  .embed-vimeo embed,
  span[class^="embed-"] embed,
  .embed-responsive object,
  .embed-youtube object,
  .embed-vimeo object,
  span[class^="embed-"] object,
  .embed-responsive video,
  .embed-youtube video,
  .embed-vimeo video,
  span[class^="embed-"] video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9 {
  padding-bottom: 42.8571428571%; }

.embed-responsive-16by9, .embed-youtube, .embed-vimeo, span[class^="embed-"] {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.embed-responsive-1by1 {
  padding-bottom: 100%; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2; }
  .close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch; }
  .modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%); }
  .modal.in .modal-dialog {
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.1rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.in {
    opacity: 0.5; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header::after {
    content: "";
    display: table;
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.6; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer::after {
    content: "";
    display: table;
    clear: both; }
  .modal-footer .btn + .btn, .modal-footer input[type=submit] + .btn, .modal-footer body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn + .btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer button.pea_cook_btn + .btn, .modal-footer .btn + input[type=submit], .modal-footer input[type=submit] + input[type=submit], .modal-footer body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn + input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer button.pea_cook_btn + input[type=submit], .modal-footer body .pea_cook_wrapper.pea_cook_bottomcenter .btn + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer .btn + button.pea_cook_btn, .modal-footer body .pea_cook_wrapper.pea_cook_bottomcenter input[type=submit] + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer input[type=submit] + button.pea_cook_btn, .modal-footer body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer button.pea_cook_btn + button.pea_cook_btn {
    margin-bottom: 0;
    margin-left: 5px; }
  .modal-footer .btn-group .btn + .btn, .modal-footer .btn-group input[type=submit] + .btn, .modal-footer .btn-group body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn + .btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer .btn-group button.pea_cook_btn + .btn, .modal-footer .btn-group .btn + input[type=submit], .modal-footer .btn-group input[type=submit] + input[type=submit], .modal-footer .btn-group body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn + input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer .btn-group button.pea_cook_btn + input[type=submit], .modal-footer .btn-group body .pea_cook_wrapper.pea_cook_bottomcenter .btn + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer .btn-group .btn + button.pea_cook_btn, .modal-footer .btn-group body .pea_cook_wrapper.pea_cook_bottomcenter input[type=submit] + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer .btn-group input[type=submit] + button.pea_cook_btn, .modal-footer .btn-group body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn + button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .modal-footer .btn-group button.pea_cook_btn + button.pea_cook_btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 544px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-sm {
    width: 300px; } }

@media (min-width: 768px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 0.875rem;
  opacity: 0; }
  .tooltip.in {
    opacity: 0.9; }
  .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
    padding: 5px 0;
    margin-top: -3px; }
    .tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
      bottom: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 5px 5px 0;
      border-top-color: #94793f; }
  .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
    padding: 0 5px;
    margin-left: 3px; }
    .tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow {
      top: 50%;
      left: 0;
      margin-top: -5px;
      border-width: 5px 5px 5px 0;
      border-right-color: #94793f; }
  .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
    padding: 5px 0;
    margin-top: 3px; }
    .tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow {
      top: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 0 5px 5px;
      border-bottom-color: #94793f; }
  .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
    padding: 0 5px;
    margin-left: -3px; }
    .tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow {
      top: 50%;
      right: 0;
      margin-top: -5px;
      border-width: 5px 0 5px 5px;
      border-left-color: #94793f; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #94793f;
  border-radius: 0.1rem; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 0.875rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.1rem; }
  .popover.popover-top, .popover.bs-tether-element-attached-bottom {
    margin-top: -10px; }
    .popover.popover-top .popover-arrow, .popover.bs-tether-element-attached-bottom .popover-arrow {
      bottom: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-color: rgba(0, 0, 0, 0.25);
      border-bottom-width: 0; }
      .popover.popover-top .popover-arrow::after, .popover.bs-tether-element-attached-bottom .popover-arrow::after {
        bottom: 1px;
        margin-left: -10px;
        content: "";
        border-top-color: #fff;
        border-bottom-width: 0; }
  .popover.popover-right, .popover.bs-tether-element-attached-left {
    margin-left: 10px; }
    .popover.popover-right .popover-arrow, .popover.bs-tether-element-attached-left .popover-arrow {
      top: 50%;
      left: -11px;
      margin-top: -11px;
      border-right-color: rgba(0, 0, 0, 0.25);
      border-left-width: 0; }
      .popover.popover-right .popover-arrow::after, .popover.bs-tether-element-attached-left .popover-arrow::after {
        bottom: -10px;
        left: 1px;
        content: "";
        border-right-color: #fff;
        border-left-width: 0; }
  .popover.popover-bottom, .popover.bs-tether-element-attached-top {
    margin-top: 10px; }
    .popover.popover-bottom .popover-arrow, .popover.bs-tether-element-attached-top .popover-arrow {
      top: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-width: 0;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-bottom .popover-arrow::after, .popover.bs-tether-element-attached-top .popover-arrow::after {
        top: 1px;
        margin-left: -10px;
        content: "";
        border-top-width: 0;
        border-bottom-color: #fff; }
  .popover.popover-left, .popover.bs-tether-element-attached-right {
    margin-left: -10px; }
    .popover.popover-left .popover-arrow, .popover.bs-tether-element-attached-right .popover-arrow {
      top: 50%;
      right: -11px;
      margin-top: -11px;
      border-right-width: 0;
      border-left-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-left .popover-arrow::after, .popover.bs-tether-element-attached-right .popover-arrow::after {
        right: 1px;
        bottom: -10px;
        content: "";
        border-right-width: 0;
        border-left-color: #fff; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: -0.9rem -0.9rem 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover-arrow, .popover-arrow::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover-arrow {
  border-width: 11px; }

.popover-arrow::after {
  content: "";
  border-width: 10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner > .carousel-item {
    position: relative;
    display: none;
    transition: .6s ease-in-out left; }
    .carousel-inner > .carousel-item > img,
    .carousel-inner > .carousel-item > a > img {
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .carousel-item {
        transition: transform .6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000px; }
        .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right {
          left: 0;
          transform: translate3d(100%, 0, 0); }
        .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left {
          left: 0;
          transform: translate3d(-100%, 0, 0); }
        .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active {
          left: 0;
          transform: translate3d(0, 0, 0); } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5; }
  .carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:focus, .carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
    line-height: 1; }
  .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev::before {
    content: "\2039"; }
  .carousel-control .icon-next::before {
    content: "\203a"; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px; }
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn, .carousel-caption input[type=submit], .carousel-caption body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .carousel-caption button.pea_cook_btn {
    text-shadow: none; }

@media (min-width: 544px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-xs-left {
  float: left !important; }

.pull-xs-right {
  float: right !important; }

.pull-xs-none {
  float: none !important; }

@media (min-width: 544px) {
  .pull-sm-left {
    float: left !important; }
  .pull-sm-right {
    float: right !important; }
  .pull-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .pull-md-left {
    float: left !important; }
  .pull-md-right {
    float: right !important; }
  .pull-md-none {
    float: none !important; } }

@media (min-width: 1220px) {
  .pull-lg-left {
    float: left !important; }
  .pull-lg-right {
    float: right !important; }
  .pull-lg-none {
    float: none !important; } }

@media (min-width: 1420px) {
  .pull-xl-left {
    float: left !important; }
  .pull-xl-right {
    float: right !important; }
  .pull-xl-none {
    float: none !important; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.invisible {
  visibility: hidden !important; }

.text-hide {
  font: "0/0" a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-xs-left {
  text-align: left !important; }

.text-xs-right {
  text-align: right !important; }

.text-xs-center {
  text-align: center !important; }

@media (min-width: 544px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 1220px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1420px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.text-muted {
  color: #818a91; }

.text-primary {
  color: #94793f !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #705c30; }

.text-success {
  color: #5cb85c !important; }

a.text-success:focus, a.text-success:hover {
  color: #449d44; }

.text-info {
  color: #5bc0de !important; }

a.text-info:focus, a.text-info:hover {
  color: #31b0d5; }

.text-warning {
  color: #f0ad4e !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f; }

.text-danger {
  color: #d9534f !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c; }

.bg-inverse {
  color: #f3f3f3;
  background-color: #373a3c; }

.bg-faded {
  background-color: #f7f7f9; }

.bg-primary {
  color: #fff !important;
  background-color: #94793f !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #705c30; }

.bg-success {
  color: #fff !important;
  background-color: #5cb85c !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44; }

.bg-info {
  color: #fff !important;
  background-color: #5bc0de !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5; }

.bg-warning {
  color: #fff !important;
  background-color: #f0ad4e !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f; }

.bg-danger {
  color: #fff !important;
  background-color: #d9534f !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c; }

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-a-0 {
  margin: 0 0 !important; }

.m-t-0 {
  margin-top: 0 !important; }

.m-r-0 {
  margin-right: 0 !important; }

.m-b-0 {
  margin-bottom: 0 !important; }

.m-l-0 {
  margin-left: 0 !important; }

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-a-1 {
  margin: 1rem 1rem !important; }

.m-t-1 {
  margin-top: 1rem !important; }

.m-r-1 {
  margin-right: 1rem !important; }

.m-b-1 {
  margin-bottom: 1rem !important; }

.m-l-1 {
  margin-left: 1rem !important; }

.m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-a-2 {
  margin: 1.5rem 1.5rem !important; }

.m-t-2 {
  margin-top: 1.5rem !important; }

.m-r-2 {
  margin-right: 1.5rem !important; }

.m-b-2 {
  margin-bottom: 1.5rem !important; }

.m-l-2 {
  margin-left: 1.5rem !important; }

.m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-a-3 {
  margin: 3rem 3rem !important; }

.m-t-3 {
  margin-top: 3rem !important; }

.m-r-3 {
  margin-right: 3rem !important; }

.m-b-3 {
  margin-bottom: 3rem !important; }

.m-l-3 {
  margin-left: 3rem !important; }

.m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-a-0 {
  padding: 0 0 !important; }

.p-t-0 {
  padding-top: 0 !important; }

.p-r-0 {
  padding-right: 0 !important; }

.p-b-0 {
  padding-bottom: 0 !important; }

.p-l-0 {
  padding-left: 0 !important; }

.p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-a-1 {
  padding: 1rem 1rem !important; }

.p-t-1 {
  padding-top: 1rem !important; }

.p-r-1 {
  padding-right: 1rem !important; }

.p-b-1 {
  padding-bottom: 1rem !important; }

.p-l-1 {
  padding-left: 1rem !important; }

.p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-a-2 {
  padding: 1.5rem 1.5rem !important; }

.p-t-2 {
  padding-top: 1.5rem !important; }

.p-r-2 {
  padding-right: 1.5rem !important; }

.p-b-2 {
  padding-bottom: 1.5rem !important; }

.p-l-2 {
  padding-left: 1.5rem !important; }

.p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-a-3 {
  padding: 3rem 3rem !important; }

.p-t-3 {
  padding-top: 3rem !important; }

.p-r-3 {
  padding-right: 3rem !important; }

.p-b-3 {
  padding-bottom: 3rem !important; }

.p-l-3 {
  padding-left: 3rem !important; }

.p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.pos-f-t {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 1219px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 1220px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1419px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1420px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/* perfect-scrollbar v0.6.11 */
.ps-container {
  -ms-touch-action: none;
  touch-action: none;
  overflow: hidden !important;
  -ms-overflow-style: none; }

@supports (-ms-overflow-style: none) {
  .ps-container {
    overflow: auto !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps-container {
    overflow: auto !important; } }

.ps-container.ps-active-x > .ps-scrollbar-x-rail,
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
  display: block;
  background-color: transparent; }

.ps-container.ps-in-scrolling {
  pointer-events: none; }

.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9; }

.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999; }

.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9; }

.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #999; }

.ps-container > .ps-scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  -moz-transition: background-color .2s linear, opacity .2s linear;
  -o-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 3px;
  /* there must be 'bottom' for ps-scrollbar-x-rail */
  height: 8px; }

.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
  bottom: 0;
  /* there must be 'bottom' for ps-scrollbar-x */
  height: 8px; }

.ps-container > .ps-scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  -moz-transition: background-color .2s linear, opacity .2s linear;
  -o-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  right: 3px;
  /* there must be 'right' for ps-scrollbar-y-rail */
  width: 8px; }

.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
  right: 0;
  /* there must be 'right' for ps-scrollbar-y */
  width: 8px; }

.ps-container:hover.ps-in-scrolling {
  pointer-events: none; }

.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background: rgba(0, 0, 0, 0.61);
  opacity: 1; }

.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background: rgba(0, 0, 0, 0.5); }

.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background: rgba(0, 0, 0, 0.61);
  opacity: 1; }

.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background: rgba(0, 0, 0, 0.5); }

.ps-container:hover > .ps-scrollbar-x-rail,
.ps-container:hover > .ps-scrollbar-y-rail {
  opacity: 1; }

.ps-container:hover > .ps-scrollbar-x-rail:hover {
  background: rgba(0, 0, 0, 0.61);
  opacity: 1; }

.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background: rgba(0, 0, 0, 0.5); }

.ps-container:hover > .ps-scrollbar-y-rail:hover {
  background: rgba(0, 0, 0, 0.61);
  opacity: 1; }

.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background: rgba(0, 0, 0, 0.61); }

.ps-container > .ps-scrollbar-y-rail, .ps-active-y.ps-container > .ps-scrollbar-y-rail {
  background-color: rgba(0, 0, 0, 0.09);
  opacity: 1;
  display: block;
  height: 100%; }

.ps-container:hover.ps-in-scrolling > .ps-scrollbar-y-rail, .ps-container:hover > .ps-scrollbar-x-rail:hover, .ps-active-y.ps-container > .ps-scrollbar-y-rail:hover, .ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: rgba(0, 0, 0, 0.15); }

.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background: rgba(0, 0, 0, 0.5); }

.ps-container > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background: rgba(0, 0, 0, 0.61); }

/*=========================================

	Accessibility

===========================================*/
.skip-nav a {
  position: fixed;
  top: 0px;
  bottom: 0px;
  height: 0;
  width: 0;
  overflow: hidden; }

.skip-nav a:focus {
  overflow: visible;
  background: black;
  padding: 5px;
  color: white;
  display: block;
  position: static;
  width: 100%;
  height: auto; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

a,
input[type="submit"] {
  outline: none !important; }

/*=========================================

	Wordpress Core

===========================================*/
.alignnone {
  margin: 5px 0px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 0px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  text-align: center;
  margin-bottom: 20px;
  max-width: 100%; }

.wp-caption.alignnone {
  margin: 5px 0px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 40px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 40px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto; }

.wp-caption .wp-caption-text, .gallery .gallery-caption {
  font-size: .7rem;
  margin-top: .5rem;
  border-top: 1px solid #d5e0e4;
  padding-top: .25rem;
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  text-align: left;
  line-height: 1rem; }

.wp-caption.alignright .wp-caption-text {
  text-align: right; }

html .slideshow-window {
  background-color: #94793f;
  border: 20px solid #94793f;
  border-radius: 0; }

.gallery {
  margin: auto;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1.5rem; }

.gallery .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  padding: .25rem;
  margin-bottom: 0; }

.gallery .gallery-caption {
  margin-left: 0; }

.gallery br {
  clear: both; }

.gallery .col-2 .gallery-caption, .gallery .col-3 .gallery-caption, .gallery .col-4 .gallery-caption, .gallery .col-5 .gallery-caption, .gallery .col-6 .gallery-caption, .gallery .col-7 .gallery-caption, .gallery .col-8 .gallery-caption, .gallery .col-9 .gallery-caption {
  word-break: break-word; }

.gallery .col-2 {
  width: 50%; }

.gallery .col-3 {
  width: 33.333%; }

.gallery .col-4 {
  width: 25%; }

.gallery .col-5 {
  width: 20%; }

.gallery .col-6 {
  width: 16.666%; }

.gallery .col-7 {
  width: 14.285%; }

.gallery .col-8 {
  width: 12.5%; }

.gallery .col-9 {
  width: 11.111%; }

.gallery .col-2:nth-of-type(2n + 1) {
  clear: left; }

.gallery .col-3:nth-of-type(3n + 1) {
  clear: left; }

.gallery .col-4:nth-of-type(4n + 1) {
  clear: left; }

.gallery .col-5:nth-of-type(5n + 1) {
  clear: left; }

.gallery .col-6:nth-of-type(6n + 1) {
  clear: left; }

.gallery .col-7:nth-of-type(7n + 1) {
  clear: left; }

.gallery .col-8:nth-of-type(8n + 1) {
  clear: left; }

.gallery .col-9:nth-of-type(9n + 1) {
  clear: left; }

@media (max-width: 543px) {
  .gallery .col-3 {
    width: 50%; }
  .gallery .col-4 {
    width: 50%; }
  .gallery .col-5 {
    width: 50%; }
  .gallery .col-6 {
    width: 50%; }
  .gallery .col-7 {
    width: 50%; }
  .gallery .col-8 {
    width: 50%; }
  .gallery .col-9 {
    width: 50%; }
  .gallery .col-3:nth-of-type(3n + 1) {
    clear: none; }
  .gallery .col-4:nth-of-type(4n + 1) {
    clear: none; }
  .gallery .col-5:nth-of-type(5n + 1) {
    clear: none; }
  .gallery .col-6:nth-of-type(6n + 1) {
    clear: none; }
  .gallery .col-7:nth-of-type(7n + 1) {
    clear: none; }
  .gallery .col-8:nth-of-type(8n + 1) {
    clear: none; }
  .gallery .col-9:nth-of-type(9n + 1) {
    clear: none; }
  .gallery .col-3:nth-of-type(2n + 1), .gallery .col-4:nth-of-type(2n + 1), .gallery .col-5:nth-of-type(2n + 1), .gallery .col-6:nth-of-type(2n + 1), .gallery .col-7:nth-of-type(2n + 1), .gallery .col-8:nth-of-type(2n + 1), .gallery .col-9:nth-of-type(2n + 1) {
    clear: left; } }

@media (max-width: 767px) {
  .alignright {
    float: none;
    margin: 5px 0 20px 0px; }
  .alignleft {
    float: none;
    margin: 5px 0px 20px 0; }
  a img.alignright {
    float: none;
    margin: 5px 0 20px 0px; }
  a img.alignleft {
    float: left;
    margin: 5px 0px 20px 0; }
  .wp-caption.alignnone {
    margin: 5px 0px 20px 0; }
  .wp-caption.alignleft {
    margin: 5px 0px 20px 0; }
  .wp-caption.alignright {
    margin: 5px 0 20px 0px; } }

@media (min-width: 1220px) and (max-width: 1419px) {
  .alignright {
    float: none;
    margin: 5px 0 20px 0px; }
  .alignleft {
    float: none;
    margin: 5px 0px 20px 0; }
  a img.alignright {
    float: none;
    margin: 5px 0 20px 0px; }
  a img.alignleft {
    float: left;
    margin: 5px 0px 20px 0; }
  .wp-caption.alignnone {
    margin: 5px 0px 20px 0; }
  .wp-caption.alignleft {
    margin: 5px 0px 20px 0; }
  .wp-caption.alignright {
    margin: 5px 0 20px 0px; } }

/*=========================================

	Basic Styles

===========================================*/
body {
  min-width: 320px; }

img {
  max-width: 100%;
  display: block;
  height: auto; }

iframe {
  border: none; }

.container-main {
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@media (min-width: 544px) {
  .clear-sm {
    clear: both; } }

@media (min-width: 768px) {
  .clear-md {
    clear: both; } }

@media (max-width: 1023px) {
  .container-main {
    max-width: none;
    width: 100%; } }

/*=========================================

	Links & Typography

===========================================*/
body {
  font-style: normal;
  font-weight: 400; }

.btn-nav {
  color: #fff;
  background: #94793f;
  border-color: #94793f;
  border-left-color: #b29454;
  padding: 21px 1rem 17px;
  line-height: 28px; }
  .btn-nav:hover, .btn-nav:focus, .btn-nav:active {
    color: white; }
  .btn-nav i {
    font-size: 28px;
    top: 5px;
    position: relative; }

.btn-sm {
  font-size: 16px; }

.btn-allnews {
  margin: auto;
  display: block;
  max-width: 440px;
  margin-bottom: 1em;
  clear: both; }

h2 {
  color: #94793f; }

h1 a, h1 a:hover, h1 a:focus, h1 a:active, h1 a:visited, h2 a, h2 a:hover, h2 a:focus, h2 a:active, h2 a:visited, h3 a, h3 a:hover, h3 a:focus, h3 a:active, h3 a:visited, h4 a, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a, div#jp-relatedposts:before a, html div#pv-jp-relatedposts:before a, h4 a:hover, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:hover, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:hover, div#jp-relatedposts:before a:hover, html div#pv-jp-relatedposts:before a:hover, h4 a:focus, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:focus, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:focus, div#jp-relatedposts:before a:focus, html div#pv-jp-relatedposts:before a:focus, h4 a:active, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:active, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:active, div#jp-relatedposts:before a:active, html div#pv-jp-relatedposts:before a:active, h4 a:visited, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:visited, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a:visited, div#jp-relatedposts:before a:visited, html div#pv-jp-relatedposts:before a:visited, h5 a, h5 a:hover, h5 a:focus, h5 a:active, h5 a:visited, h6 a, h6 a:hover, h6 a:focus, h6 a:active, h6 a:visited {
  text-decoration: none; }

ul {
  list-style-type: circle; }

#content ul, #content ol, #content dl {
  overflow: hidden; }

p {
  margin-bottom: 1.5rem; }

blockquote {
  border-top: 2px solid #94793f;
  border-bottom: 2px solid #94793f;
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  font-style: italic;
  color: #94793f;
  padding: 1rem 2rem 0rem 6rem;
  margin: 1rem 0;
  position: relative;
  min-height: 10rem; }
  blockquote:before {
    content: '\201C';
    font-style: normal;
    font-size: 10rem;
    position: absolute;
    line-height: 10rem;
    left: 1rem;
    top: 1rem; }

h1, h2, h3, h4, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, div#jp-relatedposts:before, html div#pv-jp-relatedposts:before, h5, h6, a {
  word-break: break-word; }

h3 {
  font-size: 1.2rem; }

.emoji {
  display: inline;
  width: 1rem; }

@media (max-width: 767px) {
  blockquote {
    padding: 1.2rem 1rem 1rem 1rem; }
    blockquote:before {
      display: none; } }

/*=========================================

	Menus - integrate bootstrap styles
	with wordpress menu, drop downs

===========================================*/
.edition-select-top ul li .ess {
  background: #008284; }
  @media only screen and (min-width: 1220px) {
    .edition-select-top ul li .ess:before {
      border-bottom: 20px solid #008284; } }

.edition-select-top ul li a {
  padding-left: 15px !important;
  padding-right: 5px !important; }
  .edition-select-top ul li a:before {
    border-bottom-width: 15px !important;
    border-left-width: 15px !important; }

.main-logo {
  max-width: none;
  width: auto;
  max-height: 38px; }

.navbar-general {
  background: #94793f;
  border-bottom: 1px solid white;
  border-radius: 0; }
  .navbar-general .btn-secondary, .navbar-general .newsletter-sign-up input[type=submit], .newsletter-sign-up .navbar-general input[type=submit] {
    margin-right: 12px; }
  .navbar-general .navbar-toggler {
    color: white;
    outline: none;
    margin-left: -15px; }
  .navbar-general .container {
    padding: 0;
    max-width: none; }

.select-edition {
  float: right;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .select-edition .dropdown-toggle {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 21px 1rem 17px; }
  .select-edition .dropdown-menu {
    border: none;
    margin-top: 1px;
    border-radius: 0;
    background: #94793f;
    padding: 0;
    margin-right: -1rem; }
  .select-edition .dropdown-item {
    font-size: 17px;
    font-weight: 600;
    color: white;
    border-top: 1px solid #b29454;
    min-width: 13em;
    padding: 21px 19px 19px;
    line-height: 17px; }
    .select-edition .dropdown-item:hover, .select-edition .dropdown-item:focus, .select-edition .dropdown-item:active {
      color: #f3f3f3;
      background: transparent; }
    .select-edition .dropdown-item:after {
      content: "\0000a0";
      font-style: normal; }
  .select-edition .dropdown-item:first-child {
    border-top: none; }

.edition-select-top ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  float: right;
  margin-right: -10px; }
  .edition-select-top ul li {
    float: left; }
    .edition-select-top ul li a {
      background: #b29454;
      padding: .25rem .75rem .25rem 1rem;
      margin-right: 5px;
      display: block;
      color: white;
      text-decoration: none;
      position: relative;
      font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }
      .edition-select-top ul li a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        border-left: 20px solid #f9f9f9;
        width: 0; }
    .edition-select-top ul li span {
      position: relative; }

.edition-select-top ul li .global {
  background: #004a7f; }

.edition-select-top ul li .usa {
  background: #17749d; }

.edition-select-top ul li .germany {
  background: #95753c; }

.edition-select-top ul li .latam {
  background: #00732e; }

.edition-select-top ul li .china {
  background: #a2010e; }

.edition-select-top ul li .india {
  background: #eab519; }

.edition-select-top ul li .australia {
  background: #8b4d42; }

.edition-select-top ul li .mexico {
  background: #ed0277; }

.edition-select-top ul li .spain {
  background: #ffc400; }

.edition-select-top ul li .france {
  background: #75a4d6; }

.edition-select-top ul li .brazil {
  background: #0b8e40; }

.edition-select-top ul li .italy {
  background: #4f6ed3; }

.edition-select-desktop .edition-select-top ul li .global {
  background: #004a7f; }
  .edition-select-desktop .edition-select-top ul li .global:before {
    border-bottom: 20px solid #004a7f; }

.edition-select-desktop .edition-select-top ul li .usa {
  background: #17749d; }
  .edition-select-desktop .edition-select-top ul li .usa:before {
    border-bottom: 20px solid #17749d; }

.edition-select-desktop .edition-select-top ul li .germany {
  background: #95753c; }
  .edition-select-desktop .edition-select-top ul li .germany:before {
    border-bottom: 20px solid #95753c; }

.edition-select-desktop .edition-select-top ul li .latam {
  background: #00732e; }
  .edition-select-desktop .edition-select-top ul li .latam:before {
    border-bottom: 20px solid #00732e; }

.edition-select-desktop .edition-select-top ul li .china {
  background: #a2010e; }
  .edition-select-desktop .edition-select-top ul li .china:before {
    border-bottom: 20px solid #a2010e; }

.edition-select-desktop .edition-select-top ul li .india {
  background: #eab519; }
  .edition-select-desktop .edition-select-top ul li .india:before {
    border-bottom: 20px solid #eab519; }

.edition-select-desktop .edition-select-top ul li .australia {
  background: #8b4d42; }
  .edition-select-desktop .edition-select-top ul li .australia:before {
    border-bottom: 20px solid #8b4d42; }

.edition-select-desktop .edition-select-top ul li .mexico {
  background: #ed0277; }
  .edition-select-desktop .edition-select-top ul li .mexico:before {
    border-bottom: 20px solid #ed0277; }

.edition-select-desktop .edition-select-top ul li .spain {
  background: #ffc400; }
  .edition-select-desktop .edition-select-top ul li .spain:before {
    border-bottom: 20px solid #ffc400; }

.edition-select-desktop .edition-select-top ul li .france {
  background: #75a4d6; }
  .edition-select-desktop .edition-select-top ul li .france:before {
    border-bottom: 20px solid #75a4d6; }

.edition-select-desktop .edition-select-top ul li .brazil {
  background: #0b8e40; }
  .edition-select-desktop .edition-select-top ul li .brazil:before {
    border-bottom: 20px solid #0b8e40; }

.edition-select-desktop .edition-select-top ul li .italy {
  background: #4f6ed3; }
  .edition-select-desktop .edition-select-top ul li .italy:before {
    border-bottom: 20px solid #4f6ed3; }

.edition-select-tablet .edition-select-top {
  background: #94793f;
  border-bottom: 1px solid white;
  padding: 5px 0 0; }
  .edition-select-tablet .edition-select-top .container {
    max-width: none; }
    .edition-select-tablet .edition-select-top .container ul {
      float: left; }

.edition-select-mobile .edition-select-top {
  padding: .9375rem; }

.edition-select-tablet .edition-select-top ul li a, .edition-select-mobile .edition-select-top ul li a {
  /*
				background:none;
				border:1px solid $pv-blue-light;
				*/
  margin-bottom: 5px;
  font-size: 14px;
  border: 1px solid white; }

.navbar-main-menu {
  background: #94793f;
  font-size: 14px; }
  .navbar-main-menu .container {
    padding: 0;
    max-width: none; }

#search-toggle {
  padding-left: 11px; }
  #search-toggle i {
    padding-left: 5px; }

.navbar-search {
  display: inline-block;
  overflow: hidden;
  margin-bottom: -7px;
  width: 0;
  transition: width 150ms ease-out; }
  .navbar-search input[type=submit] {
    display: none;
    margin-right: 11px; }
  .navbar-search .search-text {
    border: none;
    padding-top: 4px;
    padding-bottom: 4px; }

.open .navbar-search {
  width: 228px; }

.navbar-mobile-search {
  color: white;
  padding: .9375rem .9375rem 0 .9375rem;
  position: relative; }
  .navbar-mobile-search i {
    right: .7rem;
    top: 1.4rem;
    position: absolute;
    cursor: pointer; }
  .navbar-mobile-search form {
    padding-right: 32px; }
  .navbar-mobile-search input[type=submit] {
    display: none; }
  .navbar-mobile-search .search-text {
    border: none;
    padding-top: 4px;
    padding-bottom: 4px; }

#select-edition:after {
  display: none; }

.navbar-main-menu .navbar-nav .nav-link, .navbar-main-menu .navbar-nav .menu-item > a, .navbar-main-menu .navbar-nav .menu-item > a {
  color: white;
  padding: .6rem .5rem .6rem .5rem; }
  .navbar-main-menu .navbar-nav .nav-link:hover, .navbar-main-menu .navbar-nav .menu-item > a:hover, .navbar-main-menu .navbar-nav .nav-link:focus, .navbar-main-menu .navbar-nav .menu-item > a:focus, .navbar-main-menu .navbar-nav .nav-link:active, .navbar-main-menu .navbar-nav .menu-item > a:active, .navbar-main-menu .navbar-nav .menu-item > a:hover, .navbar-main-menu .navbar-nav .menu-item > a:focus, .navbar-main-menu .navbar-nav .menu-item > a:active {
    color: white; }
  .navbar-main-menu .navbar-nav .nav-link:after, .navbar-main-menu .navbar-nav .menu-item > a:after, .navbar-main-menu .navbar-nav .menu-item > a:after {
    margin-left: 8px;
    border-top-color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.8); }

.navbar-main-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0; }
  .navbar-main-menu .nav-wrap {
    padding: 0.5rem 0; }
    .navbar-main-menu .nav-wrap li.menu-item {
      margin-left: 0; }
    .navbar-main-menu .nav-wrap .dropdown-menu {
      background: #94793f;
      font-weight: 400;
      font-size: 14px;
      border-radius: 0;
      margin-top: 8px;
      padding: 0;
      border: none; }
      .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item {
        border-top: 1px solid #b29454; }
        .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item:hover {
          background: transparent; }
        .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item a:focus, .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item a:active, .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item a:hover {
          font-style: italic;
          color: #f3f3f3; }
        .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item a {
          color: rgba(255, 255, 255, 0.8); }

.navbar-social {
  margin-top: 20px;
  margin-right: 20px; }

.navbar-social a {
  color: white;
  border-radius: 50%;
  display: inline-block;
  height: 30px;
  width: 30px;
  margin-left: 13px;
  font-size: 19px;
  padding: 1px 0 0 2px;
  margin-top: 2px; }
  .navbar-social a.twitter-link {
    background: #000; }
  .navbar-social a.facebook-link {
    background: #3b5998; }
  .navbar-social a.linkedin-link {
    background: #0976b4; }
  .navbar-social a.rss-link {
    background: #f26522; }
  .navbar-social a.youtube-link {
    background: #ff0000;
    background: url(../img/icons/youtube_social_circle_red.png) center center no-repeat;
    background-size: 100%; }
  .navbar-social a.spotify-link {
    background: #1DB954; }

.navbar-brand {
  padding-top: .5rem; }

@media (max-width: 1419px) {
  .navbar-social {
    margin-right: 10px; }
  .navbar-social a {
    height: 24px;
    width: 24px;
    margin-left: 2px;
    font-size: 14px;
    padding: 0px 0 0 2px;
    margin-top: 5px; } }

@media (min-width: 768px) {
  .navbar-general {
    padding-top: 0;
    padding-bottom: 0; }
  .main-logo {
    max-width: 280px;
    height: auto;
    max-height: none; }
  .navbar-toggleable-sm {
    height: auto !important; }
  #menu-primary-items .dropdown-menu {
    margin-left: -1rem; }
  .dropdown-submenu {
    position: relative; }
  #menu-primary-items .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0;
    border-left: 1px solid #b29454; } }

@media (max-width: 1219px) {
  #search-toggle {
    position: relative; }
  .navbar-search {
    position: absolute;
    right: 55px; } }

@media (max-width: 767px) {
  .navbar-general .login {
    margin-right: -1rem;
    padding: 0 .5rem .5rem;
    border-left: 0; }
  .navbar-brand {
    padding-top: .2rem; }
  /* carets */
  .nav > .dropdown > a:after, .dropdown-submenu > a:after {
    content: '+';
    border: none;
    float: right;
    font-size: 26px;
    margin-top: -9px;
    margin-right: 13px; }
  .nav > .login-link > a:after {
    content: "\e7fd";
    margin-right: -15px;
    border: none;
    float: right;
    font-size: 26px;
    margin-top: 0px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased; }
  .navbar-main-menu .nav-wrap {
    padding: 0;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
    .navbar-main-menu .nav-wrap li.menu-item {
      border-top: 1px solid #2786af;
      padding: 0; }
      .navbar-main-menu .nav-wrap li.menu-item a {
        padding: .525rem .9375rem .525rem .9375rem; }
    .navbar-main-menu .nav-wrap .dropdown-menu {
      margin-top: 0;
      margin-left: -0.9375rem;
      margin-right: -0.9375rem;
      min-width: 100%;
      position: static;
      float: none; }
      .navbar-main-menu .nav-wrap .dropdown-menu .dropdown-item {
        padding: 0 0.9375rem 0 1.875rem; }
  .navbar .navbar-nav .nav-item, .navbar .navbar-nav .menu-item, .navbar .navbar-nav .menu-item {
    float: none; }
  .navbar .nav-item + .nav-item, .navbar .menu-item + .nav-item, .navbar .nav-item + .menu-item, .navbar .menu-item + .menu-item {
    margin-left: 0; }
  .navbar .dropdown {
    position: initial; }
  .navbar .dropdown-menu {
    position: initial;
    z-index: initial;
    float: initial;
    border: initial;
    border-radius: initial; } }

@media (min-width: 1220px) {
  .main-logo {
    max-width: 300px;
    margin-bottom: 4px; } }

/*=========================================

	Sticky Footer
	http://css-tricks.com/snippets/css/sticky-footer/

===========================================*/
html, body, #outer-wrap {
  height: 100%; }

body > #outer-wrap {
  height: auto;
  min-height: 100%; }

#inner-wrap {
  padding-bottom: 100px; }

/* must be same height as the footer plus extra for space*/
#footer {
  position: relative;
  margin-top: -50px;
  /* negative value of footer height */
  height: 50px;
  clear: both;
  background: #505050;
  color: white;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }
  #footer .copyright, #footer .credits {
    margin-bottom: 0;
    text-align: left;
    font-size: .75rem;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
    #footer .copyright a, #footer .copyright a:hover, #footer .copyright a:active, #footer .copyright a:visited, #footer .copyright a:focus, #footer .credits a, #footer .credits a:hover, #footer .credits a:active, #footer .credits a:visited, #footer .credits a:focus {
      color: white;
      display: inline-block;
      padding-right: 10px; }

@media (max-width: 1219px) {
  #footer {
    height: auto;
    margin-top: 0; } }

/*=========================================

	newsletter modal

===========================================*/
#newsletter-modal .modal-header {
  background: #94793f; }
  #newsletter-modal .modal-header h2 {
    color: white;
    margin-bottom: 0; }
  #newsletter-modal .modal-header button {
    color: white;
    opacity: .75; }
    #newsletter-modal .modal-header button:hover, #newsletter-modal .modal-header button:focus, #newsletter-modal .modal-header button:active {
      opacity: 1; }

/*=========================================

	ad placeholders

===========================================*/
.g img {
  margin: auto; }

.ad {
  margin: auto; }
  .ad iframe {
    max-width: 100% !important;
    margin: auto;
    display: block; }

.ad-loading {
  display: none; }

.ad-leaderboard {
  height: auto;
  max-width: 100%; }

.ad-leaderboard-top-2 {
  margin-top: 1rem; }

.ad-leaderboard-google-top-1 {
  margin-bottom: 2rem;
  text-align: center; }

#leaderboard_top_2 {
  margin: 1rem auto 0;
  max-width: 1092px; }

.ad-sky {
  height: 600px;
  width: 120px; }

.ad-sky-left {
  position: absolute;
  left: -120px; }

.ad-sky-right {
  position: absolute;
  right: -120px; }

.ad-sky-right-additional, .ad-sky-left-additional {
  margin-top: 618px; }

.ad-sky-right-additional-2, .ad-sky-left-additional-2 {
  margin-top: 1236px; }

.ad-banner {
  width: 468px;
  min-height: 60px; }

.ad-banner-flex {
  width: auto;
  height: auto;
  max-width: 468px;
  max-height: none; }

.ad-banner-block {
  width: auto;
  height: auto;
  max-width: 468px; }

.ad-mobile-leader {
  width: auto;
  height: auto;
  max-width: 468px;
  display: none; }
  .ad-mobile-leader img {
    margin: 0 auto; }

.ad-full-banner {
  width: 468px;
  height: 60px; }

.ad-half-page {
  width: 300px;
  height: 600px;
  margin-bottom: 2rem; }

.ad-vertical-banner {
  width: 120px;
  height: 240px; }

.ad-small-rectangle {
  width: 180px;
  height: 150px; }

.ad-rectangle {
  max-width: 300px;
  max-height: 250px;
  width: auto;
  height: auto; }

.ad-rectangle-footer {
  margin-top: 2.5rem;
  margin-bottom: 1rem; }

.ad-rectangle-home-top {
  max-width: 505px;
  max-height: 400px;
  width: auto;
  height: auto; }

.home-rectangle-wrap .ad-rectangle {
  margin-bottom: 2rem; }

#home-top-rectangle-wrap-1 .ad, #home-top-rectangle-wrap-2 .ad, #home-top-rectangle-wrap-3 .ad {
  margin: 0;
  display: inline-block; }

#home-top-rectangle-wrap-1 .content-block, #home-top-rectangle-wrap-2 .content-block, #home-top-rectangle-wrap-3 .content-block {
  background: none;
  border: none; }

.ad-button {
  max-width: 120px;
  max-height: 60px; }

.ad-button-home-top {
  display: inline-block;
  margin: 0px 5px 10px 5px; }

.ad-button-group {
  text-align: center; }
  .ad-button-group .g-15 {
    max-width: none;
    text-align: center; }
    .ad-button-group .g-15 .g-col {
      display: inline-block;
      float: none;
      margin-top: 0; }

.blog-4 .g-15 {
  max-width: none; }
  .blog-4 .g-15 .g-col {
    max-width: 31%;
    overflow: hidden;
    margin-right: 2%; }

.ad-sidebar.ad-rectangle {
  margin-bottom: 2rem; }

.ad-align-left {
  margin-left: 0; }

.ad-margin-bottom {
  margin-bottom: 1rem; }

.ad-inline {
  display: inline-block;
  margin: 0 .25em; }

.ad-inline-center-group {
  text-align: center; }

.ad-scroll-to-view-top {
  position: absolute;
  width: auto;
  height: 0px;
  overflow: hidden;
  left: 0;
  right: 0; }
  .ad-scroll-to-view-top img {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: block; }

.wallpaper-ad {
  position: relative;
  right: -326px; }

body .g-11 {
  margin: 0px 0px 0px 0px; }

[data-ad-group="pv-ad-7"] .ad-leaderboard {
  margin-bottom: 2rem; }

[data-ad-group="pv-ad-6"] .ad-small-rectangle {
  margin-bottom: 2rem; }

@media (max-width: 1419px) {
  .ad-rectangle-home-top {
    max-width: 405px;
    max-height: 350px; } }

@media (max-width: 1219px) {
  .wallpaper-ad {
    position: relative;
    right: -226px; }
  .ad-rectangle-home-top {
    max-width: 300px;
    max-height: 250px; } }

@media (max-width: 1219px) {
  .wallpaper-ad {
    position: relative;
    right: -138px; } }

@media (max-width: 1023px) {
  .ad-sky-left, .ad-sky-right {
    display: none; }
  .wallpaper-ad {
    right: 0; } }

@media (max-width: 767px) {
  .ad-leaderboard {
    display: none; }
  .ad-leaderboard-google {
    display: block; }
  .ad-mobile-leader {
    display: block; } }

@media (max-width: 543px) {
  #rectangle-home-top-wrap .content-block {
    border: none;
    background: none;
    padding-left: 0;
    padding-right: 0; } }

@media (max-width: 1419px) {
  #leaderboard_top_2 {
    max-width: 728px; } }

@media (max-width: 767px) {
  #leaderboard_top_2 {
    max-width: 468px; } }

@media (max-width: 499px) {
  #leaderboard_top_2 {
    max-width: 320px; } }

/*=========================================

	Forms

===========================================*/
.form-control, input[type=text], input[type=search], input[type=email], input[type=password], input[type=url], textarea, select, input[type=text], input[type=search], input[type=email], input[type=password], input[type=url], textarea, select {
  font-size: .875rem; }

body .gform_wrapper select, body .gform_wrapper textarea, body .gform_wrapper label.gfield_label, body .gform_wrapper .description, body .gform_wrapper .gfield_description, body .gform_wrapper .gsection_description, body .gform_wrapper .instruction, body .gform_wrapper span.gform_description {
  font-size: .875rem; }

.btn, input[type=submit], body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }

label {
  margin-bottom: 0;
  margin-top: .5rem; }


input[type="submit"] {
  margin-top: .5rem; }

.required {
  color: #f0ad4e; }

.search-form {
  text-align: center; }
  .search-form .search-text {
    display: inline-block;
    max-width: 70%;
    margin-right: 10px; }

.newsletter-sign-up {
  text-align: center;
  margin-top: 1.4rem; }
  .newsletter-sign-up .email-placeholder {
    position: relative; }
    .newsletter-sign-up .email-placeholder i {
      position: absolute;
      top: .5rem;
      left: .5rem; }
  .newsletter-sign-up input[type=text], .newsletter-sign-up input[type=search], .newsletter-sign-up input[type=email] {
    margin: 1rem 0;
    background-color: #f0f4f6;
    border: solid 1px #d5e0e4; }
  .newsletter-sign-up input[type=email] {
    padding-left: 2.2rem; }

.newsletter-privacy-notice, .form-privacy-notice {
  display: block;
  font-size: 70%;
  font-weight: normal;
  line-height: 1.25em; }
  .newsletter-privacy-notice p, .form-privacy-notice p {
    margin-bottom: .5rem; }

body.mailchimp-form {
  height: auto;
  min-width: 0;
  background: transparent;
  overflow: hidden; }

/* Multi select on newsletter form */
html .gform_wrapper select[multiple=multiple], html .gform_wrapper.gf_browser_chrome select[multiple=multiple], html .gform_wrapper.gf_browser_safari select[multiple=multiple] {
  height: 7em !important; }

@media (max-width: 767px) {
  html .gform_wrapper select[multiple=multiple], html .gform_wrapper.gf_browser_chrome select[multiple=multiple], html .gform_wrapper.gf_browser_safari select[multiple=multiple] {
    height: 3em !important; } }

.mailchimp-form-frame {
  width: 100%;
  height: 160px;
  border: none;
  overflow: hidden; }

#mc_embed_signup .newsletter-sign-up input.mce_inline_error {
  border-color: #bc0000;
  border-width: 2px; }

#mc_embed_signup {
  max-width: 320px;
  margin: 0 auto; }

#mce-responses .response {
  margin-bottom: 1rem;
  border-width: 2px;
  border-style: solid;
  font-size: .875rem;
  padding: .5rem; }

#mce-responses #mce-success-response {
  border-color: #4CAF50; }

#mce-responses #mce-error-response {
  border-color: #bc0000; }

.gform_wrapper.gf_browser_chrome select[multiple=multiple], .gform_wrapper.gf_browser_safari select[multiple=multiple] {
  height: 5rem; }

img.gform_ajax_spinner {
  display: inline !important; }

.user-poll {
  border: 3px solid #94793f;
  padding: 1rem;
  margin-bottom: 1rem; }
  .user-poll .gform-footer {
    margin: 0; }
  .user-poll .gform_wrapper ul li.gfield {
    margin-top: 0; }

@media (max-width: 543px) {
  .search {
    text-align: right; }
    .search .search-text {
      max-width: none;
      margin-right: 0px;
      margin-bottom: 10px; } }

/*=========================================

	Article styles

===========================================*/
h1.entry-title {
  margin-bottom: 1rem; }

.article-preview .wp-post-image {
  margin-bottom: 1em; }

time.entry-published, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, span.entry-author, a.event-link, span.entry-issue, span.byline-meta {
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  font-size: .875rem;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 4px; }

time.entry-published, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
  color: #505050; }

span.entry-author, span.entry-author a, span.entry-issue a, a.comments-link {
  color: #94793f; }

.entry-byline {
  margin-bottom: .9rem; }

.article-lead-text {
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.33;
  color: #505050; }
  .article-lead-text p {
    margin-bottom: .8rem;
    line-height: 1.2rem; }

.entry-categories {
  margin-bottom: 1.5rem; }
  .entry-categories .nav-pills .nav-item + .nav-item, .entry-categories .nav-pills .menu-item + .nav-item, .entry-categories .nav-pills .nav-item + .menu-item, .entry-categories .nav-pills .menu-item + .menu-item {
    margin-left: 0; }

.entry-categories .nav-link, .entry-categories .menu-item > a {
  text-transform: uppercase;
  font-size: .6rem;
  line-height: 1em;
  letter-spacing: 0.1px;
  color: white;
  padding: 4px 6px 3px;
  margin-right: 9px;
  margin-bottom: .25rem;
  background: #94793f; }

.disclaimer {
  margin: 1rem 0;
  padding: .5rem;
  border-top: 1px solid #d5e0e4;
  border-bottom: 1px solid #d5e0e4;
  font-style: italic;
  font-size: .9rem; }
  .disclaimer p {
    margin-bottom: 0; }

.entry-share {
  padding: 1.5rem 0 .5rem; }
  .entry-share::after {
    content: "";
    display: table;
    clear: both; }
  .entry-share a {
    display: block;
    float: left;
    max-width: 30px;
    margin-right: 8px; }
    .entry-share a img {
      max-width: 100%;
      height: auto; }
  .entry-share h4, .entry-share html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .entry-share .jp-relatedposts-post-title, .entry-share html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .entry-share .jp-relatedposts-post-title, .entry-share div#jp-relatedposts:before, .entry-share html div#pv-jp-relatedposts:before, html .entry-share div#pv-jp-relatedposts:before {
    float: left;
    padding-top: 9px;
    margin-right: 10px; }

.entry-share-bottom {
  /*float:left;
	width:48%;*/
  margin-bottom: 1rem; }
  .entry-share-bottom .entry-share a {
    margin-right: 5px; }

.entry-ad {
  clear: both;
  margin-top: .5rem;
  margin-bottom: 1.5rem; }
  .entry-ad .ad {
    margin: 0; }

.featured-image-caption {
  font-size: .875rem;
  margin-top: .5rem;
  border-top: 1px solid #d5e0e4;
  padding-top: .25rem;
  font-family: "Droid Serif", "Times New Roman", Times, serif; }

.featured-image-caption p {
  margin-bottom: .25rem; }

.prev-post-link, .next-post-link {
  word-break: break-word;
  width: 48%;
  display: block;
  margin-top: 1.5rem; }
  .prev-post-link:after, .next-post-link:after {
    position: absolute;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 21px;
    line-height: 1;
    color: #94793f; }
  .prev-post-link:hover, .prev-post-link:active, .prev-post-link:visited, .prev-post-link:focus, .next-post-link:hover, .next-post-link:active, .next-post-link:visited, .next-post-link:focus {
    text-decoration: none;
    height: auto; }
  .prev-post-link span, .next-post-link span {
    font-size: .875rem;
    line-height: 1em;
    color: #94793f;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase; }
  .prev-post-link h4, .prev-post-link html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .prev-post-link .jp-relatedposts-post-title, .prev-post-link html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .prev-post-link .jp-relatedposts-post-title, .prev-post-link div#jp-relatedposts:before, .prev-post-link html div#pv-jp-relatedposts:before, html .prev-post-link div#pv-jp-relatedposts:before, .next-post-link h4, .next-post-link html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .next-post-link .jp-relatedposts-post-title, .next-post-link html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .next-post-link .jp-relatedposts-post-title, .next-post-link div#jp-relatedposts:before, .next-post-link html div#pv-jp-relatedposts:before, html .next-post-link div#pv-jp-relatedposts:before {
    font-size: .875rem;
    line-height: 1.33em;
    font-weight: normal;
    color: #b29454;
    border: 1px solid #f0f4f6;
    padding: 10px; }

.prev-post-link {
  border-radius: 0 2px 2px 0;
  left: 0;
  padding: 13px 5px 0 12px;
  float: left;
  position: relative; }
  .prev-post-link:after {
    content: '\e408';
    top: 17px;
    left: -5px; }
  .prev-post-link h4, .prev-post-link html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .prev-post-link .jp-relatedposts-post-title, .prev-post-link html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .prev-post-link .jp-relatedposts-post-title, .prev-post-link div#jp-relatedposts:before, .prev-post-link html div#pv-jp-relatedposts:before, html .prev-post-link div#pv-jp-relatedposts:before {
    margin-left: -12px; }

.next-post-link {
  text-align: right;
  border-radius: 2px 0px 0px 2px;
  right: 0;
  padding: 13px 12px 0 5px;
  float: right;
  position: relative; }
  .next-post-link:after {
    content: '\e409';
    top: 17px;
    right: -5px; }
  .next-post-link h4, .next-post-link html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .next-post-link .jp-relatedposts-post-title, .next-post-link html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .next-post-link .jp-relatedposts-post-title, .next-post-link div#jp-relatedposts:before, .next-post-link html div#pv-jp-relatedposts:before, html .next-post-link div#pv-jp-relatedposts:before {
    margin-right: -12px; }

.entry-author-bio {
  display: block;
  border-bottom: 1px solid #94793f;
  font-size: .7rem;
  color: #404040;
  margin-bottom: 2rem; }
  .entry-author-bio .text:hover, .entry-author-bio .text:focus, .entry-author-bio .text:active, .entry-author-bio .text:visited {
    text-decoration: none;
    color: #404040; }
  .entry-author-bio a i.icon {
    font-size: 19px;
    position: relative;
    top: -4px; }
    .entry-author-bio a i.icon:before {
      margin: 0; }
  .entry-author-bio a.social {
    margin-right: 5px;
    white-space: nowrap; }
  .entry-author-bio a .icon-twitter {
    top: 2px; }
  .entry-author-bio span a {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block; }
    .entry-author-bio span a:before {
      padding-right: 5px;
      position: relative;
      top: 5px;
      font-family: 'Material Icons';
      font-weight: normal;
      font-style: normal;
      font-size: 21px;
      line-height: 1;
      letter-spacing: normal;
      text-transform: none;
      display: inline-block;
      white-space: nowrap;
      word-wrap: normal;
      direction: ltr;
      -webkit-font-feature-settings: 'liga';
      -webkit-font-smoothing: antialiased;
      content: "\e0be "; }
  .entry-author-bio .author-text {
    display: inline-block;
    max-width: 73%;
    margin-bottom: 0; }
  .entry-author-bio .author-text.no-image {
    max-width: 100%; }
  .entry-author-bio hr {
    margin: 0 0 .5rem; }
  .entry-author-bio .contact::after {
    content: "";
    display: table;
    clear: both; }
  .entry-author-bio .email {
    float: left;
    margin-right: 20px; }
  .entry-author-bio .social-links {
    float: right;
    text-align: right;
    position: relative;
    top: 3px; }
  .entry-author-bio h4, .entry-author-bio html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .entry-author-bio .jp-relatedposts-post-title, .entry-author-bio html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .entry-author-bio .jp-relatedposts-post-title, .entry-author-bio div#jp-relatedposts:before, .entry-author-bio html div#pv-jp-relatedposts:before, html .entry-author-bio div#pv-jp-relatedposts:before, .entry-author-bio h1 {
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .875rem;
    padding-bottom: .5em;
    font-weight: bold;
    color: #94793f;
    text-transform: uppercase;
    border-bottom: 4px solid #94793f; }
  .entry-author-bio img {
    display: inline-block;
    max-width: 20%;
    margin: 4px 3% 4px 0;
    vertical-align: top; }

.entry-author-bio-wide {
  display: block;
  float: none;
  width: 100%;
  clear: both; }

.author-brand-box .author-image {
  max-width: 100px;
  float: left; }

.author-brand-box .author-text {
  padding-top: .5rem; }

.brand-link {
  white-space: nowrap; }

.brand-image {
  display: inline; }

.powered-by {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .875rem;
  padding-bottom: .5em;
  font-weight: bold;
  color: #94793f;
  text-transform: uppercase; }

.bib__tile--1 .bib__link, .bib__tile--2 .bib__link, .bib__tile--3 .bib__link {
  background-image: url("../img/bibblio/sunshine.jpg"); }

.bib__image {
  background-image: url("../img/bibblio/pv-magazine-logo.png"); }

.singular-post .entry-content h2, .singular-page .entry-content h2, .singular-magazine_archive .entry-content h2 {
  font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #404040;
  font-size: 1.1rem; }

.singular-post .entry-content h3, .singular-page .entry-content h3, .singular-magazine_archive .entry-content h3 {
  font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #404040;
  font-size: 1.0rem; }

.singular-post .entry-content .callout-title h2, .singular-page .entry-content .callout-title h2, .singular-magazine_archive .entry-content .callout-title h2 {
  color: white; }

/*
@media (min-width: map-get($grid-breakpoints, xl) + 240) {

	.prev-post-link, .next-post-link {
		width:130px;
		position: fixed;
		top:40%;
		height:55px;
		overflow:hidden;
		float: none;
	}
}
*/
@media (max-width: 767px) {
  .prev-post-link, .next-post-link {
    width: 90%; }
  .entry-author-bio {
    float: none;
    width: 100%; }
  .entry-share-bottom {
    float: none;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem; } }

/*=========================================

	Singular Two Column

===========================================*/
.singular-wrap {
  margin: 0px auto; }

.singular-inner {
  background-color: #ffffff;
  padding: 1rem 1.2rem; }

@media (max-width: 543px) {
  .singular-inner .ad-banner {
    display: none; } }

@media (min-width: 544px) {
  .singular-wrap {
    max-width: 576px;
    margin: 20px auto; }
  .singular-inner {
    border: solid 1px #f3f3f3; } }

@media (min-width: 544px) and (max-width: 624px) {
  .singular-wrap {
    max-width: none;
    margin: 0px auto; }
  .singular-inner {
    border: none; } }

@media (min-width: 768px) {
  .singular-wrap {
    max-width: 768px;
    margin: 20px auto; }
  .singular-inner {
    border: solid 1px #f3f3f3; } }

@media (min-width: 768px) and (max-width: 828px) {
  .singular-wrap {
    max-width: none;
    margin: 0px auto; }
  .singular-inner {
    border: none; } }

@media (min-width: 1024px) {
  .singular-wrap {
    padding: 0 0.9375rem;
    max-width: none; } }

@media (min-width: 1220px) {
  .singular-wrap {
    margin-top: 40px;
    max-width: 860px;
    padding: 0; }
  .singular-inner {
    max-width: 535px;
    float: left;
    margin-right: 25px; }
  .singular-inner-live-blog {
    margin-right: 0px;
    margin-left: 25px; } }

@media (min-width: 1420px) {
  .singular-wrap {
    max-width: 1025px; }
  .singular-inner {
    max-width: 700px;
    width: 700px; } }

@media (min-width: 1220px) {
  .sidebar-posts {
    width: 300px;
    float: right; } }

/*=========================================

	Singular One Column

===========================================*/
.singular-wrap-one-column .singular-inner {
  width: 100%;
  max-width: 1025px;
  margin-right: 0;
  padding: 1rem; }

.singular-wrap-one-column .ad-spacer {
  margin: .5rem 0 1.5rem; }

.singular-wrap-one-column #content {
  clear: both; }

.call-to-action {
  margin: 1rem 0 3rem;
  border-top: 1px solid #d5e0e4;
  border-bottom: 1px solid #d5e0e4;
  padding: 1rem 0; }
  .call-to-action::after {
    content: "";
    display: table;
    clear: both; }
  .call-to-action ul {
    padding-left: 0; }

@media (max-width: 543px) {
  .call-to-action .btn-secondary, .call-to-action .newsletter-sign-up input[type=submit], .newsletter-sign-up .call-to-action input[type=submit] {
    margin-top: 1rem; } }

@media (max-width: 1219px) and (min-width: 1024px) {
  .singular-wrap-one-column .ad-leaderboard {
    display: none; } }

@media (min-width: 1220px) and (max-width: 1419px) {
  .singular-wrap-one-column .singular-inner {
    max-width: 860px; } }

@media (min-width: 1220px) {
  .singular-wrap-one-column #content {
    clear: none; }
  .singular-wrap-one-column .singular-inner {
    padding-top: 2rem; }
  .singular-wrap-one-column h1.entry-title, .singular-wrap-one-column .entry-byline, .singular-wrap-one-column .entry-categories, .singular-wrap-one-column .entry-share-top {
    text-align: center;
    margin-left: 5rem;
    margin-right: 5rem; }
  .singular-wrap-one-column .webinar-callout-body .entry-byline, .singular-wrap-one-column .webinar-callout-body .entry-categories {
    text-align: left;
    margin-left: 0;
    margin-right: 0; }
  .singular-wrap-one-column .entry-image img {
    margin-left: auto;
    margin-right: auto; }
  .singular-wrap-one-column .entry-content {
    padding-left: 5rem;
    padding-right: 5rem; }
    .singular-wrap-one-column .entry-content .ad-spacer {
      margin: .5rem -5rem 1.5rem; }
  .singular-wrap-one-column .related-content {
    padding: 1rem 5rem; }
  .singular-wrap-one-column .call-to-action {
    margin: 2rem 4rem 3rem; }
  .singular-wrap-one-column .author-share-wrap, .singular-wrap-one-column .comments {
    margin-left: 5rem;
    margin-right: 5rem; }
  .singular-wrap-featured h1.entry-title {
    text-align: center;
    margin-left: 6rem;
    margin-right: 6rem; } }

@media (min-width: 1420px) {
  .singular-wrap-featured h1.entry-title {
    margin-left: 5rem;
    margin-right: 5rem; } }

/*=========================================

Home

===========================================*/
.home-wrap {
  padding: 1rem 1.5rem; }
  .home-wrap h3 {
    margin-bottom: 0;
    font-size: 1.1rem; }
  .home-wrap h3 a {
    color: #94793f; }
  .home-wrap time.entry-published, .home-wrap html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .home-wrap .jp-relatedposts-post-date, .home-wrap html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .home-wrap .jp-relatedposts-post-date, .home-wrap span.entry-author, .home-wrap a.event-link, .home-wrap span.entry-issue {
    font-size: .75rem; }
  .home-wrap .content-block-category-lead {
    padding: 0; }
    .home-wrap .content-block-category-lead .article-preview-large-no-image {
      padding: 1.33rem; }
  .home-wrap #announcements {
    overflow: hidden; }
    .home-wrap #announcements h3 {
      margin-bottom: 1rem; }
    .home-wrap #announcements .webinar-callout br {
      display: none; }
  .home-wrap .popular-posts .wpp-post-title {
    color: #94793f; }
  .home-wrap .popular-posts img {
    display: none !important; }
  .home-wrap #popular-posts-home-wrap .popular-posts .wpp-post-title {
    font-size: 1.1rem;
    line-height: 1.25em; }
  .home-wrap #popular-posts-home-wrap .popular-posts img {
    width: 80px;
    height: 58px;
    overflow: hidden;
    float: left;
    display: block !important;
    margin-right: 20px; }
  .home-wrap #popular-posts-home-wrap .popular-posts .wpp-list li {
    clear: both; }
  .home-wrap .wpp-no-data {
    display: none !important; }
  .home-wrap .wpp-list {
    padding-left: 0;
    margin-bottom: 0; }
    .home-wrap .wpp-list li {
      margin-top: .6rem;
      font-family: "Droid Serif", "Times New Roman", Times, serif;
      font-size: 1rem;
      line-height: 1.1rem;
      font-weight: bold; }
  .home-wrap .pv-ad-group-10 {
    clear: both; }
  .home-wrap .second-home-section {
    clear: both; }
  .home-wrap .all-news {
    text-align: center;
    margin-bottom: 20px; }
  .home-wrap h2, .home-wrap h2 a {
    color: #94793f; }
  .home-wrap .article-lead-text {
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-size: .875rem;
    line-height: 1.33em;
    margin-top: .3rem; }
  .home-wrap .ad-spacer {
    margin: .5rem 0 1rem; }
  .home-wrap #ytc-wrapper .ytcplayer-wrapper {
    width: 66% !important;
    float: left;
    margin-bottom: 0; }
  .home-wrap #ytc-wrapper .ytc-thumbnails {
    /* hover effect for both scrollbar area, and scrollbar 'thumb' */
    /* The scrollbar 'thumb' ...that marque oval shape in a scrollbar */
    width: 100%;
    float: right;
    clear: none;
    padding-top: 112.5% !important;
    overflow: hidden;
    height: 0;
    overflow-y: scroll;
    position: relative; }
    .home-wrap #ytc-wrapper .ytc-thumbnails::-webkit-scrollbar {
      width: 8px;
      /* 1px wider than Lion. */
      /* This is more usable for users trying to click it. */
      background-color: rgba(0, 0, 0, 0.09);
      -webkit-border-radius: 100px; }
    .home-wrap #ytc-wrapper .ytc-thumbnails::-webkit-scrollbar:hover {
      background-color: rgba(0, 0, 0, 0.15); }
    .home-wrap #ytc-wrapper .ytc-thumbnails::-webkit-scrollbar-thumb:vertical {
      /* This is the EXACT color of Mac OS scrollbars. 
	     Yes, I pulled out digital color meter */
      background: rgba(0, 0, 0, 0.5);
      -webkit-border-radius: 100px; }
    .home-wrap #ytc-wrapper .ytc-thumbnails::-webkit-scrollbar-thumb:vertical:active {
      background: rgba(0, 0, 0, 0.61);
      /* Some darker color when you click it */
      -webkit-border-radius: 100px; }
    .home-wrap #ytc-wrapper .ytc-thumbnails .ytc-row {
      position: absolute;
      width: 95%;
      top: 0;
      margin: 0 !important; }
      .home-wrap #ytc-wrapper .ytc-thumbnails .ytc-row .ytc-column {
        padding: 0 !important;
        width: 100%; }
  .home-wrap #ytc-wrapper .ytc-promotion, .home-wrap #ytc-wrapper .ytc-youtubelink, .home-wrap #ytc-wrapper .ytc-links {
    display: none !important; }
  .home-wrap #ytc-wrapper .ytctitle {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    pointer-events: none; }
    .home-wrap #ytc-wrapper .ytctitle a {
      color: white;
      background: black;
      background: rgba(0, 0, 0, 0.6);
      display: block;
      padding: .5rem;
      pointer-events: none; }
  .home-wrap .pv-ad-group-14, .home-wrap .home-rectangle-wrap {
    float: right;
    margin-left: 1rem; }
  .home-wrap .content-block-preview-wrap {
    overflow: auto;
    margin-top: 1.5rem; }

.content-block {
  background: white;
  border: 1px solid #f3f3f3;
  padding: 1.33rem;
  margin-bottom: 1rem;
  position: relative; }
  .content-block .archive-title {
    width: 102px;
    margin: 0;
    position: absolute;
    z-index: 2;
    left: 2.66rem;
    top: 0;
    padding-top: 2.5rem;
    text-align: center; }
    .content-block .archive-title a {
      color: white; }
  .content-block .archive-link-wrap {
    margin: 2rem 0 0;
    border-top: 1px solid;
    padding-top: 1rem;
    color: #d5e0e4;
    border-top: 1px solid; }
  .content-block .archive-link {
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .875rem;
    line-height: 1em;
    text-transform: uppercase; }

.section-heading, .popular-posts h4, .popular-posts html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .popular-posts .jp-relatedposts-post-title, .popular-posts html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .popular-posts .jp-relatedposts-post-title, .popular-posts div#jp-relatedposts:before, .popular-posts html div#pv-jp-relatedposts:before, html .popular-posts div#pv-jp-relatedposts:before {
  text-transform: uppercase;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #94793f;
  font-size: 1rem;
  margin-bottom: 1rem; }
  .section-heading a, .popular-posts h4 a, .popular-posts html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a, html #jp-relatedposts .jp-relatedposts-items .popular-posts .jp-relatedposts-post-title a, .popular-posts html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title a, html #pv-jp-relatedposts .jp-relatedposts-items .popular-posts .jp-relatedposts-post-title a, .popular-posts div#jp-relatedposts:before a, .popular-posts html div#pv-jp-relatedposts:before a, html .popular-posts div#pv-jp-relatedposts:before a {
    color: #94793f; }

.first-home-section .section-heading {
  margin-top: 1rem; }

.content-block-lead h2 {
  margin-top: 1rem;
  font-size: 1.2rem;
  clear: both;
  margin-bottom: .2rem; }

.content-block-lead.no-thumb h2 {
  margin-top: 4rem; }

.content-block-small {
  padding: .875rem; }
  .content-block-small h2 {
    font-size: 1.1rem;
    line-height: 1.25em;
    margin-bottom: 0; }
  .content-block-small .entry-byline {
    margin-bottom: 0;
    line-height: 1.1em;
    margin-bottom: .4rem; }
    .content-block-small .entry-byline time.entry-published, .content-block-small .entry-byline html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-small .entry-byline .jp-relatedposts-post-date, .content-block-small .entry-byline html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-small .entry-byline .jp-relatedposts-post-date, .content-block-small .entry-byline span.entry-author, .content-block-small .entry-byline a.event-link, .content-block-small .entry-byline span.entry-issue {
      font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .content-block-small time.entry-published, .content-block-small html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-small .jp-relatedposts-post-date, .content-block-small html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-small .jp-relatedposts-post-date, .content-block-small span.entry-author {
    line-height: 1.1em; }
  .content-block-small .image-wrap {
    max-width: 33%;
    margin-right: 3%;
    display: inline-block;
    vertical-align: top; }
  .content-block-small .text-wrap {
    display: inline-block;
    max-width: 62%; }
  .content-block-small .text-wrap.no-thumb {
    max-width: none; }

.content-block .category {
  text-decoration: none;
  font-weight: bold;
  color: #94793f;
  text-transform: uppercase;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .75rem;
  display: block;
  line-height: 1;
  margin-bottom: .3em; }
  .content-block .category:hover, .content-block .category:focus, .content-block .category:active, .content-block .category:visited {
    text-decoration: none; }

.home-wrap .content-block-small .image-wrap {
  max-width: 25%; }

.home-wrap .content-block-small .text-wrap {
  max-width: 71%; }

.content-block-featured .image-wrap {
  clear: both;
  display: inline-block;
  max-width: 39%;
  margin-left: 2%;
  float: right; }

.content-block-featured .text-wrap {
  clear: both;
  max-width: 55%;
  display: inline-block;
  text-align: left;
  position: relative;
  z-index: 2;
  top: 3rem;
  margin-bottom: 3rem; }

.content-block-featured h2 {
  font-size: 2rem;
  margin-right: -30%;
  position: relative;
  left: 5px; }
  .content-block-featured h2 a {
    color: white;
    background: #94793f;
    box-shadow: 5px 0 0 #94793f, -5px 0 0 #94793f;
    padding: 5px 0;
    display: inline;
    line-height: 1.7em; }

.content-block-featured .ad-banner {
  margin-left: 0; }

.content-block .toggle-wrap {
  padding: 0 0 1rem; }
  .content-block .toggle-wrap::after {
    content: "";
    display: table;
    clear: both; }

.content-block .toggle-track {
  float: right;
  width: 34px;
  height: 14px;
  background-color: rgba(34, 31, 31, 0.26);
  border-radius: 7px;
  position: relative;
  cursor: pointer; }

.content-block .toggle-button {
  position: relative;
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  background-color: #f1f1f1;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  transition: all 100ms ease-out; }

.content-block .toggle-wrap-on .toggle-button {
  background-color: #94793f;
  left: 14px; }

.content-block .toggle-wrap-on .toggle-track {
  background-color: #a99770; }

.content-block {
  max-height: 400rem;
  transition: max-height 50ms ease-in-out; }
  .content-block .toggleable {
    opacity: 1;
    max-height: 400rem;
    transition: opacity 500ms ease-out; }

.content-block-toggle-off {
  max-height: 4.56rem;
  transition: none; }
  .content-block-toggle-off .toggleable {
    overflow: hidden;
    transition: none;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    margin-top: 0; }

.promo .magazine-thumb {
  display: block; }
  .promo .magazine-thumb img {
    max-height: 17rem;
    margin: 1rem 0 1rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5); }

.promo .btn-primary, .promo input[type=submit], .promo body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .promo button.pea_cook_btn {
  margin-top: 1rem; }

.promo .gform_wrapper {
  margin-bottom: 0; }

.content-block-press-releases time.entry-published, .content-block-press-releases html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-press-releases .jp-relatedposts-post-date, .content-block-press-releases html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-press-releases .jp-relatedposts-post-date, .content-block-press-releases span.entry-author {
  font-size: .75rem; }

.content-block-press-releases time.entry-published, .content-block-press-releases html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-press-releases .jp-relatedposts-post-date, .content-block-press-releases html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-press-releases .jp-relatedposts-post-date {
  margin-bottom: .33rem; }

.content-block-press-releases .article-lead-text {
  word-wrap: break-word; }
  .content-block-press-releases .article-lead-text p {
    margin-bottom: 0; }

.content-block-press-releases .press-releases-inner {
  padding-right: 138px;
  position: relative; }
  .content-block-press-releases .press-releases-inner .ad-vertical-banner {
    position: absolute;
    top: 0;
    right: 0; }

.content-block-press-releases .row {
  position: relative; }

.content-block-press-releases .press-release {
  position: static; }
  .content-block-press-releases .press-release:before {
    content: '';
    border-left: 1px solid #94793f;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -.8rem; }

.content-block-press-releases .press-release:first-child:before {
  border-left: none; }

.content-block-video .archive-link-wrap {
  display: none; }

.content-block-video .home-page-video-preview:hover .ytp-large-play-button-bg {
  fill: #cc181e; }

.content-block-video .home-page-video-preview {
  margin-bottom: 1em;
  display: block;
  background-size: cover;
  cursor: pointer;
  background-position: 50%; }
  .content-block-video .home-page-video-preview h4, .content-block-video .home-page-video-preview html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .content-block-video .home-page-video-preview .jp-relatedposts-post-title, .content-block-video .home-page-video-preview html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .content-block-video .home-page-video-preview .jp-relatedposts-post-title, .content-block-video .home-page-video-preview div#jp-relatedposts:before, .content-block-video .home-page-video-preview html div#pv-jp-relatedposts:before, html .content-block-video .home-page-video-preview div#pv-jp-relatedposts:before {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: .5rem;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .content-block-video .home-page-video-preview svg {
    height: 40px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px; }

.content-block-category::after {
  content: "";
  display: table;
  clear: both; }

.content-block-category .article-preview-large-image {
  margin-bottom: 0; }
  .content-block-category .article-preview-large-image time.entry-published, .content-block-category .article-preview-large-image html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-category .article-preview-large-image .jp-relatedposts-post-date, .content-block-category .article-preview-large-image html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .content-block-category .article-preview-large-image .jp-relatedposts-post-date {
    color: white; }
  .content-block-category .article-preview-large-image span.entry-author, .content-block-category .article-preview-large-image span.entry-author a, .content-block-category .article-preview-large-image span.entry-issue a, .content-block-category .article-preview-large-image a.comments-link {
    color: white; }

.content-block-category .section-heading {
  float: left; }

.content-block-category .toggle-wrap {
  padding-bottom: 0; }

.content-block-category .entry-byline {
  margin-bottom: .5rem;
  line-height: 1em; }

.content-block-category .article-preview {
  margin-bottom: 1.5rem;
  max-width: 718px; }

.content-block-category .article-preview-large h2, .content-block-category .article-preview-large h2 a {
  color: white;
  font-size: 2.2rem;
  display: inline; }

.content-block-category .article-preview-large-image {
  padding-top: 44%;
  position: relative;
  background-size: cover;
  background-position: 50% 25%; }
  .content-block-category .article-preview-large-image .article-preview-large-image-link {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0; }
  .content-block-category .article-preview-large-image .text-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 1.25rem; }
  .content-block-category .article-preview-large-image .archive-title {
    right: 2.66rem;
    left: auto; }
  .content-block-category .article-preview-large-image .span.entry-author, .content-block-category .article-preview-large-image span.entry-author a {
    color: white; }

.content-block-category .article-preview-large-no-image h2 {
  position: relative;
  left: 5px; }

.content-block-category .article-preview-large-no-image h2 a {
  background: #94793f;
  box-shadow: 10px 0 0 #94793f, -5px 0 0 #94793f;
  padding: 5px 0 5px 0px;
  line-height: 1.7em;
  box-decoration-break: clone; }

.content-block-category .article-preview-large-no-image h2 a:after {
  background: white; }

.content-block-category .article-preview-large-no-image .text-wrap {
  border-bottom: 4px solid #94793f;
  padding-bottom: 1rem;
  margin-bottom: 1rem; }

.content-block .article-lead-text p {
  margin-bottom: 0; }

#home-announcements-wrap .slick-slide {
  height: auto; }

#home-announcements-wrap .slick-track {
  line-height: 0; }

.content-block-home-announcements {
  background: #94793f;
  color: white;
  margin-bottom: 0;
  border: none; }
  .content-block-home-announcements h1, .content-block-home-announcements h2, .content-block-home-announcements h3, .content-block-home-announcements h4, .content-block-home-announcements html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .content-block-home-announcements .jp-relatedposts-post-title, .content-block-home-announcements html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .content-block-home-announcements .jp-relatedposts-post-title, .content-block-home-announcements div#jp-relatedposts:before, .content-block-home-announcements html div#pv-jp-relatedposts:before, html .content-block-home-announcements div#pv-jp-relatedposts:before, .content-block-home-announcements h5, .content-block-home-announcements h6, .content-block-home-announcements a {
    color: white; }
  .content-block-home-announcements p a {
    text-decoration: underline; }
  .content-block-home-announcements .article-lead-text {
    color: white; }
    .content-block-home-announcements .article-lead-text p {
      max-height: none; }
  .content-block-home-announcements .section-heading {
    float: none; }
  .content-block-home-announcements .col-sm-6:nth-of-type(2n + 1) {
    clear: both; }
  .content-block-home-announcements img.announcement-thumb {
    max-height: 8rem;
    margin: 0 1rem 1rem 0;
    float: left; }
  .content-block-home-announcements .callout {
    margin-bottom: 0; }

.home .comments-link {
  line-height: 12px;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: bold; }
  .home .comments-link .material-icons {
    line-height: 12px;
    font-size: 12px; }

#third-home-section-content-b .text-wrap {
  max-width: none; }

@media (min-width: 768px) {
  .content-block-category .article-preview-large h2 a {
    padding: 0 2rem 0 0;
    display: inline;
    position: relative; }
  .content-block-category .article-preview-large h2 a:after {
    width: 36px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: -10px;
    height: 60px;
    top: auto; }
  .content-block-category .article-preview-large .entry-byline {
    display: inline-block;
    position: relative;
    top: -.25rem; }
  .content-block-category .article-preview-large-no-image h2 a {
    padding: 5px 0 5px 0px;
    margin-right: 2rem; } }

@media (min-width: 1220px) and (max-width: 1419px) {
  .content-block-featured .image-wrap {
    display: block;
    float: right; }
  .content-block-featured h2 {
    margin-right: 0; }
  .content-block-featured .text-wrap {
    clear: none;
    max-width: 100%;
    display: block; }
  .content-block-featured .article-lead-text {
    clear: both; } }

@media (max-width: 1219px) {
  .home-wrap .first-home-section, .home-wrap .second-home-section, .home-wrap .third-home-section {
    width: auto;
    min-width: 100%; }
  .small-preview-inner-wrap::after {
    content: "";
    display: table;
    clear: both; }
  .home-wrap .content-block-small .image-wrap {
    display: none; }
  .home-wrap .content-block-small .text-wrap {
    max-width: 100%; }
  .content-block-featured .image-wrap {
    max-width: none;
    width: 100%;
    margin-left: 0; }
    .content-block-featured .image-wrap img {
      width: 100%;
      max-width: none; }
  .content-block-featured .text-wrap {
    max-width: 100%;
    top: 0;
    margin-top: 1rem;
    margin-bottom: 0; }
  .content-block-featured h2 {
    margin-right: 0; }
  .content-block-press-releases .press-release {
    border-top: 1px solid #94793f;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .content-block-press-releases .press-release:first-child {
    border-top: none;
    padding-top: 0; }
  .content-block-press-releases .press-release:before {
    display: none; }
  .content-block-category .article-preview:first-child {
    margin-top: 0; }
  .content-block-category h3.entry-title {
    margin-bottom: .25rem; }
  .content-block-category .row {
    position: relative; }
  .content-block-category .article-preview-large-image {
    padding-top: 20%; }
    .content-block-category .article-preview-large-image .text-wrap {
      position: static; } }

@media (min-width: 768px) and (max-width: 1219px) {
  .home-wrap .third-home-section.active-ad .article-lead-text {
    display: none; } }

@media (max-width: 767px) {
  .home-wrap {
    padding: 1rem .665rem; }
    .home-wrap .ad-spacer {
      margin-left: -.5rem;
      margin-right: -.5rem; }
      .home-wrap .ad-spacer .ad-banner {
        display: block; }
    .home-wrap .home-rectangle-wrap {
      float: none;
      margin-left: auto;
      margin-top: 1rem; }
  .content-block {
    padding: .875rem; }
    .content-block .archive-title {
      padding-top: .875rem;
      left: 1.66rem; }
  .content-block-lead h2 {
    font-size: 1.5rem; }
  .content-block-featured h2 {
    font-size: 1.8rem;
    line-height: 1.1em; }
  .content-block-promo {
    padding-bottom: 1rem; }
    .content-block-promo .promo {
      margin: 0 auto 1rem;
      max-width: 300px; }
    .content-block-promo .col-md-6:first-of-type {
      border-bottom: 1px solid #94793f;
      margin-bottom: 1rem; }
    .content-block-promo:before {
      display: none; }
  .content-block-category .article-preview-large-image {
    padding-top: 0; }
    .content-block-category .article-preview-large-image .text-wrap {
      padding-top: 5rem;
      padding-left: 0.5rem;
      padding-right: 0.5rem; }
    .content-block-category .article-preview-large-image .archive-title {
      right: 1rem; }
  .content-block-category .article-preview-large h2 {
    margin-bottom: .5rem;
    font-size: 1.8rem;
    line-height: 1.1em; }
  .content-block-category .article-preview-large h2 a {
    font-size: 1.8rem;
    word-break: break-word; }
    .content-block-category .article-preview-large h2 a:after {
      height: 2.3rem; }
  .home-wrap #ytc-wrapper .ytctitle {
    display: none; } }

@media (max-width: 543px) {
  .home-wrap .third-home-section.no-announcements {
    clear: both; }
  .home-wrap .first-home-section-inner {
    width: 100%;
    float: none; }
  .home-wrap #announcements {
    width: 100%;
    float: none; }
  .content-block-press-releases .ad-vertical-banner {
    display: none; }
  .content-block-press-releases .press-releases-inner {
    padding-right: 0; }
  .content-block-featured .ad-banner {
    display: none; } }

@media (max-width: 479px) {
  .home-wrap .content-block-small .image-wrap {
    margin-right: 0;
    display: block;
    max-width: 100%;
    margin-bottom: 1rem; }
  .home-wrap .content-block-small .text-wrap {
    max-width: 100%; }
  .home-wrap #home-page-video-player {
    width: 100% !important; }
  .home-wrap #ytc-wrapper .ytc-thumbnails {
    display: none; }
  .content-block-video .archive-link-wrap {
    margin: 1rem 0 0;
    padding-top: .5rem;
    display: block; } }

/*=========================================

Breaking News

===========================================*/
.breaking-news {
  background: #44aad8;
  color: white;
  padding: 1rem 0; }
  .breaking-news a {
    color: white;
    text-decoration: underline; }
  .breaking-news .material-icons {
    display: block;
    float: left;
    margin-right: 5px; }
  .breaking-news h2 {
    color: white;
    overflow: hidden; }
  .breaking-news h3 {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: .35rem .35rem; }
    .breaking-news h3:hover {
      background: rgba(255, 255, 255, 0.3); }
    .breaking-news h3 a {
      color: white;
      text-decoration: none; }
  .breaking-news .breaking-title {
    overflow: hidden; }
  .breaking-news .special-content {
    font-size: .875rem;
    line-height: 1.4em; }
    .breaking-news .special-content h3 {
      background: transparent;
      padding: 0; }
  .breaking-news .breaking-news-sub {
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-size: .875rem;
    line-height: 1.4em;
    margin-bottom: 0.5rem; }
  .breaking-news #breaking-tweets {
    opacity: 0;
    height: 0px;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    max-width: 520px;
    padding-right: 10px; }
    .breaking-news #breaking-tweets .twitter-tweet {
      margin-top: 0 !important; }
  .breaking-news .breaking-tweets-wrap {
    position: relative; }
  .breaking-news #breaking-tweets-scrollbar {
    position: absolute;
    opacity: .75;
    right: 0px;
    width: 7px;
    bottom: 0;
    background: #1d546c;
    line-height: 0;
    color: black;
    border-radius: 4px;
    top: 0; }
    .breaking-news #breaking-tweets-scrollbar .handle {
      background: #fff;
      border-radius: 5px; }
  .breaking-news img {
    max-width: none;
    width: 100%; }
  .breaking-news .twitter-tweet {
    display: none; }
  .breaking-news .breaking-video {
    margin-bottom: .5rem; }

.blink {
  animation: blink 2s linear infinite; }

@keyframes blink {
  75% {
    opacity: 0.0; } }

@media (max-width: 767px) {
  #breaking-tweets {
    max-height: 360px; } }

.breaking-news #breaking-tweets {
  /* hover effect for both scrollbar area, and scrollbar 'thumb' */
  /* The scrollbar 'thumb' ...that marque oval shape in a scrollbar */ }
  .breaking-news #breaking-tweets::-webkit-scrollbar {
    width: 8px;
    /* 1px wider than Lion. */
    /* This is more usable for users trying to click it. */
    background-color: rgba(0, 0, 0, 0.09);
    -webkit-border-radius: 100px; }
  .breaking-news #breaking-tweets::-webkit-scrollbar:hover {
    background-color: rgba(0, 0, 0, 0.15); }
  .breaking-news #breaking-tweets::-webkit-scrollbar-thumb:vertical {
    /* This is the EXACT color of Mac OS scrollbars. 
	     Yes, I pulled out digital color meter */
    background: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 100px; }
  .breaking-news #breaking-tweets::-webkit-scrollbar-thumb:vertical:active {
    background: rgba(0, 0, 0, 0.61);
    /* Some darker color when you click it */
    -webkit-border-radius: 100px; }

/*=========================================

Page

===========================================*/
.singular-page h1.entry-title {
  text-align: left; }

@media (min-width: 1220px) {
  .singular-page .singular-wrap-one-column .singular-inner {
    padding-top: 3rem; } }

@media (min-width: 1420px) {
  .singular-page .singular-wrap-one-column .singular-inner {
    padding-top: 4rem; } }

/*=========================================

Live Blog

===========================================*/
.singular-inner-live-blog .update-target {
  padding-top: 1.5rem;
  margin-top: -1.5rem; }

.singular-inner-live-blog .update {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-top: 2px solid #94793f;
  padding-top: 1rem;
  word-break: break-word;
  /*
	    a[href*="pv-magazine"] {
		    // internal link styles 
		    border-top:1px solid $pv-secondary;
		    font-family:$font-family-serif;
		    display: block;
		    padding: .5rem 0;
		    font-size: 1.2rem;
		    line-height: 1.25;
		    margin: .5rem 0;
		}
		*/ }
  .singular-inner-live-blog .update h3, .singular-inner-live-blog .update time, .singular-inner-live-blog .update html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .singular-inner-live-blog .update .jp-relatedposts-post-date, .singular-inner-live-blog .update html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .singular-inner-live-blog .update .jp-relatedposts-post-date {
    line-height: 1.8rem !important; }

.singular-inner-live-blog .update-image-block {
  margin-bottom: 1.5rem; }

.singular-inner-live-blog .sponsor-info-mobile {
  margin: 2rem 0; }

.sidebar-live {
  width: 300px;
  float: left; }
  .sidebar-live .entry-share {
    padding-top: 0; }
  .sidebar-live .entry-share a:first-of-type {
    clear: both; }
  .sidebar-live .timeline {
    margin-top: 1rem; }
  .sidebar-live .timeline-item {
    position: relative;
    padding-left: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-left: 1px solid  #dcdcdc; }
    .sidebar-live .timeline-item:before {
      border-radius: 62.5rem;
      display: block;
      position: absolute;
      content: ' ';
      top: 0.9rem;
      left: -0.46875rem;
      width: 0.9375rem;
      height: 0.9375rem;
      background-color: #dcdcdc; }

.entry-author-bio .icon-twitter:before {
  display: none; }

.entry-author-bio .x-social svg {
  fill: #94793f;
  translate: -3px -3px; }

/*=========================================

	Archive

===========================================*/
.archive .article-preview, .blog .article-preview {
  clear: both;
  position: relative;
  border-radius: 1px;
  border: solid 1px #f3f3f3;
  padding: 1rem;
  margin-bottom: 1rem; }
  .archive .article-preview .text-wrap, .archive .article-preview .image-wrap, .blog .article-preview .text-wrap, .blog .article-preview .image-wrap {
    display: inline-block; }
  .archive .article-preview .image-wrap, .blog .article-preview .image-wrap {
    max-width: 25%;
    vertical-align: top; }
    .archive .article-preview .image-wrap img, .blog .article-preview .image-wrap img {
      margin-right: 12%;
      max-width: 88%; }
  .archive .article-preview .text-wrap, .blog .article-preview .text-wrap {
    max-width: 71%; }
  .archive .article-preview .text-wrap.no-thumb, .blog .article-preview .text-wrap.no-thumb {
    max-width: none; }

.archive h2.entry-title, .blog h2.entry-title {
  font-size: 1rem; }
  .archive h2.entry-title a, .blog h2.entry-title a {
    color: #94793f; }

.archive .article-lead-text, .blog .article-lead-text {
  font-size: .875rem; }
  .archive .article-lead-text p, .blog .article-lead-text p {
    margin-bottom: 0; }

.archive .entry-byline, .blog .entry-byline {
  margin-bottom: 0; }

.archive time.entry-published, .archive html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .archive .jp-relatedposts-post-date, .archive html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .archive .jp-relatedposts-post-date, .archive span.entry-author, .archive a.event-link, .archive span.entry-issue, .archive span.byline-meta, .blog time.entry-published, .blog html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .blog .jp-relatedposts-post-date, .blog html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .blog .jp-relatedposts-post-date, .blog span.entry-author, .blog a.event-link, .blog span.entry-issue, .blog span.byline-meta {
  font-size: .75rem; }

.archive .comments-link, .blog .comments-link {
  text-decoration: none;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #404040;
  font-size: 12px;
  line-height: 12px; }
  .archive .comments-link:hover, .archive .comments-link:focus, .archive .comments-link:active, .archive .comments-link:visited, .blog .comments-link:hover, .blog .comments-link:focus, .blog .comments-link:active, .blog .comments-link:visited {
    text-decoration: none; }
  .archive .comments-link .material-icons, .blog .comments-link .material-icons {
    font-size: 12px;
    line-height: 12px;
    position: relative;
    top: 2px; }

.archive .ad-archive-lead, .blog .ad-archive-lead {
  float: right; }

.archive .ad-banner, .blog .ad-banner {
  margin: 0 auto 1rem; }

.archive-title {
  background: #94793f;
  width: 160px;
  margin: -1rem 0 2rem;
  padding: 1rem .5rem .25rem;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
  float: left; }
  .archive-title h1, .archive-title h4, .archive-title html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .archive-title .jp-relatedposts-post-title, .archive-title html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .archive-title .jp-relatedposts-post-title, .archive-title div#jp-relatedposts:before, .archive-title html div#pv-jp-relatedposts:before, html .archive-title div#pv-jp-relatedposts:before {
    font-size: 1rem;
    color: white;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }

.archive-title-featured {
  margin-top: -2rem;
  width: 102px;
  padding-top: 2rem; }

.pagination {
  display: block;
  text-align: center; }
  .pagination .navigation {
    display: inline-block; }
  .pagination .page-numbers {
    padding: 0.25rem 0.5rem;
    border: 0.5px solid #94793f;
    font-family: "Droid Serif", "Times New Roman", Times, serif; }
    .pagination .page-numbers:active, .pagination .page-numbers:hover, .pagination .page-numbers:focus {
      background: #b29454;
      color: white; }
  .pagination .current {
    background: #94793f;
    color: white; }
    .pagination .current:active, .pagination .current:hover, .pagination .current:focus {
      background: #94793f;
      color: white; }
  .pagination .dots {
    background: white;
    color: #404040; }
    .pagination .dots:active, .pagination .dots:hover, .pagination .dots:focus {
      color: #404040;
      background: white; }

@media (min-width: 1220px) and (max-width: 1419px) {
  .archive .ad-archive-lead {
    float: left; } }

@media (max-width: 1219px) {
  .archive-title-featured {
    margin-top: -1rem;
    width: 102px; } }

@media (max-width: 767px) {
  .archive-title {
    width: auto;
    float: none;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    margin-bottom: 1rem; }
    .archive-title .loop-meta {
      padding-left: .7rem;
      padding-right: .7rem; }
  .archive .ad-archive-lead {
    float: none; }
  .archive-title-featured {
    padding-top: 1rem; } }

@media (max-width: 543px) {
  .archive .article-preview .image-wrap img {
    margin-left: 0;
    max-width: 100%; }
  .archive .ad-archive-lead {
    display: none; }
  .archive .article-preview .image-wrap {
    max-width: none;
    margin-bottom: 1rem; }
  .archive .article-preview .text-wrap {
    max-width: none; } }

@media (max-width: 364px) {
  .archive .singular-inner {
    padding-left: 0;
    padding-right: 0; }
  .archive .article-preview {
    border-top: none;
    border-left: none;
    border-right: none; }
  .archive-title {
    margin-left: 0rem;
    margin-right: 0rem; }
  .archive-title-featured {
    margin-left: -1.2rem;
    margin-right: -1.2rem; } }

/*=========================================

	Magazine Archives

===========================================*/
.archive .issue-preview {
  padding: 0; }
  .archive .issue-preview a {
    display: block;
    text-align: center;
    padding: 1rem; }
  .archive .issue-preview a:hover, .archive .issue-preview a:focus, .archive .issue-preview a:active {
    text-decoration: none;
    background: #f0eadd;
    transition: background 300ms ease-in; }
  .archive .issue-preview img {
    margin: 0.25rem auto .75rem; }
  .archive .issue-preview p {
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-size: .7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 0; }

.taxonomy-issue .article-preview.restricted, .archive-magazine_archive .article-preview.restricted, .archive .article-preview.restricted {
  background: #fafafa; }
  .taxonomy-issue .article-preview.restricted .premium, .archive-magazine_archive .article-preview.restricted .premium, .archive .article-preview.restricted .premium {
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-size: .7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 0;
    color: #b29454; }

#featured-articles {
  padding-top: 50px; }

/*=========================================

	Sidebars

===========================================*/
.widget {
  background: white;
  border: solid 1px #f3f3f3;
  padding: 1rem;
  margin-bottom: 2rem; }
  .widget ul {
    padding-left: 0;
    margin-left: 0; }
  .widget .wpp-list li {
    margin-top: .5rem;
    padding: .5rem 0;
    border-bottom: 1px solid #94793f; }
  .widget .wpp-list a {
    display: inline-block;
    max-width: 34%;
    margin-right: 4%;
    vertical-align: top; }
  .widget .wpp-list a.wpp-post-title {
    max-width: 60%;
    margin-right: 0;
    text-decoration: none;
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-size: .7rem;
    line-height: 1.33em;
    font-weight: bold;
    color: #94793f; }
    .widget .wpp-list a.wpp-post-title:hover, .widget .wpp-list a.wpp-post-title:focus, .widget .wpp-list a.wpp-post-title:active, .widget .wpp-list a.wpp-post-title:visited {
      text-decoration: none; }

.singular-features .widget {
  font-size: .8rem; }
  .singular-features .widget p {
    margin-bottom: 1rem; }

.sidebar .widget.popular-posts {
  border: 0;
  padding: 0; }
  .sidebar .widget.popular-posts h2 {
    color: #94793f;
    font-size: 1.2rem; }

/*=========================================

	Comments

===========================================*/
#comments {
  clear: both; }

.comments {
  font-size: .875rem;
  line-height: 1.5em; }
  .comments h4, .comments html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .comments .jp-relatedposts-post-title, .comments html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .comments .jp-relatedposts-post-title, .comments div#jp-relatedposts:before, .comments html div#pv-jp-relatedposts:before, html .comments div#pv-jp-relatedposts:before {
    color: #3c434c; }
  .comments .reply {
    position: absolute;
    top: 1.5rem;
    right: 0px; }
    .comments .reply a {
      text-transform: uppercase;
      text-decoration: none;
      color: #404040;
      font-weight: bold;
      font-size: .75rem; }
      .comments .reply a:hover, .comments .reply a:focus, .comments .reply a:active, .comments .reply a:visited {
        text-decoration: none; }
  .comments .comment-author img {
    border-radius: 50%;
    float: left;
    margin: 0 16px 1em 0; }
  .comments .comment-list {
    border-bottom: 1px solid #d5e0e4; }
  .comments .comment-author a {
    text-decoration: none; }
    .comments .comment-author a:hover, .comments .comment-author a:focus, .comments .comment-author a:active, .comments .comment-author a:visited {
      text-decoration: none; }
  .comments .comment-author span, .comments .comment-author span a, .comments .comment-author a span {
    color: #3c434c;
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-size: 1.1rem; }
  .comments .comment-author .says {
    display: none; }
  .comments .comment-metadata {
    margin-bottom: .5rem; }
  .comments .comment-metadata a {
    text-decoration: none; }
    .comments .comment-metadata a:hover, .comments .comment-metadata a:focus, .comments .comment-metadata a:active, .comments .comment-metadata a:visited {
      text-decoration: none; }
  .comments .comment-metadata time, .comments .comment-metadata html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date, .comments .comment-metadata html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date {
    color: #3c434c;
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    text-decoration: none;
    font-size: .75rem; }
    .comments .comment-metadata time:hover, .comments .comment-metadata html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:hover, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:hover, .comments .comment-metadata html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:hover, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:hover, .comments .comment-metadata time:focus, .comments .comment-metadata html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:focus, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:focus, .comments .comment-metadata html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:focus, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:focus, .comments .comment-metadata time:active, .comments .comment-metadata html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:active, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:active, .comments .comment-metadata html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:active, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:active, .comments .comment-metadata time:visited, .comments .comment-metadata html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:visited, html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:visited, .comments .comment-metadata html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date:visited, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .comments .comment-metadata .jp-relatedposts-post-date:visited {
      text-decoration: none; }
  .comments .comment-content {
    display: inline-block; }
  .comments ol {
    list-style-type: none;
    padding-left: 0; }
    .comments ol ol li, .comments ol ul li {
      padding-left: 3em; }
    .comments ol li {
      border-top: 1px solid #d5e0e4;
      padding: 1em 0;
      position: relative; }
    .comments ol .comment-meta {
      padding-top: 1em; }
      .comments ol .comment-meta::after {
        content: "";
        display: table;
        clear: both; }
    .comments ol .comment-text {
      clear: both;
      padding-bottom: 1em; }
  .comments .comment-respond {
    margin-top: 2rem; }

@media (max-width: 767px) {
  .comments ol ol li, .comments ol ul li {
    padding-left: 1.5em; }
  .comments .comment-author img {
    max-width: 45px; } }

/*

Cookies

*/
body .pea_cook_wrapper.pea_cook_bottomcenter {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  top: auto;
  border-radius: 0;
  font-family: Oxygen;
  background: #94793f !important; }
  body .pea_cook_wrapper.pea_cook_bottomcenter p {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .75rem;
    font-weight: normal; }
    body .pea_cook_wrapper.pea_cook_bottomcenter p a {
      border-bottom: none;
      text-decoration: underline; }
  body .pea_cook_wrapper.pea_cook_bottomcenter a#fom, body .pea_cook_wrapper.pea_cook_bottomcenter a#pea_close {
    border-bottom: none;
    padding-bottom: 6px; }
  body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn {
    border-radius: 50%;
    border-width: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    text-shadow: none; }
  body .pea_cook_wrapper.pea_cook_bottomcenter .tablepress caption {
    display: none; }

/*

Videos

*/
.youtubechannelgallery {
  overflow: hidden; }

.ytctitle {
  padding-top: .5em; }

html #ytc-wrapper .ytc-thumbnails a.ytcthumb, html #ytc-wrapper .ytcplayer-wrapper {
  border: none; }

/*

Related Posts
*/
html #jp-relatedposts, html #pv-jp-relatedposts {
  padding-top: 0;
  margin: 0 0 2em 0; }

html #jp-relatedposts h3.jp-relatedposts-headline, html #pv-jp-relatedposts h3.jp-relatedposts-headline {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .875rem;
  padding-bottom: .5em;
  font-weight: bold;
  color: #94793f;
  text-transform: uppercase;
  margin-bottom: 0; }

html #jp-relatedposts h3.jp-relatedposts-headline em:before, html #pv-jp-relatedposts h3.jp-relatedposts-headline em:before {
  border-top: none; }

html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
  border: 1px solid #f0f4f6;
  padding: 10px;
  margin-left: 2%;
  width: 32%;
  float: left;
  margin-bottom: 2%; }

html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:first-child, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:first-child {
  margin-left: 0; }

html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n + 1), html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n + 1) {
  margin-left: 0; }

html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
  display: none; }

html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
  text-decoration: none; }

html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
  font-size: .75rem;
  opacity: 1; }

html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span {
  display: block;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis; }

html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
  opacity: .6; }

html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
  font-size: inherit;
  font-weight: 400;
  text-decoration: none;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1; }

html #pv-jp-relatedposts .jp-relatedposts-items p, html #pv-jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items #pv-jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-items-visual .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-title#jp-relatedposts:before, html #pv-jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-title#pv-jp-relatedposts:before {
  font-size: 14px;
  line-height: 20px;
  margin: 0; }

html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
  font-size: inherit;
  font-weight: 400;
  text-decoration: none;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1; }

@media (max-width: 767px) {
  html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post, html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
    margin-left: 0;
    width: 100%; } }

/*=========================================

	Callout boxes

===========================================*/
.callout {
  color: white;
  background: #505050;
  margin-bottom: 1.5rem;
  clear: both; }
  .callout a {
    color: white;
    font-weight: bold;
    text-decoration: underline; }

.callout-title {
  background: #94793f;
  padding: 1rem 1.2rem; }
  .callout-title h2 {
    color: white;
    margin-bottom: 0; }

.callout-body {
  padding: 1rem 1.2rem 1.2rem 1.5rem; }
  .callout-body p {
    margin-bottom: 1rem; }

.callout.alignleft {
  max-width: 50%; }

.callout.alignright {
  max-width: 50%; }

@media (max-width: 767px) {
  .callout.alignleft {
    max-width: 100%;
    margin-right: 0; }
  .callout.alignright {
    max-width: 100%;
    margin-left: 0; } }

@media (min-width: 1220px) and (max-width: 1419px) {
  .callout.alignleft {
    max-width: 100%;
    margin-right: 0; }
  .callout.alignright {
    max-width: 100%;
    margin-left: 0; } }

.webinar-callout {
  color: #404040;
  background: white; }
  .webinar-callout a {
    color: #b29454; }
  .webinar-callout a.btn {
    color: white; }

#pv-event-calendar {
  margin-bottom: 2rem; }
  #pv-event-calendar .fc-scroller {
    height: auto !important;
    overflow-y: hidden !important; }
  #pv-event-calendar .fc-event:focus, #pv-event-calendar .fc-event:hover {
    color: white;
    text-decoration: none; }

#pv-event-calendar .fc-event.trade-show, #pv-event-calendar-key .fc-event.trade-show {
  background-color: #3a87ad;
  border: 1px solid #3a87ad; }

#pv-event-calendar .fc-event.conference, #pv-event-calendar-key .fc-event.conference {
  background-color: #f44336;
  border: 1px solid #f44336; }

#pv-event-calendar .fc-event.training, #pv-event-calendar-key .fc-event.training {
  background-color: #009688;
  border: 1px solid #009688; }

#pv-event-calendar .fc-event.webinar, #pv-event-calendar-key .fc-event.webinar {
  background-color: #ffc107;
  border: 1px solid #ffc107; }

#pv-event-calendar .fc-event.roundtable, #pv-event-calendar-key .fc-event.roundtable {
  background-color: #ff9800;
  border: 1px solid #ff9800; }

#pv-event-calendar .fc-event.seminar, #pv-event-calendar-key .fc-event.seminar {
  background-color: #ab47bc;
  border: 1px solid #ab47bc; }

#pv-event-calendar .fc-event img.pv-mag-event, #pv-event-calendar-key .fc-event img.pv-mag-event {
  float: left;
  max-width: 15px;
  height: auto;
  margin: 1px 2px 1px; }

#pv-event-calendar-key ul {
  list-style-type: none;
  padding-left: 0;
  column-count: 3; }
  #pv-event-calendar-key ul .fc-event, #pv-event-calendar-key ul img {
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 10px;
    position: relative;
    bottom: -4px;
    vertical-align: baseline; }

@media (max-width: 543px) {
  #pv-event-calendar-key ul {
    column-count: 2; } }

@media (max-width: 364px) {
  #pv-event-calendar-key ul {
    column-count: 1; }
  .pv-event-calendar-wrap {
    padding: 1rem; } }

/*

pv magazine Events and new Webinar template

*/
.singular-pv_magazine_events .singular-wrap-one-column .singular-inner, .singular-webinar-new-template .singular-wrap-one-column .singular-inner {
  padding-top: 1rem; }

.singular-pv_magazine_events .article-lead-text, .singular-webinar-new-template .article-lead-text {
  padding-top: 2rem; }
  .singular-pv_magazine_events .article-lead-text p, .singular-webinar-new-template .article-lead-text p {
    font-size: 1.1rem;
    line-height: 1.5rem; }

.singular-pv_magazine_events .entry-categories, .singular-webinar-new-template .entry-categories {
  margin-top: 1rem; }
  .singular-pv_magazine_events .entry-categories .nav-pills, .singular-webinar-new-template .entry-categories .nav-pills {
    text-align: center; }
    .singular-pv_magazine_events .entry-categories .nav-pills .nav-item, .singular-pv_magazine_events .entry-categories .nav-pills .menu-item, .singular-webinar-new-template .entry-categories .nav-pills .nav-item, .singular-webinar-new-template .entry-categories .nav-pills .menu-item {
      display: inline-block;
      float: none; }

.singular-pv_magazine_events .content-block-small .article-lead-text, .singular-webinar-new-template .content-block-small .article-lead-text {
  padding-top: 0; }

.singular-pv_magazine_events .btn-wrap, .singular-webinar-new-template .btn-wrap {
  text-align: center; }

.singular-pv_magazine_events .entry-share-top, .singular-pv_magazine_events .entry-share-bottom, .singular-webinar-new-template .entry-share-top, .singular-webinar-new-template .entry-share-bottom {
  margin-left: 0;
  text-align: center;
  margin-right: 0;
  float: none;
  width: auto; }
  .singular-pv_magazine_events .entry-share-top .entry-share, .singular-pv_magazine_events .entry-share-bottom .entry-share, .singular-webinar-new-template .entry-share-top .entry-share, .singular-webinar-new-template .entry-share-bottom .entry-share {
    display: inline-block; }

.singular-pv_magazine_events section, .singular-webinar-new-template section {
  padding: 2rem 0 1rem;
  clear: both; }
  .singular-pv_magazine_events section h2, .singular-webinar-new-template section h2 {
    text-align: center;
    margin-bottom: 2rem; }
  .singular-pv_magazine_events section h2.sponsors-large-subtitle, .singular-webinar-new-template section h2.sponsors-large-subtitle {
    margin-bottom: 1rem;
    margin-top: 1rem; }

.singular-pv_magazine_events section.event-layout-block.blue, .singular-webinar-new-template section.event-layout-block.blue {
  background: #f2f6fb; }

.singular-pv_magazine_events section.event-layout-block.white, .singular-webinar-new-template section.event-layout-block.white {
  background: #ffffff; }

.singular-pv_magazine_events .sponsors-large-row, .singular-pv_magazine_events .sponsors-small-row, .singular-webinar-new-template .sponsors-large-row, .singular-webinar-new-template .sponsors-small-row {
  text-align: center; }
  .singular-pv_magazine_events .sponsors-large-row .col-md-4, .singular-pv_magazine_events .sponsors-small-row .col-md-4, .singular-webinar-new-template .sponsors-large-row .col-md-4, .singular-webinar-new-template .sponsors-small-row .col-md-4 {
    display: inline-grid;
    float: none;
    vertical-align: top; }

.singular-pv_magazine_events .moderators, .singular-webinar-new-template .moderators {
  margin-top: 2rem; }
  .singular-pv_magazine_events .moderators .moderator, .singular-webinar-new-template .moderators .moderator {
    text-align: center; }
  .singular-pv_magazine_events .moderators .moderator-image, .singular-webinar-new-template .moderators .moderator-image {
    border-radius: 50%;
    max-height: 120px;
    display: block;
    margin: 0 auto 1rem; }

.singular-pv_magazine_events .singular-inner, .singular-webinar-new-template .singular-inner {
  background: none;
  border: none; }

.singular-pv_magazine_events .singular-wrap-inner, .singular-webinar-new-template .singular-wrap-inner {
  background: white;
  border: solid 1px #f3f3f3; }

.singular-pv_magazine_events .event-gallery-lightbox img, .singular-webinar-new-template .event-gallery-lightbox img {
  margin-bottom: 1rem; }

.singular-pv_magazine_events .video-gallery-item, .singular-pv_magazine_events #video-gallery-main, .singular-webinar-new-template .video-gallery-item, .singular-webinar-new-template #video-gallery-main {
  margin-bottom: 1rem;
  position: relative; }

@media (min-width: 544px) {
  .singular-pv_magazine_events .video-gallery-additional-wrap, .singular-webinar-new-template .video-gallery-additional-wrap {
    overflow-x: auto;
    overflow-y: hidden; }
    .singular-pv_magazine_events .video-gallery-additional-wrap .video-gallery-item, .singular-webinar-new-template .video-gallery-additional-wrap .video-gallery-item {
      width: 25%;
      margin-right: 1rem;
      float: left; }
  .singular-pv_magazine_events .video-gallery-overlay, .singular-webinar-new-template .video-gallery-overlay {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); }
    .singular-pv_magazine_events .video-gallery-overlay:hover, .singular-webinar-new-template .video-gallery-overlay:hover {
      background: rgba(0, 0, 0, 0); } }

@media (min-width: 768px) {
  .singular-pv_magazine_events .video-gallery-additional-wrap, .singular-webinar-new-template .video-gallery-additional-wrap {
    overflow-x: hidden;
    overflow-y: auto; }
    .singular-pv_magazine_events .video-gallery-additional-wrap .video-gallery-item, .singular-webinar-new-template .video-gallery-additional-wrap .video-gallery-item {
      width: auto;
      margin-right: 0;
      float: none; }
  .singular-pv_magazine_events #video-gallery-main, .singular-webinar-new-template #video-gallery-main {
    margin-bottom: 0; } }

.singular-webinar-new-template .entry-categories {
  margin-left: 0;
  margin-right: 0; }
  .singular-webinar-new-template .entry-categories .nav-pills {
    text-align: left; }

#event-header {
  position: relative;
  min-height: 400px; }
  #event-header .event-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden; }
  #event-header #event-header-img {
    background-size: cover;
    background-position: 50% 25%;
    background-repeat: no-repeat; }
  #event-header #event-header-slideshow .slide {
    height: 400px;
    background-size: cover;
    background-position: 50% 25%;
    background-repeat: no-repeat;
    width: 100%; }
  #event-header #event-header-content {
    position: relative;
    max-width: 75%;
    top: 3rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    padding: 1rem;
    text-align: center; }
    #event-header #event-header-content .logo {
      margin-bottom: 1rem; }
    #event-header #event-header-content .venue, #event-header #event-header-content .date, #event-header #event-header-content .calendar-block {
      text-transform: uppercase;
      font-weight: bold;
      font-size: 1rem;
      font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    #event-header #event-header-content .calendar-block {
      font-size: .85rem; }
      #event-header #event-header-content .calendar-block a {
        color: #404040;
        padding: 0 .25rem; }
      #event-header #event-header-content .calendar-block .material-icons {
        font-size: .85rem;
        position: relative;
        bottom: -2px; }
  #event-header #event-header-video {
    overflow: hidden; }

.singular-webinar #event-header, .singular-spotlight #event-header {
  min-height: 0; }
  .singular-webinar #event-header #event-header-content, .singular-spotlight #event-header #event-header-content {
    max-width: 100%;
    text-align: left;
    padding: 1rem 5rem; }
  .singular-webinar #event-header .entry-title, .singular-webinar #event-header .entry-byline, .singular-spotlight #event-header .entry-title, .singular-spotlight #event-header .entry-byline {
    margin-left: 0;
    margin-right: 0;
    text-align: left; }

.singular-webinar .entry-content .entry-share-top, .singular-spotlight .entry-content .entry-share-top {
  text-align: left; }

.singular-webinar .event-speakers-overview, .singular-spotlight .event-speakers-overview {
  padding: 0; }
  .singular-webinar .event-speakers-overview h3, .singular-spotlight .event-speakers-overview h3 {
    margin-top: 1rem; }

.event-speakers .slick-prev:before, .event-speakers .slick-next:before {
  color: #94793f; }

.event-speakers img {
  border: 15px solid #82a9d4;
  border-radius: 50%;
  margin: 0 auto 2rem; }

.event-speakers img.no-border {
  border: none;
  border-radius: 0; }

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

.event-partner {
  text-align: center; }
  .event-partner .andrea {
    max-width: 200px; }

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

.sponsors-small-row {
  margin-bottom: 2rem; }

.event-small-sponsor, .event-large-sponsor {
  display: flex;
  height: 150px;
  background: white;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 5px 25px -18px rgba(0, 0, 0, 0.75);
  transition: all ease-in-out 0.3s;
  border-radius: 3px;
  /*background-size: contain;
	background-position:center;
	background-repeat:no-repeat;*/ }
  .event-small-sponsor:hover, .event-large-sponsor:hover {
    box-shadow: 0 2px 12px -10px rgba(0, 0, 0, 0.75);
    transform: translate(0px, 2px); }
  .event-small-sponsor img, .event-large-sponsor img {
    max-width: 75%;
    max-height: 80%;
    display: block;
    margin: auto; }

.session-time {
  text-align: right;
  color: #94793f;
  font-size: 2rem;
  line-height: 2rem;
  padding-top: 1rem; }

.session-details {
  border-left: 1px solid #94793f;
  padding-left: 1rem;
  padding-top: 1rem; }

.breakout {
  border-radius: 50%;
  background: #94793f;
  color: white;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  margin-left: -33%; }
  .breakout .breakout-inner {
    position: absolute;
    top: 35%;
    text-align: center;
    width: 100%;
    padding: 0 1rem; }

@media (min-width: 768px) {
  .breakout {
    margin-left: -11%; } }

@media (min-width: 1220px) {
  .breakout {
    margin-left: -12%;
    width: 150px;
    padding-top: 150px; } }

@media (min-width: 1420px) {
  .breakout {
    margin-left: -5px; } }

/*

Event archive

*/
.taxonomy-event-series .intro.article-lead-text {
  margin-bottom: 1rem; }
  .taxonomy-event-series .intro.article-lead-text p {
    margin-bottom: .5rem; }

.taxonomy-event-series .past-events-heading {
  text-align: center; }

.taxonomy-event-series h1 {
  text-align: center;
  margin-left: 2rem;
  margin-right: 2rem; }

.event-series-wrap {
  height: 300px;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden; }
  .event-series-wrap .event-series-bg {
    background-size: cover;
    background-position: 50%;
    height: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .event-series-wrap .event-series-bg.past {
    filter: blur(2px); }
  .event-series-wrap .entry-overview {
    position: absolute;
    background: rgba(133, 169, 221, 0.8);
    width: 100%;
    bottom: 0;
    left: 0;
    padding: .5rem;
    margin-bottom: 0;
    color: white; }
  .event-series-wrap h2 {
    color: white;
    margin-bottom: 0; }
  .event-series-wrap .article-lead-text {
    color: white;
    margin-bottom: .5rem; }

/*

Webinar archive

*/
.archive-webinar .article-lead-text, .archive-spotlight .article-lead-text {
  margin-top: 1rem;
  text-align: justify;
  hyphens: auto; }

.archive-webinar .webinar-call-to-action, .archive-spotlight .webinar-call-to-action {
  background: #8EA7D7;
  color: white; }
  .archive-webinar .webinar-call-to-action a, .archive-webinar .webinar-call-to-action h1, .archive-webinar .webinar-call-to-action h2, .archive-webinar .webinar-call-to-action h3, .archive-webinar .webinar-call-to-action h4, .archive-webinar .webinar-call-to-action html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .archive-webinar .webinar-call-to-action .jp-relatedposts-post-title, .archive-webinar .webinar-call-to-action html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .archive-webinar .webinar-call-to-action .jp-relatedposts-post-title, .archive-webinar .webinar-call-to-action div#jp-relatedposts:before, .archive-webinar .webinar-call-to-action html div#pv-jp-relatedposts:before, html .archive-webinar .webinar-call-to-action div#pv-jp-relatedposts:before, .archive-webinar .webinar-call-to-action h5, .archive-webinar .webinar-call-to-action h6, .archive-spotlight .webinar-call-to-action a, .archive-spotlight .webinar-call-to-action h1, .archive-spotlight .webinar-call-to-action h2, .archive-spotlight .webinar-call-to-action h3, .archive-spotlight .webinar-call-to-action h4, .archive-spotlight .webinar-call-to-action html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .archive-spotlight .webinar-call-to-action .jp-relatedposts-post-title, .archive-spotlight .webinar-call-to-action html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .archive-spotlight .webinar-call-to-action .jp-relatedposts-post-title, .archive-spotlight .webinar-call-to-action div#jp-relatedposts:before, .archive-spotlight .webinar-call-to-action html div#pv-jp-relatedposts:before, html .archive-spotlight .webinar-call-to-action div#pv-jp-relatedposts:before, .archive-spotlight .webinar-call-to-action h5, .archive-spotlight .webinar-call-to-action h6 {
    color: white; }

.archive-webinar .singular-wrap-one-column .entry-categories, .archive-webinar .singular-wrap-one-column .entry-byline, .archive-spotlight .singular-wrap-one-column .entry-categories, .archive-spotlight .singular-wrap-one-column .entry-byline {
  text-align: left;
  margin-left: 0;
  margin-right: 0; }

.archive-webinar .previous-webinars, .archive-webinar .upcoming-webinars, .archive-spotlight .previous-webinars, .archive-spotlight .upcoming-webinars {
  margin-top: 2rem; }

.archive-webinar .webinar-filters .callout, .archive-spotlight .webinar-filters .callout {
  padding-bottom: .75rem; }

.archive-webinar #filters, .archive-spotlight #filters {
  padding-top: 80px;
  margin-top: -80px; }

.archive-webinar .moderators, .archive-spotlight .moderators {
  margin-top: 2rem; }
  .archive-webinar .moderators .moderator, .archive-spotlight .moderators .moderator {
    text-align: center; }
  .archive-webinar .moderators .moderator-image, .archive-spotlight .moderators .moderator-image {
    border-radius: 50%;
    max-height: 120px;
    display: block;
    margin: 0 auto 1rem; }

/*

Event navigation

*/
.archive-webinar .events-navigation, .archive-spotlight .events-navigation, .taxonomy-event-series .events-navigation, .singular-pv_magazine_events .events-navigation, .singular-spotlight .events-navigation, .singular-webinar .events-navigation, .singular-webinar-new-template .events-navigation {
  margin-bottom: 1rem;
  padding-top: 1rem;
  text-align: center;
  margin-top: 1rem;
  font-size: .875rem; }

.archive-webinar .nav-pills .nav-item, .archive-webinar .nav-pills .menu-item, .archive-spotlight .nav-pills .nav-item, .archive-spotlight .nav-pills .menu-item, .taxonomy-event-series .nav-pills .nav-item, .taxonomy-event-series .nav-pills .menu-item, .singular-pv_magazine_events .nav-pills .nav-item, .singular-pv_magazine_events .nav-pills .menu-item, .singular-spotlight .nav-pills .nav-item, .singular-spotlight .nav-pills .menu-item, .singular-webinar .nav-pills .nav-item, .singular-webinar .nav-pills .menu-item, .singular-webinar-new-template .nav-pills .nav-item, .singular-webinar-new-template .nav-pills .menu-item {
  display: inline-block;
  float: none; }

.singular-webinar .back-to-overview, .singular-spotlight .back-to-overview, .singular-pv_magazine_events .back-to-overview {
  text-align: center; }

.singular-pv_magazine_events .singular-wrap-inner, .singular-webinar .singular-wrap-inner, .singular-spotlight .singular-wrap-inner, .singular-webinar-new-template .singular-wrap-inner {
  clear: both; }

.singular-pv_magazine_events .events-navigation, .singular-webinar .events-navigation, .singular-spotlight .events-navigation, .singular-webinar-new-template .events-navigation {
  border: 1px solid #f3f3f3;
  background: white; }

@media (max-width: 767px) {
  .archive-webinar .nav-pills .nav-item, .archive-webinar .nav-pills .menu-item, .archive-spotlight .nav-pills .nav-item, .archive-spotlight .nav-pills .menu-item, .taxonomy-event-series .nav-pills .nav-item, .taxonomy-event-series .nav-pills .menu-item, .singular-pv_magazine_events .nav-pills .nav-item, .singular-pv_magazine_events .nav-pills .menu-item, .singular-spotlight .nav-pills .nav-item, .singular-spotlight .nav-pills .menu-item, .singular-webinar .nav-pills .nav-item, .singular-webinar .nav-pills .menu-item {
    display: block; } }

.search-block__no-results {
  grid-area: 1 / span 4; }

.search-block__wrapper {
  text-align: left;
  width: 100%;
  margin-top: 20px; }
  @media only screen and (min-width: 768px) {
    .search-block__wrapper {
      display: grid;
      grid-template-columns: 65% 35%;
      gap: 0 20px;
      max-width: calc(100% - 70px);
      margin-left: 25px; } }
  @media only screen and (min-width: 1024px) {
    .search-block__wrapper {
      max-width: 708px;
      margin-left: 20px; } }
  @media only screen and (min-width: 1220px) {
    .search-block__wrapper {
      margin-left: 25px;
      max-width: 875px;
      grid-template-columns: 70% 30%; } }
  @media only screen and (min-width: 1420px) {
    .search-block__wrapper {
      max-width: 1072px;
      grid-template-columns: 75% 25%; } }

.search-block__main {
  background-color: #fff;
  position: relative; }
  .search-block__main .lds-spinner {
    position: absolute;
    margin: auto;
    top: 50px;
    left: 0;
    right: 0;
    display: none;
    z-index: 1; }
  @media only screen and (min-width: 768px) {
    .search-block__main {
      padding: 25px 30px; } }
  .search-block__main .ed-pagination {
    padding-top: 40px; }
    @media only screen and (max-width: 767px) {
      .search-block__main .ed-pagination {
        padding-bottom: 40px; } }
  .search-block__main.filters-loading .lds-spinner {
    display: block; }
  .search-block__main.filters-loading:before {
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.7;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0; }

.search-block__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); }
  @media only screen and (min-width: 768px) {
    .search-block__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 20px; } }
  @media only screen and (min-width: 1220px) {
    .search-block__grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media only screen and (min-width: 1420px) {
    .search-block__grid {
      gap: 40px 50px;
      grid-template-columns: repeat(3, 1fr); } }

.search-block__mobile-filter-toggle {
  position: fixed;
  bottom: 55px;
  width: calc(100% - 50px);
  background-color: #fff;
  border: 1px solid #94793f;
  border-radius: 50px;
  min-height: 35px;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  align-items: center;
  justify-content: center;
  color: #94793f;
  max-width: 370px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  box-shadow: 0px 4px 10px 0px rgba(30, 73, 123, 0.2); }
  @media only screen and (min-width: 768px) {
    .search-block__mobile-filter-toggle {
      display: none; } }
  .search-block__mobile-filter-toggle--icon {
    margin-right: 10px; }
  .search-block__mobile-filter-toggle svg {
    stroke: #94793f; }
  .search-block__mobile-filter-toggle:hover {
    cursor: pointer;
    background-color: #94793f;
    color: #fff; }
    .search-block__mobile-filter-toggle:hover svg {
      stroke: #fff; }

.search-block__sidebar {
  background-color: #fff;
  padding: 25px 20px; }
  @media only screen and (max-width: 767px) {
    .search-block__sidebar {
      position: fixed;
      width: 100%;
      height: 100%;
      left: 0;
      visibility: hidden;
      z-index: -1;
      top: 100%;
      transition: all 0.5s ease;
      overflow: scroll; } }
  .search-block__sidebar select {
    color: #555;
    padding: 10px 13px;
    appearance: none;
    translate: 0 -1px;
    border: 1px solid rgba(81, 80, 80, 0.3);
    padding-right: 35px;
    background-position: calc(100% - 15px);
    background-image: url("../img/filter-arrow.png");
    background-repeat: no-repeat;
    background-size: 9px; }
  .search-block__sidebar__close svg {
    fill: #94793f;
    width: 20px;
    height: 20px; }
    .search-block__sidebar__close svg:hover {
      cursor: pointer; }
  .search-block__sidebar__close--container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .search-block__sidebar__close--container {
        display: none; } }
    .search-block__sidebar__close--container .lds-spinner {
      opacity: 0;
      width: 40px;
      height: 40px;
      transform-origin: top left;
      transform: scale(0.5); }
  .search-block__sidebar .search-block__sidebar__toggle-title {
    background-position: 100%; }
    .search-block__sidebar .search-block__sidebar__toggle-title .checkmark {
      top: 12px;
      height: 14px !important; }
    .search-block__sidebar .search-block__sidebar__toggle-title .selected {
      font-weight: 700; }
  .search-block__sidebar__loading {
    position: relative; }
  .search-block__sidebar__label {
    color: #94793f;
    padding-bottom: 13px;
    line-height: 16px;
    border-bottom: 1px solid rgba(81, 80, 80, 0.3); }
  .search-block__sidebar__show-all {
    font-style: italic;
    text-decoration: underline;
    margin-top: 15px; }
    .search-block__sidebar__show-all.remove {
      display: none; }
  .search-block__sidebar__section {
    margin-bottom: 40px; }
    .search-block__sidebar__section ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .search-block__sidebar__section ul li {
        font-size: 12px;
        color: #555;
        margin-bottom: 10px; }
        .search-block__sidebar__section ul li label {
          margin-top: 0;
          padding-left: 25px; }
          .search-block__sidebar__section ul li label.selected {
            font-weight: 700; }
          .search-block__sidebar__section ul li label:hover {
            cursor: pointer; }
      .search-block__sidebar__section ul li.additional-item {
        display: none; }
        .search-block__sidebar__section ul li.additional-item.active {
          display: block; }
  .search-block__sidebar__date ul.search-block__sidebar__toggle-wrapper {
    border-top: 1px solid rgba(81, 80, 80, 0.3); }
    .search-block__sidebar__date ul.search-block__sidebar__toggle-wrapper:first-of-type {
      border-top: none; }
    .search-block__sidebar__date ul.search-block__sidebar__toggle-wrapper:last-of-type {
      border-bottom: 1px solid rgba(81, 80, 80, 0.3); }
    .search-block__sidebar__date ul.search-block__sidebar__toggle-wrapper .search-block__sidebar__toggle-title {
      border-top: 1px solid rgba(81, 80, 80, 0.05);
      translate: 0 -1px;
      position: relative; }
      .search-block__sidebar__date ul.search-block__sidebar__toggle-wrapper .search-block__sidebar__toggle-title:after {
        background-image: url("../img/filter-arrow.png");
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        display: block;
        width: 9px;
        height: 4.5px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
      .search-block__sidebar__date ul.search-block__sidebar__toggle-wrapper .search-block__sidebar__toggle-title.content-open:after {
        transform: scaleY(-1); }
  .search-block__sidebar__date .search-block__sidebar__toggle-content {
    display: none;
    transition: height .5s ease;
    overflow: hidden;
    border-top: 1px solid rgba(81, 80, 80, 0.3); }
    .search-block__sidebar__date .search-block__sidebar__toggle-content.list-open {
      display: block; }
  .search-block__sidebar .search-block__sidebar__toggle-content, .search-block__sidebar .search-block__sidebar__author ul, .search-block__sidebar .search-block__sidebar__type ul {
    padding-top: 18px; }
  .search-block__sidebar li.search-block__sidebar__toggle-title {
    padding: 9px 0;
    margin-bottom: 0; }
  .search-block__sidebar.filters-loading .lds-spinner {
    opacity: 1; }

.search-block__query {
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  font-weight: 700;
  color: #94793f;
  font-size: 22px;
  padding: 30px 25px;
  border-bottom: 1px solid rgba(81, 80, 80, 0.3); }
  @media only screen and (min-width: 768px) {
    .search-block__query {
      padding: 0 0 30px 0;
      border: none; } }
  .search-block__query span {
    color: #000; }

.ed-pagination {
  display: flex;
  justify-content: center; }
  .ed-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; }
    .ed-pagination .page-numbers .page-numbers {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      margin: 0 7px;
      min-width: 28px;
      border-radius: 28px;
      font-weight: 400;
      line-height: 1;
      padding: 4px 10px;
      height: 28px; }
    .ed-pagination .page-numbers span.page-numbers.current {
      background-color: #AFC8EA; }
    .ed-pagination .page-numbers svg path {
      fill: #040404; }
    .ed-pagination .page-numbers svg circle {
      stroke: #040404; }

.post-card {
  text-decoration: none;
  display: block;
  word-break: break-word; }
  @media only screen and (max-width: 767px) {
    .post-card {
      display: flex;
      padding: 15px 25px;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(81, 80, 80, 0.3); }
      .post-card .post-card__image {
        width: 45%;
        padding-right: 15px;
        margin-bottom: 0; }
      .post-card .post-card__image + .post-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left; }
        .post-card .post-card__image + .post-card__content .post-card__information {
          order: 1; }
        .post-card .post-card__image + .post-card__content .post-card__title {
          order: 2; }
        .post-card .post-card__image + .post-card__content .post-card__excerpt {
          display: none; } }
  .post-card:hover, .post-card:focus {
    text-decoration: none; }
  .post-card__content {
    text-align: left; }
  .post-card__title {
    font-weight: 700;
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    color: #94793f;
    margin-bottom: 12px; }
  .post-card__image {
    margin-bottom: 15px; }
    .post-card__image picture {
      height: 0;
      overflow: hidden;
      padding-top: 70%;
      position: relative;
      display: block; }
      .post-card__image picture img {
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        transition: all .3s ease;
        width: 100%; }
  .post-card__information {
    margin-bottom: 15px; }
  .post-card__date, .post-card__author {
    color: rgba(0, 0, 0, 0.7); }
  .post-card__date {
    margin-right: 10px; }
  .post-card__author {
    text-transform: uppercase; }
    .post-card__author a {
      text-decoration: underline; }
  .post-card__excerpt {
    color: #000;
    font-size: 14px; }
  .post-card__type-label {
    background-color: #EDEDED;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 5px;
    margin-right: 10px;
    margin-bottom: 5px; }
  .post-card__information {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px; }

.search-block__sidebar__section ul li {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.search-block__sidebar__section ul li input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

.search-block__sidebar__section ul li .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #D9D9D9; }

.search-block__sidebar__section ul li .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

.search-block__sidebar__section ul li input:checked ~ .checkmark:after {
  display: block; }

.search-block__sidebar__section ul li .checkmark:after {
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: #94793f;
  width: 8px;
  height: 8px; }

@media only screen and (max-width: 767px) {
  body.mobile-filter-open {
    height: 100%;
    overflow: hidden;
    width: 100%; }
    body.mobile-filter-open .search-block__sidebar {
      z-index: 10000;
      visibility: visible;
      top: 0; } }

.lds-spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; }

.lds-spinner div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #94793f;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite; }

.lds-spinner div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s; }

.lds-spinner div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s; }

.lds-spinner div:nth-child(3) {
  left: 56px;
  animation-delay: 0; }

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px; }
  50%, 100% {
    top: 24px;
    height: 32px; } }

.sidebar-post-feed__list {
  margin-bottom: 0; }

.post-feed__item {
  position: relative;
  list-style: none;
  overflow: hidden;
  position: relative !important;
  display: block;
  line-height: normal !important;
  text-decoration: none !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0;
  margin-bottom: 2% !important;
  border: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  -moz-box-shadow: 0 0 0 !important;
  -webkit-box-shadow: 0 0 0 !important;
  box-shadow: 0 0 0 !important;
  height: auto !important;
  width: 100%;
  opacity: 1;
  cursor: pointer;
  max-height: initial !important;
  min-height: initial !important; }
  .post-feed__item:hover .post-feed__item--preview {
    max-height: 10em;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
  .post-feed__item--image {
    width: 100%;
    height: 0;
    background-size: cover;
    inset: 0;
    padding-top: 56%;
    display: block; }
    .post-feed__item--image.no-featured-image {
      background-position: top center;
      background-color: #18749d;
      background-size: contain; }
  .post-feed__item--info {
    display: block;
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    color: #fff;
    font-size: 14px;
    padding: 60px 16px 10px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%); }
  .post-feed__item--title {
    font-family: "Palatino Linotype", Palatino, serif;
    display: block;
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1; }
  .post-feed__item--preview {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
  .post-feed__item--description {
    display: block;
    margin: 5px 0 0;
    padding: 5px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    opacity: .8; }

.mid-article-wpp {
  line-height: normal;
  border: 3px solid #94793f;
  padding: 1rem;
  margin-bottom: 1rem; }
  .mid-article-wpp img {
    margin-right: 0;
    width: 160px; }
    @media (max-width: 543px) {
      .mid-article-wpp img {
        display: block;
        float: none;
        width: 100%;
        margin-bottom: 10px; } }
  .mid-article-wpp__image {
    display: block; }
    .mid-article-wpp__image a {
      display: block; }
  .mid-article-wpp__main-content {
    display: flex; }
    @media (max-width: 543px) {
      .mid-article-wpp__main-content {
        display: block; } }
  .mid-article-wpp__date, .mid-article-wpp__excerpt {
    display: block; }
  .mid-article-wpp__info {
    padding-bottom: 10px;
    padding-left: 10px;
    flex: 1; }
    @media (max-width: 543px) {
      .mid-article-wpp__info {
        padding-left: 0;
        padding-bottom: 0; } }
  .mid-article-wpp__excerpt {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 0;
    padding-top: 0;
    font-size: .875rem;
    color: initial;
    line-height: normal; }
  .mid-article-wpp__title {
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-weight: 700;
    line-height: 1.1;
    font-size: .9rem; }
    .mid-article-wpp__title a {
      color: #94793f; }
  .mid-article-wpp__date {
    color: #34495e;
    font-style: normal;
    opacity: 1;
    font-size: .65rem;
    font-family: "Droid Serif", "Times New Roman", Times, serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 4px; }
  .mid-article-wpp a:hover {
    text-decoration: none;
    color: initial; }

ul.related-content-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%; }
  ul.related-content-list .post-feed__item--image {
    padding-top: 100%; }
  ul.related-content-list .post-feed__item {
    margin-bottom: 15px !important; }
  @media (max-width: 739px) {
    ul.related-content-list {
      gap: 15px;
      grid-template-columns: repeat(2, 1fr); }
      ul.related-content-list .post-feed__item {
        margin-bottom: 0px !important; } }
  @media (max-width: 414px) {
    ul.related-content-list {
      gap: 20px;
      grid-template-columns: repeat(1, 1fr); } }

/*=========================================

	Tables

===========================================*/
.table, table {
  font-size: .75rem; }

html .tablepress .sorting:hover, html .tablepress .sorting_asc, html .tablepress .sorting_desc {
  background-color: #843233;
  color: white; }

html .tablepress tfoot th, html .tablepress thead th {
  background-color: #94793f;
  font-family: "Droid Serif", "Times New Roman", Times, serif;
  color: white;
  font-size: .9rem;
  line-height: 1rem; }

html .tablepress tbody td, html .dataTables_paginate a, html .dataTables_info {
  font-size: .8rem; }

html .dataTables_filter {
  margin-bottom: 15px; }
  html .dataTables_filter input[type=search] {
    margin-left: 10px; }

html .dataTables_wrapper {
  margin-top: 20px; }

html .paging_simple .paginate_button.next:after, html .paging_simple .paginate_button.previous:before {
  text-shadow: none;
  font-weight: 400;
  color: #ddd; }

html .paginate_button.disabled, html .tablepress caption {
  display: none; }

@media (max-width: 543px) {
  html .dataTables_filter input[type=search] {
    max-width: 200px; } }

/*

Market Overview

*/
.market-overview-detail {
  font-size: .875rem;
  width: 100%;
  margin: 1rem 0 2rem; }
  .market-overview-detail td, .market-overview-detail th {
    width: 50%;
    border: 1px solid #94793f;
    padding: .5rem .25rem; }
  .market-overview-detail th {
    background-color: #f3f3f3; }

.navbar-general {
  background: #fff; }

.btn-secondary, .newsletter-sign-up input[type=submit], .newsletter-sign-up input[type=submit] {
  background: #771c1d;
  color: #fff;
  border: none; }
  .btn-secondary:hover, .newsletter-sign-up input:hover[type=submit], .newsletter-sign-up input[type=submit]:hover {
    background: #843233;
    color: #fff; }

.btn-nav {
  color: #1c1a15;
  background: #ffffff;
  border: none; }
  .btn-nav:hover {
    color: #404040; }

.btn-nav:hover, .btn-nav:focus, .btn-nav:active {
  color: #94793f; }

.navbar-main-menu {
  background: #f3f3f3;
  padding: 0; }
  .navbar-main-menu .navbar-nav .current-menu-item {
    color: #404040; }
  .navbar-main-menu .navbar-nav .nav-link:after, .navbar-main-menu .navbar-nav .menu-item > a:after, .navbar-main-menu .navbar-nav .menu-item > a:after, .navbar-main-menu .navbar-nav .menu-item > a:after {
    border-top-color: rgba(148, 121, 63, 0.8);
    border-bottom-color: rgba(148, 121, 63, 0.8); }
  .navbar-main-menu .navbar-nav .menu-item > a, .navbar-main-menu .navbar-nav .navbar-nav .menu-item > a, .navbar-main-menu .navbar-nav .menu-item > a:focus, .navbar-main-menu .navbar-nav .navbar-nav .menu-item > a:focus {
    color: #404040; }
  .navbar-main-menu .navbar-nav .menu-item > a:hover, .navbar-main-menu .navbar-nav .navbar-nav .menu-item > a:hover {
    color: white; }
  .navbar-main-menu .nav-wrap {
    padding: 0; }
    .navbar-main-menu .nav-wrap li.menu-item:hover {
      background: #94793f; }
    .navbar-main-menu .nav-wrap li.menu-item:hover.nav-link:after, .navbar-main-menu .nav-wrap li.menu-item:hover.menu-item > a:after, .navbar-main-menu .nav-wrap li.menu-item:hover.menu-item > a:after {
      border-top-color: rgba(255, 255, 255, 0.8);
      border-bottom-color: rgba(255, 255, 255, 0.8); }
    .navbar-main-menu .nav-wrap li.menu-item.open {
      background: #94793f; }
    .navbar-main-menu .nav-wrap .navbar-social {
      padding: 5px; }
      .navbar-main-menu .nav-wrap .navbar-social a {
        margin-top: 1px; }
    .navbar-main-menu .nav-wrap .dropdown-menu {
      margin-top: 0;
      margin-left: 0 !important; }
      .navbar-main-menu .nav-wrap .dropdown-menu li.menu-item:hover {
        background: #b29454; }

.select-edition .dropdown-menu {
  background: #ffffff; }

.select-edition .dropdown-toggle {
  font-size: 13px;
  padding-left: 0; }

.select-edition .dropdown-item {
  color: #1c1a15;
  border-top: 1px solid #f3f3f3; }
  .select-edition .dropdown-item:hover, .select-edition .dropdown-item:focus, .select-edition .dropdown-item:active {
    color: #b29454; }

.edition-select-desktop .edition-select-top ul li .germany {
  padding-bottom: .75rem;
  margin-top: -.5rem; }

.widget ul {
  padding-left: 20px;
  margin-left: 0; }

.entry-categories .nav-link, .entry-categories .menu-item > a, .entry-categories .menu-item > a {
  background: #843233; }

.prev-post-link:after, .next-post-link:after {
  color: #843233; }

.breaking-news {
  background-color: #94793f; }
  .breaking-news h1, .breaking-news h2, .breaking-news h3, .breaking-news h4, .breaking-news html #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #jp-relatedposts .jp-relatedposts-items .breaking-news .jp-relatedposts-post-title, .breaking-news html #pv-jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post-title, html #pv-jp-relatedposts .jp-relatedposts-items .breaking-news .jp-relatedposts-post-title, .breaking-news div#jp-relatedposts:before, .breaking-news html div#pv-jp-relatedposts:before, html .breaking-news div#pv-jp-relatedposts:before, .breaking-news h5, .breaking-news h6 {
    color: white; }

h2 {
  color: #843233; }

.callout a {
  color: #b29454;
  font-weight: normal; }

.callout .btn-primary, .callout input[type=submit], .callout body .pea_cook_wrapper.pea_cook_bottomcenter button.pea_cook_btn, body .pea_cook_wrapper.pea_cook_bottomcenter .callout button.pea_cook_btn {
  color: white; }

.callout-body {
  padding: 1rem 1.2rem 1.2rem 1.5rem;
  background: #ffffff;
  color: #1c1a15;
  border: 2px solid #843233; }

#footer {
  background: #843233; }

.archive-press_release .archive-title {
  word-break: break-word; }

.entry-content {
  font-size: .875rem;
  line-height: 1.75em; }

/* Single - Webinare */
.singular-webinare .entry-content {
  margin-top: 30px; }
  .singular-webinare .entry-content .main-text {
    margin: 30px 0; }

div#jp-relatedposts:before, html div#pv-jp-relatedposts:before {
  content: "\00C4hnliche Beitr\00E4ge";
  color: #3c434c; }

#footer {
  height: 80px;
  margin-top: 80px; }

#inner-wrap {
  padding-bottom: 115px; }

#footer .copyright {
  float: left;
  padding-top: 10px; }

#footer .promo-snippets {
  float: right; }

#announcements .callout-title {
  padding: 0 0rem .5rem; }

#announcements span.category {
  color: white; }

#announcements .webinar-callout {
  margin-bottom: 0; }

/*
Termine select and calendar

*/
#event-filter {
  clear: both;
  margin: 1rem 0 3rem;
  border: 1px solid #f3f3f3;
  padding: 1rem; }

#schulung-tax {
  display: none; }

#pv-event-calendar .fc-event.messe, #pv-event-calendar-key .fc-event.messe {
  background-color: #3a87ad;
  border: 1px solid #3a87ad; }

#pv-event-calendar .fc-event.konferenz, #pv-event-calendar-key .fc-event.konferenz {
  background-color: #f44336;
  border: 1px solid #f44336; }

#pv-event-calendar .fc-event.fachtagung, #pv-event-calendar-key .fc-event.fachtagung {
  background-color: #009688;
  border: 1px solid #009688; }

#pv-event-calendar .fc-event.webinar, #pv-event-calendar-key .fc-event.webinar {
  background-color: #ffc107;
  border: 1px solid #ffc107; }

#pv-event-calendar .fc-event.vortrag, #pv-event-calendar-key .fc-event.vortrag {
  background-color: #ff9800;
  border: 1px solid #ff9800; }

#pv-event-calendar .fc-event.seminare-und-schulungen, #pv-event-calendar-key .fc-event.seminare-und-schulungen {
  background-color: #ab47bc;
  border: 1px solid #ab47bc; }

#pv-event-calendar .fc-event.workshop, #pv-event-calendar-key .fc-event.workshop {
  background-color: #5ebc47;
  border: 1px solid #5ebc47; }

#pv-event-calendar .fc-event img.pv-mag-event, #pv-event-calendar-key .fc-event img.pv-mag-event {
  float: left;
  max-width: 15px;
  height: auto;
  margin: 1px 2px 1px; }

/*

footer buttons

*/
.ric_rot_banner {
  float: right;
  margin-left: 20px; }

#footer .a-single {
  margin-bottom: 10px; }

/* Media Queries */
@media (max-width: 1419px) {
  .navbar-main-menu .navbar-nav .nav-link, .navbar-main-menu .navbar-nav .menu-item > a, .navbar-main-menu .navbar-nav .menu-item > a, .navbar-main-menu .navbar-nav .menu-item > a {
    padding: .6rem .4rem .6rem .4rem; } }

@media (max-width: 767px) {
  .navbar {
    padding: .5rem 1rem; }
  .navbar-main-menu {
    padding-top: 0; }
    .navbar-main-menu .container {
      max-width: none; }
    .navbar-main-menu .nav-wrap {
      background: #94793f; }
      .navbar-main-menu .nav-wrap .navbar-mobile-search {
        background: #94793f; }
      .navbar-main-menu .nav-wrap li.menu-item {
        border-top: 1px solid #b29454; }
        .navbar-main-menu .nav-wrap li.menu-item a {
          color: #ffffff; }
      .navbar-main-menu .nav-wrap .dropdown-menu {
        margin-left: -0.9375rem !important;
        margin-right: -0.9375rem; }
  .navbar-general .navbar-toggler {
    color: #94793f; } }

@media (min-width: 768px) {
  .main-logo {
    max-width: 260px; } }

@media (min-width: 768px) {
  #banner_home_top_1, #banner_home_top_2 {
    height: 50px; } }

@media (min-width: 1220px) {
  #banner_home_top_1, #banner_home_top_2 {
    height: 60px; } }

/*

Wallpaper ads layout

*/
/*

@media(min-width:1023px) {

    .ad-sky-left {
        top: -128px;
    }

    .ad-sky-right {
        top: -128px;
    }


}

@include media-breakpoint-up(xl) {

    .ad-sky-left {
        top: -174px;
    }

    .ad-sky-right {
        top: -174px;
    }
    #leaderboard_top_1 {
        min-height:142px;
    }

}

*/

/*# sourceMappingURL=style-de.css.map */