@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
/*
 Theme Name:   Bradley Smoker
 Description:  A WebPilot Child Theme
 Author:       Primal Communications Ltd.
 Author URI:   https://www.primalcommunications.com
 Template:     primal-webpilot
 Version:      1.1
 Text Domain:  copilot
 .-'"'-.
 .'       '.   ___
 / | | | | | \  |__) ,- . _ _  _ |
 | | | | | | |  |    |  || | |(_||
 \ | | | | | /  communications ltd
 '.       .'
 '-...-'
 Developed by Primal Communications Ltd.
 https://primalcommunications.com
 WebPilot SCSS is compiled in 4 stages:
 1. Load parent theme variables
 2. Customize variables for child theme
 3. Load parent theme styles using updated variables
 4. Load child theme styles
 WARNING: Changes to the parent theme will affect other projects.
 */
/** 1. Import parent theme variables **/
/**
 * Loading core variables, before they are modified by child theme
 */
/**
 * Adding some Bourbon. Docs at http://bourbon.io/docs/
 */
/**
 * Variables
 * colour swatch, fonts, metrics
 */
/**
 * COLOR THEME
 */
/**
 * Default link colors
 *
 * $c_link: #0080FF;
 * $c_link_visited: #8000FF;
 * $c_link_hover: #0000FF;
 * $c_link_active: #FF6666;
 */
/**
 * PAGE METRICS
 */
/**
 * TYPOGRAPHY
 * Based on http://www.sitepoint.com/eight-definitive-font-stacks/
 */
/* System font stack */
/* Times New Roman-based stack */
/* Modern Georgia-based serif stack */
/* Traditional Garamond-based serif stack */
/* Helvetica/Arial-based sans serif stack */
/* Verdana-based sans serif stack */
/* Trebuchet-based sans serif stack */
/* Impact-based sans serif stack */
/* Monospace stack */
/**
 * Utilties
 */
/*  Primal Mediaquery Mixins v1.1.1 */
/**
 * Notes:
 * - maximums normally need to be 1 less than the min of the next size up
 * - heights are used for landscape widths when rotated
 */
/* Matches a type and sets a min-width and max-width */
/* Matches a type and sets a min-width */
/* Matches a type and sets a max-width */
/* Matches two types, first for min-width, the for max-width */
/* Set minimum and maximum in pixels */
/* Set min-width in pixels */
/* Set max-width in pixels */
/** Print Media */
/**
 * 2. Import variables for child theme
 * See list of possible variables in webpilot/scss/vars.scss
 **/
/**
 * Child theme variables
 *
 * Use this file to override variables in webpilot/scss/vars.scss
 * Or to add variables specific to the child theme
 * 
 */
/**
 * Color Pallete
 */
/**
 * Theme Settings
 */
@font-face {
  font-family: 'DCC - Ash';
  src: url('fonts/dcc_-_ash.woff2') format('woff2'), url('fonts/dcc_-_ash.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/** 3. Import parent theme styles using updated variables **/
/**
 * Core css, loaded after variables have been set
 */
/**
 * Setting up base styles for HTML tags
 * eg. p, links, headings, lists
 */
/**
 * Base Theme Styles
 * 
 * Primarily for setting up styles for HTML tags
 *
 */
/************************
 Fonts must be loaded before any css
 eg. @import url('https://fonts.googleapis.com/css?family=Roboto');
 */
*, *::before, *::after {
  box-sizing: inherit;
}
html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.35;
}
@media screen and (max-width: 640px) {
  html, body {
    font-size: 18px;
  }
}
/**
 * Paragraphs
 * Margins are used as they will collapse when placed above/below each other or headings
 */
p {
  margin-top: 0.1em;
  margin-bottom: 0.5em;
}
/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 110%;
}
/**
 * Lists
 */
ul, ol {
  margin: 0 0 1.5em 0;
  padding: 0 0 0 20px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  margin: 0 0 0.5em 0;
}
li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
/**
 * Links
 */
a {
  /* Make links fade to hover/active states */
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  text-decoration: underline;
  color: #3458e9;
}
a:visited {
  color: #122fa5;
}
a:hover, a:focus {
  color: #081549;
}
a:active {
  color: #7b202f;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
pre {
  background: #eee;
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code, kbd, tt, var {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  background: #fff9c0;
  text-decoration: none;
}
#stage {
  position: relative;
}
/**
 * Positioning and dimensions of main elements:
 * header, content, sidebar, footer
 */
#body > .wrap {
  display: flex;
}
#main {
  flex: 3 0 0;
  min-width: 300px;
}
#sidebar {
  flex: 1 0 0;
  min-width: 300px;
}
@media screen and (max-width: 759px) {
  #body > .wrap {
    flex-direction: column;
  }
}
#site-footer {
  padding-left: 3em;
  padding-right: 3em;
}
/* Add a margin to the sides of the page */
#stage > * {
  padding-left: 3em;
  padding-right: 3em;
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  #stage > * {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 759px) {
  #stage > * {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
/* Adjust margins so sidebar sticks to right side */
/**
 * Text meant only for screen readers.
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/**
 * Page component styles
 */
#masthead {
  background: #918879;
  color: #333;
  border-bottom: 10px solid #081549;
}
#masthead > .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10em;
}
@media screen and (max-width: 759px) {
  #masthead > .wrap {
    display: block;
    position: static;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
}
.site-branding .site-title {
  margin: 0;
}
.site-branding .custom-logo-link {
  display: block;
  line-height: 1em;
}
.site-branding .custom-logo-link img {
  width: 100%;
  height: auto;
  max-width: 284px;
}
@media screen and (max-width: 759px) {
  .site-branding {
    box-sizing: border-box;
  }
  .site-branding .custom-logo-link {
    padding: 8px 0;
  }
  .site-branding .custom-logo-link img {
    width: auto;
    max-height: 50px;
  }
}
@media screen and (max-width: 320px) {
  .site-branding .custom-logo-link img {
    max-height: 45px;
  }
}
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 0;
  display: block;
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-align: center;
  width: 40px;
  height: 40px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 999;
}
#back-to-top .text {
  display: none;
}
#back-to-top .icon {
  font-size: 30px;
  line-height: 50px;
  font-weight: bold;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #666;
}
.nav-wrap {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 30px;
  font-size: 1rem;
}
@media screen and (min-width: 1500px) {
  .nav-wrap {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  .nav-wrap {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 280px) and (max-width: 759px) {
  .nav-wrap {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 759px) {
  .nav-wrap {
    justify-content: flex-start;
    flex-direction: column-reverse;
    padding-top: 0;
    color: #333;
    background: #eee;
  }
}
@media print {
  .nav-wrap {
    display: none;
  }
}
.nav-wrap ul, .nav-wrap li {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 760px) {
  /** Layout and dropdowns */
  /** Design */
  #masthead > .wrap > nav {
    margin-left: 314px;
  }
  .webpilot-dropdown {
    float: right;
  }
  .webpilot-dropdown > ul {
    display: flex;
    justify-content: flex-end;
    flex-flow: row wrap;
    align-content: flex-end;
  }
  .webpilot-dropdown > ul > li {
    display: inline-block;
  }
  .webpilot-dropdown > ul ul > li.menu-item-has-children > a {
    position: relative;
    padding-right: 35px;
  }
  .webpilot-dropdown > ul ul > li.menu-item-has-children > a::before {
    content: '→';
    position: absolute;
    right: 5px;
  }
  .webpilot-dropdown > ul ul.submenu--right > li.menu-item-has-children > a {
    position: relative;
    padding-right: 15px;
    padding-left: 25px;
  }
  .webpilot-dropdown > ul ul.submenu--right > li.menu-item-has-children > a::before {
    content: '←';
    right: auto;
    left: 5px;
  }
  .webpilot-dropdown ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    position: relative;
    display: flex;
    z-index: 9999;
  }
  .webpilot-dropdown ul li {
    position: relative;
    padding: 0;
  }
  .webpilot-dropdown ul li:hover > ul, .webpilot-dropdown ul li:focus > ul, .webpilot-dropdown ul li.sfHover > ul, .webpilot-dropdown ul li.menu-open-parent > ul, .webpilot-dropdown ul li.menu-root-open > ul, .webpilot-dropdown ul li.menu-open > ul {
    display: flex;
  }
  .webpilot-dropdown ul ul {
    display: none;
    position: absolute;
    top: 100%;
    flex-direction: column;
  }
  .webpilot-dropdown ul ul > li {
    position: relative;
  }
  .webpilot-dropdown ul ul > li a {
    padding: 5px;
  }
  .webpilot-dropdown ul ul ul {
    position: absolute;
    left: 99%;
    top: 2%;
  }
  .webpilot-dropdown ul li a {
    display: block;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
  }
  .webpilot-dropdown ul ul {
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
    min-width: 220px;
  }
  .webpilot-dropdown ul ul li {
    font-size: 0.9em;
  }
  .webpilot-dropdown > ul > li > a {
    font-size: 1em;
    color: #3551b1;
    background: transparent;
    padding: 0.2em 0.5em;
  }
  .webpilot-dropdown > ul > li:hover, .webpilot-dropdown > ul > li:focus, .webpilot-dropdown > ul > li:hover a, .webpilot-dropdown > ul > li:focus a, .webpilot-dropdown > ul > li.sfHover, .webpilot-dropdown > ul > li > a:hover, .webpilot-dropdown > ul > li > a:focus {
    color: #0028b2;
    background: #eee;
  }
  .webpilot-dropdown > ul > li li > a {
    color: #595959 !important;
    background: #eee;
    padding: 0.3em 1em;
    border-top: 1px solid #bbb;
  }
  .webpilot-dropdown > ul > li li > a:hover, .webpilot-dropdown > ul > li li > a:focus {
    color: #0028b2 !important;
    background: #918879;
  }
  #menu-tab {
    display: none;
  }
}
@media screen and (min-width: 760px) and (max-width: 1023px) {
  .webpilot-dropdown ul ul ul {
    left: -15.9em;
  }
}
@media screen and (max-width: 759px) {
  #menu-tab {
    display: block;
    position: absolute;
    top: 36px;
    right: 0;
    height: 40px;
    line-height: 40px;
    width: 6em;
    color: #3551b1;
    cursor: pointer;
    text-align: center;
  }
  #menu-tab .opened {
    display: none;
    color: #0028b2;
  }
  #menu-tab .closed {
    color: #3551b1;
  }
  #menu-tab .opened::after, #menu-tab .closed::after {
    padding-left: 5px;
    position: relative;
  }
  #menu-tab .opened::after {
    content: '✕';
  }
  #menu-tab .opened::after {
    font-size: 1.3em;
    font-weight: bold;
    top: 1px;
  }
  #menu-tab .closed::after {
    content: '≡';
  }
  #menu-tab .closed::after {
    font-size: 2em;
    line-height: 1rem;
    font-weight: normal;
    top: 4px;
  }
  body.nav-open #menu-tab {
    background: #eee;
  }
  body.nav-open #menu-tab .opened {
    display: block;
  }
  body.nav-open #menu-tab .closed {
    display: none;
  }
  .nav-wrap {
    display: none;
    padding: 5%;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999;
    overflow: auto;
    height: 75vh;
    top: 65px;
    left: 0;
    position: absolute;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5), 0 20px 20px rgba(128, 128, 128, 0.6);
    border-bottom: 5px solid #888;
  }
  body.nav-open .nav-wrap {
    display: block;
  }
  .webpilot-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .webpilot-dropdown ul ul {
    font-size: 0.9em;
  }
  .webpilot-dropdown > ul > li > ul > li > a {
    padding-left: 1.5em;
  }
  .webpilot-dropdown > ul > li > ul > li > ul > li > a {
    padding-left: 3em;
  }
  .webpilot-dropdown li {
    margin: 0;
    padding: 0;
  }
  .webpilot-dropdown a {
    display: block;
    color: #4d4d4d;
    padding-top: 0.1em;
    padding-bottom: 0.2em;
    text-decoration: none;
    border-top: 1px dotted #bbb;
  }
  .webpilot-dropdown a:active {
    color: #081549;
    background: #eee;
    text-decoration: underline;
  }
}
html.nav-open, body.nav-open {
  overflow: hidden !important;
  height: 100vh;
}
nav.secondary {
  padding-bottom: 1em;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 759px) {
  nav.secondary {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  nav.secondary #header-menu-second {
    display: none;
  }
}
nav.secondary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.9em;
}
@media screen and (max-width: 759px) {
  nav.secondary ul {
    justify-content: flex-start;
    flex-direction: column;
  }
}
nav.secondary li {
  padding: 0;
  margin: 0;
}
nav.secondary li a {
  color: #3551b1;
  text-decoration: none;
}
@media screen and (max-width: 759px) {
  nav.secondary li a {
    color: #333;
  }
}
.wp-pagenavi {
  clear: both;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
.wp-pagenavi > * {
  padding: 0.2833333333em 0.5666666667em 0.2833333333em 0.425em;
}
.wp-pagenavi .pages {
  color: #4d4d4d;
  padding-right: 1.7em;
}
.wp-pagenavi span.current, .wp-pagenavi a.page {
  display: inline-block;
  border-radius: 1.7em;
  height: 1.7em;
  width: 1.7em;
  vertical-align: middle;
  text-align: center;
}
.wp-pagenavi span.current {
  background: #4d4d4d;
  color: #fff;
}
.wp-pagenavi a.page {
  color: #000;
}
.wp-pagenavi a.page:hover, .wp-pagenavi a.page:focus {
  color: #000;
  font-weight: bold;
}
.wp-pagenavi a.page:visited {
  color: #4d4d4d;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  color: #000;
}
.wp-pagenavi a.nextpostslink:visited, .wp-pagenavi a.previouspostslink:visited {
  color: #4d4d4d;
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 759px) {
  .wp-pagenavi {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1em 0;
  }
  .wp-pagenavi .pages {
    display: block;
    text-align: center;
    flex: 0 0 100%;
    opacity: 0.6;
  }
  .wp-pagenavi a.page, .wp-pagenavi .extend, .wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi span.current {
    display: none;
  }
  .wp-pagenavi .nextpostslink {
    flex: 1 0 50%;
    text-align: right;
  }
  .wp-pagenavi .previouspostslink {
    flex: 1 0 50%;
  }
}
.submenu--right {
  left: auto;
  right: 0;
}
#body {
  box-sizing: border-box;
  padding-bottom: 4em;
}
h2 {
  font-size: 2.15em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
}
/* HOMEPAGE STYLES TEMP */
.special-title {
  border-top: 1px solid #000;
  color: #000;
  position: relative;
  margin-top: 3em;
  margin-bottom: 2em;
  height: 1px;
}
.special-title div {
  position: absolute;
  top: -0.5em;
  line-height: 1em;
  display: block;
  width: 100%;
  text-align: center;
}
.special-title div span {
  background: #fff;
  font-size: 1.6em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0.5em;
}
.best-sellers .image-wrap {
  background: #fff;
  border: 1px solid #ccc;
  padding: 30px;
}
.best-sellers .image-wrap img {
  max-width: 90%;
  height: auto;
}
body .home-our-products-images .tb-column-inner {
  vertical-align: bottom;
}
body .home-our-products-images a {
  color: #7b202f;
}
body .home-our-products-images a:visited {
  color: #081549;
}
body .home-our-products-images .image-wrap {
  padding: 2vw;
  text-align: center;
}
body .home-our-products-images .image-wrap img {
  max-width: 90%;
  height: auto;
}
.breadcrumbs {
  display: block;
  padding: 1em 0 0 0;
  font-size: 1.1rem;
}
.breadcrumbs .sep {
  font-size: 0.7em;
  color: #666;
  padding: 0 0.5em;
}
.breadcrumbs a {
  color: #4d4d4d;
}
body.home #main > article > header > h1.entry-title {
  display: none;
}
.col-wrap {
  display: flex;
  box-sizing: border-box;
}
.col {
  flex: 1 0 50%;
}
@media screen and (min-width: 760px) and (max-width: 1023px) {
  .col {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .col {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (min-width: 1280px) {
  .col {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.col:first-child {
  padding-left: 0;
}
.col:last-child {
  padding-right: 0;
}
@media screen and (max-width: 759px) {
  .col-wrap {
    flex-direction: column;
  }
  .col {
    display: block;
  }
}
.table {
  display: table;
}
.tr {
  display: table-row;
}
.th, .td {
  display: table-cell;
}
hr .hr-style {
  border-top: 1px solid #a2a2a2;
}
#sidebar {
  box-sizing: border-box;
  background-color: #eee;
  color: #333;
  padding: 0 2%;
  display: none;
}
.with-sidebar #sidebar {
  display: block;
}
.footer-sidebar {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
#site-footer {
  padding-top: 20px;
  padding-bottom: 30px;
  color: #fff;
  background: #b1b1b1;
}
#site-footer ul, #site-footer ol, #site-footer li, #site-footer dl, #site-footer dd {
  margin: 0;
  padding: 0;
}
#site-footer .footer-widgets {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  align-content: stretch;
  box-sizing: border-box;
  font-size: 1rem;
}
@media screen and (max-width: 759px) {
  #site-footer .footer-widgets {
    flex-direction: column;
  }
}
#site-footer .footer-widgets h4.widget-title {
  border-bottom: solid 1px #b9b3ac;
  color: #fff;
  padding: 0 0 10px 0;
  font-size: 1em;
  line-height: 120%;
  text-transform: lowercase;
}
#site-footer .footer-widgets .footer-column {
  padding-left: 1em;
  padding-right: 1em;
  flex: 1 1 auto;
}
@media screen and (max-width: 759px) {
  #site-footer .footer-widgets .footer-column {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
#site-footer .footer-widgets .footer-column:first-child {
  padding-left: 0;
}
#site-footer .footer-widgets .footer-column:last-child {
  padding-right: 0;
}
#site-footer a {
  color: #fff;
}
#site-footer dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#site-footer dl dt {
  flex: 1 1 30%;
  color: #fff;
  font-weight: normal;
}
#site-footer dl dd {
  flex: 2 1 69%;
  color: #fff;
  font-weight: bold;
}
#site-footer ul li {
  color: #fff;
  list-style: none;
}
#site-footer .zoom-logo {
  width: 140px;
}
#site-footer ul.partner-logos {
  padding-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: stretch;
}
#site-footer ul.partner-logos li {
  flex: 1 1 33%;
  text-align: center;
  padding: 0 5px;
}
#site-footer ul.partner-logos li img {
  width: 90px;
  max-width: 100%;
  height: auto;
}
#site-footer .sub-footer {
  padding-top: 2em;
  font-size: 0.8rem;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: row-reverse;
  align-content: stretch;
}
@media screen and (max-width: 759px) {
  #site-footer .sub-footer {
    flex-direction: column;
  }
}
#site-footer .sub-footer > * {
  flex: 1 1 auto;
}
#site-footer .sub-footer .social {
  text-align: right;
}
@media screen and (max-width: 759px) {
  #site-footer .sub-footer .social {
    text-align: center;
  }
}
#site-footer .sub-footer .social .webpilot-social-links {
  justify-content: flex-end;
}
@media screen and (max-width: 759px) {
  #site-footer .sub-footer .social .webpilot-social-links {
    justify-content: center;
  }
}
#site-footer .sub-footer .credits {
  font-size: 0.8em;
}
@media screen and (max-width: 759px) {
  #site-footer .sub-footer .credits {
    text-align: center;
  }
}
@media screen and (min-width: 760px) {
  #site-footer .sub-footer .credits {
    font-size: 1em;
  }
}
@media screen and (min-width: 1024px) {
  #site-footer .sub-footer .credits > div {
    display: inline;
  }
}
#site-footer .item-left {
  color: #fff;
  width: 50%;
}
@media screen and (max-width: 759px) {
  #site-footer .item-left {
    width: 100%;
  }
}
#site-footer .item-right {
  color: #fff;
  width: 50%;
  text-align: right;
}
@media screen and (max-width: 759px) {
  #site-footer .item-right {
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 759px) {
  #site-footer {
    padding: 5px 20px 20px 20px;
  }
  #site-footer h4 {
    margin-top: 25px;
  }
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  #site-footer {
    padding: 20px;
  }
}
body .prml-slideshow .slides figcaption {
  top: 10%;
  left: 4%;
  width: 45%;
}
body .prml-slideshow .slides figcaption div {
  font-weight: 500;
  font-size: 3em;
  line-height: 1.2em;
  font-family: 'DCC - Ash', sans-serif;
}
body .prml-slideshow .slides figcaption div strong {
  font-weight: 700;
}
body .prml-slideshow .pager span {
  color: #081549;
}
body .prml-slideshow .pager span.cycle-pager-active {
  color: #7b202f;
}
@media only screen and (max-width: 1200px) {
  body .prml-slideshow {
    margin-left: -1.5em;
    margin-right: -1.5em;
  }
}
/**
 * Wordpress editor content styles:
 * alignleft, wp-caption, galleries
 */
/**
 * Wordpress Content Styles
 * For styling classes applied by the editor
 */
/** Alignment */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/** Captions */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/** Galleries */
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
/**
 * Search styling
 */
.search-field-wrap {
  position: relative;
  display: flex;
  border: 1px solid #999;
  border-radius: 30px;
  width: 210px;
  background: #eee;
  color: #999;
}
@media screen and (max-width: 759px) {
  .search-field-wrap {
    width: 100%;
  }
}
.search-field-wrap label {
  display: none;
}
.search-field-wrap .search-text {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  padding: 0 0 0 10px;
  color: currentColor;
  font-size: 0.9em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.search-field-wrap .search-text:focus {
  color: #000;
  outline: none;
}
.search-field-wrap .search-text::placeholder {
  font-size: 0.9em;
  color: #aaa;
}
.search-field-wrap.focus {
  background: #fff;
  border: 1px solid #da262c;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.search-field-wrap.focus .search-button input[type=image] {
  background: #1dd0c1;
}
.search-field-wrap .search-button {
  flex: 0 0 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.search-field-wrap .search-button input[type=image] {
  box-sizing: content-box;
  padding: 6px;
  background: #fff;
  border-radius: 28px;
  filter: invert(100%);
}
.search-field-wrap .search-button input[type=image]:focus, .search-field-wrap .search-button input[type=image]:hover {
  background: #ff7800;
  outline: none;
}
#main .search-field-wrap {
  max-width: 100%;
  width: 60vw;
  font-size: 1.2em;
}
@media screen and (max-width: 759px) {
  #main .search-field-wrap {
    width: 100%;
  }
}
.summaries article.type-products {
  clear: both;
  padding-top: 1em;
}
@media screen and (min-width: 760px) {
  .summaries article.type-products .post-thumbnail {
    float: left;
    padding-right: 1em;
  }
}
@media screen and (max-width: 759px) {
  .summaries article.type-products .post-thumbnail img {
    max-width: 40vw;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .summaries article.type-products {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    box-sizing: border-box;
  }
  .summaries article.type-products:nth-child(odd) {
    padding-right: 2em;
  }
  .summaries article.type-products:nth-child(even) {
    padding-left: 2em;
  }
}
@media screen and (min-width: 760px) {
  .summaries {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .summaries > * {
    flex: 0 0 50%;
    padding: 0 20px 20px 0;
  }
}
.summaries article .post-thumbnail {
  float: left;
  padding: 0 20px 20px 0;
}
.summaries article .post-thumbnail img {
  width: 100%;
  max-width: 10vw;
  height: auto;
}
.summaries h2.entry-title a {
  text-decoration: none;
}
.summaries article.type-recipe h2.entry-title::before {
  content: 'Recipe: ';
}
/**
 * Social Icons
 * Both layout, and styling one-color svg icons
 */
.webpilot-social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.webpilot-social-links a {
  display: inline-block;
  padding: 0 13.5px 13.5px 0;
  opacity: 0.8;
}
.webpilot-social-links a img, .webpilot-social-links a svg {
  max-width: 27px;
  height: auto;
}
@media screen and (max-width: 759px) {
  .webpilot-social-links a {
    padding-right: 18px;
  }
  .webpilot-social-links a img, .webpilot-social-links a svg {
    max-width: 37.8px;
  }
}
.webpilot-social-links a.editlink {
  font-size: 0.9rem;
}
.webpilot-social-links .black {
  fill: #eee;
}
.webpilot-social-links a:hover, .webpilot-social-links a:focus, .webpilot-social-links a:active {
  opacity: 1;
}
/**
 * Included widget styles
 */
/**
 * Debug rules to lint html
 */
/** 4. Import child theme styles **/
a {
  transition: none !important;
}
.entry-content a {
  color: #da262c;
}
#masthead {
  background: #fff;
  border-bottom-color: #da262c;
  border-bottom-width: 5px;
  font-family: 'Open Sans', sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-display: optional;
}
#masthead .wrap {
  align-items: stretch;
}
@media print {
  #masthead .wrap {
    height: auto !important;
  }
}
#masthead .site-branding {
  display: flex;
  align-items: center;
}
#masthead .site-branding .site-title {
  padding: 10px 0;
}
#masthead .site-branding img {
  width: 195px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  #masthead .site-branding img {
    width: 150px;
  }
}
@media screen and (max-width: 759px) {
  #masthead .site-branding img {
    width: 20vw;
  }
}
@media print {
  #masthead .site-branding img {
    width: 100px;
  }
}
#masthead .nav-wrap {
  margin-right: -1.5em;
  padding-top: 0;
  flex-direction: column;
}
@media screen and (max-width: 759px) {
  #masthead .nav-wrap {
    margin-top: 10px;
  }
}
@media print {
  #masthead .nav-wrap {
    display: none;
  }
}
#masthead nav.secondary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0;
}
@media screen and (min-width: 760px) {
  #masthead nav.secondary {
    background-image: -webkit-linear-gradient(left, #fff, #f2f2f2);
    background-image: -o-linear-gradient(left, #fff, #f2f2f2);
    background-image: linear-gradient(to right, #fff, #f2f2f2);
    padding-right: 1em;
    height: 60px;
  }
}
#masthead nav.secondary li:not(:first-child)::before {
  content: '•';
  color: #666;
}
#masthead nav.secondary a {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  color: #000;
  transition: 0.1s all;
}
#masthead nav.secondary a:hover, #masthead nav.secondary a:focus, #masthead nav.secondary a:active {
  color: #da262c;
}
#masthead .site-search {
  width: 200px;
}
#masthead nav.primary {
  height: 108px;
  box-sizing: border-box;
  padding-top: 40px;
}
@media screen and (max-width: 759px) {
  #masthead nav.primary {
    padding-top: 5px;
  }
}
#masthead nav.primary ul.menu > li > a {
  padding: 0;
  margin: 0 0.5em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: -1px;
  color: #000;
  transition: all 0.1s;
}
#masthead nav.primary ul.menu > li > a:hover, #masthead nav.primary ul.menu > li > a:focus {
  color: #da262c;
}
#masthead nav.primary ul.menu > li.current-menu-item > a {
  color: #da262c;
  border-bottom: 3px solid #da262c;
}
@media screen and (min-width: 760px) {
  .webpilot-dropdown > ul > li li > a {
    color: #000 !important;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-display: optional;
    font-size: 0.9em;
  }
}
@media print {
  #menu-tab {
    display: none;
  }
}
#site-footer {
  background-image: url(img/bg-texture.png);
  background-color: #333;
  background-repeat: repeat-x;
  background-position: top center;
  background-repeat: repeat-x;
  padding-bottom: 40px;
  padding-top: 40px;
}
#site-footer .footer-widgets > .footer-column {
  flex: 1 1 0;
  padding-top: 1em;
}
#site-footer .footer-widgets > .footer-column section {
  padding: 0.2em 5% 1em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 285px;
}
#site-footer .footer-widgets h4.widget-title {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.7em;
  font-display: fallback;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  border: none;
  margin: -0.55em 0 0.7em 0;
  padding: 0;
}
#site-footer .widget_nav_menu ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
#site-footer .widget_nav_menu ul li {
  min-width: 150px;
  max-width: 200px;
  margin-bottom: 4px;
  flex: 1 1 33%;
}
@media screen and (max-width: 1279px) {
  #site-footer .widget_nav_menu ul li {
    width: 50%;
  }
}
#site-footer .widget_nav_menu ul li a {
  display: block;
  padding: 0.3em 0;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-display: optional;
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
}
#site-footer .widget_nav_menu ul li a:hover, #site-footer .widget_nav_menu ul li a:focus {
  text-decoration: underline;
}
#site-footer .sub-footer .credits {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.9em;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}
@media screen and (max-width: 759px) {
  #site-footer .sub-footer .credits {
    flex-direction: column;
  }
  #site-footer .sub-footer .credits > * {
    padding: 0.3em 0;
  }
}
@media screen and (min-width: 760px) {
  #site-footer .sub-footer .credits .primal-credit {
    text-align: right;
  }
}
#site-footer .sub-footer .credits .primal-credit a {
  color: #999;
  text-decoration: none;
}
#site-footer h5 {
  font-weight: normal;
  font-size: 0.95em;
  margin: 0 0 1em 0;
  padding: 0;
}
#site-footer .support-num {
  display: block;
  font-weight: 700;
  font-size: 1.2em;
  text-decoration: none;
  padding-bottom: 1.2em;
}
#site-footer .module-buttons .builder_button.red {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 0.4em 0.5em 0.6em 0.5em;
}
@media print {
  #site-footer {
    display: none;
  }
}
.webpilot-dropdown > ul > li li > a:hover, .webpilot-dropdown > ul > li li > a:focus {
  background: #da262c;
  color: #fff !important;
}
body, #body {
  background-color: #fff;
  background-image: url(img/body-bg.png);
  background-repeat: repeat-x;
  background-position: center top;
  color: #000;
}
@media print {
  body, #body {
    color: #000 !important;
    background: #fff !important;
  }
}
html, #site-footer {
  background-color: #333;
  color: #fff;
}
h1, .page-header .page-title {
  color: #da262c;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 4.5em;
  font-display: fallback;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  h1, .page-header .page-title {
    font-size: 3.5em;
  }
}
@media screen and (max-width: 759px) {
  h1, .page-header .page-title {
    font-size: 3em;
  }
}
.site-main a {
  color: #da262c;
}
#breadcrumbs {
  padding-top: 2em;
  padding-bottom: 1em;
  color: #888;
}
#breadcrumbs a {
  color: #888;
}
@media print {
  #breadcrumbs {
    font-size: 0.8em;
  }
}
dt {
  font-weight: bold;
  clear: both;
  float: left;
  min-width: 240px;
}
dd {
  margin: 0 1.5em 0;
}
.module-buttons .builder_button.red {
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
  padding: 0.6em 0.6em;
  background: #da262c;
}
.module-buttons .builder_button.red.small {
  font-size: 0.9em;
}
.page-section-nav {
  color: #fff;
  background-color: #333;
  background-image: url(img/footer-bg.png);
  background-repeat: repeat-x;
  padding: 2em 1em;
}
.page-section-nav .parent {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
  margin: 0 0 1em 0;
}
.page-section-nav a {
  color: #fff;
  text-decoration: none;
}
.page-section-nav a:visited {
  color: #ccc;
}
.wrap.with-sidebar #main {
  padding-right: 1.5em;
}
/* COMMUNITY PAGE */
body.page-id-52 h2 {
  font-family: 'DCC - Ash', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 3.5em;
  font-weight: 100;
  line-height: 0.75em;
}
body.page-id-52 h2 a {
  text-decoration: none !important;
  color: #333;
}
body.page-id-52 article figure {
  margin: 0;
}
body.page-id-52 article .post-content {
  background: #333 url('img/bg-texture.png');
  padding: 1em;
}
body.page-id-52 article .post-content time {
  color: #ccc;
  margin-bottom: 5px;
}
body.page-id-52 article .post-content h2.post-title {
  margin-top: 0;
  height: 48px;
  overflow: hidden;
  line-height: 95%;
}
body.page-id-52 article .post-content h2.post-title a {
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0;
}
body.page-id-52 article .post-content h2.post-title a:hover {
  text-decoration: underline !important;
}
/* SOCIAL PAGE */
/* GENERAL STYLES */
.social-block {
  margin: 0 0 1em 0;
}
/* OFFICAL FB SECTION */
.social-block.facebook-one {
  margin: 0 0 2em 0;
}
.social-block.facebook-one .social-block-content {
  padding: 20px 40px 40px 40px;
}
.social-block.facebook-one .social-block-content .social-block-text p {
  font-size: 1.5em;
  line-height: 1.25em;
}
@media screen and (max-width: 680px) {
  .social-block .social-block-content {
    padding: 20px;
  }
  .social-block.facebook-one .social-block-content {
    padding: 20px;
  }
  .social-block.facebook-one .social-block-content .social-block-text p {
    font-size: 1em;
    line-height: 1em;
  }
  .social-block.facebook-one .social-block-image {
    display: none !important;
  }
}
@media print {
  #back-to-top {
    display: none;
  }
}
.bg-texture {
  background-image: url(img/bg-texture.png);
  background-repeat: repeat-x;
  background-position: top center;
}
#menu-tab > span {
  color: #da262c !important;
}
.wrap video {
  max-width: 100%;
  height: auto;
}
#sidebar {
  padding-top: 5em;
  background-color: #f1f1f1;
  width: 300px;
}
#sidebar h2.widget-title {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.8em;
  font-display: fallback;
}
/** home */
body.home #body {
  background-position: 400px center;
}
body.home .cta-home-three-ctas .module-buttons .builder_button.red {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 0.4em 0.5em 0.6em 0.5em;
}
@media screen and (max-width: 759px) {
  body.home .cta-home-three-ctas .module-buttons .builder_button.red {
    display: block;
    margin: 0 0 0.5em 0;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
  }
}
@media screen and (max-width: 759px) {
  body.home .cta-home-three-ctas .subrow_inner {
    flex-direction: column-reverse;
    padding-bottom: 1em;
  }
  body.home .cta-home-three-ctas .module-buttons-item {
    display: block;
  }
  body.home .cta-home-three-ctas .module-image {
    margin-bottom: 0;
  }
}
body.home .cta-home-accessories, body.home .cta-home-newsletter {
  padding: 2.3em;
}
body.home .cta-home-accessories h3, body.home .cta-home-newsletter h3 {
  font-size: 3.2em;
  font-family: "DCC - Ash";
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 1px;
  color: #fff;
  line-height: 0.8em;
  margin-top: 0;
  margin-bottom: 0.3em;
}
body.home .cta-home-accessories .cta-text, body.home .cta-home-newsletter .cta-text {
  font-size: 1.2em;
  font-color: #fff;
  line-height: 1.1em;
  margin: 0 0 1em 0;
}
body.home .cta-home-accessories .module-buttons .builder_button.red, body.home .cta-home-newsletter .module-buttons .builder_button.red {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 0.4em 0.5em 0.6em 0.5em;
}
#homepage-video {
  margin-left: -3em;
  margin-right: -3em;
  background-color: #000;
}
@media screen and (max-width: 759px) {
  #homepage-video {
    margin-left: -1em;
    margin-right: -1em;
  }
}
#homepage-video div {
  margin: 0 auto;
  max-width: 1200px;
  max-height: 418px;
  line-height: 0;
}
#homepage-video div video {
  width: 100%;
  height: auto;
  padding: 0;
  max-height: 418px;
}
#homepage-video div img {
  display: none;
}
@media screen and (max-width: 759px) {
  #homepage-video div video {
    display: none;
  }
  #homepage-video div img {
    display: block;
    width: 100vw;
  }
}
.recipe-nav {
  width: 100%;
  padding-top: 0.5em;
  padding-bottom: 1.5em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 759px) {
  .recipe-nav {
    flex-wrap: wrap;
  }
}
@media print {
  .recipe-nav {
    display: none;
  }
}
.recipe-nav .button {
  font-size: 1em;
  line-height: 1.2em;
  padding: 0 1em;
  border-radius: 0.3333333333em;
  display: inline-block;
  background: #da262c;
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.2em 0 rgba(0, 0, 0, 0.2);
}
.recipe-nav .button span {
  display: inline-block;
  padding: 0.5em 0;
}
.recipe-nav .button i {
  display: inline-block;
  font-style: normal;
  padding: 0.5em 1em 0.5em 0;
  margin-right: 1em;
}
.recipe-nav .button.dropdown {
  width: auto;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.recipe-nav .button.dropdown i.icon {
  padding-left: 0.6666666667em;
  margin-left: 1em;
  padding-right: 0;
  margin-right: 0;
}
.recipe-nav .button.dropdown i.icon::before {
  font-size: 0.8em;
  content: ' ▼';
}
.recipe-nav .cat-dropdown {
  position: relative;
  flex: 1 1 auto;
}
@media screen and (min-width: 760px) {
  .recipe-nav .cat-dropdown a {
    margin-right: 0.5em;
  }
}
.recipe-nav .cat-dropdown .dropdown-menu {
  position: absolute;
  top: 34px;
  width: 100vw;
  max-width: 600px;
  z-index: 99;
  display: none;
  background-color: #555;
  background-image: url(img/bg-texture.png);
  background-repeat: repeat-x;
  background-position: top center;
  border-bottom: 1px solid #f1f1f1;
}
@media screen and (max-width: 759px) {
  .recipe-nav .cat-dropdown .dropdown-menu {
    left: -1em;
  }
}
.recipe-nav .cat-dropdown .dropdown-menu ul {
  margin: 0;
  padding: 1em 0.5em 0.5em 1em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@supports (display: grid) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  grid-gap: 5px;
  .recipe-nav .cat-dropdown .dropdown-menu ul > * {
    width: 100% !important;
    padding: 0 !important;
  }
}
.recipe-nav .cat-dropdown .dropdown-menu li {
  flex: 1 1 110px;
  display: flex;
  align-items: stretch;
  list-style: none;
  text-align: center;
  padding: 0 0.5em 0.5em 0;
  margin: 0;
}
.recipe-nav .cat-dropdown .dropdown-menu a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  padding: 0.75em 0;
  transition: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  min-height: 6em;
}
.recipe-nav .cat-dropdown .dropdown-menu a svg {
  padding-bottom: 0.3em;
  max-width: 100%;
  max-height: 2em;
  width: 100%;
  height: auto;
}
.recipe-nav .cat-dropdown .dropdown-menu a svg path {
  fill: #fff;
}
.recipe-nav .cat-dropdown .dropdown-menu a span.name {
  display: block;
  padding: 0 2px;
}
.recipe-nav .cat-dropdown .dropdown-menu a:hover, .recipe-nav .cat-dropdown .dropdown-menu a:focus, .recipe-nav .cat-dropdown .dropdown-menu a:active {
  border-color: #fff !important;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-9 svg {
  width: 50%;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-11 svg {
  width: 50%;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-15 svg {
  max-height: 2.5em;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-65 svg {
  max-height: 3em;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-105 svg {
  max-height: 2.5em;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-144 svg {
  max-height: 3em;
}
.recipe-nav .cat-dropdown .dropdown-menu .term-96 svg {
  max-height: 2.5em;
  padding-bottom: 0.5em;
}
.recipe-nav .submit-yours {
  flex: 1 1 auto;
}
@media screen and (max-width: 759px) {
  .recipe-nav .submit-yours {
    flex: 1 1 100%;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.recipe-nav .submit-yours a {
  display: block;
  background-color: #333;
}
.recipe-nav .submit-yours a span::before {
  content: '';
  background-image: url(img/icons/cookbook.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  float: left;
  display: inline-block;
  margin-right: 0.625em;
}
.recipe-nav .search {
  flex: 100 1 auto;
}
@media screen and (max-width: 759px) {
  .recipe-nav .search {
    flex: 0 0 100%;
  }
}
.recipe-nav .search #recipe-search {
  width: 100%;
  height: 2.2em;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}
.recipe-nav .search #recipe-search input[type=text] {
  width: 100%;
  max-width: 350px;
  min-width: 200px;
  font-size: 1.2em;
  padding: 0.5em 2.4em 0.5em 0.5em;
  border: 1px solid #555;
  border-radius: 0.3333333333em;
}
.recipe-nav .search #recipe-search input[type=submit] {
  width: 4.2em;
  background-image: url(../primal-webpilot/img/search.svg);
  background-size: 20px;
  background-color: #25d9d3;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 0.3333333333em;
  border: none;
  filter: invert(100%);
  margin-left: -4.28em;
}
.recipe-list {
  display: flex;
  flex-direction: column;
}
.recipe-list aside {
  width: 100vw;
  min-width: 150px;
}
@media screen and (max-width: 759px) {
  .recipe-list aside {
    margin-left: -1em;
  }
}
.recipe-list .main-col {
  width: 100%;
}
@media screen and (min-width: 760px) {
  .recipe-list {
    flex-direction: row;
  }
  .recipe-list aside {
    width: 25%;
    min-width: 150px;
  }
  .recipe-list .main-col {
    width: 75%;
  }
}
section.recipes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1em;
}
@supports (display: grid) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 233px;
  grid-gap: 10px;
  section.recipes > * {
    width: 100% !important;
    padding: 0 !important;
  }
}
@media screen and (min-width: 760px) {
  body.archive section.recipes {
    padding-left: 1em;
  }
}
body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe, body.page article.type-recipe, body.search-results article.type-recipe, body.single-recipe article.type-recipe {
  width: 25%;
  padding: 0 20px 20px 0;
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe, body.page article.type-recipe, body.search-results article.type-recipe, body.single-recipe article.type-recipe {
    width: 33.333%;
  }
}
@media screen and (min-width: 480px) and (max-width: 759px) {
  body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe, body.page article.type-recipe, body.search-results article.type-recipe, body.single-recipe article.type-recipe {
    padding: 0 0 20px 0;
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe, body.page article.type-recipe, body.search-results article.type-recipe, body.single-recipe article.type-recipe {
    padding: 0 0 20px 0;
    width: 100%;
  }
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap, body.post-type-archive-recipe article.type-recipe > .recipe-wrap, body.page article.type-recipe > .recipe-wrap, body.search-results article.type-recipe > .recipe-wrap, body.single-recipe article.type-recipe > .recipe-wrap {
  width: 100%;
  height: 233px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap a, body.post-type-archive-recipe article.type-recipe > .recipe-wrap a, body.page article.type-recipe > .recipe-wrap a, body.search-results article.type-recipe > .recipe-wrap a, body.single-recipe article.type-recipe > .recipe-wrap a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #333;
  background-image: url(img/bg-texture.png);
  background-repeat: repeat-x;
  background-position: top center;
  color: #fff;
  text-decoration: none;
  transition: none;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap a:hover .recipe-li-img, body.post-type-archive-recipe article.type-recipe > .recipe-wrap a:hover .recipe-li-img, body.page article.type-recipe > .recipe-wrap a:hover .recipe-li-img, body.search-results article.type-recipe > .recipe-wrap a:hover .recipe-li-img, body.single-recipe article.type-recipe > .recipe-wrap a:hover .recipe-li-img, body.tax-recipe-categories article.type-recipe > .recipe-wrap a:focus .recipe-li-img, body.post-type-archive-recipe article.type-recipe > .recipe-wrap a:focus .recipe-li-img, body.page article.type-recipe > .recipe-wrap a:focus .recipe-li-img, body.search-results article.type-recipe > .recipe-wrap a:focus .recipe-li-img, body.single-recipe article.type-recipe > .recipe-wrap a:focus .recipe-li-img, body.tax-recipe-categories article.type-recipe > .recipe-wrap a:active .recipe-li-img, body.post-type-archive-recipe article.type-recipe > .recipe-wrap a:active .recipe-li-img, body.page article.type-recipe > .recipe-wrap a:active .recipe-li-img, body.search-results article.type-recipe > .recipe-wrap a:active .recipe-li-img, body.single-recipe article.type-recipe > .recipe-wrap a:active .recipe-li-img {
  box-shadow: none;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap.has-img a, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.has-img a, body.page article.type-recipe > .recipe-wrap.has-img a, body.search-results article.type-recipe > .recipe-wrap.has-img a, body.single-recipe article.type-recipe > .recipe-wrap.has-img a {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap.has-img .recipe-li-img, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.has-img .recipe-li-img, body.page article.type-recipe > .recipe-wrap.has-img .recipe-li-img, body.search-results article.type-recipe > .recipe-wrap.has-img .recipe-li-img, body.single-recipe article.type-recipe > .recipe-wrap.has-img .recipe-li-img {
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap.has-img .info, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.has-img .info, body.page article.type-recipe > .recipe-wrap.has-img .info, body.search-results article.type-recipe > .recipe-wrap.has-img .info, body.single-recipe article.type-recipe > .recipe-wrap.has-img .info {
  background-color: #333;
  background-image: url(img/bg-texture.png);
  background-repeat: repeat-x;
  background-position: top center;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap.has-img a:hover .info, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.has-img a:hover .info, body.page article.type-recipe > .recipe-wrap.has-img a:hover .info, body.search-results article.type-recipe > .recipe-wrap.has-img a:hover .info, body.single-recipe article.type-recipe > .recipe-wrap.has-img a:hover .info, body.tax-recipe-categories article.type-recipe > .recipe-wrap.has-img a:focus .info, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.has-img a:focus .info, body.page article.type-recipe > .recipe-wrap.has-img a:focus .info, body.search-results article.type-recipe > .recipe-wrap.has-img a:focus .info, body.single-recipe article.type-recipe > .recipe-wrap.has-img a:focus .info, body.tax-recipe-categories article.type-recipe > .recipe-wrap.has-img a:active .info, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.has-img a:active .info, body.page article.type-recipe > .recipe-wrap.has-img a:active .info, body.search-results article.type-recipe > .recipe-wrap.has-img a:active .info, body.single-recipe article.type-recipe > .recipe-wrap.has-img a:active .info {
  background-color: #555;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap.no-img a:hover, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.no-img a:hover, body.page article.type-recipe > .recipe-wrap.no-img a:hover, body.search-results article.type-recipe > .recipe-wrap.no-img a:hover, body.single-recipe article.type-recipe > .recipe-wrap.no-img a:hover, body.tax-recipe-categories article.type-recipe > .recipe-wrap.no-img a:focus, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.no-img a:focus, body.page article.type-recipe > .recipe-wrap.no-img a:focus, body.search-results article.type-recipe > .recipe-wrap.no-img a:focus, body.single-recipe article.type-recipe > .recipe-wrap.no-img a:focus, body.tax-recipe-categories article.type-recipe > .recipe-wrap.no-img a:active, body.post-type-archive-recipe article.type-recipe > .recipe-wrap.no-img a:active, body.page article.type-recipe > .recipe-wrap.no-img a:active, body.search-results article.type-recipe > .recipe-wrap.no-img a:active, body.single-recipe article.type-recipe > .recipe-wrap.no-img a:active {
  background-color: #555;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .recipe-li-img, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .recipe-li-img, body.page article.type-recipe > .recipe-wrap .recipe-li-img, body.search-results article.type-recipe > .recipe-wrap .recipe-li-img, body.single-recipe article.type-recipe > .recipe-wrap .recipe-li-img {
  width: 100%;
  height: 160px;
  color: #fff;
  text-decoration: none;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info, body.page article.type-recipe > .recipe-wrap .info, body.search-results article.type-recipe > .recipe-wrap .info, body.single-recipe article.type-recipe > .recipe-wrap .info {
  padding: 10px 13.3333333333px;
  height: 73px;
  width: 100%;
  overflow: hidden;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info h2, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info h2, body.page article.type-recipe > .recipe-wrap .info h2, body.search-results article.type-recipe > .recipe-wrap .info h2, body.single-recipe article.type-recipe > .recipe-wrap .info h2 {
  margin: 0 0 5px 0;
  width: 100%;
  height: 50px;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
  line-height: 25px;
  letter-spacing: 0.0625em;
  text-overflow: '...';
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #fff;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info .tags, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info .tags, body.page article.type-recipe > .recipe-wrap .info .tags, body.search-results article.type-recipe > .recipe-wrap .info .tags, body.single-recipe article.type-recipe > .recipe-wrap .info .tags {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info .tags li, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info .tags li, body.page article.type-recipe > .recipe-wrap .info .tags li, body.search-results article.type-recipe > .recipe-wrap .info .tags li, body.single-recipe article.type-recipe > .recipe-wrap .info .tags li {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info .tags li a, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info .tags li a, body.page article.type-recipe > .recipe-wrap .info .tags li a, body.search-results article.type-recipe > .recipe-wrap .info .tags li a, body.single-recipe article.type-recipe > .recipe-wrap .info .tags li a {
  display: inline-block;
  margin: 6.6666666667px 6.6666666667px 0 0;
  padding: 0.1em 0.4em;
  border: 1px solid #77234b;
  text-transform: lowercase;
  text-decoration: none;
  font-size: 0.8em;
  color: #ccc;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info .tags li a:hover, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info .tags li a:hover, body.page article.type-recipe > .recipe-wrap .info .tags li a:hover, body.search-results article.type-recipe > .recipe-wrap .info .tags li a:hover, body.single-recipe article.type-recipe > .recipe-wrap .info .tags li a:hover, body.tax-recipe-categories article.type-recipe > .recipe-wrap .info .tags li a:focus, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info .tags li a:focus, body.page article.type-recipe > .recipe-wrap .info .tags li a:focus, body.search-results article.type-recipe > .recipe-wrap .info .tags li a:focus, body.single-recipe article.type-recipe > .recipe-wrap .info .tags li a:focus {
  border-color: #da262c;
  background: #da262c;
  color: #fff;
}
body.tax-recipe-categories article.type-recipe > .recipe-wrap .info .tags li a:active, body.post-type-archive-recipe article.type-recipe > .recipe-wrap .info .tags li a:active, body.page article.type-recipe > .recipe-wrap .info .tags li a:active, body.search-results article.type-recipe > .recipe-wrap .info .tags li a:active, body.single-recipe article.type-recipe > .recipe-wrap .info .tags li a:active {
  border-color: #77234b;
  background: #77234b;
  color: #fff;
}
body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe {
  width: 33.333%;
}
@media screen and (min-width: 760px) and (max-width: 1023px) {
  body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe {
    width: 50%;
  }
}
@media screen and (max-width: 759px) {
  body.tax-recipe-categories article.type-recipe, body.post-type-archive-recipe article.type-recipe {
    width: 100%;
  }
}
body.post-type-archive-recipe .feature-share-button {
  padding-top: 1.5em;
}
body.post-type-archive-recipe .feature-share-button .module-buttons-item {
  display: block;
}
body.post-type-archive-recipe .feature-share-button .module-buttons-item a {
  display: block;
  text-align: center;
  padding: 0.625em;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
}
body.post-type-archive-recipe .feature-share-button .module-buttons-item a span {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
}
body.post-type-archive-recipe .feature-share-button .module-buttons-item a span::before {
  content: '';
  background-image: url(img/icons/cookbook.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  float: left;
  display: inline-block;
  margin-right: 0.625em;
}
body.search-results #main #searchform {
  padding-bottom: 2em;
}
body.search-results #main #searchform input[type=search] {
  min-width: 200px;
}
body.search-results #main section.recipes.summaries {
  padding-left: 0;
}
article.single.recipe {
  padding-bottom: 1em;
  border-bottom: 2px solid #d5d5d5;
}
article.single.recipe header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 1em;
  border-bottom: 2px solid #d5d5d5;
}
article.single.recipe header .col-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
article.single.recipe header .section-photo {
  display: none;
}
@media screen and (min-width: 1280px) {
  article.single.recipe header .col-1 {
    width: 33%;
    padding-right: 1em;
    justify-content: center;
  }
  article.single.recipe header .col-1 .section-photo {
    display: none;
  }
  article.single.recipe header .section-photo {
    display: block;
    width: 67%;
  }
}
@media screen and (max-width: 1279px) {
  article.single.recipe header .col-1 .section-photo {
    display: block;
  }
  article.single.recipe header > .section-photo {
    display: none;
  }
}
article.single.recipe header .page-title {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 4.5em;
  font-display: fallback;
}
article.single.recipe header .page-title.length-long {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 4em;
  font-display: fallback;
}
article.single.recipe header .page-title.length-verylong {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 3.5em;
  font-display: fallback;
}
article.single.recipe header .page-title.length-short {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 6.5em;
  font-display: fallback;
}
@media screen and (max-width: 759px) {
  article.single.recipe header .page-title {
    font-family: 'DCC - Ash', sans-serif;
    line-height: 0.85em;
    font-weight: 100 !important;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 2em;
    font-display: fallback;
  }
}
article.single.recipe .section-photo img {
  width: 100%;
  min-width: 280px;
  max-width: 100%;
  height: auto;
}
article.single.recipe > div h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding: 0.5em 0;
}
@media print {
  article.single.recipe > div h3 {
    margin: 0;
    padding-top: 0;
  }
}
article.single.recipe .section-meta {
  padding: 0.5em 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  article.single.recipe .section-meta {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  article.single.recipe .section-meta .recipe-meta {
    order: 1;
  }
  article.single.recipe .section-meta .tags {
    order: 2;
  }
  article.single.recipe .section-meta .share-print {
    order: 3;
  }
}
article.single.recipe .section-meta .recipe-meta {
  width: 100%;
}
article.single.recipe .section-meta .recipe-meta ul {
  margin: 0 0 1em 0;
  padding: 0;
}
article.single.recipe .section-meta .recipe-meta ul li {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  article.single.recipe .section-meta .recipe-meta ul li:nth-child(2)::before {
    content: '• ';
    padding-left: 0.3em;
  }
  article.single.recipe .section-meta .recipe-meta ul li:nth-child(3) {
    display: block;
  }
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  article.single.recipe .section-meta .recipe-meta ul li:not(:first-child)::before {
    content: '• ';
    padding-left: 0.3em;
  }
}
article.single.recipe .section-meta .share-print {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 1280px) {
  article.single.recipe .section-meta .share-print {
    padding-top: 1em;
  }
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  article.single.recipe .section-meta .share-print {
    flex-direction: row-reverse;
  }
}
article.single.recipe .section-meta .share-print .share {
  display: flex;
  justify-content: flex-start;
}
article.single.recipe .section-meta .share-print .share > * {
  margin-left: 0.5em;
}
@media print {
  article.single.recipe .section-meta .share-print .share {
    display: none;
  }
}
article.single.recipe .section-meta .share-print .print {
  color: #000;
  text-decoration: none;
  transition: none;
  padding: 0 1em;
}
article.single.recipe .section-meta .share-print .print:hover, article.single.recipe .section-meta .share-print .print:focus {
  color: #da262c;
}
article.single.recipe .section-meta .share-print .print:hover svg path, article.single.recipe .section-meta .share-print .print:focus svg path {
  fill: #da262c;
}
article.single.recipe .section-meta .share-print .print svg {
  vertical-align: top;
  width: 20px;
  height: auto;
  margin-right: 5px;
}
article.single.recipe .section-meta .share-print .print svg path {
  fill: #000;
}
@media screen and (min-width: 1280px) {
  article.single.recipe .section-meta .tags {
    padding: 1em 0;
  }
}
@media screen and (max-width: 759px) {
  article.single.recipe .section-meta .tags {
    padding-top: 1em;
  }
}
article.single.recipe .section-meta .tags ul {
  margin: 0;
  padding: 0;
  display: inline;
}
article.single.recipe .section-meta .tags ul li {
  list-style: none;
  display: inline-block;
  padding-left: 0.5em;
}
article.single.recipe .section-meta .tags ul li a {
  display: block;
  border: 1px solid #77234b;
  padding: 0.4em 0.4em 0.2em 0.4em;
  text-transform: lowercase;
  text-decoration: none;
  color: #000;
}
article.single.recipe .recipe-content {
  padding: 1em 0 0.5em;
  border-bottom: 2px solid #d5d5d5;
  overflow: auto;
}
article.single.recipe .recipe-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1279px) {
  article.single.recipe .recipe-main .related-products {
    border-top: 2px solid #d5d5d5;
  }
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  article.single.recipe .recipe-main {
    flex-direction: row;
    flex-wrap: wrap;
  }
  article.single.recipe .recipe-main .ingredients {
    width: 40%;
    padding-right: 1em;
    padding-bottom: 1em;
  }
  article.single.recipe .recipe-main .directions {
    padding-left: 1em;
    padding-bottom: 1em;
    width: 60%;
  }
  article.single.recipe .recipe-main .related-products {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  article.single.recipe .recipe-main {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 2em 0 1em 0;
  }
  article.single.recipe .recipe-main > div {
    padding: 0 2em;
  }
  article.single.recipe .recipe-main .ingredients {
    padding-left: 0;
    width: 30%;
  }
  article.single.recipe .recipe-main .directions {
    width: 50%;
  }
  article.single.recipe .recipe-main .related-products {
    padding: 0;
    width: 20%;
  }
}
article.single.recipe .recipe-main .related-products ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  article.single.recipe .recipe-main .related-products ul {
    flex-direction: row;
  }
  article.single.recipe .recipe-main .related-products ul li {
    padding: 0 1em 0 0;
  }
}
article.single.recipe .recipe-main .related-products ul li {
  display: block;
  list-style: none;
  padding: 0 0 1em 0;
  margin: 0;
}
article.single.recipe .recipe-main .related-products ul li a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  text-decoration: none;
  color: #555;
}
article.single.recipe .recipe-main .related-products ul li a img {
  max-width: 25%;
  width: 100%;
  height: auto;
}
article.single.recipe .recipe-main .related-products ul li a span {
  padding-left: 0.5em;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.6em;
  font-display: fallback;
  color: inherit;
}
article.single.recipe .recipe-main .related-products ul li a:hover, article.single.recipe .recipe-main .related-products ul li a:focus {
  color: #da262c;
}
body.single-recipe .related-recipes h3 {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.2em;
  font-display: fallback;
  color: #555;
  padding: 0 0 0.5em 0;
  margin: 0;
}
body.single-recipe .related-recipes .list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (min-width: 1280px) {
  body.single-recipe .related-recipes .list article:last-child {
    padding-right: none;
  }
}
@media screen and (min-width: 760px) and (max-width: 1023px) {
  body.single-recipe .related-recipes .list {
    flex-wrap: wrap;
  }
  body.single-recipe .related-recipes .list article {
    width: 50%;
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  body.single-recipe .related-recipes .list article {
    flex: 0 0 33%;
  }
  body.single-recipe .related-recipes .list article:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 759px) {
  body.single-recipe .related-recipes .list {
    flex-direction: column;
  }
}
.featured-recipe {
  text-decoration: none;
}
.featured-recipe figure {
  margin: 0;
  background-position: center center;
  background-size: cover;
}
.featured-recipe .fade {
  height: 360px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
}
.featured-recipe .fade figcaption {
  color: #fff;
  padding: 0.8em;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.4em;
  font-display: fallback;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
}
.featured-recipe .fade figcaption span {
  font-weight: 600;
}
.recipe-main-cats {
  background-color: #333;
  background-image: url(img/bg-texture.png);
  background-repeat: repeat-x;
  background-position: top center;
  color: #fff;
  padding: 1.5em 1em 1em 1.5em;
  margin-bottom: 1.5em;
}
.recipe-main-cats h3 {
  margin: 0 0.5em 0.5em 0;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.4em;
  font-display: fallback;
  font-weight: normal;
  line-height: 1em;
}
.recipe-main-cats h3 a {
  color: #f1f1f1;
  text-decoration: none;
}
.recipe-main-cats h3 svg {
  float: right;
  max-width: 1.5em;
  max-height: 1em;
}
.recipe-main-cats h3 svg path {
  fill: #f1f1f1;
}
.recipe-main-cats h4 {
  font-family: 'Open Sans', sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-display: optional;
  text-transform: uppercase;
  padding: 0 0 0.5em 0;
  margin: 0 0 1em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.recipe-main-cats h4 a {
  display: block;
  color: #f1f1f1;
  text-decoration: none;
  opacity: 0.6;
}
.recipe-main-cats h4 a:hover, .recipe-main-cats h4 a:focus, .recipe-main-cats h4 a:active {
  opacity: 1;
}
.recipe-main-cats ul.recipe-cat-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@supports (display: grid) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(67px, 1fr));
  grid-gap: 4px;
  .recipe-main-cats ul.recipe-cat-list > * {
    width: 100% !important;
    padding: 0 !important;
  }
}
.recipe-main-cats ul.recipe-cat-list li {
  flex: 0 0 33%;
  display: flex;
  align-items: stretch;
  list-style: none;
  text-align: center;
  padding: 0 0.5em 0.5em 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 760px) and (max-width: 1279px) {
  .recipe-main-cats ul.recipe-cat-list li {
    flex: 0 0 50%;
  }
}
.recipe-main-cats ul.recipe-cat-list a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  padding: 0.75em 0;
  transition: none;
  border: 1px solid #666;
  width: 100%;
  min-height: 6em;
}
.recipe-main-cats ul.recipe-cat-list a svg {
  padding-bottom: 0.3em;
  max-width: 100%;
  max-height: 2em;
  width: 100%;
  height: auto;
}
.recipe-main-cats ul.recipe-cat-list a svg path {
  fill: #fff;
}
.recipe-main-cats ul.recipe-cat-list a span.name {
  display: block;
  padding: 0 2px;
}
.recipe-main-cats ul.recipe-cat-list a:hover, .recipe-main-cats ul.recipe-cat-list a:focus, .recipe-main-cats ul.recipe-cat-list a:active {
  border-color: #fff !important;
}
.recipe-main-cats ul.recipe-cat-list a:visited {
  color: #ccc;
}
.recipe-main-cats .current a {
  color: #da262c !important;
  border-color: #da262c !important;
}
.recipe-main-cats .term-9 svg {
  width: 50%;
}
.recipe-main-cats .term-11 svg {
  width: 50%;
}
.recipe-main-cats .term-15 svg {
  max-height: 2.5em;
}
.recipe-main-cats .term-65 svg {
  max-height: 3em;
}
.recipe-main-cats .term-105 svg {
  max-height: 2.5em;
}
.recipe-main-cats .term-144 svg {
  max-height: 3em;
}
.recipe-main-cats .term-96 svg {
  max-height: 2.5em;
  padding-bottom: 0.5em;
}
.recipe-list aside > * {
  margin-top: 0;
  margin-bottom: 1em;
}
.recipe-list aside .widget_text {
  padding: 1.5em;
  border: 1px solid #f1f1f1;
  font-family: 'Open Sans', sans-serif;
}
.recipe-list aside .widget_text h3.widget-title {
  font-size: 1em;
  line-height: 1.3em;
  font-weight: 700;
  margin-top: 0;
}
.type-product .cart, .type-product .add_to_cart_button {
  display: none;
}
.woocommerce ul.products li.product .button.ajax_add_to_cart {
  display: none;
}
#tab-additional_information > h2 {
  display: none;
}
#container {
  max-width: 1200px;
  margin: 0 auto;
}
#container #content {
  padding-top: 2em;
}
.woocommerce ul.products li.product .price {
  display: none !important;
}
body {
  /* HIDE FOR NOW */
}
body .term-description {
  letter-spacing: -1px;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 760px) {
  body .term-description {
    font-size: 1.9em;
  }
}
body .woocommerce-result-count, body .woocommerce-ordering {
  display: none;
}
body ul.products li {
  flex: 0 0 22.9%;
  box-sizing: border-box;
  float: none !important;
  display: flex !important;
  float: none;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  border: solid 1px #999;
}
body ul.products li.product-category {
  flex: 0 0 17.9%;
}
body ul.products li a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  width: 100%;
}
body ul.products li a.button {
  display: none !important;
}
body ul.products li a span.product-image, body ul.products li a span.cat-image {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 1px !important;
}
body ul.products li a span.product-image img, body ul.products li a span.cat-image img {
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 0 !important;
  padding: 25px !important;
}
body ul.products li h2 {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(img/bg-texture.png);
  background-color: #333;
  background-repeat: repeat-x;
  background-position: top center;
  text-align: center;
  color: #fff;
  padding: 0 10px !important;
  margin: 0 !important;
  font-size: 1.7em !important;
  line-height: 90%;
  text-transform: uppercase;
  font-family: "DCC - Ash";
  font-weight: 100;
  letter-spacing: 1px;
}
@media screen and (max-width: 759px) {
  body ul.products li h2 {
    font-size: 1.4em !important;
  }
}
body ul.products li h2 mark {
  background: none;
  color: #fff;
}
/* CTA WHERE TO BUY */
.cta_where-to-buy {
  background: #db262d url('/wp-content/uploads/2017/11/cta_bg-red-map1.jpg') no-repeat;
  background-size: 100%;
  background-position: right top;
  padding: 65px 80px 65px 80px;
  margin: 0 auto;
  max-width: 1200px;
}
.cta_where-to-buy .big-text {
  font-size: 3.6em;
  color: #fff;
  text-transform: uppercase;
  float: left;
  font-family: "DCC - Ash";
  letter-spacing: 1px;
}
.cta_where-to-buy .cta-buttons {
  float: right;
  margin: 10px 0 0 0;
}
.cta_where-to-buy .cta-buttons a.btn-one, .cta_where-to-buy .cta-buttons a.btn-two {
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  margin: 0 0 0 50px;
  display: block;
  color: #db262d;
  text-decoration: none;
  float: left;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: -1px;
}
body.woocommerce .related.products {
  background-color: #fff;
  background-image: url(img/body-bg.png);
  background-repeat: repeat-x;
  background-position: center top;
  padding: 2.1428571429em 1.5em 6em;
  margin-top: 0;
  margin-left: -1.5em;
  margin-right: -1.5em;
}
body.woocommerce .related.products h2 {
  margin-top: 0;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 3em;
  font-display: fallback;
}
body.woocommerce .related.products ul.products {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
body.woocommerce .related.products ul.products li.product {
  flex: 0 0 22%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  margin: 0 3% 0 0 !important;
  padding: 0;
  border: 0;
}
body.woocommerce .related.products ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 1px;
}
body.woocommerce .related.products ul.products li.product a.woocommerce-LoopProduct-link img {
  max-width: 100%;
  padding: 10px 15px;
}
body.woocommerce .related.products ul.products li.product a.button {
  display: none;
}
@media screen and (max-width: 759px) {
  body.woocommerce .related.products ul.products {
    flex-direction: column;
  }
  body.woocommerce .related.products ul.products li.product {
    flex: 0 0 auto;
    width: 100%;
  }
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 0;
  padding-left: 5px;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0;
  margin-right: 0.5em;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
  font-weight: bold !important;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:not(.active) {
  background-color: #333;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:not(.active) a {
  color: #fff;
}
body.woocommerce-page div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  background-color: #fff;
  padding: 2em 1em;
  border: 1px solid #d3ced2;
  border-top: none;
}
.woocommerce table.shop_attributes th {
  text-align: left;
  width: 30%;
}
.woocommerce table.shop_attributes td {
  width: 70%;
}
body.woocommerce-page.tax-product_cat ul.products, body.post-type-archive-product ul.products {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -5px !important;
}
body.woocommerce-page.tax-product_cat ul.products::before, body.post-type-archive-product ul.products::before {
  display: none;
}
body.woocommerce-page.tax-product_cat ul.products li, body.post-type-archive-product ul.products li {
  flex: 0 1 290px;
  flex-direction: row;
  justify-content: flex-end;
  margin: 5px !important;
}
body.woocommerce-page.tax-product_cat ul.products > *, body.post-type-archive-product ul.products > * {
  /* undo flexbox padding */
  width: 100% !important;
}
@supports (display: grid) {
  body.woocommerce-page.tax-product_cat ul.products, body.post-type-archive-product ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 10px;
  }
}
.woocommerce-loop-category__title .count {
  display: none;
}
body.woocommerce-page .products .product a.button.product_type_variable {
  display: none !important;
}
.price, .add_to_cart_button {
  display: none !important;
}
@media screen and (min-width: 760px) {
  .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 30% !important;
  }
  .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 65% !important;
  }
}
.woocommerce #content {
  background: #fff;
  padding-right: 1.5em;
  margin-right: -1.5em;
  padding-left: 1.5em;
  margin-left: -1.5em;
}
.prml-product-video-feature {
  margin: 0;
  width: 360px;
  float: left;
}
.prml-product-video-feature video {
  max-width: 100%;
  height: auto;
}
.woocommerce .woocommerce-breadcrumb {
  padding-top: 1em !important;
}
.post-type-archive-primal_event #body > .wrap, .tax-primal_event_cat #body > .wrap, .tax-primal_event_region #body > .wrap, .single-primal_event #body > .wrap {
  flex-direction: column;
}
@media screen and (max-width: 759px) {
  .post-type-archive-primal_event #body > .wrap .events-header .widget_primalevents_submit, .tax-primal_event_cat #body > .wrap .events-header .widget_primalevents_submit, .tax-primal_event_region #body > .wrap .events-header .widget_primalevents_submit, .single-primal_event #body > .wrap .events-header .widget_primalevents_submit {
    display: none;
  }
}
.post-type-archive-primal_event .cols, .tax-primal_event_cat .cols, .tax-primal_event_region .cols, .single-primal_event .cols {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.post-type-archive-primal_event .cols aside, .tax-primal_event_cat .cols aside, .tax-primal_event_region .cols aside, .single-primal_event .cols aside {
  flex: 0 1 250px;
  padding-top: 1em;
  padding-right: 1.5em;
}
@media screen and (max-width: 759px) {
  .post-type-archive-primal_event .cols aside, .tax-primal_event_cat .cols aside, .tax-primal_event_region .cols aside, .single-primal_event .cols aside {
    flex: 1 1 100%;
    padding-top: 1em;
    padding-right: 0;
  }
}
.post-type-archive-primal_event .cols main .page-header h1, .tax-primal_event_cat .cols main .page-header h1, .tax-primal_event_region .cols main .page-header h1, .single-primal_event .cols main .page-header h1 {
  color: #333;
  font-size: 3em;
}
.events-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 759px) {
  .events-header {
    flex-direction: column;
  }
}
.events-header .widget_primalevents_submit {
  flex: 0 0 190px;
}
a.featured-event {
  text-decoration: none !important;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  width: 100%;
  background-size: cover;
  background-position: center;
}
a.featured-event .fadebg {
  min-height: 220px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 95%);
  color: #fff;
  padding: 0.75em;
}
a.featured-event .fadebg .date {
  background: #da262c;
  padding: 0.375em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
a.featured-event .fadebg .date .month {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.2em;
  font-display: fallback;
}
a.featured-event .fadebg .date .day {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2em;
  font-display: fallback;
}
a.featured-event .fadebg .content {
  padding-left: 0.75em;
}
a.featured-event .fadebg h3 {
  margin: 0;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2em;
  font-display: fallback;
}
.events.sidebar > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.events.sidebar > ul > li {
  margin-top: 0.9em;
  padding: 1em;
}
.events.sidebar ul {
  margin: 0;
  padding: 0;
}
.events.sidebar li {
  list-style: none;
}
.widget_primalevents_submit {
  background-image: url(img/bg-texture.png);
  background-color: #333;
  background-repeat: repeat-x;
  background-position: top center;
  background-repeat: repeat-x;
  color: #fff;
  padding: 1em;
}
.widget_primalevents_submit .content-wrap {
  margin: 0 auto;
  width: 10em;
  text-align: center;
}
.widget_primalevents_submit h4 {
  margin: 0;
}
.widget_primalevents_submit h4 > div:first-child {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2em;
  font-display: fallback;
}
.widget_primalevents_submit h4 > div {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 4.5em;
  font-display: fallback;
}
.widget_primalevents_submit .desc {
  font-size: 0.9em;
  width: 100%;
}
.widget_primalevents_submit .submit-event {
  display: inline-block;
  padding: 0.3em 0.5em;
  background: #da262c;
  color: #fff;
  text-decoration: none;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3em;
  font-display: fallback;
}
.widget_primalevents_submit .submit-event svg {
  width: 0.8em;
  margin-right: 0.3em;
  vertical-align: top;
}
.widget_primalevents_submit .submit-event svg g {
  stroke: #fff;
}
.widget_primalevents_nav {
  background-image: url(img/bg-texture.png);
  background-color: #333;
  background-repeat: repeat-x;
  background-position: top center;
  background-repeat: repeat-x;
  color: #fff;
}
.widget_primalevents_nav a {
  color: #fff;
}
.widget_primalevents_nav .upcoming-link {
  display: block;
  margin: -1em -1em 1em -1em;
  padding: 0;
  border-bottom: 3px solid #fff;
}
.widget_primalevents_nav .upcoming-link a {
  padding: 1em;
  display: block;
  text-decoration: none;
}
.widget_primalevents_nav h4 {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.7em;
  font-display: fallback;
  margin: 0;
  padding-bottom: 0.5em;
}
.widget_primalevents_nav ul {
  margin: 0;
  list-style: none;
}
.widget_primalevents_nav .upcoming-events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.widget_primalevents_nav .upcoming-events > li {
  flex: 0 0 4em;
  padding-right: 0.4em;
}
.widget_primalevents_nav .upcoming-events > li a {
  display: block;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3em;
  font-display: fallback;
  text-decoration: none;
  text-align: center;
  padding: 0.2em 0.2em;
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.widget_primalevents_nav .upcoming-events > li a:hover, .widget_primalevents_nav .upcoming-events > li a:focus {
  color: #fff;
  border-color: #fff;
  background: #000;
}
.widget_primalevents_nav dl.event-archives {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -0.2em;
  margin-right: -0.2em;
}
.widget_primalevents_nav dl.event-archives dt, .widget_primalevents_nav dl.event-archives dd {
  padding-right: 0.2em;
  padding-left: 0.2em;
}
.widget_primalevents_nav dl.event-archives a {
  display: block;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3em;
  font-display: fallback;
  text-decoration: none;
  text-align: center;
  padding: 0.2em 0.2em;
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.widget_primalevents_nav dl.event-archives a:hover, .widget_primalevents_nav dl.event-archives a:focus {
  color: #000 !important;
  border-color: #fff;
  background: #fff;
}
.widget_primalevents_nav dl.event-archives > .year {
  flex: 0 0 33%;
  padding-top: 0.3em;
  padding-bottom: 0.2em;
  min-width: 33%;
  float: none;
  clear: none;
}
.widget_primalevents_nav dl.event-archives > .months {
  display: none;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100%;
  margin: 0;
}
.widget_primalevents_nav dl.event-archives > .months > div {
  margin: 0 -1em;
  padding: 1em;
  background-color: #da262c;
}
.widget_primalevents_nav dl.event-archives > .months > div > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: -0.2em;
  padding: 0;
}
.widget_primalevents_nav dl.event-archives > .months li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-basis: 33%;
  flex-grow: 0;
  flex-shrink: 0;
}
.widget_primalevents_nav dl.event-archives > .months a {
  display: block;
  padding: 0.2em 0.4em;
  margin: 0.2em;
  color: #fff;
  border-color: #fff;
}
.widget_primalevents_nav dl.event-archives > .months a:hover, .widget_primalevents_nav dl.event-archives > .months a:focus {
  color: #da262c !important;
}
.widget_primalevents_nav dl.event-archives > .months .active a {
  background-color: #fff;
  color: #da262c;
}
.widget_primalevents_nav dl.event-archives > .year.active {
  padding-bottom: 0;
}
.widget_primalevents_nav dl.event-archives > .year.active a {
  background-color: #da262c;
  border-color: #da262c;
  color: #fff;
  padding-bottom: 0.4em;
}
.widget_primalevents_nav dl.event-archives > .year.active + .months {
  display: block;
}
.widget_primalevents_nav a.archive-link {
  display: block;
  margin-top: 1em;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9em;
  font-display: fallback;
  text-decoration: none;
  color: #ccc;
}
.widget_primalevents_categories {
  background: #ebebeb;
}
.widget_primalevents_categories h4 {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3em;
  font-display: fallback;
  margin: 0;
  color: #333;
}
.widget_primalevents_categories li {
  margin: 0;
}
.widget_primalevents_categories a {
  display: block;
  border-top: 1px solid #d8d8d8;
  padding-top: 0.5em;
  margin-top: 0.5em;
  color: #333;
  text-decoration: none;
  font-size: 0.9em;
}
.widget_primalevents_regions {
  background: #ebebeb;
}
.widget_primalevents_regions h4 {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3em;
  font-display: fallback;
  margin: 0;
  color: #333;
}
.widget_primalevents_regions li {
  margin: 0;
}
.widget_primalevents_regions > ul > li {
  margin: 0;
  padding-top: 0.5em;
  border-top: 1px solid #d8d8d8;
  margin-top: 0.5em;
}
.widget_primalevents_regions > ul > li > a {
  text-transform: uppercase;
}
.widget_primalevents_regions > ul > li .children a {
  font-size: 0.8em;
}
.widget_primalevents_regions a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 0.9em;
}
.single-primal_event #main h4 {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.4em;
  font-display: fallback;
}
.events-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1rem;
}
.events-list > * {
  flex: 0 0 100%;
  padding: 0 !important;
}
.events-list h3.month {
  width: 100%;
  margin: 1em 0 0.3em 0;
  padding: 0;
  color: #555;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
}
.events-list h2.entry-title {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.8em;
  font-display: fallback;
}
.events-list article.primal_event {
  width: 100%;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.events-list article.primal_event a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  text-decoration: none;
  color: #333;
  background-color: #f1f1f1;
}
.events-list article.primal_event a:hover, .events-list article.primal_event a:focus {
  background-color: #e4e4e4;
}
.events-list article.primal_event a:hover h2.entry-title, .events-list article.primal_event a:focus h2.entry-title {
  color: #000;
}
.events-list article.primal_event a:hover .arrow, .events-list article.primal_event a:focus .arrow {
  opacity: 1;
}
.events-list article.primal_event .event-date {
  flex: 0 0 3.5rem;
  background: #da262c;
  color: #fff;
  padding: 0.375em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}
.events-list article.primal_event .event-date .month {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.2em;
  font-display: fallback;
}
.events-list article.primal_event .event-date .day {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2em;
  font-display: fallback;
}
.events-list article.primal_event .entry-header {
  flex: 1 1 auto;
  padding: 0.5em 0.5em 0.5em 0.8em;
  box-sizing: border-box;
}
.events-list article.primal_event .entry-header h2.entry-title {
  margin: 0;
  padding: 0;
}
.events-list article.primal_event .entry-header .excerpt {
  font-size: 0.8em;
}
.events-list article.primal_event .arrow {
  flex: 0 0 1em;
  margin-top: -0.2em;
  font-size: 3em;
  line-height: 1em;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  opacity: 0.5;
}
.events-list article.primal_event .post-thumbnail {
  float: right;
  margin-left: 1em;
}
.single-primal_event .entry-title {
  margin-bottom: 0.5rem;
}
.single-primal_event .event-date {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
}
.single-primal_event .event-venue {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
  margin-bottom: 0.5rem;
  color: #555;
}
.single-primal_event .post-thumbnail.default {
  background: #ddd;
  padding: 2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 0;
}
.single-primal_event .post-thumbnail.default img {
  height: auto;
  width: 200px;
  opacity: 0.1;
}
.single-primal_event .entry-content {
  margin: 2rem 0;
}
.single-upcoming-events {
  padding-top: 2em;
}
.upcoming-events-footer {
  margin-top: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.upcoming-events-footer li {
  list-style: none;
  flex: 0 0 3.5rem;
  padding-left: 0.6em;
}
.upcoming-events-footer li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0.2em 0.4em;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.4em;
  font-display: fallback;
}
.upcoming-events-footer li a:hover, .upcoming-events-footer li a:focus {
  background: #da262c;
  color: #fff;
}
.upcoming-events-footer li a:active {
  background: #000;
  color: #fff;
}
.upcoming-events-footer li.year {
  flex: 0 0 3.5rem;
  padding: 0.2em 0 0.2em 0.4em;
  text-align: right;
  color: #555;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.4em;
  font-display: fallback;
}
body.page-id-12589 #regform ul.fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 2em 0;
  padding: 0;
}
body.page-id-12589 #regform ul.fields li {
  flex: 0 0 47%;
  display: flex;
  flex-direction: column;
}
body.page-id-12589 #regform ul.fields li input[type=text], body.page-id-12589 #regform ul.fields li input[type=email] {
  font-size: 1.2rem;
  height: 1.5em;
}
body.page-id-12589 #regform .toolbar {
  padding: 1em 0;
  text-align: center;
}
body.page-id-12589 #regform .submit.button {
  background: #333;
  color: #fff;
  text-align: center;
  border: none;
  padding: 0.5em 1em;
  margin: 0 auto;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.9em;
  font-weight: 100 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-display: fallback;
  font-weight: bold !important;
}
.faq-list input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.faq-list .questions {
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.faq-list section {
  counter-reset: faq;
}
.faq-list section > input:checked ~ .questions {
  height: auto;
  visibility: visible;
}
.faq-list h2 {
  margin-top: 0.2em;
  margin-bottom: 0;
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2em;
  font-display: fallback;
}
.faq-list h2 > * {
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 759px) {
  .faq-list h2 {
    margin-left: -1em;
    margin-right: -1em;
  }
  .faq-list h2 label {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.faq-list h2 label {
  color: #fff;
  background: #666;
  display: block;
  cursor: pointer;
}
.faq-list h2 label::before {
  content: '+';
  display: block;
  float: right;
  font-size: 2rem;
  vertical-align: top;
}
.faq-list h2 span {
  background: #333;
  color: #fff;
  display: none;
}
@media screen and (min-width: 1280px) {
  .faq-list input {
    display: none;
  }
  .faq-list h2 span {
    display: block;
  }
  .faq-list h2 label {
    display: none;
  }
  .faq-list .questions {
    visibility: visible !important;
    height: auto !important;
  }
}
.faq-list h2 label:hover, .faq-list h2 label:focus {
  background-color: #999;
}
.faq-list section > input:focus ~ h2 label {
  outline: 1px dotted #da262c;
}
.faq-list section > input:checked ~ h2 label {
  background-color: #333;
}
.faq-list section > input:checked ~ h2 label::before {
  content: '–';
}
.faq-list article {
  counter-increment: faq;
  padding: 0.5em 0;
}
@media screen and (min-width: 760px) {
  .faq-list article {
    padding: 0.5em 0 0.5em 0.7em;
  }
}
.faq-list article h3 {
  margin: 0;
  line-height: 0.85em;
}
.faq-list article h3 label {
  font-family: 'Open Sans', sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-display: optional;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .faq-list article h3 label {
    font-size: 1.2rem;
  }
}
.faq-list article h3 label::before {
  content: counter(faq,decimal) ". ";
  display: inline-block;
}
@media screen and (min-width: 1280px) {
  .faq-list article h3 label::before {
    width: 1.5em;
    text-align: right;
    margin-right: 0.3em;
  }
}
.faq-list article h3 label::after {
  content: " [+]";
  color: #da262c;
}
.faq-list article input:focus ~ h3 label {
  outline: 1px dotted #da262c;
}
.faq-list article .answer {
  font-family: 'Open Sans', sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-display: optional;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.4em;
  padding: 0.2em 0 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .faq-list article .answer {
    padding-left: 1.3em;
  }
}
.faq-list article input:checked ~ .answer {
  visibility: visible;
  height: auto;
}
.faq-list article input:checked ~ h3 label {
  color: #da262c;
}
.faq-list article input:checked ~ h3 label::after {
  content: " [–]";
}
body.archive section.posts, body.blog section.posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body.archive section.posts > *, body.blog section.posts > * {
  width: 50%;
  padding: 1em;
}
body.archive section.posts .wp-pagenavi, body.blog section.posts .wp-pagenavi {
  width: 100%;
}
body.blog #body > .wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 759px) {
  body.blog #body > .wrap {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
/* CHUCK BLOG EDITS */
.post-thumbnail a img {
  width: 100%;
}
h2.entry-title {
  font-size: 1.5em;
}
.summaries h2.entry-title {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2em;
  font-display: fallback;
}
@media screen and (max-width: 759px) {
  #masthead nav.secondary {
    display: block;
  }
  #masthead nav.secondary .site-search {
    padding: 0.5em 0;
    width: 100%;
    max-width: 100vw;
  }
}
/** Styles for specific wordpress pages */
/* MISC CSS */
h1 {
  margin-bottom: 1.75rem;
}
/* ABOUT PAGE */
.bigger-text-block {
  font-size: 1.45em;
  line-height: 1.25em;
  margin: 0 0 30px 0;
}
.ul-two-cols {
  margin: 0 0 30px 0;
}
.ul-two-cols ul li {
  font-size: 1.15em;
  width: 50%;
  float: left;
}
.ui.module-callout {
  padding: 2em 2em !important;
}
.callout-inner .callout-content h3 {
  font-family: "DCC - Ash";
  text-transform: uppercase;
  font-weight: 100;
  font-size: 2.5em;
  line-height: 1em;
  letter-spacing: 1px;
}
.callout-inner .callout-content p {
  font-size: 1.1em;
  line-height: 1.25em;
}
/* EVENTS PAGE */
body.post-type-archive-event section.posts article:nth-child(4n+4) {
  margin-right: 0;
}
body.post-type-archive-event section.posts article {
  border: solid 1px #999;
  width: 100%;
  margin: 0 30px 30px 0;
  padding: 0;
  background: #fff;
  width: 23%;
}
body.post-type-archive-event section.posts article .post-thumbnail {
  float: none;
  margin: 0;
}
body.post-type-archive-event section.posts article .post-thumbnail img {
  width: 100%;
}
body.post-type-archive-event section.posts article header {
  padding: 0 20px;
}
body.post-type-archive-event section.posts article header h2.entry-title {
  letter-spacing: 1px;
  font-weight: 100;
  font-size: 2em;
  text-transform: uppercase;
  line-height: 1em;
}
body.post-type-archive-event section.posts article .entry-content {
  padding: 0 20px;
}
body.page-id-1001 .module-accordion {
  background: transparent;
  border: none;
}
@media screen and (max-width: 759px) {
  body.page-id-1001 .module-accordion {
    margin-left: -0.75em;
    margin-right: -0.75em;
  }
}
body.page-id-1001 .module-accordion li {
  margin-bottom: 5px;
}
body.page-id-1001 .module-accordion li .accordion-title a {
  background: #333;
}
body.page-id-1001 .module-accordion li .accordion-content {
  padding: 2em;
}
body.page-id-1001 .themify_builder_content-12681 .themify_builder_row {
  margin-bottom: 1em;
}
@media screen and (max-width: 759px) {
  body.page-id-1001 #addy_in_address > * {
    display: block;
    width: 100%;
  }
  body.page-id-1001 #addy_in_address label {
    text-align: left;
  }
  body.page-id-1001 .slp_search_form .search_box .search_item {
    display: block;
    padding-bottom: 0.5em;
  }
  body.page-id-1001 .slp_search_form .search_box .search_item label {
    min-width: 1em;
  }
  body.page-id-1001 .slp_search_form .search_box .search_item #radius_in_submit {
    margin-top: 1em;
    text-align: center;
    width: 100%;
  }
}
body.page-id-1001 #map_sidebar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body.page-id-1001 #map_sidebar .results_wrapper {
  flex: 0 0 49%;
}
body.page-id-1001 #map_sidebar .results_wrapper:nth-child(odd) {
  margin-right: 1%;
}
body.page-id-1001 #map_sidebar .results_wrapper:nth-child(even) {
  margin-left: 1%;
}
@supports (display: grid) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 10px;
  margin-top: 10px;
  body.page-id-1001 #map_sidebar > * {
    /* undo flexbox padding */
    margin: 0;
    width: 100% !important;
  }
}
body.page-id-9299 .module-text h2 {
  font-family: 'DCC - Ash', sans-serif;
  line-height: 0.85em;
  font-weight: 100 !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.25em;
  font-display: fallback;
}
.faq-accordion .ui.black.module-accordion .accordion-title {
  background: #333;
}
.prml-merchandisers ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.prml-merchandisers ul li {
  display: block;
  flex: 1 1 150px;
  padding: 15px 20px;
}
.prml-merchandisers ul li a {
  line-height: 0;
  display: block;
  text-align: center;
}
.prml-merchandisers ul li a img {
  max-width: 150px;
  max-height: 100px;
  width: auto;
  height: auto;
}
/* PRODUCTS PAGES */
