/*
This is main CSS file for the theme.
*/
/**
 * Table of Contents:
 *
 * 1.0 - Normalize 
 * 2.0 - General Elements
 * 3.0 - Typography
 * 4.0 - Header & Menu
 * 5.0 - Front Page
 * 6.0 - Blog & Posts
 * 7.0 - Single Post & Pages
 * 8.0 - Widgets
 * 9.0 - Forms
 * 10.0 - Media
 * 11.0 - Blocks & Shortcodes
 */
:root {
  --heading-font: Crimson Pro, serif;
  --body-font: Catamaran, sans-serif;
  --primary-color: #f99f6f;
  --primary-color-semi: rgba(249, 159, 111, 0.4);
  --primary-color-light: rgba(249, 159, 111, 0.25);
  --secondary-color: #faf0eb;
  --content-color: #232323;
  --mobile-menu-highlight: var(--primary-color);
  --site-width: 1260px;
  --slider-max-width: var(--site-width);
  --intro-font: var(--heading-font);
  --intro-font-style: italic;
  --sub-menu-bg: var(--secondary-color);
  --sub-menu-color: #111;
  --sub-menu-font: var(--heading-font);
  --sub-menu-font-style: italic;
  --cat-bg: var(--primary-color);
  /* Colors for Light Scheme */
  --light-bg-color: #fff;
  --light-text-color: #000;
  --light-content-color: #232323;
  /* Colors for Dark Scheme */
  --dark-bg-color: #111;
  --dark-text-color: #fff;
  --dark-content-color: #eee; }
  :root .light-color,
  :root .home-widget.light-color {
    --bg-color: var(--light-bg-color);
    --text-color: var(--light-text-color);
    --content-color: var(--light-content-color); }
  :root .dark-color,
  :root .home-widget.dark-color {
    --bg-color: var(--dark-bg-color);
    --text-color: var(--dark-text-color);
    --content-color: var(--dark-content-color); }
  :root .custom-site-width {
    --site-width: var(--custom-site-width);
    --slider-max-width: var(--custom-site-width); }

@-webkit-keyframes stickyHeaderShow {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
@keyframes stickyHeaderShow {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
@-webkit-keyframes heartBeat {
  0%,
	100% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  50% {
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85); } }
@keyframes heartBeat {
  0%,
	100% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  50% {
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85); } }
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* ==========================================================================
   1.0 Normalize
   
   - normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css
   ========================================================================== */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bolder; }

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

small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

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

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

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

/* ==========================================================================
   2.0 General Elements
   ========================================================================== */
* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -ms-word-wrap: break-word;
  word-wrap: break-word; }
  *:focus {
    outline: 0; }

html {
  width: 100%;
  min-height: 100%; }
  html:not(.no-touch) div {
    background-attachment: scroll !important; }

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  background: #fff;
  color: #000; }
  body#tinymce {
    padding: 20px !important;
    background: #fff; }

#page {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto; }

ul,
ol {
  padding: 0;
  margin: 0 0 34px 34px; }

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

dl {
  margin: 0 0 34px; }

dt {
  font-weight: 700; }

dd {
  margin: 0 0 34px 34px; }

figure {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0; }
  figure img {
    display: block; }

img {
  height: auto;
  max-width: 100%;
  border: 0; }

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 50px auto;
  border: 0;
  border-top: 1px solid #ccc; }
  .dark-color hr {
    background-color: rgba(255, 255, 255, 0.1); }
  hr.lo-divider {
    background: none !important; }

.hide {
  display: none !important; }

/**
 * Clearing
 */
.container:after,
#page ul:after,
.main:after,
.home-widget .section-content:after,
.posts-wrapper:after,
.entry-content:after,
.single #primary > .post:after,
.post-navigation .nav-links:after,
.image-gallery:after,
.widget_mc4wp_form_widget .fields-container:after,
.widget-area-row:after,
.entry-content .gallery:after,
.comments-area .navigation .nav-links:after,
.widget.widget_archive ul li:after,
.widget.widget_categories ul li:after,
.lo-row:after,
.gallery[class*="gallery-columns-"]:after,
.fields-container:after,
.authors-list:after,
.wp-block-latest-posts.wp-block-latest-posts__list li:after {
  position: relative;
  display: block;
  content: "";
  clear: both; }

/**
 * Accessibility
 */
.says,
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  word-wrap: normal !important; }

.site .skip-link {
  top: -9999em;
  left: -9999em;
  display: block;
  padding: 15px 23px 14px;
  background-color: #f1f1f1;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #21759b;
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  text-decoration: none;
  text-transform: none; }
  .logged-in .site .skip-link {
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
    font-family: "Open Sans", sans-serif; }
  .site .skip-link:focus {
    z-index: 100000;
    top: 7px;
    left: 6px;
    clip: auto;
    width: auto;
    height: auto; }

/* Alignments
   ========================================================================== */
.alignleft {
  float: left;
  display: inline; }

.alignleft[class*="wp-block-"] {
  margin-right: 34px; }

.alignright {
  float: right;
  display: inline; }

.alignright[class*="wp-block-"] {
  margin-left: 34px; }

.aligncenter {
  display: block;
  margin-right: auto !important;
  margin-left: auto !important; }

figure.alignleft,
img.alignleft {
  margin: 8px 34px 34px 0; }

figure.alignright,
img.alignright {
  margin: 8px 0 34px 34px; }

/* Button
   ========================================================================== */
.site-content .button, .widget-area .button {
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 11.5px 35px;
  background: var(--primary-color);
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
  transition: 0.4s;
  cursor: pointer; }
  .no-touch .site-content .button:hover, .no-touch .widget-area .button:hover {
    background: #000;
    color: #fff; }
  .no-touch .dark-color .site-content .button:hover, .no-touch .dark-color .widget-area .button:hover {
    background: #fff;
    color: #000; }
.button.lo-button.small {
  padding: 0 14px;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 28px; }
.button.lo-button.large {
  padding: 0 25px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 45px; }
.button.lo-button.extra-large {
  padding: 0 35px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 60px; }
.button.lo-button span {
  transition: color 0.3s; }
.no-touch .button.lo-button:hover {
  background: #000; }
  .no-touch .button.lo-button:hover span {
    color: #fff !important; }
.no-touch .dark-color .button.lo-button:hover {
  background: #fff; }
  .no-touch .dark-color .button.lo-button:hover span {
    color: #000 !important; }

/* Post Meta
   ========================================================================== */
.meta {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.025em; }
  .meta .meta-item {
    display: inline-block; }
    .meta .meta-item:not(:last-child) {
      margin-right: 2px; }
      .meta .meta-item:not(:last-child):after {
        margin-left: 2px;
        content: "|"; }
  .featured-slider .meta {
    width: 100%; }
  .no-touch .meta a:hover {
    opacity: 0.5; }

  /*TODO: do przeszukania w celu usuniecia:
     .wprm-recipe-rating
     .recipe-rating
     .rating-details
     .rating-counts
     .star
     .no-rating
     */

/* Author Photo
   ========================================================================== */
.author-photo {
  width: 108px; }
  .author-photo img {
    display: block;
    border-radius: 50%; }

/* Tagcloud
   ========================================================================== */
.tagcloud {
  font-size: 0; }
  .tagcloud a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    margin: 0 6px;
    background: none;
    color: inherit;
    font-size: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 30px;
    text-transform: uppercase; }
    .tagcloud a:after {
      content: "/";
      margin-left: 12px; }
    .tagcloud a:last-child:after {
      display: none; }
    .no-touch .tagcloud a:hover, .tagcloud a:focus {
      color: var(--primary-color); }

.author-social ul.social-nav {
  font-size: 0; }
  .author-social ul.social-nav li:not(:last-child) {
    margin-right: 10px; }
  .author-social ul.social-nav li a:before {
    font-size: 15px;
    font-size: 0.9375rem; }

/* Close Button
   ========================================================================== */
.close-button {
  z-index: 9;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  transition: 0.4s; }
  .close-button:before, .close-button:after {
    position: absolute;
    top: 23px;
    left: 12px;
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: ""; }
  .close-button:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .close-button:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); }

/* Slick Slider Dots & Arrow Buttons
   ========================================================================== */
.slick-dots button,
.slick-arrow {
  background: none;
  border: 0;
  box-shadow: none;
  font-size: 0;
  pointer-events: auto;
  transition: 0.4s; }

.slick-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-feature-settings: normal; }
  .slick-arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #f7f7f7;
    border-radius: 50%;
    content: "";
    transition: opacity 0.4s, filter 0.3s; }
  .slick-arrow:after {
    position: relative;
    z-index: 3;
    line-height: inherit !important;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    font-size: 1.125rem;
    color: inherit; }
  .slick-arrow.slick-prev:after {
    content: "\34"; }
  .slick-arrow.slick-next:after {
    content: "\35"; }
  .no-touch .slick-arrow:hover:before {
    filter: brightness(95%); }

/* Site Content - General Page Structures
   ========================================================================== */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--site-width);
  padding: 0 20px; }

.site-content {
  position: relative;
  z-index: 9; }
  .site-content > .container {
    margin-top: 50px; }

.primary {
  padding-bottom: 80px; }
  .primary > *:last-child {
    margin-bottom: 0; }
  .hide-post-pagination .primary {
    padding-bottom: 50px; }

.sidebar {
  max-width: 600px;
  padding-bottom: 80px; }

.light-color,
.dark-color {
  background-color: var(--bg-color);
  color: var(--text-color); }

.lemon-limes-loader {
  position: relative;
  text-align: center;
  pointer-events: none; }
  .lemon-limes-loader #loader-message {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center; }
  .lemon-limes-loader #loader {
    position: relative;
    width: 130px;
    height: 130px;
    color: var(--primary-color); }
    .lemon-limes-loader #loader span {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 130px;
      height: 130px;
      background: none;
      border-radius: 50%;
      box-sizing: border-box;
      transform-origin: 50% 50%;
      -webkit-animation: spin 2s ease infinite;
      animation: spin 2s ease infinite; }
      .lemon-limes-loader #loader span:before, .lemon-limes-loader #loader span:after {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: inherit;
        border: 1px solid currentColor;
        border-radius: 50%;
        content: "";
        transform-origin: 50% 50%;
        box-sizing: border-box; }
      .lemon-limes-loader #loader span:before {
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent; }
      .lemon-limes-loader #loader span:after {
        border-bottom-color: transparent;
        border-left-color: transparent;
        -webkit-animation: spin 2s linear 0.5s infinite;
        animation: spin 2s linear 0.5s infinite; }

.lemon-limes-bannr.site-top {
  position: relative;
  z-index: 99; }

.n2-section-smartslider * {
  margin: 0; }

@media screen and (min-width: 480px) {
  .author-social ul.social-nav li a {
    text-align: left; } }
@media screen and (min-width: 600px) {
  .container {
    padding: 0 30px; } }
@media screen and (min-width: 1120px) {
  .site-content[class*="with-sidebar-"] .primary {
    float: left;
    width: calc(100% - 400px); }
  .site-content[class*="with-sidebar-"] .sidebar {
    float: left;
    width: 330px; }
  .site-content[class*="with-sidebar-"] .sidebar-container {
    width: 330px; }
  .site-content[class*="with-sidebar-"].with-sidebar-left .primary {
    float: right; }
  .site-content[class*="with-sidebar-"].with-sidebar-right .sidebar {
    float: right; } }
@media screen and (max-width: 500px) {
  .button.lo-button {
    max-width: 100% !important; } }
/* ==========================================================================
   3.0 Typography
   ========================================================================== */
body,
input,
select,
textarea,
.ui-widget,
.primary-menu a,
.widget-area .widget-title,
.comment-reply-title a,
.sidemenu .secondary-menu .sub-menu a {
  font-family: var(--body-font); }

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.post-title,
blockquote,
.comment-author.vcard,
.category-name,
.widget.widget_rss ul li a.rsswidget,
.widget.widget_recent_entries a,
.widget_recent_comments ul li > a,
.sidemenu .primary-menu > li > a,
.sidemenu .secondary-menu a,
.search-screen input[type="search"],
.lo-accordions .accordion-item .accordion-title,
.widget_mc4wp_form_widget .widget-title,
.woocommerce-mini-cart__empty-message,
#loader-message,
.wp-caption-text,
figcaption {
  font-family: var(--heading-font); }

body {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6; }

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s; }

.entry-content a:not([class*="button"]), .comment-content a:not([class*="button"]) {
  color: #000;
  text-decoration: underline #f5c015 dashed;
  text-decoration-thickness: 3px;
}
  .dark-color .entry-content a:not([class*="button"]),
  .dark-color .comment-content a:not([class*="button"]) {
    color: #fff; }
  .no-touch .entry-content a:not([class*="button"]):hover, .no-touch .comment-content a:not([class*="button"]):hover {
    color: var(--primary-color); }

.textwidget a {
  color: var(--primary-color); }

.entry-content,
.home-widget .section-content {
  font-size: 16px;
  font-size: 1rem; }

.entry-content {
  color: var(--content-color);
  line-height: 1.8; }
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6,
  .entry-content form {
    color: var(--text-color); }
  .entry-content > ul li:not(:last-child),
  .entry-content > ol li:not(:last-child) {
    margin-bottom: 8px; }
  .entry-content > ul ul,
  .entry-content > ul ol,
  .entry-content > ol ul,
  .entry-content > ol ol {
    margin-top: 8px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.35; }
  .entry-content h1, .home-widget .section-content h1,
  .entry-content h2, .home-widget .section-content h2,
  .entry-content h3, .home-widget .section-content h3,
  .entry-content h4, .home-widget .section-content h4,
  .entry-content h5, .home-widget .section-content h5,
  .entry-content h6, .home-widget .section-content h6 {
    margin-bottom: 34px; }
  .entry-content * + h1, .home-widget .section-content * + h1, .entry-content * + h2, .home-widget .section-content * + h2, .entry-content * + h3, .home-widget .section-content * + h3, .entry-content * + h4, .home-widget .section-content * + h4, .entry-content * + h5, .home-widget .section-content * + h5, .entry-content * + h6, .home-widget .section-content * + h6 {
    margin-top: 50px; }
  .comment-content * + h1, .comment-content * + h2, .comment-content * + h3, .comment-content * + h4, .comment-content * + h5, .comment-content * + h6 {
    margin-top: 34px; }
  .comment-content h1, .widget-area .widget h1, .comment-content h2, .widget-area .widget h2, .comment-content h3, .widget-area .widget h3, .comment-content h4, .widget-area .widget h4, .comment-content h5, .widget-area .widget h5, .comment-content h6, .widget-area .widget h6 {
    margin-bottom: 17px; }

.entry-content h1,
.featured-section.custom-section h1,
.home-widget .section-content h1,
.home-widget .optional-content h1 {
  font-size: 36px;
  font-size: 2.25rem; }
.entry-content h2,
.featured-section.custom-section h2,
.home-widget .section-content h2,
.home-widget .optional-content h2 {
  font-size: 32px;
  font-size: 2rem; }
.entry-content h3,
.featured-section.custom-section h3,
.home-widget .section-content h3,
.home-widget .optional-content h3 {
  font-size: 28px;
  font-size: 1.75rem; }
.entry-content h4,
.featured-section.custom-section h4,
.home-widget .section-content h4,
.home-widget .optional-content h4 {
  font-size: 24px;
  font-size: 1.5rem; }
.entry-content h5,
.featured-section.custom-section h5,
.home-widget .section-content h5,
.home-widget .optional-content h5 {
  font-size: 21px;
  font-size: 1.3125rem; }
.entry-content h6,
.featured-section.custom-section h6,
.home-widget .section-content h6,
.home-widget .optional-content h6 {
  font-size: 18px;
  font-size: 1.125rem; }

.comment-content h1,
.widget-area .widget h1 {
  font-size: 28px;
  font-size: 1.75rem; }
.comment-content h2,
.widget-area .widget h2 {
  font-size: 24px;
  font-size: 1.5rem; }
.comment-content h3,
.widget-area .widget h3 {
  font-size: 21px;
  font-size: 1.3125rem; }
.comment-content h4,
.widget-area .widget h4 {
  font-size: 18px;
  font-size: 1.125rem; }
.comment-content h5,
.widget-area .widget h5 {
  font-size: 16px;
  font-size: 1rem; }
.comment-content h6,
.widget-area .widget h6 {
  font-size: 14px;
  font-size: 0.875rem; }

.entry-title,
.post-title,
.style-title {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2; }

.entry-content .style-title {
  margin-top: 20px;
  margin-bottom: 20px; }
  .entry-content .style-title:first-child {
    margin-top: 0; }

.entry-title a {
  color: inherit; }

.entry-header h1.entry-title {
  font-size: 32px;
  font-size: 2rem; }
  .entry-header h1.entry-title:last-child {
    margin-bottom: 0; }

.section-title a {
  position: relative; }
  .section-title a:before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: -5px;
    display: block;
    width: calc(100% + 10px);
    height: 10px;
    background: var(--primary-color-semi);
    content: "";
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: 0.3s;
    pointer-events: none; }
  .no-touch .section-title a:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1); }

.section-title,
.comments-title,
.comment-reply-title {
  position: relative;
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-align: center; }

.section-header,
.comments-title-wrap,
.comment-reply-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 34px; }
  .section-header .title-decor-line,
  .comments-title-wrap .title-decor-line,
  .comment-reply-title-wrap .title-decor-line {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    flex: 1 0 20px; }
    .section-header .title-decor-line:before, .section-header .title-decor-line:after,
    .comments-title-wrap .title-decor-line:before,
    .comments-title-wrap .title-decor-line:after,
    .comment-reply-title-wrap .title-decor-line:before,
    .comment-reply-title-wrap .title-decor-line:after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      display: block;
      background-color: currentColor;
      content: ""; }
    .section-header .title-decor-line:before,
    .comments-title-wrap .title-decor-line:before,
    .comment-reply-title-wrap .title-decor-line:before {
      left: 0;
      width: 100%;
      height: 1px; }
    .section-header .title-decor-line:after,
    .comments-title-wrap .title-decor-line:after,
    .comment-reply-title-wrap .title-decor-line:after {
      width: 1px;
      height: 16px; }
    .section-header .title-decor-line:first-child,
    .comments-title-wrap .title-decor-line:first-child,
    .comment-reply-title-wrap .title-decor-line:first-child {
      margin-left: 0; }
      .section-header .title-decor-line:first-child:after,
      .comments-title-wrap .title-decor-line:first-child:after,
      .comment-reply-title-wrap .title-decor-line:first-child:after {
        right: 0; }
    .section-header .title-decor-line:last-child,
    .comments-title-wrap .title-decor-line:last-child,
    .comment-reply-title-wrap .title-decor-line:last-child {
      margin-right: 0; }
      .section-header .title-decor-line:last-child:after,
      .comments-title-wrap .title-decor-line:last-child:after,
      .comment-reply-title-wrap .title-decor-line:last-child:after {
        left: 0; }

.section-header .section-title,
.comments-title-wrap .comments-title,
.comment-reply-title-wrap .comment-reply-title {
  display: inline;
  padding: 0 40px;
  margin: 0; }

h5.widget-title {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none; }
  .widget-area h5.widget-title {
    position: relative;
    display: block;
    width: 100%;
    padding: 13px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center; }

.widget-area .widget_block .wp-block-group__inner-container > h2 {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px;
  font-family: var(--body-font);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center; }

.comments-area h2.comments-title {
  margin-bottom: 0; }

p {
  margin: 0 auto 24px;
  font-size: inherit;
}

blockquote {
  position: relative;
  margin: 0; }
  blockquote p:last-of-type {
    margin-bottom: 0; }
  .entry-content blockquote {
    padding: 0 50px;
    margin: 25px auto;
    font-size: 1.3125rem;
  }
    .entry-content blockquote:before {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      display: block;
      width: 30px;
      height: 40px;
      font-size: inherit;
      line-height: 30px;
      content: "\201C"; }
    .entry-content blockquote:first-child {
      margin-top: 0; }
    .entry-content blockquote p {
      font-size: inherit;
      color: var(--text-color); }
    .entry-content blockquote cite {
      color: inherit;
      font-style: normal;
      text-transform: none; }
  blockquote p {
    position: relative;
    z-index: 9;
    font-style: normal;
    line-height: 1.25; }
  blockquote cite,
  blockquote small {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5; }

table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 34px;
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  background: none;
  color: inherit; }
  table th,
  table td {
    padding: 16px;
    vertical-align: top;
    line-height: 1.5; }
  table th {
    font-weight: 700;
    text-align: left; }
  table thead tr th,
  table thead tr td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  table tbody tr:not(:last-child) th,
  table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  table tfoot tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  table td {
    font-size: 14px;
    font-size: 0.875rem; }
  table caption {
    margin: 17px auto;
    font-size: 12px;
    font-size: 0.75rem; }

pre,
code,
kbd {
  background-color: #f7f7f7;
  color: #000; }

pre {
  display: block;
  padding: 34px;
  margin: 34px 0;
  border: 1px solid #eee;
  tab-size: 4;
  overflow: auto;
  font-size: 16px; }

code,
kbd {
  padding: 5px;
  font-size: 14px; }

fieldset {
  padding: 0;
  margin: 0;
  border: none; }

dfn,
cite,
em,
i {
  font-style: italic; }

address {
  margin: 0 0 34px;
  font-style: italic; }

code,
kbd,
tt,
var,
samp,
pre {
  font-family: Menlo,Consolas,monaco,monospace; }

abbr,
acronym {
  border-bottom: 1px dotted;
  cursor: help; }

mark {
  padding: 1.75px 3.5px;
  background: var(--primary-color);
  text-decoration: none; }

ins {
  font-style: italic; }

big {
  font-size: 125%; }

@media screen and (min-width: 1024px) {
  .entry-content blockquote {
    font-size: 24px;
    font-size: 1.5rem; }
    .entry-content blockquote cite,
    .entry-content blockquote small {
      font-size: 18px;
      font-size: 1.125rem; }

  .entry-header h1.entry-title {
    font-size: 36px;
    font-size: 2.25rem; } }
@media screen and (min-width: 1120px) {
  .featured-section.custom-section h1 {
    font-size: 60px;
    font-size: 3.75rem; }
  .featured-section.custom-section h2 {
    font-size: 48px;
    font-size: 3rem; }

  .related-posts .section-header,
  .comments-title,
  .comment-reply-title {
    margin-bottom: 42px; }

  .front-page .section-header {
    margin-bottom: 50px; }
    .front-page .section-header .section-title {
      font-size: 24px;
      font-size: 1.5rem; }

  .front-page .title-margin-s .section-header {
    margin-bottom: 34px; }

  .entry-content .style-title {
    font-size: 50px;
    font-size: 3.125rem; } }
@media screen and (max-width: 599px) {
  .entry-content blockquote {
    padding-right: 0; }

  .section-header .section-title,
  .comments-title-wrap .comments-title,
  .comment-reply-title-wrap .comment-reply-title {
    padding: 0 15px; } }
@media screen and (max-width: 480px) {
  table th,
  table td {
    padding-right: 8px;
    padding-left: 8px; } }
/* ==========================================================================
   4.0 Site Header & Menu
   ========================================================================== */
nav ul {
  margin: 0;
  list-style: none;
  font-size: 0; }

.header-top-bar {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  background: #111;
  color: #fff; }
  .header-top-bar .container {
    display: flex; }
  .header-top-bar .secondary-navigation {
    margin-left: 0;
    width: 50%; }
    .header-top-bar .secondary-navigation ul li {
      margin-right: 20px; }
    .header-top-bar .secondary-navigation a {
      text-transform: uppercase; }
  .header-top-bar .social-navigation {
    width: auto;
    margin-right: 0;
    text-align: right; }
    .header-top-bar .social-navigation a:before {
      font-size: 18px;
      font-size: 1.125rem; }
  .header-top-bar .site-header-search {
    margin: 0 0 0 50px; }
    .header-top-bar .site-header-search:last-child {
      margin-right: -10px; }

.site-header .secondary-navigation ul li {
  position: relative;
  display: inline-block; }
.site-header .secondary-navigation a {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap; }
.site-header .secondary-navigation .sub-menu {
  left: -25px;
  padding: 10px 0;
  white-space: nowrap; }
  .site-header .secondary-navigation .sub-menu li {
    display: block;
    margin-right: 0; }

/* Site Branding
   ========================================================================== */
.site-branding {
  padding: 30px 0;
  font-size: 0; }
  .site-branding p {
    margin-bottom: 0; }
  .site-branding .site-title {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em; }
  .site-branding .site-description {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1; }
  .site-branding.hide-title-tagline .site-title,
  .site-branding.hide-title-tagline .site-description {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    word-wrap: normal !important; }
  .site-branding a {
    display: inline-block;
    color: inherit; }
  .site-branding img {
    display: block; }
  .site-header.sticky .site-branding .custom-logo-link + .site-title,
  .site-header.sticky .site-branding .site-description, .site-header.is-sticky .site-branding .custom-logo-link + .site-title,
  .site-header.is-sticky .site-branding .site-description {
    display: none; }
  .site-header-layout-3 .site-branding {
    text-align: center; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site-branding img {
    width: 100% !important; } }
/* Site Header
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 999;
  margin-bottom: 50px;
  width: 100%;
  height: auto;
  line-height: 1.5; }
  .has-header-img .site-header, .front-page .site-header {
    margin-bottom: 0; }
  .has-header-img.has-bottom-space .site-header {
    margin-bottom: 50px; }
  .site-header > * {
    width: 100%; }
  .site-header .site-header-search .toggle-button {
    z-index: 999;
    display: block;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0;
    line-height: 40px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer; }
    .site-header .site-header-search .toggle-button:after {
      position: relative;
      z-index: 3;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 16px;
      font-size: 1rem;
      line-height: 40px;
      content: "\f002"; }
  .site-header .site-header-main {
    position: relative;
    z-index: 3;
    background: inherit; }
    .site-header .site-header-main.with-bg {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
    .site-header .site-header-main .container {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
  .site-header .header-section {
    position: relative;
    z-index: 2; }
    .site-header .header-section.branding {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      overflow: hidden;
      max-width: calc(100% - 160px); }
    .site-header .header-section.header-left {
      margin-left: 0; }
    .site-header .header-section.header-right {
      margin-right: 0;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
  .site-header .menu-toggle {
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0;
    line-height: 40px;
    transition: 0.4s;
    cursor: pointer; }
    .site-header .menu-toggle:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      content: "\f0c9";
      font-size: 12px;
      -webkit-transform: scaleX(1.3);
      -ms-transform: scaleX(1.3);
      transform: scaleX(1.3); }
    @media screen and (min-width: 1025px) {
      .site-header .menu-toggle:hover, .site-header .menu-toggle:focus {
        color: var(--primary-color);
        outline: 0; } }
  .site-header .header-section.menu {
    display: none;
    /* Hide menu on small screens */ }
  .touch .site-header .menu-toggle {
    display: block; }
  .site-header.site-header-layout-1 .header-section {
    width: 100%; }
    .site-header.site-header-layout-1 .header-section.branding {
      text-align: center; }
  .site-header.site-header-layout-1 .site-header-main .container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .site-header.site-header-layout-2 .header-section.branding {
    max-width: none; }
  .site-header.site-header-layout-3 .menu-toggle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px; }
  .site-header.site-header-layout-3 .site-header-main .site-header-search {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    display: none; }
  .site-header.site-header-layout-4 .header-section.branding {
    max-width: none; }
  .site-header.site-header-layout-4 .header-section.branding,
  .site-header.site-header-layout-4 .site-header-search {
    margin-left: 0; }
  .site-header.site-header-layout-4 .social-navigation {
    margin-right: 0; }
  .site-header.site-header-layout-4 .container:first-child {
    z-index: 9; }
  .site-header.site-header-layout-4 .container:last-child {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .site-header.site-header-layout-4 .header-section.menu + .site-header-search .toggle-button:after {
    font-size: 14px;
    line-height: 39px; }
  .site-header.sticky .site-header-main, .site-header.is-sticky .site-header-main {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999; }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .site-header.sticky .site-header-main, .logged-in.admin-bar .site-header.is-sticky .site-header-main {
        top: 46px; } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .site-header.sticky .site-header-main, .logged-in.admin-bar .site-header.is-sticky .site-header-main {
        top: 32px; } }
  .site-header.sticky .site-header-main {
    -webkit-animation: stickyHeaderShow 0.4s ease-out;
    animation: stickyHeaderShow 0.4s ease-out; }
  .site-header.is-sticky .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  .site-header.is-sticky.show-header .site-header-main {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.4s ease-out; }
  .site-header.is-sticky.hide-header .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-out; }
  .site-header.is-sticky.hide-header ul.sub-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }

.header-top-bar a,
.header-top-bar .site-header-search .toggle-button,
.header-top-bar .site-header-search .toggle-button:after {
  line-height: 50px; }

/* Social Nav Icons
   ========================================================================== */
ul.social-nav {
  margin: 0; }
  ul.social-nav li {
    display: inline-block; }
    ul.social-nav li a {
      display: block;
      width: 30px;
      height: 30px;
      padding: 0;
      text-align: center;
      line-height: 30px;
      font-size: 0 !important; }
      .no-touch .main ul.social-nav li a:hover {
        color: var(--primary-color); }
      ul.social-nav li a:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900;
        font-size: 18px;
        font-size: 1.125rem;
        content: "\f1e0";
        /* Default share icon */ }
      ul.social-nav li a[title="website"]:before, ul.social-nav li a[title="Website"]:before {
        content: "\f0c1"; }
      ul.social-nav li a[href*="mailto"]:before {
        content: "\f0e0"; }
      ul.social-nav li a[href*="bloglovin"]:before {
        content: "\f004"; }
      ul.social-nav li a[href*="twitter"]:before, ul.social-nav li a[href*="facebook"]:before, ul.social-nav li a[href*="google"]:before, ul.social-nav li a[href*="pinterest"]:before, ul.social-nav li a[href*="instagram"]:before, ul.social-nav li a[href*="behance"]:before, ul.social-nav li a[href*="vimeo"]:before, ul.social-nav li a[href*="youtube"]:before, ul.social-nav li a[href*="snapchat"]:before, ul.social-nav li a[href*="medium"]:before, ul.social-nav li a[href*="linkedin"]:before, ul.social-nav li a[href*="flickr"]:before, ul.social-nav li a[href*="etsy"]:before, ul.social-nav li a[href*="dribbble"]:before, ul.social-nav li a[href*="tumblr"]:before, ul.social-nav li a[href*="vine"]:before, ul.social-nav li a[href*="vk"]:before, ul.social-nav li a[href*="del.icio"]:before, ul.social-nav li a[href*="reddit"]:before, ul.social-nav li a[href*="yelp"]:before, ul.social-nav li a[href*="soundcloud"]:before, ul.social-nav li a[href*="500px"]:before, ul.social-nav li a[href*="digg"]:before, ul.social-nav li a[href*="foursquare"]:before, ul.social-nav li a[href*="houzz"]:before, ul.social-nav li a[href*="tripadvisor"]:before, ul.social-nav li a[href*="play.google"]:before, ul.social-nav li a[href*="apple"]:before, ul.social-nav li a[href*="slack"]:before, ul.social-nav li a[href*="amazon"]:before, ul.social-nav li a[href*="codepen"]:before, ul.social-nav li a[href*="deviantart"]:before, ul.social-nav li a[href*="github"]:before, ul.social-nav li a[href*="wordpress"]:before, ul.social-nav li a[href*="tiktok"]:before, ul.social-nav li a[href*="unsplash"]:before, ul.social-nav li a[href*="spotify"]:before {
        font-family: "Font Awesome 5 Brands";
        font-weight: 400; }
      ul.social-nav li a[href*="twitter"]:before {
        content: "\f099"; }
      ul.social-nav li a[href*="facebook"]:before {
        content: "\f39e"; }
      ul.social-nav li a[href*="google"]:before {
        content: "\f0d5"; }
      ul.social-nav li a[href*="pinterest"]:before {
        content: "\f0d2"; }
      ul.social-nav li a[href*="instagram"]:before {
        content: "\f16d"; }
      ul.social-nav li a[href*="behance"]:before {
        content: "\f1b4"; }
      ul.social-nav li a[href*="vimeo"]:before {
        content: "\f27d"; }
      ul.social-nav li a[href*="youtube"]:before {
        content: "\f167"; }
      ul.social-nav li a[href*="snapchat"]:before {
        content: "\f2ac"; }
      ul.social-nav li a[href*="medium"]:before {
        content: "\f3c7"; }
      ul.social-nav li a[href*="linkedin"]:before {
        content: "\f0e1"; }
      ul.social-nav li a[href*="flickr"]:before {
        content: "\f16e"; }
      ul.social-nav li a[href*="etsy"]:before {
        content: "\f2d7"; }
      ul.social-nav li a[href*="dribbble"]:before {
        content: "\f17d"; }
      ul.social-nav li a[href*="tumblr"]:before {
        content: "\f173"; }
      ul.social-nav li a[href*="vine"]:before {
        content: "\f1ca"; }
      ul.social-nav li a[href*="/feed/"]:before, ul.social-nav li a[href*="?feed="]:before {
        content: "\f09e"; }
      ul.social-nav li a[href*="vk"]:before {
        content: "\f189"; }
      ul.social-nav li a[href*="del.icio"]:before {
        content: "\f1a5"; }
      ul.social-nav li a[href*="reddit"]:before {
        content: "\f281"; }
      ul.social-nav li a[href*="yelp"]:before {
        content: "\f1e9"; }
      ul.social-nav li a[href*="soundcloud"]:before {
        content: "\f1be"; }
      ul.social-nav li a[href*="500px"]:before {
        content: "\f26e"; }
      ul.social-nav li a[href*="digg"]:before {
        content: "\f1a6"; }
      ul.social-nav li a[href*="foursquare"]:before {
        content: "\f180"; }
      ul.social-nav li a[href*="houzz"]:before {
        content: "\f27c"; }
      ul.social-nav li a[href*="tripadvisor"]:before {
        content: "\f262"; }
      ul.social-nav li a[href*="play.google"]:before {
        content: "\f3ab"; }
      ul.social-nav li a[href*="apple"]:before {
        content: "\f179"; }
      ul.social-nav li a[href*="slack"]:before {
        content: "\f198"; }
      ul.social-nav li a[href*="amazon"]:before {
        content: "\f270"; }
      ul.social-nav li a[href*="codepen"]:before {
        content: "\f1cb"; }
      ul.social-nav li a[href*="deviantart"]:before {
        content: "\f1bd"; }
      ul.social-nav li a[href*="github"]:before {
        content: "\f09b"; }
      ul.social-nav li a[href*="wordpress"]:before {
        content: "\f411"; }
      ul.social-nav li a[href*="tiktok"]:before {
        content: "\e07b"; }
      ul.social-nav li a[href*="unsplash"]:before {
        content: "\e07c"; }
      ul.social-nav li a[href*="spotify"]:before {
        content: "\f1bc"; }

.site-header ul.social-nav li a {
  width: 45px;
  height: 50px;
  line-height: 50px; }

/* Side Menu
   ========================================================================== */
.sidemenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden; }
  .no-touch .sidemenu a:hover {
    color: var(--mobile-menu-highlight); }
  .sidemenu .close-button {
    position: absolute;
    top: 15px;
    right: 15px; }
  .sidemenu .container {
    position: relative;
    z-index: 9;
    width: 470px;
    max-width: 100%;
    height: auto;
    max-height: calc(100% - 100px);
    padding: 70px 30px 60px;
    margin-right: 60px;
    overflow: auto;
    transition: transform 0.4s;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background-color: var(--secondary-color);
    color: #000; }
    .sidemenu .container::-webkit-scrollbar {
      display: none; }
    .sidemenu .container > * {
      margin-bottom: 30px; }
      .sidemenu .container > *:first-child, .sidemenu .container > *:last-child {
        margin-bottom: 0; }
  .sidemenu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .sidemenu .primary-menu {
    display: block;
    text-align: left; }
    .sidemenu .primary-menu li {
      position: relative;
      display: block; }
    .sidemenu .primary-menu a {
      position: relative;
      text-transform: capitalize; }
    .sidemenu .primary-menu > li {
      padding: 0; }
      .sidemenu .primary-menu > li > a {
        display: inline-block;
        padding: 6px 0;
        font-size: 26px;
        font-size: 1.625rem;
        font-weight: 400;
        font-style: italic;
        letter-spacing: 0;
        line-height: 1.5; }
        .sidemenu .primary-menu > li > a:before {
          position: absolute;
          z-index: -1;
          bottom: 8px;
          left: -5px;
          display: block;
          width: calc(100% + 10px);
          height: 14px;
          background: var(--primary-color-semi);
          content: "";
          -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
          transform: scaleX(0);
          transform-origin: 0 0;
          transition: 0.3s;
          pointer-events: none; }
        .no-touch .sidemenu .primary-menu > li > a:hover {
          color: inherit; }
          .no-touch .sidemenu .primary-menu > li > a:hover:before {
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1); }
    .sidemenu .primary-menu > li.current-menu-item > a:before,
    .sidemenu .primary-menu > li.current-menu-ancestor > a:before {
      -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
      transform: scaleX(1); }
    .sidemenu .primary-menu ul.sub-menu {
      display: none;
      margin: 0 0 0 30px; }
      .sidemenu .primary-menu ul.sub-menu li a {
        padding: 4px 0;
        font-size: 16px;
        font-size: 1rem;
        font-weight: 400;
        line-height: 40px; }
      .sidemenu .primary-menu ul.sub-menu li.current-menu-item > a,
      .sidemenu .primary-menu ul.sub-menu li.current-menu-ancestor > a {
        color: var(--primary-color); }
.sidemenu .primary-menu ul.sub-menu .dropdown-toggle {
  top: 2px;
}
  .sidemenu .secondary-navigation {
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 20px 0; }
    .sidemenu .secondary-navigation li {
      position: relative; }
      .sidemenu .secondary-navigation li:after {
        margin-right: 0; }
    .sidemenu .secondary-navigation a {
      display: inline-block;
      padding: 6px 0;
      font-size: 16px;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5; }
    .sidemenu .secondary-navigation ul.sub-menu {
      display: none;
      margin: 0 0 0 30px; }
      .sidemenu .secondary-navigation ul.sub-menu a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 400; }
    .sidemenu .secondary-navigation .dropdown-toggle {
      height: 24px; }

.sidemenu .dropdown-toggle {
  position: absolute;
  top: 6px;
  left: 35%;
  width: 40px;
  height: 36px;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  cursor: pointer;
  transition: 0.4s;
  text-align: right;
}

.sidemenu .dropdown-toggle:before {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-size: 1.3125rem;
  content: "\35";
}

.sidemenu .dropdown-toggle:not([class*="toggled-on"]) {
  animation: heartBeat 1s infinite;

  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sidemenu .dropdown-toggle.toggled-on:before {
  content: "\33"; }

.sidemenu .dropdown-toggle:active {
  background: none;
  border: none;
  outline: none;
}

.sidemenu .dropdown-toggle.toggled-on.hide-btn::before {
  display: none;
}

    .sidemenu .dropdown-toggle.toggled-on + ul.sub-menu {
      display: block; }
  .sidemenu .main-navigation + .social-navigation {
    padding-top: 30px;
    border-top: 1px solid; }
  .sidemenu .social-navigation:not(:last-child) {
    margin-bottom: 17px; }
  .sidemenu ul.social-nav {
    margin-left: -15px; }
    .sidemenu ul.social-nav li a {
      width: auto;
      height: 40px;
      padding: 0 15px;
      line-height: 40px; }
  .sidemenu .text {
    font-size: 14px;
    font-size: 0.875rem; }

/* Polylang Flags Position
   ========================================================================== */
.site-header .pll-parent-menu-item a img {
  display: inline-block;
  -webkit-transform: translateY(1.5px);
  -ms-transform: translateY(1.5px);
  transform: translateY(1.5px); }

@media screen and (min-width: 600px) {
  .site-header.site-header-layout-3 .menu-toggle {
    right: 20px; }

  .sidemenu .container {
    padding-right: 50px;
    padding-left: 50px; } }
@media screen and (min-width: 1024px) {
  .site-header nav .sub-menu {
    position: absolute;
    z-index: -1;
    display: block;
    min-width: 200px;
    padding: 20px 5px;
    margin: 0;
    background: var(--sub-menu-bg);
    color: var(--sub-menu-color);
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
    .site-header nav .sub-menu li {
      padding: 0 25px; }
    .site-header nav .sub-menu ul.sub-menu {
      padding-top: 20px; }
    .site-header nav .sub-menu a {
      position: relative;
      display: inline-block;
      padding: 0;
      width: auto;
      font-family: var(--sub-menu-font);
      font-size: 17px;
      font-size: 1.0625rem;
      font-weight: 400;
      font-style: var(--sub-menu-font-style);
      letter-spacing: 0;
      text-transform: capitalize;
      line-height: 36px; }
      .site-header nav .sub-menu a:before {
        position: absolute;
        z-index: -1;
        bottom: 8px;
        left: 0;
        display: block;
        width: 100%;
        height: 8px;
        background: var(--primary-color-semi);
        content: "";
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        transform-origin: 0 0;
        transition: 0.3s;
        pointer-events: none; }
      .no-touch .site-header nav .sub-menu a:hover:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); }
    .site-header nav .sub-menu li.current-menu-item > a,
    .site-header nav .sub-menu li.current-menu-ancestor > a {
      color: var(--primary-color); }
  .no-touch .site-header nav li:hover > .sub-menu, .site-header nav li:focus > .sub-menu {
    z-index: 99;
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }

  .site-header ul.social-nav li:last-child {
    margin-right: -12px; }

  .site-header.site-header-layout-1 .site-branding .site-title {
    font-size: 48px;
    font-size: 3rem; } }
@media screen and (min-width: 1120px) {
  .site-branding .site-title {
    font-size: 36px;
    font-size: 2.25rem; }

  .site-header .menu-toggle {
    display: none; }
  .site-header .header-section.menu {
    display: block; }
  .site-header .primary-menu {
    /* Category Mega Menu */
    /* When user want to align right one nav item and its sub items, add class "right" */ }
    .site-header .primary-menu li {
      position: relative;
      white-space: nowrap; }
    .site-header .primary-menu a {
      position: relative;
      display: block; }
    .site-header .primary-menu > li {
      float: left; }
      .site-header .primary-menu > li > a {
        padding: 0 15px;
        font-size: 15px;
        font-size: 0.9375rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        line-height: 90px; }
        .no-touch .site-header .primary-menu > li > a:hover {
          opacity: 0.5; }
      .site-header .primary-menu > li > ul.sub-menu {
        bottom: 0;
        -webkit-transform: translateY(105%);
        -ms-transform: translateY(105%);
        transform: translateY(105%); }
        .site-header .primary-menu > li > ul.sub-menu ul.sub-menu {
          top: -20px;
          left: 100%; }
      .site-header .primary-menu > li:not(.mega-menu) > ul.sub-menu {
        left: -15px; }
      .site-header .primary-menu > li.current-menu-item > a, .site-header .primary-menu > li.current-menu-ancestor > a {
        color: var(--primary-color); }
        .site-header .primary-menu > li.current-menu-item > a:before, .site-header .primary-menu > li.current-menu-ancestor > a:before {
          display: block;
          position: absolute;
          bottom: 28px;
          left: 15px;
          width: calc(100% - 30px);
          height: 2px;
          background: currentColor;
          content: ""; }
    .site-header .primary-menu > li:hover > ul.sub-menu,
    .site-header .primary-menu > li.focus > ul.sub-menu {
      -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
      transform: translateY(100%); }
    .site-header .primary-menu li:not(.mega-menu) ul.sub-menu li.menu-item-has-children > a {
      padding-right: 35px; }
    .site-header .primary-menu li:not(.mega-menu) ul.sub-menu li.menu-item-has-children > a:after {
      position: absolute;
      top: 10px;
      right: 0;
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      display: block;
      width: auto;
      height: 30px;
      color: inherit;
      font-size: 14px;
      content: "\35"; }
    .site-header .primary-menu li.mega-menu > ul.sub-menu {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      width: 100vw;
      padding: 30px 60px 20px; }
      .site-header .primary-menu li.mega-menu > ul.sub-menu > li {
        display: block;
        width: 25%;
        padding: 0 20px;
        margin: 0;
        vertical-align: top; }
        .site-header .primary-menu li.mega-menu > ul.sub-menu > li > a {
          margin: 0 25px;
          font-size: 15px;
          font-size: 0.9375rem;
          font-weight: 600;
          letter-spacing: 0.5px;
          text-transform: uppercase;
          font-style: normal;
          opacity: 1; }
        .site-header .primary-menu li.mega-menu > ul.sub-menu > li > ul {
          position: relative;
          top: auto;
          left: auto;
          display: block;
          padding: 10px 0 20px;
          margin-left: 0;
          box-shadow: none; }
    .site-header .primary-menu li.mega-menu.column-5 > ul.sub-menu > li {
      width: 20%; }
    .site-header .primary-menu li.mega-menu.menu-item-object-category {
      /* Category Mega Menu - With Sub Categories */ }
      .site-header .primary-menu li.mega-menu.menu-item-object-category ul li {
        float: left;
        padding-bottom: 10px; }
      .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post {
        width: 100%;
        text-align: center;
        clear: both; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .featured-img {
          position: relative;
          width: 100%;
          height: 0;
          padding-top: 66.66%;
          margin-bottom: 15px; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .featured-img a:before {
            display: none; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .entry-title {
          white-space: normal;
          line-height: 1.3; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .entry-title a {
            display: initial;
            background-image: linear-gradient(var(--primary-color-semi), var(--primary-color-semi));
            background-position: 0 100%;
            background-repeat: no-repeat;
            background-size: 0 8px;
            line-height: inherit;
            transition: background-size 0.3s; }
            .no-touch .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .entry-title a:hover {
              background-size: 100% 8px; }
            .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .entry-title a:before {
              display: none; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .featured-img-container {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat; }
      .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children {
        display: block; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list {
          width: 20%; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li {
            float: none;
            padding-bottom: 0; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li.current a {
            font-weight: 800; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts {
          width: 80%; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat {
            display: none; }
            .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat.current {
              display: block; }
            .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat > ul {
              position: relative; }
              .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat > ul > li {
                width: 33.33%;
                padding: 0 20px; }
    .no-touch .site-header .primary-menu li.mega-menu:hover .sub-menu {
      z-index: 99;
      opacity: 1;
      pointer-events: auto;
      visibility: visible; }
    .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu {
      padding-top: 20px; }
      .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li {
        flex-grow: 1;
        padding: 10px;
        width: auto; }
        .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li a {
          display: block;
          padding: 0; }
        .no-touch .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li a:hover .cat-bg:after {
          opacity: 0.6; }
    .site-header .primary-menu li.mega-menu.cat-list.large-font .cat-bg + .cat-meta {
      font-size: 24px;
      font-size: 1.5rem; }
    .site-header .primary-menu li.mega-menu.cat-list .cat-bg {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 0;
      padding-top: 66.6666%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .site-header .primary-menu li.mega-menu.cat-list .cat-bg:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: #000;
        content: "";
        opacity: 0.35;
        pointer-events: none;
        transition: opacity 0.4s;
        will-change: opacity; }
      .site-header .primary-menu li.mega-menu.cat-list .cat-bg + .cat-meta {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 3;
        color: #fff;
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: center; }
    .site-header .primary-menu li.mega-menu.cat-list.column-10 > ul.sub-menu {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding-right: 20px;
      padding-left: 20px; }
      .site-header .primary-menu li.mega-menu.cat-list.column-10 > ul.sub-menu > li {
        flex-grow: 0;
        min-width: 10%; }
    .site-header .primary-menu li.mega-menu.cat-list.column-10 .cat-bg + .cat-meta {
      width: 100%;
      padding: 0 5px;
      font-size: 12px;
      font-size: 0.75rem;
      white-space: pre-wrap; }
    .site-header .primary-menu > li.right > ul.sub-menu {
      right: -10px;
      left: auto; }
      .site-header .primary-menu > li.right > ul.sub-menu li.menu-item-has-children > a {
        padding-right: 0;
        padding-left: 35px; }
    .site-header .primary-menu > li.right ul.sub-menu {
      text-align: right; }
      .site-header .primary-menu > li.right ul.sub-menu li.menu-item-has-children > a:after {
        right: auto;
        left: 0;
        content: "\34"; }
      .site-header .primary-menu > li.right ul.sub-menu ul.sub-menu {
        left: auto;
        right: 100%; }
  .site-header.site-header-layout-1 .header-section.menu {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 2px solid; }
  .site-header.site-header-layout-1.sticky .header-section.menu, .site-header.site-header-layout-1.is-sticky.show-header .header-section.menu {
    border-top: 0px; }
  .site-header.site-header-layout-1 .primary-menu > li > a {
    line-height: 75px; }
  .site-header.site-header-layout-1 .primary-menu > li.current-menu-item > a:before,
  .site-header.site-header-layout-1 .primary-menu > li.current-menu-ancestor > a:before {
    bottom: 25px; }
  .site-header.site-header-layout-1.sticky .header-section.branding, .site-header.site-header-layout-1.is-sticky .header-section.branding {
    display: none; }
  .site-header.site-header-layout-1 .site-branding {
    padding: 40px 0; }
  .site-header.site-header-layout-1 .header-section.header-right {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: auto;
    height: 75px;
    align-items: center; }
  .site-header.site-header-layout-2 .header-section.menu {
    z-index: 3;
    width: auto;
    margin-right: 0;
    text-align: center;
    font-size: 0;
    pointer-events: none; }
    .site-header.site-header-layout-2 .header-section.menu .main-navigation {
      display: inline-block;
      width: auto;
      margin: 0 auto;
      pointer-events: auto; }
  .site-header.site-header-layout-2 .header-section.header-right {
    margin-left: 20px; }
  .site-header.site-header-layout-2.force-center .header-section.menu {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 400px); }
  .site-header.site-header-layout-3 .site-branding {
    padding: 40px 0; }
  .site-header.site-header-layout-3 .header-section.menu {
    position: absolute; }
    .site-header.site-header-layout-3 .header-section.menu.header-left {
      left: 15px; }
    .site-header.site-header-layout-3 .header-section.menu.header-right {
      right: 15px; }
      .touch .site-header.site-header-layout-3 .header-section.menu.header-right {
        right: 70px; }
  .site-header.site-header-layout-4 .header-section.branding,
  .site-header.site-header-layout-4 .site-header-search {
    margin-left: 0; }
  .site-header.site-header-layout-4 .header-section.menu {
    margin-left: -15px; }
  .site-header.site-header-layout-4 .header-section.menu,
  .site-header.site-header-layout-4 .social-navigation,
  .site-header.site-header-layout-4 .secondary-navigation {
    margin-right: 0; }
  .site-header.site-header-layout-4 .site-branding {
    padding-top: 50px;
    padding-bottom: 15px; }
  .site-header.site-header-layout-4.sticky .container:first-child, .site-header.site-header-layout-4.is-sticky .container:first-child {
    display: none; }
  .site-header.site-header-layout-4 .secondary-navigation > ul > li {
    margin-left: 15px; }
    .site-header.site-header-layout-4 .secondary-navigation > ul > li > a {
      line-height: 50px;
      opacity: 0.75; }
      .no-touch .site-header.site-header-layout-4 .secondary-navigation > ul > li > a:hover {
        opacity: 1; }
  .site-header.site-header-layout-4 .container:last-child:after {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    content: ""; }
  .site-header.site-header-layout-4 .header-section.header-right .site-header-search {
    display: none; } }
@media screen and (max-width: 1439px) {
  .site-header .primary-menu li.mega-menu.column-5 > ul.sub-menu {
    padding-right: 25px;
    padding-left: 25px; } }
@media screen and (max-width: 1119px) {
  .site-header .site-header-main .container {
    min-height: 70px; }

  .site-header.site-header-layout-1 .header-section.branding {
    z-index: 9; }
  .site-header.site-header-layout-1 .header-section.header-right {
    position: absolute;
    left: 0;
    padding: 0 30px; }
  .site-header.site-header-layout-1 .site-header-search {
    margin-left: 0; }
  .site-header.site-header-layout-1 .menu-toggle {
    margin-right: 0;
    margin-left: 0; }
    .site-header.site-header-layout-1 .menu-toggle:first-child {
      margin-left: auto; }

  .site-header.site-header-layout-2 .header-section.header-right,
  .site-header.site-header-layout-4 .header-section.header-right {
    margin-right: -10px; }

  .site-header.site-header-layout-4 .container:nth-child(2) {
    display: none; } }
@media screen and (max-width: 1023px) {
  .header-top-bar .sub-menu,
  .site-header .secondary-navigation,
  .site-header .social-navigation,
  .header-top-bar .site-header-search {
    display: none; }

  .site-header.site-header-layout-3 .site-header-main .site-header-search {
    display: block; }

  .touch .site-header-cart a.cart-contents:hover {
    pointer-events: none; } }
@media screen and (max-width: 600px) {
  .sidemenu .container {
    width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    margin-right: 20px; }

  .site-header.site-header-layout-1 .header-section.header-right {
    padding: 0 10px; }

  .site-header.site-header-layout-1 .site-header-search {
    margin-right: 0; }
  .site-header.site-header-layout-1 .menu-toggle {
    margin-left: auto; }

  .site-header.site-header-layout-2 .header-section.branding,
  .site-header.site-header-layout-4 .header-section.branding {
    margin-right: 40px; } }
@media screen and (max-width: 599px) {
  .site-branding .site-title {
    font-size: 18px;
    font-size: 1.125rem; }
  .site-branding .site-description {
    font-size: 13px;
    font-size: 0.8125rem; }

  .site-header.site-header-layout-3 .site-header-main .site-header-search {
    left: 10px; } }
/* ==========================================================================
   5.0 Front Page
   ========================================================================== */
.home.front-page .main > .container {
  padding-top: 50px; }

/* Featured Slider
   ========================================================================== */
.featured-slider {
  font-size: 0; }
  .featured-slider .slider-bg-img,
  .featured-slider .slider-link,
  .featured-slider .slider-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .featured-slider, .featured-slider * {
    transition-property: transform, opacity !important; }
  .featured-slider ul {
    margin: 0;
    list-style: none; }
  .featured-slider .slider {
    position: relative; }
    .featured-slider .slider .slider-bg {
      z-index: 1;
      overflow: hidden; }
      .featured-slider .slider .slider-bg .background-video-wrapper {
        pointer-events: none; }
        .featured-slider .slider .slider-bg .background-video-wrapper iframe,
        .featured-slider .slider .slider-bg .background-video-wrapper video {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          margin-bottom: 0; }
    .featured-slider .slider .slider-bg-img {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
    .featured-slider .slider .slider-link {
      z-index: 1; }
    .featured-slider .slider .slider-content {
      position: relative;
      z-index: 9;
      width: 100%;
      color: #fff;
      text-align: center;
      pointer-events: none; }
      .featured-slider .slider .slider-content > * {
        margin-bottom: 15px; }
        .featured-slider .slider .slider-content > *:last-child {
          margin-bottom: 0; }
      .featured-slider .slider .slider-content a {
        pointer-events: auto; }
  .featured-slider .slider-title {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500; }
  .featured-slider .slider-excerpt {
    font-size: 0.9375rem; }
    .featured-slider .slider-excerpt p {
      margin-bottom: 0; }
  .featured-slider .meta-item.time:after {
    display: none; }
  .featured-slider .wprm-recipe-rating {
    margin-top: 0 !important; }
  .featured-slider .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    overflow: hidden; }
    .featured-slider .slick-arrow.slick-prev {
      left: 10px; }
    .featured-slider .slick-arrow.slick-next {
      right: 10px; }
  .no-touch .featured-slider .slick-arrow {
    opacity: 0; }
  .no-touch .featured-slider:hover .slick-arrow {
    opacity: 1; }
  .featured-slider .slider-bg:after {
    pointer-events: none; }
  .featured-slider.slider-style-1 .slider, .featured-slider.slider-style-2 .slider {
    background: #111;
    height: calc(100vh - 160px);
    min-height: 560px;
    max-height: 640px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
  .featured-slider.slider-style-1 .meta-item.recipe-rating, .featured-slider.slider-style-2 .meta-item.recipe-rating {
    margin-left: 30px; }
  .featured-slider.slider-style-3 .meta-item.recipe-rating, .featured-slider.slider-style-4 .meta-item.recipe-rating, .featured-slider.slider-style-5 .meta-item.recipe-rating {
    margin-top: 10px; }
  .featured-slider.slider-style-1 .slider-content {
    text-align: left;
    width: calc(100% - 60px);
    max-width: 1200px;
    padding: 30px 0; }
    .featured-slider.slider-style-1 .slider-content > *:not(:last-child) {
      margin-bottom: 10px; }
  .featured-slider.slider-style-1 .slider-title {
    max-width: 850px;
    margin-left: 0; }
    .featured-slider.slider-style-1 .slider-title:not(:last-child) {
      margin-bottom: 14px; }
    .featured-slider.slider-style-1 .slider-title a {
      display: inline;
      background: #fff;
      color: #000;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
      padding: 2px 25px 6px; }
  .featured-slider.slider-style-1 .slider-excerpt {
    max-width: 850px;
    margin-left: 0; }
    .featured-slider.slider-style-1 .slider-excerpt p {
      display: inline;
      background: #fff;
      color: #000;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
      padding: 2px 25px; }
  .featured-slider.slider-style-1 .meta {
    display: inline-block;
    background: #000;
    color: #fff;
    width: auto;
    padding: 8px 25px; }
  .featured-slider.slider-style-2 .slider-content {
    padding: 150px 30px 30px; }
    .featured-slider.slider-style-2 .slider-content:before {
      position: absolute;
      z-index: 1;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
      content: "";
      pointer-events: none; }
    .featured-slider.slider-style-2 .slider-content > * {
      position: relative;
      z-index: 3;
      max-width: 800px; }
  .featured-slider.slider-style-3, .featured-slider.slider-style-4, .featured-slider.slider-style-6 {
    width: 100%;
    max-width: var(--slider-max-width); }
    .featured-slider.slider-style-3 .slider-bg, .featured-slider.slider-style-4 .slider-bg, .featured-slider.slider-style-6 .slider-bg {
      position: relative; }
    .featured-slider.slider-style-3 .slider-content, .featured-slider.slider-style-4 .slider-content, .featured-slider.slider-style-6 .slider-content {
      color: #000; }
  .featured-slider.slider-style-3 .main-slider > .slider, .featured-slider.slider-style-4 .main-slider > .slider {
    opacity: 0; }
  .featured-slider.slider-style-3 .slider-bg, .featured-slider.slider-style-4 .slider-bg {
    width: 100%;
    height: 0;
    padding-top: 99%;
    background: #f7f7f7; }
  .featured-slider.slider-style-3 .slider-content, .featured-slider.slider-style-4 .slider-content {
    padding: 15px 0; }
  .featured-slider.slider-style-3 .cat-links, .featured-slider.slider-style-4 .cat-links {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }
    .featured-slider.slider-style-3 .cat-links + .slider-title, .featured-slider.slider-style-4 .cat-links + .slider-title {
      margin-top: 25px; }
  .featured-slider.slider-style-3 .meta-item.recipe-rating, .featured-slider.slider-style-4 .meta-item.recipe-rating {
    margin-top: 0px; }
    .featured-slider.slider-style-3 .meta-item.recipe-rating .rating-details, .featured-slider.slider-style-4 .meta-item.recipe-rating .rating-details {
      display: none; }
    .featured-slider.slider-style-3 .meta-item.recipe-rating .wprm-recipe-rating, .featured-slider.slider-style-4 .meta-item.recipe-rating .wprm-recipe-rating {
      margin-left: 0; }
  .featured-slider.slider-style-3 .slick-slide > div {
    margin: 0 6px; }
  .featured-slider.slider-style-3 .slider-content {
    padding-bottom: 0; }
  .dark-color .featured-slider.slider-style-3 .slider-content {
    color: #fff; }
  .featured-slider.slider-style-3 .cat-links {
    background: #000; }
  .featured-slider.slider-style-3 .meta-item.recipe-rating .wprm-recipe-rating {
    color: var(--primary-color); }
  .featured-slider.slider-style-3 .slick-arrow {
    top: 75vw; }
  .featured-slider.slider-style-4 .slider-wrapper {
    margin-left: -8px;
    margin-right: -8px; }
  .featured-slider.slider-style-4 .slick-slide > div {
    padding: 0 8px; }
  .featured-slider.slider-style-4 .slider {
    padding: 45px 45px 10px;
    background: #f2f3ed; }
  .featured-slider.slider-style-4 .cat-links {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08); }
  .featured-slider.slider-style-4 .slick-track {
    display: flex !important;
    align-items: stretch !important; }
  .featured-slider.slider-style-4 .slick-slide {
    height: inherit !important;
    width: 100%;
    margin: 0 !important; }
  .featured-slider.slider-style-4 .slick-slide > div,
  .featured-slider.slider-style-4 .slider {
    height: 100%; }
  .featured-slider.slider-style-4 .slick-arrow {
    top: calc((100vw - 90px)*1.5/2 + 45px); }
  .featured-slider.slider-style-5 {
    background: #f2f3ed;
    padding: 20px 0; }
    .featured-slider.slider-style-5 .container {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .featured-slider.slider-style-5 .slider-for-wrapper {
      order: 2;
      width: 100%; }
      .featured-slider.slider-style-5 .slider-for-wrapper .slider-wrapper,
      .featured-slider.slider-style-5 .slider-for-wrapper .slick-list,
      .featured-slider.slider-style-5 .slider-for-wrapper .slick-track,
      .featured-slider.slider-style-5 .slider-for-wrapper .slick-slide > div {
        height: 100%; }
      .featured-slider.slider-style-5 .slider-for-wrapper .slider {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        background-color: var(--primary-color);
        height: inherit; }
      .featured-slider.slider-style-5 .slider-for-wrapper .slider-content {
        position: relative;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 60px 30px 100px;
        width: 100%;
        text-align: center;
        height: 100%; }
      .featured-slider.slider-style-5 .slider-for-wrapper .slider-excerpt {
        margin-bottom: 0; }
      .featured-slider.slider-style-5 .slider-for-wrapper .cat-links,
      .featured-slider.slider-style-5 .slider-for-wrapper .meta {
        position: absolute; }
      .featured-slider.slider-style-5 .slider-for-wrapper .cat-links {
        top: 0; }
      .featured-slider.slider-style-5 .slider-for-wrapper .meta {
        bottom: 30px; }
      .featured-slider.slider-style-5 .slider-for-wrapper .cat-links {
        background: #000; }
    .featured-slider.slider-style-5 .slider-nav-wrapper {
      order: 1;
      width: 100%;
      background: #111; }
      .featured-slider.slider-style-5 .slider-nav-wrapper .slider-bg {
        width: 100%;
        height: 0;
        padding-top: 125%; }
    .no-touch .featured-slider.slider-style-5 .slick-arrow {
      opacity: 1; }
  .featured-slider.slider-style-6 .slider-bg {
    display: none; }
  .featured-slider.slider-style-6 .slider-content {
    padding: 40px;
    background: #f2f3ed; }
  .featured-slider.slider-style-6 .slider-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    max-width: 100%; }
    .featured-slider.slider-style-6 .slider-img img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .featured-slider.slider-style-6 .cat-links {
    position: relative;
    z-index: 9;
    margin-top: -30px;
    overflow: hidden; }
  .featured-slider.slider-style-6 .meta-item.recipe-rating {
    margin-left: 30px; }
  .featured-slider.slider-style-6 .slick-track {
    display: flex !important;
    align-items: stretch !important; }
  .featured-slider.slider-style-6 .slick-slide {
    height: inherit !important;
    width: 100%;
    margin: 0 !important; }
  .featured-slider.slider-style-6 .slick-slide > div,
  .featured-slider.slider-style-6 .slider,
  .featured-slider.slider-style-6 .slider-bg,
  .featured-slider.slider-style-6 .slider-content {
    height: 100%; }

.featured-section.custom-section .custom-content {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 600px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  overflow: hidden; }
.featured-section.custom-section .section-bg,
.featured-section.custom-section .section-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
.touch .featured-section.custom-section .section-bg .section-bg-img {
  background-attachment: scroll !important; }
.featured-section.custom-section .section-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
.featured-section.custom-section .section-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.featured-section.custom-section .section-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: #000;
  opacity: 0.15; }
.featured-section.custom-section .section-bg.no-overlay:after {
  display: none; }
.featured-section.custom-section .container {
  width: 100%; }
  .featured-section.custom-section .container .content.align-left {
    margin-left: 0;
    text-align: left; }
  .featured-section.custom-section .container .content.align-right {
    margin-right: 0;
    text-align: right; }
  .featured-section.custom-section .container .content > * {
    margin-top: 24px;
    margin-bottom: 0; }
    .featured-section.custom-section .container .content > *:last-child {
      margin-bottom: 24px; }
  .featured-section.custom-section .container .content p + h2 {
    margin-top: 15px; }
  .featured-section.custom-section .container .content h1 + * {
    margin-top: 15px; }
  .featured-section.custom-section .container .content h1,
  .featured-section.custom-section .container .content h2 {
    line-height: 1; }

/* Homepage Widgets
   ========================================================================== */
.home-widget {
  position: relative;
  z-index: 9;
  padding: 50px 0;
  background-color: var(--bg-color);
  color: var(--text-color); }

.home-widget.default-color.footer-info2 {
  padding: 0;
}

  .home-widget.fullwidth .container {
    max-width: 100%;
    padding: 0; }
    .home-widget.fullwidth .container .section-header {
      max-width: calc(100% - 40px); }
  .home-widget.default-color {
    background: none; }
  .home-widget .bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform; }
  .home-widget .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
  .home-widget .container {
    z-index: 3; }
  .home-widget .section-header,
  .home-widget .section-content {
    position: relative;
    z-index: 9; }
  .home-widget.custom-content .section-content > *:last-child {
    margin-bottom: 0; }
  .home-widget.custom-content .section-content .video-block + * {
    margin-top: 20px; }
  .home-widget.promo-blocks .section-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin: 0 -10px 0; }
    .home-widget.promo-blocks .section-content .promo-block {
      position: relative;
      width: calc(100% - 20px);
      height: auto;
      margin: 0 10px 20px;
      background: #000; }
      .no-touch .home-widget.promo-blocks .section-content .promo-block:hover .promo-block-img {
        opacity: 0.8; }
      .home-widget.promo-blocks .section-content .promo-block .promo-block-img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 0;
        padding-top: 66.6666%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        transition: opacity 0.4s; }
      .home-widget.promo-blocks .section-content .promo-block .promo-block-text {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 3;
        padding: 6px;
        border: 1px solid #fff; }
        .home-widget.promo-blocks .section-content .promo-block .promo-block-text span {
          display: block;
          padding: 10px 30px;
          width: auto;
          background: #fff;
          color: #000;
          font-family: inherit;
          font-size: 13px;
          font-size: 0.8125rem;
          font-weight: 600;
          letter-spacing: 0.05em;
          line-height: 1.5;
          text-transform: uppercase;
          text-align: center; }
      .home-widget.promo-blocks .section-content .promo-block .promo-block-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 4; }
  .home-widget.lemon-limes-bannr .container {
    overflow: hidden; }
  .home-widget.lemon-limes-bannr .section-content {
    text-align: center;
    font-size: 0; }
    .home-widget.lemon-limes-bannr .section-content a {
      display: inline-block; }
    .home-widget.lemon-limes-bannr .section-content img {
      display: block;
      width: 100%; }
  .home-widget.call-to-action.align-center .section-content {
    text-align: center; }
  .home-widget.call-to-action.align-left .section-content {
    text-align: left; }
  .home-widget.call-to-action.align-right .section-content {
    text-align: right; }
  .home-widget.call-to-action.text-bg .cta-text {
    background: #fff;
    padding: 50px !important; }
  .home-widget.call-to-action figure.cta-img {
    margin-bottom: 34px; }
  .home-widget.call-to-action .cta-text h2 {
    line-height: 1.2; }
  .home-widget.call-to-action .cta-text *:not(:last-child) {
    margin-bottom: 24px; }
  .home-widget.call-to-action .cta-text a:not(.button) {
    text-decoration: underline; }
    .no-touch .home-widget.call-to-action .cta-text a:not(.button):hover {
      text-decoration: none; }
  .home-widget.call-to-action.column-1 .section-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  .home-widget.call-to-action.column-1 figure.cta-img {
    width: 100%; }
  .home-widget.call-to-action.column-1.reverse figure.cta-img {
    order: 3;
    margin-top: 34px;
    margin-bottom: 0; }
  .home-widget.search-keywords .search + .keywords {
    margin-top: 30px; }
  .home-widget.search-keywords .keywords {
    text-align: center; }
  .home-widget.search-keywords .keywords-label {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 30px; }
    .home-widget.search-keywords .keywords-label + .tagcloud {
      margin-left: 0; }
  .home-widget.search-keywords .bg-container ~ .container .search-form input[type="search"] {
    background: #fff;
    color: #000; }
  .home-widget.search-keywords .bg-container ~ .container .search-form .search-submit {
    color: #000; }
  .home-widget.search-keywords .optional-content * {
    margin-bottom: 20px; }
    .home-widget.search-keywords .optional-content *:last-child {
      margin-bottom: 30px; }

@media screen and (min-width: 480px) {
  .featured-slider.slider-style-3 .slider-title, .featured-slider.slider-style-4 .slider-title {
    font-size: 26px;
    font-size: 1.625rem; }
  .featured-slider.slider-style-3 .slider, .featured-slider.slider-style-4 .slider {
    width: calc(50% - 12px); }
  .featured-slider.slider-style-3 .slick-arrow {
    top: 37.5vw; }
  .featured-slider.slider-style-4 .slick-arrow {
    top: 50%; } }
@media screen and (min-width: 600px) {
  .featured-slider.slider-style-3, .featured-slider.slider-style-4 {
    padding: 0 30px; }
    .featured-slider.slider-style-3 .slick-arrow.slick-prev, .featured-slider.slider-style-4 .slick-arrow.slick-prev {
      left: -14px; }
    .featured-slider.slider-style-3 .slick-arrow.slick-next, .featured-slider.slider-style-4 .slick-arrow.slick-next {
      right: -14px; }
  .featured-slider.slider-style-3 .slick-arrow {
    top: calc((100vw - 72px)/2*1.5/2); }
  .featured-slider.slider-style-5 {
    padding: 30px 0; }
  .featured-slider.slider-style-6 {
    padding: 0 30px; }
    .featured-slider.slider-style-6 .slick-arrow.slick-prev {
      left: -20px; }
    .featured-slider.slider-style-6 .slick-arrow.slick-next {
      right: -20px; }

  .home-widget.custom-content .lo-row:last-child .lo-column {
    margin-bottom: 0; }
  .home-widget.promo-blocks .section-content .promo-block {
    width: calc(33.333333% - 20px); }
  .home-widget.call-to-action.column-1 .cta-text {
    max-width: 60%; }

  .featured-section.custom-section .custom-content .lo-row .lo-column {
    margin-bottom: 0; } }
@media screen and (min-width: 768px) {
  .featured-slider.slider-style-2 .slider-content {
    padding-bottom: 50px; }
  .featured-slider.slider-style-5 {
    --arrow-size: 25px; }
    .featured-slider.slider-style-5 .container {
      align-items: stretch; }
    .featured-slider.slider-style-5 .slick-list,
    .featured-slider.slider-style-5 .slick-track,
    .featured-slider.slider-style-5 .slick-slide > div,
    .featured-slider.slider-style-5 .slider {
      height: inherit; }
    .featured-slider.slider-style-5 .slider-for-wrapper {
      width: 50%; }
    .featured-slider.slider-style-5 .slider-nav-wrapper {
      width: 50%; }
    .featured-slider.slider-style-5 .slick-arrow {
      width: var(--arrow-size);
      height: calc(var(--arrow-size)*2);
      line-height: calc(var(--arrow-size)*2);
      border-radius: 0; }
      .featured-slider.slider-style-5 .slick-arrow:before {
        width: calc(var(--arrow-size)*2);
        background: #000; }
      .featured-slider.slider-style-5 .slick-arrow:after {
        font-size: 16px;
        font-size: 1rem;
        color: #fff; }
    .featured-slider.slider-style-5 .slick-prev.slick-arrow {
      left: auto;
      right: 0;
      text-align: right; }
    .featured-slider.slider-style-5 .slick-next.slick-arrow {
      right: 0;
      margin-right: calc(0px - var(--arrow-size));
      text-align: left; }
      .featured-slider.slider-style-5 .slick-next.slick-arrow:before {
        right: 0;
        left: auto; }
  .featured-slider.slider-style-6 .slider {
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: stretch; }
  .featured-slider.slider-style-6 .slider-bg {
    display: block; }
  .featured-slider.slider-style-6 .slider-bg,
  .featured-slider.slider-style-6 .slider-content {
    width: 50%; }
  .featured-slider.slider-style-6 .slider-bg .slider-link {
    position: relative;
    display: block;
    height: 100%;
    background: #f7f7f7; }
  .featured-slider.slider-style-6 .slider-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center; }

  .home-widget.call-to-action .section-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .home-widget.call-to-action.text-bg .section-content {
    align-items: stretch; }
  .home-widget.call-to-action.text-bg .cta-text {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center; }
  .home-widget.call-to-action.column-2 figure.cta-img {
    width: 60%;
    margin-bottom: 0; }
  .home-widget.call-to-action.column-2 .cta-text {
    width: 40%; }
  .home-widget.call-to-action.column-2 .cta-img + .cta-text {
    padding-left: 30px; }
  .home-widget.call-to-action.column-2.reverse .section-content {
    flex-direction: row-reverse; }
  .home-widget.call-to-action.column-2.reverse .cta-img + .cta-text {
    padding-right: 30px;
    padding-left: 0; }
  .home-widget.search-keywords .keywords {
    display: flex; }
  .home-widget.search-keywords .keywords-label {
    margin-right: 20px; } }
@media screen and (min-width: 800px) {
  .featured-slider.slider-style-3 .slider {
    width: calc(33.3333% - 12px); }
  .featured-slider.slider-style-3 .slick-arrow {
    top: calc((100vw - 84px)/3*1.5/2); }

  .featured-slider.slider-style-4 .slider {
    width: calc(33.3333% - 16px); } }
@media screen and (min-width: 1024px) {
  .featured-slider .slider-excerpt {
    font-size: 18px;
    font-size: 1.125rem; }
  .featured-slider.slider-style-6 .slider-excerpt {
    font-size: 15px;
    font-size: 0.9375rem; }
  .featured-slider.slider-style-5 .slider-for-wrapper .slider-content {
    padding: 50px; }
  .featured-slider.slider-style-6 .slider-bg {
    min-height: 700px; }

  .home-widget.lemon-limes-bannr.large-banner-special .section-content {
    height: 400px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    will-change: transform; }
    .home-widget.lemon-limes-bannr.large-banner-special .section-content a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block; }
    .home-widget.lemon-limes-bannr.large-banner-special .section-content img {
      opacity: 0;
      visibility: hidden; }
  .home-widget.search-keywords.column-2 .section-content,
  .home-widget.search-keywords.column-2 .keywords {
    display: flex; }
  .home-widget.search-keywords.column-2 .search:not(:only-child) {
    width: 50%; }
  .home-widget.search-keywords.column-2 .search + .keywords {
    padding: 0 20px;
    margin-top: 0;
    width: 50%;
    border: 1px solid;
    border-left: none;
    overflow: hidden; }
  .home-widget.search-keywords.column-2 .keywords {
    text-align: center; }
    .home-widget.search-keywords.column-2 .keywords .tagcloud {
      display: flex;
      align-items: center; }
  .home-widget.search-keywords.column-2 .keywords-label {
    line-height: 48px; }
  .home-widget.search-keywords.column-2.dark-color .bg-container ~ .container .search-form input[type="search"], .dark-color .home-widget.search-keywords.column-2.default-color .bg-container ~ .container .search-form input[type="search"] {
    border-color: #fff !important; } }
@media screen and (min-width: 1120px) {
  .featured-slider.slider-style-1 .slider, .featured-slider.slider-style-2 .slider {
    max-height: 700px; }
  .featured-slider.slider-style-1 .slider-title, .featured-slider.slider-style-2 .slider-title {
    font-size: 50px;
    font-size: 3.125rem; }
  .featured-slider.slider-style-1 .slider-content {
    padding-bottom: 80px; }
  .featured-slider.slider-style-5 {
    --arrow-size: 40px;
    padding: 50px 20px; }
    .featured-slider.slider-style-5 .slider-for-wrapper .slider-content {
      padding: 50px 80px; }
    .featured-slider.slider-style-5 .slider-title {
      font-size: 44px;
      font-size: 2.75rem; }

  .home.front-page .site-content .main:first-child > .container {
    padding-top: 70px; }

  .home-widget.call-to-action.column-2 .cta-img + .cta-text {
    padding-left: 50px; }
  .home-widget.call-to-action.column-2.reverse .cta-img + .cta-text {
    padding-right: 50px;
    padding-left: 0; }
  .home-widget.call-to-action.column-1 .cta-text h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1; }
  .home-widget.promo-blocks .promo-block-text span {
    white-space: nowrap; } }
@media screen and (min-width: 1200px) {

  .featured-slider.slider-style-3 .slider {
    width: calc(25% - 12px);
  }

  .featured-slider.slider-style-3 .slick-arrow {
    top: calc((var(--slider-max-width))/8)
  }
}
@media screen and (min-width: 1440px) {
  .home-widget.call-to-action .cta-text h2 {
    font-size: 46px;
    font-size: 2.875rem; } }
@media screen and (max-width: 1199px) {
  .featured-slider.slider-style-3 .slider-content {
    padding-right: 10px;
    padding-left: 10px; } }
@media screen and (max-width: 599px) {
  .featured-section {
    margin-top: 0 !important; }

  .featured-slider.slider-style-1 .meta-item.recipe-rating,
  .featured-slider.slider-style-2 .meta-item.recipe-rating,
  .featured-slider.slider-style-6 .meta-item.recipe-rating {
    display: block;
    margin-left: 0; }
  .featured-slider.slider-style-1 .slick-arrow.slick-prev,
  .featured-slider.slider-style-2 .slick-arrow.slick-prev,
  .featured-slider.slider-style-6 .slick-arrow.slick-prev {
    left: 0; }
  .featured-slider.slider-style-1 .slick-arrow.slick-next,
  .featured-slider.slider-style-2 .slick-arrow.slick-next,
  .featured-slider.slider-style-6 .slick-arrow.slick-next {
    right: 0; }

  .featured-slider.slider-style-1 .cat-links,
  .featured-slider.slider-style-1 .slider-title a,
  .featured-slider.slider-style-1 .slider-excerpt p,
  .featured-slider.slider-style-1 .meta {
    padding-right: 10px;
    padding-left: 10px; }

  .home-widget .section-header .filter {
    position: relative;
    top: auto;
    right: auto;
    margin: -20px auto 34px;
    text-align: center; }

  .home-widget.call-to-action.text-bg .cta-text {
    padding: 50px 20px !important; } }
@media screen and (max-width: 479px) {
  .featured-slider.slider-style-4 .slider {
    padding-right: 20px;
    padding-left: 20px; }
  .featured-slider.slider-style-4 .slick-arrow {
    top: calc((100vw - 40px)*1.5/2 + 45px); } }
/* ==========================================================================
   6.0 Blog & Posts
   ========================================================================== */
/**
 * Categories
 */
.cat-links {
  display: inline-block;
  padding: 0 25px;
  background-color: var(--cat-bg);
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600; }
  .cat-links a,
  .cat-links span {
    position: relative;
    color: inherit !important;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    line-height: 30px; }
    .cat-links a:not(:last-child):after,
    .cat-links span:not(:last-child):after {
      position: relative;
      content: ".";
      margin-left: 2px; }
  .no-touch .cat-links a:hover {
    opacity: 0.5; }

/**
 * Read More Button
 */
.more-btn .read-more-btn {
  position: relative;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  display: inline-flex;
  padding: 0 20px;
  width: auto;
  background-color: transparent;
  border-radius: 999px;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 40px;
  overflow: hidden; }
  .more-btn .read-more-btn span {
    margin: 0;
    white-space: nowrap; }
  .more-btn .read-more-btn:after {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\24";
    margin-right: -5px;
    margin-left: 5px;
    color: var(--primary-color);
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 40px; }
  .no-touch .more-btn .read-more-btn:hover {
    background-color: var(--secondary-color);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    color: #000; }

/* Posts Archive General Styles
   ========================================================================== */
.posts {
  --post-gap: 35px;
  --img-ratio: 66.6666%;
  --ratio: 0.6666; }
  .posts .posts-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .posts .post,
  .posts .featured-img img,
  .posts .post-content {
    width: 100%; }
  .posts .featured-img-container,
  .posts .post-bg {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: var(--img-ratio); }
  .posts .post-bg {
    background: #000; }
  .posts .featured-img-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .posts.img-ratio-4-3 {
    --img-ratio: 75%;
    --ratio: 0.75; }
  .posts.img-ratio-1-1 {
    --img-ratio: 100%;
    --ratio: 1; }
  .posts.img-ratio-2-3 {
    --img-ratio: 150%;
    --ratio: 1.5; }
  .posts.img-ratio-4-5 {
    --img-ratio: 125%;
    --ratio: 1.25; }
  .posts.text-center {
    text-align: center; }
  .posts .post-header,
  .posts .cat-links,
  .posts .post-title,
  .posts .post-excerpt {
    margin-bottom: 10px; }
  .posts .post-title {
    font-size: 21px;
    font-size: 1.3125rem; }
  .posts.large-title .post-title {
    font-size: 26px;
    font-size: 1.625rem; }
  .posts .post-excerpt {
    font-size: 15px;
    font-size: 0.9375rem; }
    .posts .post-excerpt:last-child,
    .posts .post-excerpt p {
      margin-bottom: 0; }
  .posts .post-header {
    width: 100%; }
    .posts .post-header:last-child,
    .posts .post-header > *:last-child {
      margin-bottom: 0; }
  .posts .post {
    position: relative;
    margin-top: var(--post-gap);
    overflow: hidden; }
    .posts .post:first-child {
      margin-top: 0; }
    .posts .post .featured-img {
      position: relative;
      width: 100%;
      margin: 0;
      overflow: hidden; }
      .posts .post .featured-img a,
      .posts .post .featured-img img {
        display: block; }
    .posts .post .post-content {
      position: relative;
      width: 100%;
      padding: 0 0 20px; }
  .posts .wprm-recipe-rating {
    margin: 0 !important; }
  .posts .overlay-label {
    position: absolute;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.4s; }
    .posts .overlay-label.format-label {
      top: 12px;
      left: 12px;
      width: auto;
      height: auto;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid;
      background: rgba(0, 0, 0, 0.1);
      color: #fff;
      font-size: 13px;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.025em;
      line-height: 25px;
      text-align: center;
      opacity: 1;
      pointer-events: none;
      text-shadow: 0 0 8px rgba(0, 0, 0, 0.2); }
    .posts .overlay-label.recipe-rating, .posts .overlay-label.like, .posts .overlay-label.post-share {
      right: 10px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #fff;
      color: #000;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.05) inset; }
    .posts .overlay-label.recipe-rating {
      top: 10px;
      display: flex;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center; }
      .posts .overlay-label.recipe-rating:not(.no-rating) + .like, .posts .overlay-label.recipe-rating:not(.no-rating) + .post-share {
        top: 60px; }
      .posts .overlay-label.recipe-rating:not(.no-rating) + .like + .post-share {
        top: 110px; }
      .posts .overlay-label.recipe-rating .star:before {
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        content: "\e033";
        display: block;
        font-size: 15px;
        line-height: 1;
        margin-bottom: 2px; }
      .posts .overlay-label.recipe-rating .rating-details {
        font-size: 13px;
        font-size: 0.8125rem;
        line-height: 1; }
    .posts .overlay-label.like {
      top: 10px;
      line-height: 47px; }
      .posts .overlay-label.like + .post-share {
        top: 60px; }
      .posts .overlay-label.like:not(.liked) i.fas.fa-heart:before {
        font-weight: 400; }
      .posts .overlay-label.like.liked {
        color: #e92e2e; }
      .no-touch .posts .overlay-label.like:not(.liked):hover i {
        -webkit-animation: heartBeat 1s infinite;
        animation: heartBeat 1s infinite; }
      .posts .overlay-label.like i {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: inherit; }
      .touch .posts .overlay-label.like.mobile-visible {
        opacity: 1; }
    .posts .overlay-label.post-share {
      top: 10px; }
      .posts .overlay-label.post-share i.fa-share-alt {
        display: block;
        width: 45px;
        height: 45px;
        line-height: 47px; }
      .posts .overlay-label.post-share .post-list-social-icon-list {
        position: absolute;
        bottom: 0;
        right: 0;
        -webkit-transform: translateY(130%);
        -ms-transform: translateY(130%);
        transform: translateY(130%);
        z-index: -99;
        box-sizing: content-box;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 10px;
        margin: 0;
        width: 150px;
        height: 40px;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
        color: #000;
        font-size: 16px;
        font-size: 1rem;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        will-change: opacity, transform; }
        .no-touch .posts .overlay-label.post-share .post-list-social-icon-list a:hover {
          opacity: 0.7; }
        .posts .overlay-label.post-share .post-list-social-icon-list:before {
          position: absolute;
          right: 16px;
          top: -6px;
          display: block;
          width: 0;
          height: 0;
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-bottom: 6px solid #fff;
          content: ""; }
        .posts .overlay-label.post-share .post-list-social-icon-list span {
          display: none; }
        .posts .overlay-label.post-share .post-list-social-icon-list a[title="Yummly"] {
          position: relative;
          width: 18px;
          height: 25px;
          -webkit-transform: translateY(-1px);
          -ms-transform: translateY(-1px);
          transform: translateY(-1px); }
          .posts .overlay-label.post-share .post-list-social-icon-list a[title="Yummly"]:before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 1;
            width: 19px;
            height: 16px;
            background: #000;
            border-radius: 2px;
            content: ""; }
          .posts .overlay-label.post-share .post-list-social-icon-list a[title="Yummly"] img {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 3;
            margin-left: 1px;
            width: 28px;
            height: 28px;
            max-width: none;
            opacity: 1 !important; }
      .posts .overlay-label.post-share .post-list-social-icon-list.show {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: translateY(120%);
        -ms-transform: translateY(120%);
        transform: translateY(120%);
        z-index: 9; }
  .posts.layout-masonry .masonry-column {
    position: relative;
    width: 100%; }
  .posts .post.sticky .post-title {
    position: relative; }
    .posts .post.sticky .post-title a:before {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      content: "\e01e";
      position: relative;
      display: inline-block;
      margin-right: 8px;
      -webkit-transform: translateY(2px) rotate(15deg);
      -ms-transform: translateY(2px) rotate(15deg);
      transform: translateY(2px) rotate(15deg);
      font-size: 80%;
      line-height: 1; }
  .no-touch .posts .post:hover .overlay-label {
    opacity: 1; }

.no-touch .posts.style-normal .post-title a:hover {
  color: var(--primary-color); }

.thumbnail-rounded .posts.style-normal .post .featured-img {
  border-radius: 10px; }
.thumbnail-rounded .posts.style-overlay:not(.no-gap) .post {
  border-radius: 10px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0); }

/* Posts Archive - Normal Style
   ========================================================================== */
.posts.style-normal .featured-img + .post-content {
  padding-top: 30px; }
.posts.style-normal .post-footer {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .posts.style-normal .post-footer .more-btn {
    margin-left: 0; }
.posts.style-normal .post > * {
  position: relative;
  z-index: 3; }
.posts.style-normal .cat-links {
  margin-bottom: 15px; }
.posts.style-normal .meta {
  opacity: 0.65; }

.posts.text-center .post-footer .more-btn {
  margin: 0 auto; }
  .posts.text-center .post-footer .more-btn .read-more-btn {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }

.posts.layout-large.style-normal .post.has-post-thumbnail .cat-links,
.posts.layout-masonry.style-normal .post.has-post-thumbnail .cat-links,
.posts.layout-grid.style-normal .post.has-post-thumbnail .cat-links {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0; }
.posts.layout-large.style-normal.text-center .post.has-post-thumbnail .cat-links,
.posts.layout-masonry.style-normal.text-center .post.has-post-thumbnail .cat-links,
.posts.layout-grid.style-normal.text-center .post.has-post-thumbnail .cat-links {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.posts.layout-large.style-normal:not(.text-center) .cat-links,
.posts.layout-masonry.style-normal:not(.text-center) .cat-links,
.posts.layout-grid.style-normal:not(.text-center) .cat-links {
  padding: 0 10px; }

/* Posts Archive - Overlay Style
   ========================================================================== */
.posts.style-overlay .post {
  background: #000; }
.posts.style-overlay .post-content {
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  padding: 12px;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.4s; }
  .posts.style-overlay .post-content .post-excerpt {
    color: inherit; }
  .posts.style-overlay .post-content > * {
    position: relative;
    z-index: 3; }
  .posts.style-overlay .post-content a {
    pointer-events: auto; }
.no-touch .posts.style-overlay.text-hover-visible .post-content {
  opacity: 0; }
.no-touch .posts.style-overlay.text-hover-visible .post:hover .post-content {
  opacity: 1; }
.posts.style-overlay.overlay-modern .cat-links {
  padding: 0 10px; }
.posts.style-overlay.overlay-modern .post-title {
  line-height: 1.3; }
  .posts.style-overlay.overlay-modern .post-title a {
    display: inline;
    padding: 3px 10px 4px;
    background: #fff;
    color: #000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone; }
.posts.style-overlay.overlay-modern .meta {
  display: inline-block;
  padding: 5px 10px;
  width: auto;
  background: #000;
  color: #fff; }
.posts.style-overlay.overlay-modern .post-header {
  overflow: hidden; }
.posts.style-overlay.overlay-classic .cat-links {
  padding: 0;
  background: none;
  line-height: 1.2; }
  .posts.style-overlay.overlay-classic .cat-links a {
    line-height: inherit; }
.posts.style-overlay.overlay-classic .post-content {
  padding: 20px; }
  .posts.style-overlay.overlay-classic .post-content:before {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100% + 80px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    content: "";
    pointer-events: none; }
  .posts.style-overlay.overlay-classic .post-content > * {
    position: relative;
    z-index: 3; }
.posts.style-overlay.overlay-classic.lighter-overlay .post-content:before {
  opacity: 0.5; }
.posts.style-overlay.overlay-classic.no-overlay .post-content:before {
  opacity: 0; }
.posts.style-overlay.overlay-classic .featured-img .featured-img-container,
.posts.style-overlay.overlay-classic .featured-img img {
  transition: opacity 0.4s; }
.no-touch .posts.style-overlay.overlay-classic .post:hover .featured-img .featured-img-container,
.no-touch .posts.style-overlay.overlay-classic .post:hover .featured-img img {
  opacity: 0.7; }

/* Posts Archive - Large Layout + Overlay Style
   ========================================================================== */
.posts.layout-large.style-overlay .post-header {
  margin-bottom: 0; }
.posts.layout-large.style-overlay .featured-img {
  width: 100%;
  height: 0;
  padding-top: 46%; }
  .posts.layout-large.style-overlay .featured-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }
.posts.layout-large.style-overlay .post-bg {
  padding-top: 46%; }
.posts.layout-large.style-overlay.text-center .post {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center; }
.posts.layout-large.style-overlay.text-center .post-content {
  bottom: auto;
  left: auto;
  padding: 20px 40px;
  text-align: center; }
.posts.layout-large.style-overlay.text-center.overlay-classic .post-content:before {
  display: none; }
.posts.layout-large.style-overlay.text-center.overlay-classic .featured-img:before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  content: "";
  pointer-events: none; }
.posts.layout-large.style-overlay.text-center.overlay-classic.lighter-overlay .featured-img:before {
  opacity: 0.5; }
.posts.layout-large.style-overlay.text-center.overlay-classic.no-overlay .featured-img:before {
  opacity: 0; }

/* Posts Archive - List Layout General Style
   ========================================================================== */
.posts.layout-list .cat-links {
  padding: 0;
  background: none;
  color: var(--primary-color);
  line-height: 1.6; }
  .posts.layout-list .cat-links a {
    line-height: 1; }
.posts.layout-list .post-footer {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .posts.layout-list .post-footer .meta,
  .posts.layout-list .post-footer .more-btn {
    margin-left: 0; }
  .posts.layout-list .post-footer .meta + .more-btn {
    margin-right: 0;
    margin-left: auto; }
    .posts.layout-list .post-footer .meta + .more-btn .read-more-btn {
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }

/* Posts Archive - List Layout + Normal Style
   ========================================================================== */
.posts.layout-list.style-normal .post:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #f2f2f2; }
  .dark-color .posts.layout-list.style-normal .post:not(:first-child) {
    border-color: #393939; }
.posts.layout-list.style-normal .post:last-child {
  padding-bottom: 30px;
  border-bottom: 1px solid #f2f2f2; }
.posts.layout-list.style-normal .post-content {
  padding-bottom: 0; }

/* Posts Archive - List Layout + Overlay Style
   ========================================================================== */
.posts.layout-list.style-overlay .featured-img-container,
.posts.layout-list.style-overlay .post-bg {
  padding-top: 40%; }
.posts.layout-list.style-overlay .post-content {
  top: 50%;
  right: 30px;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 35px;
  width: 60%;
  max-width: 430px;
  height: auto; }
.posts.layout-list.style-overlay.overlay-modern .post-content {
  background: #fff;
  color: #000; }
.posts.layout-list.style-overlay.overlay-modern .post-header {
  overflow-x: initial; }
.posts.layout-list.style-overlay.overlay-modern .post-title {
  line-height: 1.2; }
.posts.layout-list.style-overlay.overlay-modern .cat-links,
.posts.layout-list.style-overlay.overlay-modern .post-title a,
.posts.layout-list.style-overlay.overlay-modern .meta {
  padding: 0;
  background: none; }
.posts.layout-list.style-overlay.overlay-modern .meta {
  color: inherit;
  opacity: 0.65; }
.posts.layout-list.style-overlay.overlay-classic .post-content {
  border: 1px solid #fff; }
  .posts.layout-list.style-overlay.overlay-classic .post-content:before {
    height: 100%;
    background: rgba(0, 0, 0, 0.35); }

/* Posts Archive - Grid Layout + Normal Style
   ========================================================================== */
.posts.layout-grid.style-overlay.no-gap .post {
  margin-top: 0; }

.posts.layout-grid.style-overlay.small-gap .post {
  margin-top: 4px; }
  .posts.layout-grid.style-overlay.small-gap .post:first-child {
    margin-top: 0; }

/* Posts Carousel
   ========================================================================== */
.posts.layout-carousel .post {
  display: flex !important;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
.posts.layout-carousel .featured-img {
  width: 100px;
  margin-right: 12px;
  border-radius: 50%;
  align-self: flex-start; }
.posts.layout-carousel .featured-img-container {
  height: 100px;
  padding: 0; }
.posts.layout-carousel .post-content {
  padding: 0; }
  .posts.layout-carousel .post-content > * {
    width: 100%; }
.posts.layout-carousel .featured-img + .post-content {
  width: calc(100% - 112px);
  padding: 0; }
.posts.layout-carousel .cat-links {
  padding: 0;
  background: none;
  color: var(--primary-color);
  line-height: 1.6; }
  .posts.layout-carousel .cat-links a {
    line-height: 1; }
.posts.layout-carousel .post-title {
  font-size: 18px;
  font-size: 1.125rem; }
.posts.layout-carousel .posts-wrapper.slick-slider {
  margin-right: -15px;
  margin-left: -15px; }
.posts.layout-carousel .posts-wrapper > .post {
  opacity: 0; }
  .posts.layout-carousel .posts-wrapper > .post:not(:first-child) {
    display: none !important; }
.posts.layout-carousel .slick-slide > div {
  margin: 0 15px; }
.posts.layout-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  overflow: hidden; }
  .posts.layout-carousel .slick-arrow.slick-prev {
    left: -40px; }
  .posts.layout-carousel .slick-arrow.slick-next {
    right: -40px; }
.touch .posts.layout-carousel .slick-arrow {
  display: none !important; }
.no-touch .posts.layout-carousel .slick-arrow {
  opacity: 0; }
.no-touch .posts.layout-carousel:hover .slick-arrow {
  opacity: 1; }

/* Post Navigation
   ========================================================================== */
.pagination {
  position: relative;
  width: 100%;
  margin: 10px 0 0;
  text-align: center;
  clear: both; }
  .pagination .pagination-container {
    display: block;
    width: 100%; }
  .pagination a,
  .pagination span.page-numbers {
    color: currentColor;
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 400;
    font-family: var(--heading-font);
    font-style: italic;
    line-height: 40px; }
  .pagination .page-numbers {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    height: 40px;
    border-radius: 999px;
    line-height: 40px;
    text-align: center; }
    .pagination .page-numbers.prev, .pagination .page-numbers.next {
      position: relative;
      padding: 0 18px; }
      .pagination .page-numbers.prev:after, .pagination .page-numbers.next:after {
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 16px;
        font-size: 1rem;
        line-height: 40px;
        position: absolute;
        top: 0; }
    .pagination .page-numbers.prev {
      padding-left: 44px; }
    .pagination .page-numbers.prev:after {
      left: 18px;
      content: "\34"; }
    .pagination .page-numbers.next {
      padding-right: 44px; }
    .pagination .page-numbers.next:after {
      right: 18px;
      content: "\35"; }
    .pagination .page-numbers:not(.prev):not(.next) {
      width: 40px; }
      .pagination .page-numbers:not(.prev):not(.next).current {
        background: var(--primary-color);
        color: #fff; }
  .pagination span.page-numbers.prev, .pagination span.page-numbers.next {
    opacity: 0.35; }
  .no-touch .pagination a.page-numbers:hover {
    background: var(--primary-color-semi); }
  .pagination a.load-more-btn {
    position: relative;
    display: block;
    width: fit-content;
    width: -moz-max-content;
    padding: 0 40px;
    background: var(--primary-color-semi);
    border-radius: 999px;
    overflow: hidden;
    color: #000;
    font-family: inherit;
    font-style: normal;
    font-size: 11px;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0s;
    overflow-anchor: none;
    transition: background 0.3s, color 0.3s; }
    .dark-color .pagination a.load-more-btn:not(:hover) {
      color: #fff; }
    .no-touch .pagination a.load-more-btn:hover {
      background: var(--primary-color);
      color: #fff; }
    .pagination a.load-more-btn span {
      position: relative;
      z-index: 3; }
    .pagination a.load-more-btn.disabled {
      pointer-events: none; }
  .pagination .load-more .lemon-limes-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0; }
  .pagination .load-more.loading .lemon-limes-loader {
    opacity: 1; }
  .pagination .load-more.loading .load-more-btn {
    opacity: 0; }
  .pagination .no-more-posts-message {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4; }
    .pagination .no-more-posts-message:before, .pagination .no-more-posts-message:after {
      content: " - "; }

.entry-content .posts:not(:last-child) {
  margin-bottom: 34px; }
.entry-content .posts a {
  color: inherit !important;
  text-decoration: none; }
.entry-content .posts .post-title {
  margin-top: 0; }
.no-touch .entry-content .posts.style-normal .post-title a:hover {
  color: var(--primary-color) !important; }
.entry-content .posts.style-overlay.overlay-classic .post-content .post-title {
  color: #fff; }
.entry-content .posts.style-overlay.overlay-modern .post-content .post-title {
  color: #000; }

@media screen and (min-width: 768px) {
  .posts.layout-masonry .posts-wrapper {
    display: block;
    margin-left: calc(0px - var(--post-gap)); }
  .posts.layout-masonry .masonry-column {
    float: left;
    width: 50%;
    padding-left: var(--post-gap); }
  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 50%; }
  .posts.layout-masonry.column-3 .masonry-column {
    width: 33.333333%; }
  .posts.layout-list .post-footer {
    margin-top: 50px; }
  .posts.layout-list.style-normal .post {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .posts.layout-list.style-normal .featured-img {
    width: calc(50% - 30px);
    margin-right: 30px; }
  .posts.layout-list.style-normal .post-content {
    padding: 0; }
    .posts.layout-list.style-normal .post-content > * {
      width: 100%; }
  .posts.layout-list.style-normal .featured-img + .post-content {
    width: 50%;
    padding: 0; }
  .posts.layout-list.style-overlay .post-content {
    padding: 40px 35px; }
  .posts.layout-list.style-overlay .post-footer {
    margin-bottom: -10px; }
    .posts.layout-list.style-overlay .post-footer .meta:only-child {
      margin-bottom: 10px; }
  .posts.layout-grid .posts-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    margin-left: calc(0px - var(--post-gap)); }
  .posts.layout-grid .post {
    margin-right: 0;
    margin-left: var(--post-gap);
    width: calc(50% - var(--post-gap)); }
  .posts.layout-grid .post:nth-child(-n+2) {
    margin-top: 0 !important; }
  .posts.layout-grid.column-3 .post {
    width: calc(33.333333% - var(--post-gap)); }
    .posts.layout-grid.column-3 .post:nth-child(-n+3) {
      margin-top: 0 !important; }
  .posts.layout-grid.column-4 {
    --post-gap: 24px; }
    .posts.layout-grid.column-4 .post {
      width: calc(25% - var(--post-gap)); }
      .posts.layout-grid.column-4 .post:nth-child(-n+4) {
        margin-top: 0 !important; }
  .posts.layout-grid.column-4.large-title .post-title {
    font-size: 24px;
    font-size: 1.5rem; }
  .posts.layout-grid.no-gap {
    --post-gap: 0px; }
  .posts.layout-grid.small-gap {
    --post-gap: 4px; } }
@media screen and (min-width: 1024px) {
  .posts.layout-grid.column-mix .posts-wrapper {
    display: block;
    margin-left: 0; }
  .posts.layout-grid.column-mix .post {
    float: left;
    margin-left: 0; }
    .posts.layout-grid.column-mix .post:nth-child(6n+1), .posts.layout-grid.column-mix .post:nth-child(6n+5) {
      width: calc(66.66% - var(--post-gap)); }
      .posts.layout-grid.column-mix .post:nth-child(6n+1) .post-title, .posts.layout-grid.column-mix .post:nth-child(6n+5) .post-title {
        font-size: 28px;
        font-size: 1.75rem; }
    .posts.layout-grid.column-mix .post:nth-child(6n+2), .posts.layout-grid.column-mix .post:nth-child(6n+3), .posts.layout-grid.column-mix .post:nth-child(6n+4), .posts.layout-grid.column-mix .post:nth-child(6n+6) {
      width: 33.33%; }
      .posts.layout-grid.column-mix .post:nth-child(6n+2) .post-title, .posts.layout-grid.column-mix .post:nth-child(6n+3) .post-title, .posts.layout-grid.column-mix .post:nth-child(6n+4) .post-title, .posts.layout-grid.column-mix .post:nth-child(6n+6) .post-title {
        font-size: 18px;
        font-size: 1.125rem; }
    .posts.layout-grid.column-mix .post:nth-child(6n+1) {
      margin-right: var(--post-gap); }
    .posts.layout-grid.column-mix .post:nth-child(6n+5) {
      float: right;
      margin-left: var(--post-gap); }
    .posts.layout-grid.column-mix .post:nth-child(6n+1), .posts.layout-grid.column-mix .post:nth-child(6n+4) {
      clear: both; }
  .posts.layout-grid.column-mix.large-title .post:nth-child(6n+1) .post-title, .posts.layout-grid.column-mix.large-title .post:nth-child(6n+5) .post-title {
    font-size: 32px;
    font-size: 2rem; }
  .posts.layout-grid.column-mix.large-title .post:nth-child(6n+2) .post-title, .posts.layout-grid.column-mix.large-title .post:nth-child(6n+3) .post-title, .posts.layout-grid.column-mix.large-title .post:nth-child(6n+4) .post-title, .posts.layout-grid.column-mix.large-title .post:nth-child(6n+6) .post-title {
    font-size: 21px;
    font-size: 1.3125rem; }
  .posts.layout-grid.column-mix.style-normal .post {
    margin-top: 0; }
    .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+2) .post-excerpt,
    .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+2) .post-footer, .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+3) .post-excerpt,
    .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+3) .post-footer, .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+4) .post-excerpt,
    .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+4) .post-footer, .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+6) .post-excerpt,
    .posts.layout-grid.column-mix.style-normal .post:nth-child(6n+6) .post-footer {
      display: none; }
  .posts.layout-grid.column-mix.style-normal.hide-excerpt .post:nth-child(6n+1) .featured-img-container,
  .posts.layout-grid.column-mix.style-normal.hide-excerpt .post:nth-child(6n+1) .post-bg, .posts.layout-grid.column-mix.style-normal.hide-excerpt .post:nth-child(6n+5) .featured-img-container,
  .posts.layout-grid.column-mix.style-normal.hide-excerpt .post:nth-child(6n+5) .post-bg {
    padding-top: calc(var(--img-ratio) + var(--post-gap)*var(--ratio) + var(--post-gap)); }
  .posts.layout-grid.column-mix.overlay-modern .post:nth-child(6n+1) .post-content, .posts.layout-grid.column-mix.overlay-modern .post:nth-child(6n+5) .post-content {
    padding: 24px; }
  .posts.layout-grid.column-mix.style-overlay .post:nth-child(6n+1) .post-content, .posts.layout-grid.column-mix.style-overlay .post:nth-child(6n+5) .post-content {
    padding-right: 100px; }
  .posts.layout-grid.column-mix.style-overlay .post:nth-child(6n+1) .featured-img-container,
  .posts.layout-grid.column-mix.style-overlay .post:nth-child(6n+1) .post-bg, .posts.layout-grid.column-mix.style-overlay .post:nth-child(6n+5) .featured-img-container,
  .posts.layout-grid.column-mix.style-overlay .post:nth-child(6n+5) .post-bg {
    padding-top: calc(var(--img-ratio) + var(--post-gap)*var(--ratio) + var(--post-gap)); }
  .posts.layout-grid.column-mix.style-overlay.text-center .post:nth-child(6n+1) .post-content, .posts.layout-grid.column-mix.style-overlay.text-center .post:nth-child(6n+5) .post-content {
    padding-right: 50px;
    padding-left: 50px; }

  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 33.333333%; } }
@media screen and (min-width: 1120px) {
  .posts.layout-large .post-title {
    font-size: 32px;
    font-size: 2rem; }
  .posts.layout-large.style-normal .post-excerpt {
    font-size: 17px;
    font-size: 1.0625rem; }
  .posts.layout-large.style-overlay.overlay-classic .post-content {
    padding: 30px; }
  .site-content:not([class*="with-sidebar-"]) .primary .posts.layout-large.style-overlay .post-title, .home-widget .posts.layout-large.style-overlay .post-title {
    font-size: 40px;
    font-size: 2.5rem; }
  .site-content:not([class*="with-sidebar-"]) .primary .posts.layout-large.style-overlay.text-center .post-title, .home-widget .posts.layout-large.style-overlay.text-center .post-title {
    font-size: 48px;
    font-size: 3rem; }
  .site-content:not([class*="with-sidebar-"]) .primary .posts.layout-large.style-overlay.overlay-modern .post-content, .home-widget .posts.layout-large.style-overlay.overlay-modern .post-content {
    padding: 24px; }
  .site-content:not([class*="with-sidebar-"]) .primary .posts.layout-large.style-overlay.overlay-modern .post-title a, .home-widget .posts.layout-large.style-overlay.overlay-modern .post-title a {
    padding-top: 5px;
    padding-bottom: 7px; }
  .site-content:not([class*="with-sidebar-"]) .primary .posts.layout-large.style-overlay.overlay-classic.text-center .cat-links, .home-widget .posts.layout-large.style-overlay.overlay-classic.text-center .cat-links {
    margin-bottom: 20px; }
  .site-content:not([class*="with-sidebar-"]) .primary .posts.layout-large.style-overlay.overlay-classic.text-center .post-title:not(:last-child), .home-widget .posts.layout-large.style-overlay.overlay-classic.text-center .post-title:not(:last-child) {
    margin-bottom: 30px; }
  .site-content:not([class*="with-sidebar-"]) .primary .entry-content .posts.layout-large.style-overlay:not(.alignwide):not(.alignfull) .post-title, .site-content:not([class*="with-sidebar-"]) .primary .entry-content .posts.layout-large.style-overlay:not(.alignwide):not(.alignfull).text-center .post-title {
    font-size: 32px;
    font-size: 2rem; }
  .posts.layout-large.style-overlay.text-center .post-header {
    max-width: 850px; }
  .posts.layout-large.style-overlay.text-center.overlay-modern .cat-links,
  .posts.layout-large.style-overlay.text-center.overlay-modern .post-title a,
  .posts.layout-large.style-overlay.text-center.overlay-modern .meta {
    padding-right: 25px;
    padding-left: 25px; }
  .posts.layout-list .post-title {
    font-size: 26px;
    font-size: 1.625rem; }
  .site-content[class*="with-sidebar-"] .primary .posts.layout-list.style-overlay .featured-img-container,
  .site-content[class*="with-sidebar-"] .primary .posts.layout-list.style-overlay .post-bg {
    padding-top: 50%; }
  .site-content[class*="with-sidebar-"] .primary .posts.layout-list.style-overlay .post-footer {
    margin-top: 10px; }
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list.style-normal .post-title {
    font-size: 36px;
    font-size: 2.25rem; } }
@media screen and (min-width: 1440px) {
  .site-content:not([class*="with-sidebar-"]) .posts.layout-masonry.adaptive-column {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1920px;
    padding: 0 60px; } }
@media screen and (min-width: 1281px) {
  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 25%; } }
@media screen and (min-width: 1441px) {
  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 20%; } }
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .posts.layout-masonry.column-3 .masonry-column {
    width: 50%; }

  .posts.layout-grid.column-mix .post:nth-child(6n+1), .posts.layout-grid.column-mix .post:nth-child(6n+4) {
    width: calc(100% - var(--post-gap)); }
    .posts.layout-grid.column-mix .post:nth-child(6n+1) .post-title, .posts.layout-grid.column-mix .post:nth-child(6n+4) .post-title {
      font-size: 24px;
      font-size: 1.5rem; }
  .posts.layout-grid.column-mix .post:nth-child(2) {
    margin-top: var(--post-gap) !important; }
  .posts.layout-grid.column-mix.large-title .post:nth-child(6n+1) .post-title, .posts.layout-grid.column-mix.large-title .post:nth-child(6n+4) .post-title {
    font-size: 28px;
    font-size: 1.75rem; }

  .posts.layout-list.style-overlay .featured-img-container,
  .posts.layout-list.style-overlay .post-bg {
    padding-top: 50%; } }
@media screen and (max-width: 1119px) {
  .posts.layout-list.style-overlay .post-footer {
    margin-top: 0; } }
@media screen and (max-width: 767px) {
  .posts.layout-list.style-overlay.overlay-modern .post {
    background: none; }
  .posts.layout-list.style-overlay.overlay-classic .post-content {
    background: #000; }
  .posts.layout-list.style-overlay .post-content {
    position: relative;
    top: -30px;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 90%;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1); } }
@media screen and (max-width: 480px) {
  .posts.layout-list.style-overlay .featured-img-container,
  .posts.layout-list.style-overlay .post-bg,
  .posts.layout-large.style-overlay .featured-img {
    padding-top: 66.66%; }

  .posts.layout-list .post-footer,
  .posts.layout-list .meta,
  .posts.layout-list .more-btn {
    display: block; }
  .posts.layout-list .meta + .more-btn {
    margin-top: 10px; }
    .posts.layout-list .meta + .more-btn .read-more-btn:not(:hover) {
      -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
      transform: translateX(-20px); }

  .pagination .page-numbers,
  .pagination span.page-numbers {
    height: 35px;
    line-height: 35px; }
  .pagination .page-numbers:not(.prev):not(.next) {
    width: 35px; }
  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {
    padding: 0 4px; }
  .pagination .page-numbers.prev {
    padding-left: 15px; }
    .pagination .page-numbers.prev:after {
      left: -4px; }
  .pagination .page-numbers.next {
    padding-right: 15px; }
    .pagination .page-numbers.next:after {
      right: -4px; } }
/* ==========================================================================
   7.0 Single Post & Pages
   ========================================================================== */
article .entry-content > *:last-child {
  margin-bottom: 0; }

article .entry-content > .lemon-limes-bannr:last-child {
  margin-top: 50px; }

.page .featured-media-section,
.archive .featured-media-section,
.single .featured-media-section {
  overflow: hidden; }
  .page .featured-media-section .header-img,
  .archive .featured-media-section .header-img,
  .single .featured-media-section .header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .page .featured-media-section img,
  .archive .featured-media-section img,
  .single .featured-media-section img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }

.post-edit-link {
  display: inline-block;
  width: fit-content;
  width: -moz-max-content;
  margin-bottom: 70px;
  padding: 0 15px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 24px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em; }
  .dark-color .post-edit-link {
    border-color: rgba(255, 255, 255, 0.1); }

/**
 * Page Links of Paginated Post
 */
.entry-content .page-links {
  display: block;
  clear: both;
  font-weight: 500;
  font-size: 16px; }
  .entry-content .page-links .page-links-container > * {
    margin-right: 5px; }
  .entry-content .page-links .post-page-numbers {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: currentColor;
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 400;
    font-family: var(--heading-font);
    font-style: italic;
    line-height: 40px;
    text-align: center;
    text-decoration: none; }
    .entry-content .page-links .post-page-numbers.current {
      background: var(--primary-color);
      color: #fff; }
  .no-touch .entry-content .page-links a:hover {
    background: var(--primary-color-semi);
    color: inherit; }

.breadcrumbs,
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 0;
  color: inherit;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.6; }

/* Article Share Buttons
   ========================================================================== */
.primary .article-share {
  position: relative;
  width: 100%;
  margin: 60px 0 0;
  text-align: center;
  font-size: 0; }
  .primary .article-share .article-share-title {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 2;
    font-weight: 600; }
    .primary .article-share .article-share-title .title-text {
      padding: 0 10px 0 11px;
      margin: 0; }
    .primary .article-share .article-share-title .title-decor-line {
      display: block;
      position: relative;
      width: 40px;
      height: 4px; }
      .primary .article-share .article-share-title .title-decor-line:before, .primary .article-share .article-share-title .title-decor-line:after {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
        background: var(--primary-color);
        content: ""; }
      .primary .article-share .article-share-title .title-decor-line:before {
        left: 0;
        width: 40px;
        height: 1px; }
      .primary .article-share .article-share-title .title-decor-line:after {
        width: 4px;
        height: 4px;
        border-radius: 50%; }
      .primary .article-share .article-share-title .title-decor-line:first-child {
        margin-right: 0; }
        .primary .article-share .article-share-title .title-decor-line:first-child:after {
          right: 0; }
      .primary .article-share .article-share-title .title-decor-line:last-child {
        margin-left: 0; }
        .primary .article-share .article-share-title .title-decor-line:last-child:after {
          left: 0; }
  .primary .article-share .article-share-container {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 0 30px; }
  .primary .article-share .article-share-container a {
    position: relative;
    float: left;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    margin: 5px;
    border-radius: 50%;
    color: inherit;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 45px;
    text-align: center; }
    .primary .article-share .article-share-container a i {
      font-size: 18px;
      font-size: 1.125rem; }
    .primary .article-share .article-share-container a span {
      display: none; }
    .primary .article-share .article-share-container a[title="Like"] span.like-count {
      position: absolute;
      top: -25px;
      left: 50%;
      -webkit-transform: translate(-50%, 5px);
      -ms-transform: translate(-50%, 5px);
      transform: translate(-50%, 5px);
      display: block;
      width: 45px;
      height: 24px;
      background: #000;
      border-radius: 4px;
      color: #fff;
      text-align: center;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 800;
      line-height: 24px;
      opacity: 0;
      transition: 0.3s; }
      .primary .article-share .article-share-container a[title="Like"] span.like-count:after {
        position: relative;
        display: block;
        width: 0;
        height: 0;
        margin: 0 auto;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #000;
        content: ""; }
      .dark-color .primary .article-share .article-share-container a[title="Like"] span.like-count {
        background: #fff;
        color: #000; }
        .dark-color .primary .article-share .article-share-container a[title="Like"] span.like-count:after {
          border-top-color: #fff; }
    .primary .article-share .article-share-container a[title="Like"]:hover span.like-count {
      opacity: 1;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
    .no-touch .primary .article-share .article-share-container a[title="Like"]:not(.liked):hover i {
      -webkit-animation: heartBeat 1s infinite;
      animation: heartBeat 1s infinite; }
    .primary .article-share .article-share-container a[title="Like"]:not(.liked) i {
      font-weight: 400; }
    .primary .article-share .article-share-container a[title="Like"].liked {
      color: #e92e2e; }
    .primary .article-share .article-share-container a[title="Facebook"] i:before {
      content: "\f39e"; }
    .primary .article-share .article-share-container a[title="Yummly"] {
      -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
      transform: translateY(-1px); }
      .primary .article-share .article-share-container a[title="Yummly"]:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 26px;
        height: 18px;
        background: #000;
        border-radius: 5px;
        content: "";
        margin-left: -1px; }
      .primary .article-share .article-share-container a[title="Yummly"] img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 38px;
        height: 38px; }
  .primary .article-share + .post-tag-cloud {
    margin-top: 12px; }

/* Archive & Search Results Page General Styling
   ========================================================================== */
.archive .page-header,
.search .page-header,
.error404 .page-header {
  position: relative;
  text-align: center; }
.archive .page-header-text,
.search .page-header-text,
.error404 .page-header-text {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px; }
.archive .page-title,
.search .page-title,
.error404 .page-title {
  margin: 0;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 500; }
.archive .page-header-text .description,
.archive .page-header-text .page-description,
.archive .page-header-text .term-description,
.search .page-header-text .description,
.search .page-header-text .page-description,
.search .page-header-text .term-description,
.error404 .page-header-text .description,
.error404 .page-header-text .page-description,
.error404 .page-header-text .term-description {
  margin-top: 8px;
  font-size: 21px;
  font-size: 1.3125rem;
  font-family: var(--intro-font);
  font-style: var(--intro-font-style);
  line-height: 1.5; }
  .archive .page-header-text .description p,
  .archive .page-header-text .page-description p,
  .archive .page-header-text .term-description p,
  .search .page-header-text .description p,
  .search .page-header-text .page-description p,
  .search .page-header-text .term-description p,
  .error404 .page-header-text .description p,
  .error404 .page-header-text .page-description p,
  .error404 .page-header-text .term-description p {
    margin-bottom: 0; }

/* Archive Page
   ========================================================================== */
.archive .page-header {
  margin-bottom: 50px;
  max-width: var(--site-width); }
.archive .page-header-bg {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; }
  .archive .page-header-bg + .page-header-text {
    width: calc(100% - 40px); }
.archive .page-header-text {
  padding-right: 20px;
  padding-left: 20px; }
.archive .recipe-search {
  position: relative;
  margin-top: 25px;
  width: 100%;
  max-width: 600px; }

.archive-header-default .page-header-bg {
  height: 375px; }
  .archive-header-default .page-header-bg + .page-header-text {
    background: var(--bg-color);
    margin-top: -70px;
    padding-top: 25px;
    min-height: 71px; }

.archive-header-overlay .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .archive-header-overlay .page-header-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.35;
    content: ""; }
  .archive-header-overlay .page-header-bg + .page-header-text {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 375px;
    padding: 50px 20px;
    color: #fff; }
    .archive-header-overlay .page-header-bg + .page-header-text .recipe-search input[type="search"] {
      border: none;
      background: #fff; }
    .archive-header-overlay .page-header-bg + .page-header-text .recipe-search .search-submit {
      color: #000; }
    .archive-header-overlay .page-header-bg + .page-header-text .breadcrumbs,
    .archive-header-overlay .page-header-bg + .page-header-text .woocommerce-breadcrumb {
      opacity: 1; }

.archive.author .page-header .author-photo {
  position: relative;
  z-index: 9;
  width: auto;
  margin-bottom: 20px; }
  .archive.author .page-header .author-photo img {
    width: 160px;
    padding: 7px;
    background: #f3f3f3;
    box-sizing: content-box; }
  .archive.author .page-header .author-photo:first-child {
    margin-top: 70px; }
.archive.author .page-header .page-header-bg + .author-photo {
  margin-top: -87px; }
.archive.author .page-header .author-social {
  margin-top: 15px; }
  .archive.author .page-header .author-social ul.social-nav li a {
    width: 36px;
    text-align: center; }
    .archive.author .page-header .author-social ul.social-nav li a:before {
      font-size: 18px;
      font-size: 1.125rem; }

/* Recipe Search & Filter (Recipe Index & other archives)
   ========================================================================== */
.archive.with-search-filter .primary {
  position: relative; }
.archive.with-search-filter .content-area .not-found,
.archive.with-search-filter .content-area .posts {
  transition: opacity 0.4s; }
.archive.with-search-filter .recipe-ajax-filter {
  margin-bottom: 50px;
  display: flex;
  align-items: center; }
  .archive.with-search-filter .recipe-ajax-filter .title-decor-line {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    flex: 1 0 50px; }
    .archive.with-search-filter .recipe-ajax-filter .title-decor-line:before {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      display: block;
      width: 1px;
      height: 16px;
      background-color: currentColor;
      content: ""; }
    .archive.with-search-filter .recipe-ajax-filter .title-decor-line:first-child {
      margin-left: 0; }
      .archive.with-search-filter .recipe-ajax-filter .title-decor-line:first-child:before {
        right: 0; }
    .archive.with-search-filter .recipe-ajax-filter .title-decor-line:last-child {
      margin-right: 0; }
      .archive.with-search-filter .recipe-ajax-filter .title-decor-line:last-child:before {
        left: 0; }
  .archive.with-search-filter .recipe-ajax-filter .recipe-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 5px; }
    .archive.with-search-filter .recipe-ajax-filter .recipe-filters .filter-wrapper {
      position: relative;
      margin: 5px; }
  .archive.with-search-filter .recipe-ajax-filter .recipe-filter-button {
    padding: 0 20px;
    background: none;
    border: none;
    color: inherit;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 34px;
    cursor: pointer;
    transition: 0.3s; }
    .no-touch .archive.with-search-filter .recipe-ajax-filter .recipe-filter-button:hover {
      background: var(--primary-color-semi); }
    .archive.with-search-filter .recipe-ajax-filter .recipe-filter-button .filter-text {
      font-weight: 400;
      white-space: nowrap; }
      .archive.with-search-filter .recipe-ajax-filter .recipe-filter-button .filter-text:after {
        display: inline-block;
        margin-left: 5px;
        -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
        transform: translateY(2px);
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        content: "\33";
        font-size: 16px;
        font-size: 1rem; }
  .archive.with-search-filter .recipe-ajax-filter .filter-wrapper.filter-selected .recipe-filter-button {
    padding-right: 30px;
    background: var(--primary-color);
    color: #fff; }
    .archive.with-search-filter .recipe-ajax-filter .filter-wrapper.filter-selected .recipe-filter-button .filter-text:after {
      display: none; }
    .archive.with-search-filter .recipe-ajax-filter .filter-wrapper.filter-selected .recipe-filter-button .remove-button {
      position: absolute;
      right: 0;
      top: 0;
      width: 30px;
      height: 34px;
      color: #fff;
      text-align: center; }
      .no-touch .archive.with-search-filter .recipe-ajax-filter .filter-wrapper.filter-selected .recipe-filter-button .remove-button:hover:before {
        opacity: 0.3; }
      .archive.with-search-filter .recipe-ajax-filter .filter-wrapper.filter-selected .recipe-filter-button .remove-button:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: block;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        content: "";
        opacity: 0; }
      .archive.with-search-filter .recipe-ajax-filter .filter-wrapper.filter-selected .recipe-filter-button .remove-button:after {
        display: block;
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        content: "\4d";
        font-size: 16px;
        font-size: 1rem;
        line-height: 34px; }
  .archive.with-search-filter .recipe-ajax-filter .filter-content {
    position: absolute;
    z-index: 99;
    top: 45px;
    display: none;
    background: var(--bg-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-height: 300px;
    overflow: auto; }
    .archive.with-search-filter .recipe-ajax-filter .filter-content .filter-content-item {
      display: block;
      min-width: 190px;
      padding: 5px 20px;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.5;
      cursor: default; }
      .archive.with-search-filter .recipe-ajax-filter .filter-content .filter-content-item:hover {
        background: var(--primary-color);
        color: #fff; }
    .archive.with-search-filter .recipe-ajax-filter .filter-content.expanded {
      display: block; }
  .archive.with-search-filter .recipe-ajax-filter .recipe-sort-select {
    margin-left: -4px;
    letter-spacing: 0;
    transition: background 0.3s; }
  .touch .archive.with-search-filter .recipe-ajax-filter .recipe-sort-select,
  .archive.with-search-filter .recipe-ajax-filter .recipe-sort-select:not(:hover) {
    background-color: transparent; }
.archive.with-search-filter.recipe-ajax-loading .content-area .not-found,
.archive.with-search-filter.recipe-ajax-loading .content-area .posts {
  opacity: 0.05; }
.archive.with-search-filter .lemon-limes-loader.filter-loader {
  position: absolute;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s; }
.archive.with-search-filter.recipe-ajax-loading .lemon-limes-loader.filter-loader {
  opacity: 1; }
.archive.with-search-filter.dark-color .recipe-ajax-filter {
  --bg-color: #222; }

/* Search Results
   ========================================================================== */
.search .page-header {
  margin-bottom: 50px;
  max-width: var(--site-width); }
.search .page-header-text {
  padding-right: 20px;
  padding-left: 20px; }
.search .page-title {
  text-transform: capitalize; }

/* General Styling for No Search Results Page & Error 404 Page
   ========================================================================== */
.error404 .page-header .search,
.search .page-header .search {
  margin-top: 20px; }

.error404 .page-header-text,
.search-no-results .page-header-text {
  max-width: 740px; }

.page-404:not(:last-child) {
  margin-bottom: 80px; }

.search .no-results {
  padding: 50px 0; }

.search-no-results .primary {
  padding-bottom: 0; }

.error404 .page-header-decor {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .error404 .page-header-decor .decor-item {
    font-family: var(--heading-font);
    font-size: 290px;
    font-size: 18.125rem;
    line-height: 1; }
    .error404 .page-header-decor .decor-item.first {
      margin-right: 0; }
    .error404 .page-header-decor .decor-item.middle {
      margin: 0; }
      .error404 .page-header-decor .decor-item.middle.has-header-img {
        margin: 30px 50px; }
        .error404 .page-header-decor .decor-item.middle.has-header-img span {
          display: none; }
        .error404 .page-header-decor .decor-item.middle.has-header-img .decor-header-img {
          display: block;
          width: 300px;
          height: 300px;
          border-radius: 50%;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat; }
    .error404 .page-header-decor .decor-item.last {
      margin-left: 0; }
.error404 .page .breadcrumbs {
  margin: 0; }

.not-found {
  text-align: center; }
  .not-found .section-title {
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 500; }
    .not-found .section-title + .description {
      font-size: 21px;
      font-size: 1.3125rem;
      font-family: var(--intro-font);
      font-style: var(--intro-font-style);
      line-height: 1.3; }
      .not-found .section-title + .description p {
        margin-bottom: 17px; }
    .archive.category .not-found .section-title, .archive.tag .not-found .section-title {
      display: none; }

/* Single Post/Page Template - General Styling
   ========================================================================== */
.single .breadcrumbs,
.page .breadcrumbs {
  margin: 20px 0; }
.single .entry-header,
.page .entry-header {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px; }
.single .featured-media-section,
.page .featured-media-section {
  position: relative;
  width: 100%; }
.single .header-text,
.page .header-text {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px; }
  .single .header-text > *:not(:first-child),
  .page .header-text > *:not(:first-child) {
    margin-top: 20px; }
.single .post-intro,
.page .post-intro {
  text-align: center; }
.single .intro-label,
.page .intro-label {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center; }
  .single .intro-label:before, .single .intro-label:after,
  .page .intro-label:before,
  .page .intro-label:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 40px;
    height: 1px;
    background: currentColor;
    content: ""; }
  .single .intro-label:before,
  .page .intro-label:before {
    left: -40px; }
  .single .intro-label:after,
  .page .intro-label:after {
    right: -40px; }
  .single .intro-label + .intro-content,
  .page .intro-label + .intro-content {
    margin-top: 15px; }
.single .intro-content,
.page .intro-content {
  width: 100%;
  font-family: var(--intro-font);
  font-style: var(--intro-font-style);
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.5; }
  .single .intro-content p,
  .page .intro-content p {
    margin-bottom: 0; }
  .single .intro-content a,
  .page .intro-content a {
    font-weight: 700; }
.single .primary,
.page .primary {
  position: relative;
  max-width: 800px; }
  .single .primary > *,
  .single .primary .entry-content,
  .page .primary > *,
  .page .primary .entry-content {
    margin-bottom: 70px; }
  .single .primary > *:last-child,
  .single .primary > article:last-child .entry-content,
  .page .primary > *:last-child,
  .page .primary > article:last-child .entry-content {
    margin-bottom: 0; }
  .single .primary > article,
  .page .primary > article {
    margin-bottom: 0; }
  .single .primary .signup-form,
  .page .primary .signup-form {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center; }
    .single .primary .signup-form p:not(:last-child),
    .page .primary .signup-form p:not(:last-child) {
      margin-bottom: 17px; }
    .single .primary .signup-form.has-overlay:before,
    .page .primary .signup-form.has-overlay:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      opacity: 0.5;
      pointer-events: none; }
    .single .primary .signup-form.full-section,
    .page .primary .signup-form.full-section {
      position: relative;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 100vw; }
      .single .primary .signup-form.full-section .widget_mc4wp_form_widget,
      .page .primary .signup-form.full-section .widget_mc4wp_form_widget {
        max-width: 900px; }
    .single .primary .signup-form .widget_mc4wp_form_widget,
    .page .primary .signup-form .widget_mc4wp_form_widget {
      position: relative;
      z-index: 3;
      padding: 50px; }
    .single .primary .signup-form.light-color,
    .page .primary .signup-form.light-color {
      background-color: rgba(0, 0, 0, 0.05);
      color: #000; }
      .single .primary .signup-form.light-color.has-overlay:before,
      .page .primary .signup-form.light-color.has-overlay:before {
        background: #fff; }
      .single .primary .signup-form.light-color input[type="email"],
      .page .primary .signup-form.light-color input[type="email"] {
        background: #fff; }
    .single .primary .signup-form.dark-color,
    .page .primary .signup-form.dark-color {
      background-color: #000;
      color: #fff; }
      .single .primary .signup-form.dark-color.has-overlay:before,
      .page .primary .signup-form.dark-color.has-overlay:before {
        background: #000; }

/* Single Page
   ========================================================================== */
.page-sub-title,
p.sub-title {
  display: block;
  width: fit-content;
  width: -moz-max-content;
  padding: 0 25px;
  background-color: var(--cat-bg);
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  line-height: 30px; }

p.sub-title {
  margin: 0 auto; }
  p.sub-title + * {
    margin-top: 20px; }

/* Single Post
   ========================================================================== */
.single .header-text .meta-item.recipe-rating {
  margin-right: 0; }
  .single .header-text .meta-item.recipe-rating:not(:last-child):after {
    margin: 0 10px;
    content: "-"; }
  .single .header-text .meta-item.recipe-rating .rating-counts {
    margin-left: 5px; }
  .single .header-text .meta-item.recipe-rating .wprm-recipe-rating {
    margin-top: 0 !important; }
.single .header-text .meta-item:not(.recipe-rating) {
  opacity: 0.65; }
.single .article-footer .footer-meta {
  display: flex;
  padding: 35px 0;
  margin: 0 0 20px;
  border: 1px solid;
  border-right: none;
  border-left: none; }
  .single .article-footer .footer-meta .meta-basic {
    margin-left: 0; }
    .single .article-footer .footer-meta .meta-basic + .meta-counts {
      margin-right: 0; }
.single .article-footer .footer-meta .meta-item.author a {
  font-weight: 600;
}

/** Single post > post footer - sign to newsletter form */
.single .article-footer .widget_mc4wp_form_widget .tnp-widget .tnp-field,
.single .article-footer .widget_mc4wp_form_widget label > a {
  margin: 0;
}

@media screen and (min-width: 1120px) {
  .single .article-footer .widget_mc4wp_form_widget .tnp-widget .tnp-field {
    margin-left: -1px;
  }
}
/** EOL Single post > post footer - sign to newsletter form */
.single .primary > .post {
  position: relative; }
  .single .primary > .post .entry-content {
    position: relative; }
  .single .primary > .post .post-tag-cloud {
    text-align: center; }
.single .primary .author-info-box {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background: #fafafa;
  color: #000; }
  .single .primary .author-info-box .author-photo {
    width: 160px;
    margin-bottom: 34px; }
  .single .primary .author-info-box .author-info .written-by {
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5; }
  .single .primary .author-info-box .author-info .author-name {
    font-size: 24px;
    font-size: 1.5rem; }
    .no-touch .single .primary .author-info-box .author-info .author-name a:hover {
      opacity: 0.5; }
  .single .primary .author-info-box .author-info p {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1rem; }
    .single .primary .author-info-box .author-info p:first-child {
      margin-top: 10px; }
.single .primary .related-posts {
  position: relative;
  width: 100%;
  margin-bottom: 35px;
}
  .single .related-posts .related-wrapper {
    clear: both;
    margin: 0 -4px;
    width: calc(100% + 8px); }
  .single .related-posts .slick-slide > div {
    margin: 0 4px; }
  .single .related-posts .related-post {
    text-align: center; }
    .single .related-posts .related-post .featured-img {
      position: relative;
      margin-bottom: 15px;
      overflow: hidden;
    }
.single .related-posts .related-post .featured-img a {
  display: block;
  width: 100%;
}
.single .related-posts .related-post .post-title {
  font-size: 1.3125rem;
}
    .single .related-posts .related-post .meta {
      margin-top: 5px; }
    .single .related-posts .related-post .meta-item.recipe-rating {
      display: block; }
      .single .related-posts .related-post .meta-item.recipe-rating .rating-details {
        display: none; }
      .single .related-posts .related-post .meta-item.recipe-rating .wprm-recipe-rating {
        margin: 2px 0 0 0 !important;
        color: var(--primary-color); }
        .single .related-posts .related-post .meta-item.recipe-rating .wprm-recipe-rating .star:before {
          font-size: 11px;
          font-size: 0.6875rem; }
  .single .related-posts .slick-arrow {
    position: absolute;
    top: calc((100vw - 40px)*1.5/2);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    overflow: hidden; }
    .single .related-posts .slick-arrow.slick-prev {
      left: 0px; }
    .single .related-posts .slick-arrow.slick-next {
      right: 0px; }
  .no-touch .single .related-posts .slick-arrow {
    opacity: 0; }
  .no-touch .single .related-posts:hover .slick-arrow {
    opacity: 1; }
.single .navigation.post-navigation {
  margin-bottom: 35px;
}
.single .post-navigation .nav-links a {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  transition: 0s;
  overflow: hidden; }
  .single .post-navigation .nav-links a .post-title {
    font-size: 18px;
    font-size: 1.125rem;
    transition: all 0.4s; }
  .single .post-navigation .nav-links a > * {
    margin-left: 0; }
  .no-touch .single .post-navigation .nav-links a:hover .post-title {
    color: var(--primary-color); }
.single .post-navigation .nav-links .post-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 10px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-sizing: border-box;
  transition: margin 0.4s; }
  .single .post-navigation .nav-links .post-thumb ~ .post-info {
    width: calc(100% - 110px); }
.single .post-navigation .nav-links .nav-next {
  margin-top: 10px; }
.single .post-navigation .nav-links .post-info span {
  display: block;
  word-break: break-word; }
  .single .post-navigation .nav-links .post-info span.text {
    margin-bottom: 3px;
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.75; }
.single .sticky-post-like {
  position: fixed;
  right: 20px;
  bottom: 37px;
  z-index: 1000;
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  background: #f7f7f7;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 42px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s; }
  .no-touch .single .sticky-post-like:not(.liked):hover i {
    -webkit-animation: heartBeat 1s infinite;
    animation: heartBeat 1s infinite; }
  .single .sticky-post-like.liked {
    color: #e92e2e; }
  .single .sticky-post-like i {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 45px; }
  .single .sticky-post-like:not(.liked) i.fas.fa-heart:before {
    font-weight: 400; }
  .single .sticky-post-like span {
    display: none; }
  .single .sticky-post-like span.like-count {
    position: absolute;
    top: -35px;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    display: block;
    width: 40px;
    height: 24px;
    background: #000;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 24px;
    opacity: 0;
    transition: 0.3s; }
    .single .sticky-post-like span.like-count:after {
      position: relative;
      display: block;
      width: 0;
      height: 0;
      margin: 0 auto;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid #000;
      content: ""; }
  .single .sticky-post-like:hover span.like-count {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .single .sticky-post-like.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
.single .to-top + .sticky-post-like {
  bottom: 88px; }
.single.dark-color .sticky-post-like span.like-count {
  background: #fff;
  color: #000; }
  .single.dark-color .sticky-post-like span.like-count:after {
    border-top-color: #fff; }
.single.hide-featured-image .featured-media-section {
  display: none; }

.single.single-format-gallery .featured-media-section .slick-list,
.single.single-format-gallery .featured-media-section .slick-track,
.single.single-format-gallery .featured-media-section .slick-slide > div,
.single.single-format-gallery .featured-media-section .gallery-item,
.single.single-format-gallery .featured-media-section .gallery-img {
  height: inherit; }
.single.single-format-gallery .featured-media-section .image-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.single.post-template-3.single-format-gallery .featured-media-section.has-gallery {
  height: 0;
  padding-top: 66.6666%; }

.featured-media-section.has-video iframe,
.featured-media-section.has-video video {
  margin: 0; }

.single.featured-img-reverse .entry-header .featured-media-section,
.page.featured-img-reverse .entry-header .featured-media-section {
  order: 2; }
.single.featured-img-reverse .entry-header .header-text,
.page.featured-img-reverse .entry-header .header-text {
  order: 1; }

.single.post-template-1 .entry-header,
.page.page-template-1 .entry-header,
.single.post-template-3 .entry-header,
.page.page-template-3 .entry-header {
  flex-direction: column; }
  .single.post-template-1 .entry-header > *,
  .page.page-template-1 .entry-header > *,
  .single.post-template-3 .entry-header > *,
  .page.page-template-3 .entry-header > * {
    width: 100%; }
.single.post-template-1.featured-img-reverse .entry-header .featured-media-section,
.page.page-template-1.featured-img-reverse .entry-header .featured-media-section,
.single.post-template-3.featured-img-reverse .entry-header .featured-media-section,
.page.page-template-3.featured-img-reverse .entry-header .featured-media-section {
  margin-top: 35px; }

.single.post-template-1 .featured-media-section,
.page.page-template-1 .featured-media-section {
  height: 0;
  padding-top: 66.6666%; }
.single.post-template-1:not(.featured-img-reverse):not(.hide-featured-image) .featured-media-section + .header-text,
.page.page-template-1:not(.featured-img-reverse):not(.hide-featured-image) .featured-media-section + .header-text {
  padding-top: 30px; }
  .single.post-template-1:not(.featured-img-reverse):not(.hide-featured-image) .featured-media-section + .header-text .entry-title,
  .page.page-template-1:not(.featured-img-reverse):not(.hide-featured-image) .featured-media-section + .header-text .entry-title {
    margin-top: 0; }
.single.post-template-1.featured-img-reverse .entry-header,
.page.page-template-1.featured-img-reverse .entry-header {
  margin-top: 50px; }

.single.post-template-1:not(.featured-img-reverse):not(.hide-featured-image) .featured-media-section + .header-text .cat-links,
.page.page-template-1:not(.featured-img-reverse) .featured-media-section + .header-text .page-sub-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0; }

.single.post-template-1 .header-text .post-intro + .meta {
  margin-top: 30px; }

.single.post-template-1.single-format-video .featured-media-section.has-video {
  height: auto;
  padding-top: 56.25%; }
  .single.post-template-1.single-format-video .featured-media-section.has-video iframe,
  .single.post-template-1.single-format-video .featured-media-section.has-video video {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100%; }

.single.post-template-2 .entry-header,
.page.page-template-2 .entry-header {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #f2f3ed; }
.single.post-template-2 .featured-media-section,
.page.page-template-2 .featured-media-section {
  height: 0;
  padding-top: 125%; }
.single.post-template-2 .header-text,
.page.page-template-2 .header-text {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 30px 30px;
  width: 100%;
  height: 100%; }
  .single.post-template-2 .header-text .entry-title:first-child,
  .page.page-template-2 .header-text .entry-title:first-child {
    margin-top: 30px; }

.single.post-template-2 .header-text .cat-links + .entry-title,
.single.post-template-2 .header-text .meta {
  margin-top: 40px; }
.single.post-template-2 .header-text .meta-item.recipe-rating {
  display: block;
  margin-top: 10px; }

.single.post-template-2.single-format-video .featured-media-section.has-video iframe,
.single.post-template-2.single-format-video .featured-media-section.has-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.single.post-template-3 .featured-media-section img,
.page.page-template-3 .featured-media-section img {
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: auto;
  top: auto;
  display: block; }
.single.post-template-3:not(.featured-img-reverse) .featured-media-section,
.page.page-template-3:not(.featured-img-reverse) .featured-media-section {
  margin-bottom: 35px; }
.single.post-template-3 .header-text,
.page.page-template-3 .header-text {
  text-align: left; }
.single.post-template-3 .post-intro,
.page.page-template-3 .post-intro {
  text-align: left; }
  .single.post-template-3 .post-intro .intro-label,
  .page.page-template-3 .post-intro .intro-label {
    padding-left: 0; }
    .single.post-template-3 .post-intro .intro-label:before,
    .page.page-template-3 .post-intro .intro-label:before {
      display: none; }
.single.post-template-3.has-header-img.featured-img-reverse .site-header,
.page.page-template-3.has-header-img.featured-img-reverse .site-header {
  margin-bottom: 50px; }
.single.post-template-3.custom-site-width .site-content[class*="with-sidebar-"] .header-text,
.page.page-template-3.custom-site-width .site-content[class*="with-sidebar-"] .header-text {
  max-width: none; }

.single.post-template-3 .entry-title {
  margin-top: 15px; }

/* Comments
   ========================================================================== */
.comments-area ol.comment-list {
  margin: 0 auto;
  list-style: none; }
  .comments-area ol.comment-list + .comment-respond {
    margin-top: 35px; }
  .comments-area ol.comment-list ol.children {
    margin: 40px 0 0 34px; }
    .comments-area ol.comment-list ol.children li {
      padding-bottom: 40px; }
  .comments-area ol.comment-list li.depth-1:not(:first-child) {
    padding-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .comments-area ol.comment-list li.comment, .comments-area ol.comment-list li.pingback, .comments-area ol.comment-list li.trackback {
    position: relative;
    padding: 0 0 35px;
    list-style: none; }
  .comments-area ol.comment-list li:not(.depth-1):last-of-type {
    padding-bottom: 0; }
  .comments-area ol.comment-list li.pingback, .comments-area ol.comment-list li.trackback {
    font-weight: 700; }
    .comments-area ol.comment-list li.pingback a, .comments-area ol.comment-list li.trackback a {
      font-weight: 400; }
  .comments-area ol.comment-list li:last-child {
    margin-bottom: 0 !important; }
  .comments-area ol.comment-list li.comment .comment-body {
    position: relative; }
  .comments-area ol.comment-list li .comment-meta {
    padding-left: 64px;
    margin-bottom: 10px; }
    .comments-area ol.comment-list li .comment-meta .comment-author.vcard {
      display: inline-block;
      font-size: 21px;
      font-size: 1.3125rem;
      line-height: 30px; }
      .comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
        position: absolute;
        top: 0;
        left: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%; }
      .comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn {
        font-weight: 500; }
        .no-touch .comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn a:hover {
          color: var(--primary-color); }
      .comments-area ol.comment-list li .comment-meta .comment-author.vcard .author-label {
        display: none; }
    .comments-area ol.comment-list li .comment-meta .comment-metadata {
      display: inline-block;
      font-size: 13px;
      font-size: 0.8125rem; }
      .comments-area ol.comment-list li .comment-meta .comment-metadata:before {
        position: relative;
        content: "-"; }
      .comments-area ol.comment-list li .comment-meta .comment-metadata a {
        opacity: 0.5; }
        .no-touch .comments-area ol.comment-list li .comment-meta .comment-metadata a:hover {
          opacity: 1; }
  .comments-area ol.comment-list li a.comment-edit-link {
    margin-left: 6px;
    font-size: 0; }
    .comments-area ol.comment-list li a.comment-edit-link:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 12px;
      font-size: 0.75rem;
      content: "\f044"; }
  .comments-area ol.comment-list li .comment-content {
    font-size: 15px;
    font-size: 0.9375rem; }
    .comments-area ol.comment-list li .comment-content > *:last-child {
      margin-bottom: 0; }
    .comments-area ol.comment-list li .comment-content img.wprm-comment-rating {
      margin: 10px 0; }
    .comments-area ol.comment-list li .comment-content p {
      color: var(--content-color);
      font-size: inherit; }
    .comments-area ol.comment-list li .comment-content p,
    .comments-area ol.comment-list li .comment-content dd,
    .comments-area ol.comment-list li .comment-content address {
      margin-bottom: 10px; }
    .comments-area ol.comment-list li .comment-content hr {
      margin-top: 34px;
      margin-bottom: 34px; }
    .comments-area ol.comment-list li .comment-content li {
      margin-bottom: 8px; }
      .comments-area ol.comment-list li .comment-content li ul,
      .comments-area ol.comment-list li .comment-content li ol {
        margin-top: 8px; }
    .comments-area ol.comment-list li .comment-content blockquote {
      padding: 34px;
      margin: 34px 0;
      background: rgba(0, 0, 0, 0.025);
      border-left: 4px solid var(--primary-color); }
      .comments-area ol.comment-list li .comment-content blockquote p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.8; }
        .comments-area ol.comment-list li .comment-content blockquote p:last-child {
          margin-bottom: 0; }
      .comments-area ol.comment-list li .comment-content blockquote:last-child {
        margin-bottom: 0; }
  .comments-area ol.comment-list li .reply {
    margin-top: 14px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em; }
    .comments-area ol.comment-list li .reply a {
      display: inline-block;
      padding: 0 15px;
      background: none;
      border: 1px solid rgba(0, 0, 0, 0.15);
      line-height: 24px; }
      .dark-color .comments-area ol.comment-list li .reply a {
        border-color: rgba(255, 255, 255, 0.15); }
      .no-touch .comments-area ol.comment-list li .reply a:hover {
        border-color: #000; }
      .no-touch .dark-color .comments-area ol.comment-list li .reply a:hover {
        border-color: #fff; }
  .comments-area ol.comment-list li.bypostauthor > .comment-body b.fn:after {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    display: inline-block;
    margin-left: 2px;
    color: var(--primary-color);
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e033";
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    text-align: center; }
  .comments-area ol.comment-list li .comment-respond {
    margin-top: 50px;
    padding: 35px;
    box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.05); }
    .comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link {
      float: right;
      display: inline-block;
      padding: 0 15px;
      background: none;
      border: 1px solid rgba(0, 0, 0, 0.15);
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      line-height: 24px;
      text-transform: capitalize; }
      .no-touch .comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link:hover {
        border-color: #000; }
    .comments-area ol.comment-list li .comment-respond .comment-reply-title-wrap {
      display: block;
      text-align: left; }
      .comments-area ol.comment-list li .comment-respond .comment-reply-title-wrap .title-decor-line {
        display: none; }
      .comments-area ol.comment-list li .comment-respond .comment-reply-title-wrap .comment-reply-title {
        padding: 0;
        white-space: normal; }
.comments-area .navigation {
  margin-bottom: 50px; }
  .comments-area .navigation .nav-links {
    padding: 15px 0;
    font-size: 14px;
    font-size: 0.875rem;
    display: flex; }
    .comments-area .navigation .nav-links a {
      display: block;
      padding: 5px 20px;
      border: 1px solid rgba(0, 0, 0, 0.15); }
      .no-touch .comments-area .navigation .nav-links a:hover {
        border-color: #000; }
      .dark-color .comments-area .navigation .nav-links a {
        border-color: rgba(255, 255, 255, 0.3); }
        .no-touch .dark-color .comments-area .navigation .nav-links a:hover {
          border-color: #fff; }
    .comments-area .navigation .nav-links .nav-previous {
      margin: 0; }
    .comments-area .navigation .nav-links .nav-next {
      margin: 0 0 0 auto; }
.comments-area .comment-respond label {
  font-size: 14px;
  font-size: 0.875rem; }
.comments-area .comments-closed {
  padding: 15px 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  opacity: 0.5; }

/* Single Page Special Classes
   ========================================================================== */
.page.page-header-hidden .site-header {
  margin-bottom: 0; }
.page.page-header-hidden .entry-header {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  word-wrap: normal !important; }

.page.hide-breadcrumbs .breadcrumbs,
.page.hide-footer-brand .site-footer-branding,
.page.hide-footer-signup .site-footer-signup,
.page.hide-footer-ins .site-footer-instagram,
.page.hide-footer .site-footer,
.page.hide-footer-main .site-footer-main,
.page.hide-site-header .site-header {
  display: none; }

.page.no-padding-bottom .primary {
  padding-bottom: 0; }

/* WP Recipe Maker Related
   ========================================================================== */
.wprm-recipe-instructions img {
  display: block;
  width: 100%; }

.comment-respond .comment-form-wprm-rating {
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  .comment-respond .comment-form-wprm-rating > * {
    margin: 0; }
  .comment-respond .comment-form-wprm-rating .wprm-rating-stars {
    height: 23px;
    margin: 0 5px; }

.entry-content > .wprm-recipe-link,
.wp-block-group .wprm-recipe-link {
  padding: 5px 20px;
  margin: 0 6px 0 0;
  background: var(--secondary-color);
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none !important; }
  .no-touch .entry-content > .wprm-recipe-link:hover,
  .no-touch .wp-block-group .wprm-recipe-link:hover {
    opacity: 0.7; }

.wp-block-group.has-text-align-center .wprm-recipe-link {
  margin: 0 3px; }

.wp-block-group.wprm-buttons, .entry-content > .wprm-recipe-snippet:first-child {
  margin-top: -20px; }
  .post-template-2 .wp-block-group.wprm-buttons, .featured-img-reverse .wp-block-group.wprm-buttons,
  .post-template-2 .entry-content > .wprm-recipe-snippet:first-child, .featured-img-reverse .entry-content > .wprm-recipe-snippet:first-child {
    margin-top: -10px; }

.wprm-recipe h1,
.wprm-recipe h2,
.wprm-recipe h3,
.wprm-recipe h4,
.wprm-recipe h5,
.wprm-recipe h6 {
  margin: 0; }

.wprm-recipe .wprm-recipe-equipment-container ul li[style="list-style-type: none;"]:before,
.wprm-recipe .wprm-recipe-ingredients-container ul li[style="list-style-type: none;"]:before {
  display: none; }
.wprm-recipe .wprm-recipe-equipment-container ul li[style="list-style-type: none;"] .wprm-checkbox-container,
.wprm-recipe .wprm-recipe-ingredients-container ul li[style="list-style-type: none;"] .wprm-checkbox-container {
  left: 0;
  line-height: 1.6; }

.vce-row-content {
  max-width: 100%; }

#ez-toc-container nav ul {
  font-size: inherit; }
#ez-toc-container a {
  text-decoration: none; }

@media screen and (min-width: 480px) {
  .single .primary .author-info-box {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: left; }
    .single .primary .author-info-box .author-photo {
      align-self: flex-start;
      width: 160px;
      margin: 0 30px 0 0; }
      .single .primary .author-info-box .author-photo + .author-info {
        width: calc(100% - 190px); }
    .single .primary .author-info-box .author-info {
      width: 100%; }

  .single .related-posts .related-post .post-title {
    font-size: 18px;
    font-size: 1.125rem; }
  .single .related-posts .meta {
    font-size: 11px;
    font-size: 0.6875rem; }
  .single .related-posts .slick-arrow {
    top: calc((100vw - 40px)*1.5/4); } }
@media screen and (min-width: 600px) {
  .comments-area ol.comment-list li.comment .comment-body {
    padding-left: 84px; }
  .comments-area ol.comment-list li .comment-meta {
    padding: 0; }
  .comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
    width: 64px;
    height: 64px; }

  .single.post-template-3 .header-text .cat-links + .meta {
    display: inline-block;
    margin-top: 0;
    margin-left: 20px; } }
@media screen and (min-width: 768px) {
  .archive .page-title,
  .search .page-title,
  .error404 .page-title {
    font-size: 42px;
    font-size: 2.625rem; }

  .comments-area ol.comment-list ol.children {
    margin-left: 84px; }
  .comments-area .comment-respond form.comment-form {
    margin: 0 -5px; }
    .comments-area .comment-respond form.comment-form > * {
      padding: 0 5px; }
    .comments-area .comment-respond form.comment-form .comment-form-author,
    .comments-area .comment-respond form.comment-form .comment-form-email,
    .comments-area .comment-respond form.comment-form .comment-form-url {
      float: left;
      width: 33.333333%; }

  .single .post-navigation .nav-links {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch; }
    .single .post-navigation .nav-links .nav-previous,
    .single .post-navigation .nav-links .nav-next {
      width: 50%; }
    .single .post-navigation .nav-links a {
      height: 100%; }
    .single .post-navigation .nav-links .nav-previous {
      padding-right: 20px;
      margin-left: 0; }
    .single .post-navigation .nav-links .nav-next {
      padding-left: 20px;
      margin-top: 0;
      margin-right: 0;
      text-align: right; }
      .single .post-navigation .nav-links .nav-next a > * {
        margin-right: 0;
        margin-left: auto; }
      .single .post-navigation .nav-links .nav-next .post-thumb {
        order: 2;
        margin-left: 10px; }

  .single.post-template-2 .entry-header,
  .page.page-template-2 .entry-header {
    align-items: stretch; }
  .single.post-template-2 .featured-media-section,
  .page.page-template-2 .featured-media-section {
    padding: 0;
    height: inherit; }
  .single.post-template-2:not(.hide-featured-image) .featured-media-section, .single.post-template-2:not(.hide-featured-image) .featured-media-section + .header-text,
  .page.page-template-2:not(.hide-featured-image) .featured-media-section,
  .page.page-template-2:not(.hide-featured-image) .featured-media-section + .header-text {
    width: 50%;
    min-height: 442.5px; } }
@media screen and (min-width: 800px) {
  .single .related-posts .slick-arrow {
    top: calc((100vw - 76px)/3*0.75); } }
@media screen and (min-width: 860px) {
  .single .related-posts .slick-arrow {
    top: 196px; } }
@media screen and (min-width: 1024px) {
  .single.post-template-2 .featured-media-section,
  .page.page-template-2 .featured-media-section {
    max-height: inherit; }
  .single.post-template-2:not(.hide-featured-image) .featured-media-section + .header-text,
  .page.page-template-2:not(.hide-featured-image) .featured-media-section + .header-text {
    height: calc((100vw - 60px)/2*1.25);
    max-height: 700px; }
    .single.post-template-2:not(.hide-featured-image) .featured-media-section + .header-text .entry-title,
    .page.page-template-2:not(.hide-featured-image) .featured-media-section + .header-text .entry-title {
      margin-top: 0; }
    .single.post-template-2:not(.hide-featured-image) .featured-media-section + .header-text .post-intro,
    .page.page-template-2:not(.hide-featured-image) .featured-media-section + .header-text .post-intro {
      margin-bottom: 20px; }

  .single.post-template-2 .featured-media-section + .header-text .cat-links,
  .single.post-template-2 .featured-media-section + .header-text .meta,
  .page.page-template-2 .featured-media-section + .header-text .page-sub-title {
    position: absolute; }

  .single.post-template-2 .featured-media-section + .header-text .cat-links,
  .page.page-template-2 .featured-media-section + .header-text .page-sub-title {
    top: 0; }

  .single.post-template-2 .featured-media-section + .header-text .meta {
    bottom: 30px; }

  .single.post-template-2.hide-featured-image .featured-media-section + .header-text .cat-links,
  .single.post-template-2.hide-featured-image .featured-media-section + .header-text .meta {
    position: relative; }
  .single.post-template-2.hide-featured-image .featured-media-section + .header-text .meta {
    bottom: 0; } }
@media screen and (min-width: 1025px) {
  .hide-on-desktop {
    display: none; } }
@media screen and (min-width: 1120px) {
  .archive .page-header,
  .search .page-header {
    padding-right: 30px;
    padding-left: 30px; }

  .archive-header-overlay .page-header-bg {
    left: 30px;
    width: calc(100% - 60px); }

  .archive .page-title,
  .search .page-title,
  .error404 .page-title {
    font-size: 50px;
    font-size: 3.125rem; }

  .single .entry-header h1.entry-title,
  .page .entry-header h1.entry-title {
    font-size: 50px;
    font-size: 3.125rem; }

  .single.post-template-1 .featured-media-section,
  .page.page-template-1 .featured-media-section {
    height: 660px;
    padding-top: 0; }

  .single.post-template-2 .header-text,
  .page.page-template-2 .header-text {
    padding: 50px 60px; }
    .single.post-template-2 .header-text .entry-title:first-child,
    .page.page-template-2 .header-text .entry-title:first-child {
      margin-top: 0; }
    .single.post-template-2 .header-text:only-child,
    .page.page-template-2 .header-text:only-child {
      padding-top: 0; }
      .single.post-template-2 .header-text:only-child .entry-title:first-child,
      .page.page-template-2 .header-text:only-child .entry-title:first-child {
        margin-top: 50px; }
  .single.post-template-2 .entry-header h1.entry-title,
  .page.page-template-2 .entry-header h1.entry-title {
    font-size: 44px;
    font-size: 2.75rem; }

  .single.post-template-3:not(.featured-img-reverse) .site-content:not([class*="with-sidebar-"]) .featured-media-section,
  .page.page-template-3:not(.featured-img-reverse) .site-content:not([class*="with-sidebar-"]) .featured-media-section {
    margin-bottom: 50px; }
  .single.post-template-3 .site-content[class*="with-sidebar-"] .breadcrumbs,
  .page.page-template-3 .site-content[class*="with-sidebar-"] .breadcrumbs {
    margin-top: 0; }
  .single.post-template-3.has-header-img .site-header,
  .page.page-template-3.has-header-img .site-header {
    margin-bottom: 50px; }
  .single.post-template-3.has-header-img:not(.featured-img-reverse):not(.hide-featured-image):not(.has-bottom-space) .site-content:not([class*="with-sidebar-"]) .breadcrumbs,
  .page.page-template-3.has-header-img:not(.featured-img-reverse):not(.hide-featured-image):not(.has-bottom-space) .site-content:not([class*="with-sidebar-"]) .breadcrumbs {
    margin-top: -30px; }
  .single.post-template-3.has-header-img:not(.featured-img-reverse):not(.hide-featured-image):not(.has-bottom-space) .site-content:not([class*="with-sidebar-"]) .entry-header:first-child,
  .page.page-template-3.has-header-img:not(.featured-img-reverse):not(.hide-featured-image):not(.has-bottom-space) .site-content:not([class*="with-sidebar-"]) .entry-header:first-child {
    margin-top: -50px; }

  .site-content[class*="with-sidebar-"] .primary {
    max-width: none; }
    .single:not(.post-template-3) .site-content[class*="with-sidebar-"] .primary .wp-block-group.wprm-buttons, .single:not(.post-template-3) .site-content[class*="with-sidebar-"] .primary .entry-content > .wprm-recipe-snippet:first-child {
      margin-top: 0; } }
@media screen and (min-width: 1200px) {
  .single.post-template-3:not(.featured-img-reverse):not(.hide-featured-image) .site-content:not([class*="with-sidebar"]) .primary .has-post-thumbnail .breadcrumbs,
  .single.post-template-3 .site-content:not([class*="with-sidebar"]) .primary .entry-header .featured-media-section,
  .page.page-template-3:not(.featured-img-reverse):not(.hide-featured-image) .site-content:not([class*="with-sidebar"]) .primary .has-post-thumbnail .breadcrumbs,
  .page.page-template-3 .site-content:not([class*="with-sidebar"]) .primary .entry-header .featured-media-section {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 60px);
    max-width: calc(var(--site-width) - 60px); }

  .single .related-posts .slick-arrow {
    top: 145px; } }
@media screen and (max-width: 1119px) {
  .archive.has-header-img.has-bottom-space .site-header {
    margin-bottom: 0; } }
@media screen and (max-width: 1024px) {
  .hide-on-mobile {
    display: none; }

  .archive.with-search-filter .recipe-ajax-filter .recipe-filters {
    flex-wrap: wrap; }
  .archive.with-search-filter .recipe-ajax-filter .title-decor-line {
    max-width: 20%; }

  .error404 .page-header-decor .decor-item {
    font-size: 25vw; }
  .error404 .page-header-decor .decor-item.middle.has-header-img {
    margin: 10px; }
    .error404 .page-header-decor .decor-item.middle.has-header-img .decor-header-img {
      width: 25vw;
      height: 25vw; } }
@media screen and (max-width: 767px) {
  .archive.with-search-filter .recipe-ajax-filter .recipe-filter-button {
    padding: 0 10px; }
  .archive.with-search-filter .recipe-ajax-filter .title-decor-line {
    display: none; }

  .error404 .page-header-decor .decor-item {
    font-size: 33vw; }
  .error404 .page-header-decor .decor-item.middle.has-header-img .decor-header-img {
    width: 33vw;
    height: 33vw; } }
@media screen and (max-width: 599px) {
  .single.post-template-2 .header-text,
  .page.page-template-2 .header-text {
    padding-right: 20px;
    padding-left: 20px; }

  .comments-area ol.comment-list li .comment-meta .comment-metadata {
    display: block; }
    .comments-area ol.comment-list li .comment-meta .comment-metadata:before {
      margin-left: 0; }

  .primary .article-share .article-share-container a {
    width: 35px; }

  .comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link {
    float: none;
    display: block;
    margin: 10px 0 0;
    width: fit-content;
    width: -moz-max-content; } }
@media screen and (max-width: 479px) {
  .single .related-posts .related-post .meta .meta-item.recipe-rating .wprm-recipe-rating .star.half:after {
    top: 3px;
    font-size: 11px;
    font-size: 0.6875rem; } }
@media screen and (max-width: 470px) {
  .primary .signup-form {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw; }

  .single .primary .signup-form .widget_mc4wp_form_widget,
  .page .primary .signup-form .widget_mc4wp_form_widget {
    padding-right: 20px;
    padding-left: 20px; }

  .primary .article-share .article-share-container {
    padding: 0 5px; } }
@media (min-width: 451px) {
  .wprm-template-chic-buttons .wprm-recipe-link.wprm-recipe-link-wide-button {
    margin-bottom: 5px !important; } }
/* ==========================================================================
   8.0 Widgets, Sidebar & Footer
   ========================================================================== */
.widget {
  position: relative;
  margin: 0 auto; }
  .widget select {
    display: block;
    width: 100%; }
  .widget.widget_tag_cloud {
    font-size: 0; }
    .widget.widget_tag_cloud .tagcloud a {
      padding: 0 12px;
      margin: 0 5px 5px 0;
      background: var(--primary-color-light);
      border: none;
      border-radius: 0;
      color: inherit;
      font-size: 13px !important;
      font-size: 0.8125rem !important;
      letter-spacing: 0;
      text-transform: none; }
      .widget.widget_tag_cloud .tagcloud a:before {
        content: "#"; }
      .widget.widget_tag_cloud .tagcloud a:after {
        display: none; }
      .no-touch #page .widget.widget_tag_cloud .tagcloud a:hover, .widget.widget_tag_cloud .tagcloud a:focus {
        background: var(--primary-color);
        color: #fff; }
  .widget.widget_calendar table#wp-calendar {
    margin-bottom: 0;
    border: none;
    border-spacing: 2px; }
    .widget.widget_calendar table#wp-calendar caption {
      margin-top: 0;
      font-size: 16px;
      font-size: 1rem;
      font-weight: 600; }
    .widget.widget_calendar table#wp-calendar th,
    .widget.widget_calendar table#wp-calendar td {
      padding: 0 5px;
      text-align: center;
      border: none !important; }
    .widget.widget_calendar table#wp-calendar th {
      font-size: 10px;
      font-size: 0.625rem;
      font-weight: 400; }
    .widget.widget_calendar table#wp-calendar td {
      font-size: 13px;
      font-size: 0.8125rem; }
    .widget.widget_calendar table#wp-calendar tbody td {
      position: relative;
      background: #f7f7f7;
      line-height: 40px; }
      .dark-color .widget.widget_calendar table#wp-calendar tbody td {
        background: #363636; }
      .widget.widget_calendar table#wp-calendar tbody td[colspan="2"], .widget.widget_calendar table#wp-calendar tbody td[colspan="3"], .widget.widget_calendar table#wp-calendar tbody td[colspan="4"], .widget.widget_calendar table#wp-calendar tbody td[colspan="5"], .widget.widget_calendar table#wp-calendar tbody td[colspan="6"] {
        background: none; }
      .widget.widget_calendar table#wp-calendar tbody td a {
        font-weight: 800; }
        .no-touch .widget.widget_calendar table#wp-calendar tbody td a:hover {
          color: var(--primary-color); }
      .widget.widget_calendar table#wp-calendar tbody td a:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        opacity: 0.1;
        content: ""; }
    .widget.widget_calendar table#wp-calendar tfoot td {
      line-height: 36px;
      font-size: 11px;
      font-size: 0.6875rem;
      text-transform: uppercase; }
      .widget.widget_calendar table#wp-calendar tfoot td a {
        padding: 2px 10px;
        border: 1px solid #e6e6e6;
        border-radius: 0;
        color: inherit; }
        .dark-color .widget.widget_calendar table#wp-calendar tfoot td a {
          border-color: #393939; }
        .no-touch .widget.widget_calendar table#wp-calendar tfoot td a:hover {
          background: var(--primary-color);
          border-color: var(--primary-color);
          color: #fff; }
  .widget.widget_calendar .wp-calendar-nav {
    font-size: 0; }
    .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev,
    .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next {
      display: inline-block;
      width: 45%;
      text-align: center;
      line-height: 36px;
      font-size: 11px;
      font-size: 0.6875rem;
      text-transform: uppercase; }
      .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a, .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a {
        padding: 2px 10px;
        border: 1px solid #e6e6e6;
        border-radius: 0;
        color: inherit; }
        .dark-color .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a,
        .dark-color .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a {
          border-color: #393939; }
        .no-touch .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover, .no-touch .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a:hover {
          background: var(--primary-color);
          border-color: var(--primary-color);
          color: #fff; }
    .widget.widget_calendar .wp-calendar-nav .pad {
      display: inline-block;
      width: 10%; }
  .widget.widget_categories ul, .widget.widget_archive ul, .widget.widget_nav_menu ul, .widget.widget_meta ul, .widget.widget_pages ul, .widget.widget_rss ul, .widget.widget_recent_entries ul, .widget.widget_block ul {
    margin: 0;
    list-style: none; }
    .widget.widget_categories ul li, .widget.widget_archive ul li, .widget.widget_nav_menu ul li, .widget.widget_meta ul li, .widget.widget_pages ul li, .widget.widget_rss ul li, .widget.widget_recent_entries ul li, .widget.widget_block ul li {
      position: relative; }
      .widget.widget_categories ul li:not(:last-child), .widget.widget_archive ul li:not(:last-child), .widget.widget_nav_menu ul li:not(:last-child), .widget.widget_meta ul li:not(:last-child), .widget.widget_pages ul li:not(:last-child), .widget.widget_rss ul li:not(:last-child), .widget.widget_recent_entries ul li:not(:last-child), .widget.widget_block ul li:not(:last-child) {
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
        .dark-color .widget.widget_categories ul li:not(:last-child), .dark-color .widget.widget_archive ul li:not(:last-child), .dark-color .widget.widget_nav_menu ul li:not(:last-child), .dark-color .widget.widget_meta ul li:not(:last-child), .dark-color .widget.widget_pages ul li:not(:last-child), .dark-color .widget.widget_rss ul li:not(:last-child), .dark-color .widget.widget_recent_entries ul li:not(:last-child), .dark-color .widget.widget_block ul li:not(:last-child) {
          border-bottom-color: rgba(255, 255, 255, 0.1); }
      .widget.widget_categories ul li a, .widget.widget_archive ul li a, .widget.widget_nav_menu ul li a, .widget.widget_meta ul li a, .widget.widget_pages ul li a, .widget.widget_rss ul li a, .widget.widget_recent_entries ul li a, .widget.widget_block ul li a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 400; }
        .no-touch .widget.widget_categories ul li a:hover, .no-touch .widget.widget_archive ul li a:hover, .no-touch .widget.widget_nav_menu ul li a:hover, .no-touch .widget.widget_meta ul li a:hover, .no-touch .widget.widget_pages ul li a:hover, .no-touch .widget.widget_rss ul li a:hover, .no-touch .widget.widget_recent_entries ul li a:hover, .no-touch .widget.widget_block ul li a:hover {
          color: var(--primary-color); }
      .widget.widget_categories ul li ul, .widget.widget_archive ul li ul, .widget.widget_nav_menu ul li ul, .widget.widget_meta ul li ul, .widget.widget_pages ul li ul, .widget.widget_rss ul li ul, .widget.widget_recent_entries ul li ul, .widget.widget_block ul li ul {
        margin-top: 8.5px;
        margin-left: 0;
        clear: both; }
        .widget.widget_categories ul li ul ul, .widget.widget_archive ul li ul ul, .widget.widget_nav_menu ul li ul ul, .widget.widget_meta ul li ul ul, .widget.widget_pages ul li ul ul, .widget.widget_rss ul li ul ul, .widget.widget_recent_entries ul li ul ul, .widget.widget_block ul li ul ul {
          margin-left: 15px; }
        .widget.widget_categories ul li ul li, .widget.widget_archive ul li ul li, .widget.widget_nav_menu ul li ul li, .widget.widget_meta ul li ul li, .widget.widget_pages ul li ul li, .widget.widget_rss ul li ul li, .widget.widget_recent_entries ul li ul li, .widget.widget_block ul li ul li {
          border-bottom: none !important;
          padding-bottom: 0 !important; }
  .widget.widget_archive ul li, .widget.widget_categories ul li {
    font-size: 13px;
    font-size: 0.8125rem;
    text-align: right;
    line-height: 26px; }
    .widget.widget_archive ul li a, .widget.widget_categories ul li a {
      float: left;
      width: 80%;
      font-size: 14px;
      font-size: 0.875rem;
      text-align: left; }
  .widget.widget_categories ul ul li a:before, .widget.widget_nav_menu ul ul li a:before, .widget.widget_pages ul ul li a:before {
    display: inline-block;
    margin-right: 10px;
    width: 5px;
    content: ">"; }
  .widget.widget_categories ul li a:not(:last-child) {
    margin-bottom: 6px; }
  .widget.widget_recent_entries ul li a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2; }
  .widget.widget_recent_entries .post-date {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .widget.widget_block .wp-block-latest-posts li a {
    display: block;
    font-family: var(--heading-font);
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500; }
  .widget.widget_recent_comments ul {
    margin: 0;
    list-style: none; }
    .widget.widget_recent_comments ul li {
      font-size: 14px;
      font-size: 0.875rem; }
      .widget.widget_recent_comments ul li:not(:last-child) {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
        .dark-color .widget.widget_recent_comments ul li:not(:last-child) {
          border-bottom-color: rgba(255, 255, 255, 0.1); }
      .widget.widget_recent_comments ul li > a {
        display: block;
        margin-top: 5px;
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.2; }
        .no-touch .widget.widget_recent_comments ul li > a:hover {
          color: var(--primary-color); }
  .widget.widget_block .wp-block-latest-comments li {
    font-size: 14px;
    font-size: 0.875rem; }
    .widget.widget_block .wp-block-latest-comments li:not(:last-child) {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      .dark-color .widget.widget_block .wp-block-latest-comments li:not(:last-child) {
        border-bottom-color: rgba(255, 255, 255, 0.1); }
    .widget.widget_block .wp-block-latest-comments li .wp-block-latest-comments__comment-link {
      display: block;
      margin-top: 5px;
      font-family: var(--heading-font);
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 500; }
      .no-touch .widget.widget_block .wp-block-latest-comments li .wp-block-latest-comments__comment-link:hover {
        color: var(--primary-color); }
  .widget.widget_rss .widget-title .rsswidget:first-child .rss-widget-icon {
    display: none; }
  .widget.widget_rss .widget-title .rsswidget:first-child:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f09e";
    color: #f7943e; }
  .widget.widget_rss ul li:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px; }
  .widget.widget_rss ul li a.rsswidget {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500; }
  .widget.widget_rss ul li .rss-date {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .widget.widget_rss ul li .rssSummary {
    margin-top: 8.5px;
    font-size: 14px;
    font-size: 0.875rem; }
    .widget.widget_rss ul li .rssSummary + cite {
      display: block;
      margin-top: 8.5px; }
  .widget.widget_rss ul li cite {
    font-size: 12px;
    font-size: 0.75rem; }
  .widget.lemon-limes-widget_about {
    text-align: center;
    padding: 30px 45px; }
    .widget.lemon-limes-widget_about.has-img {
      padding-top: 0 !important; }
      .widget.lemon-limes-widget_about.has-img:before {
        height: calc(100% - 100px); }
    .widget.lemon-limes-widget_about:before {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      border: 1px solid;
      pointer-events: none;
      box-sizing: border-box; }
    .widget.lemon-limes-widget_about p:last-child {
      margin-bottom: 0; }
    .widget.lemon-limes-widget_about .profile-img {
      position: relative;
      z-index: 3;
      display: block;
      margin: 0 auto 24px;
      width: 200px;
      border-radius: 50%;
      overflow: hidden; }
    .widget.lemon-limes-widget_about .subheading {
      display: block;
      margin: 0 0 15px;
      font-size: 24px;
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1;
      text-align: center; }
    .widget.lemon-limes-widget_about .socialwidget {
      margin-top: 15px; }
      .widget.lemon-limes-widget_about .socialwidget ul.social-nav li a {
        width: 40px; }
    .widget.lemon-limes-widget_about a.button {
      margin-top: 10px;
      color: inherit;
      background: none;
      line-height: 1; }
      .widget.lemon-limes-widget_about a.button:before {
        position: absolute;
        z-index: -1;
        bottom: 9px;
        left: 30px;
        display: block;
        width: calc(100% - 60px);
        height: 10px;
        background: var(--primary-color-semi);
        content: "";
        transition: 0.3s;
        pointer-events: none; }
      .no-touch .widget.lemon-limes-widget_about a.button:hover:before {
        opacity: 0; }
  .widget.lemon-limes-widget_ad a,
  .widget.lemon-limes-widget_ad img {
    display: block; }
  .widget.lemon-limes-widget_instagram ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    list-style: none; }
    .sidebar .widget.lemon-limes-widget_instagram ul {
      gap: 2px; }
    .widget.lemon-limes-widget_instagram ul li {
      position: relative;
      width: 100%;
      margin: 0; }
      .widget.lemon-limes-widget_instagram ul li a {
        position: relative;
        display: block;
        overflow: hidden; }
        .widget.lemon-limes-widget_instagram ul li a:after {
          font-family: "Font Awesome 5 Brands";
          font-weight: 400;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          z-index: 3;
          display: block;
          width: 50px;
          height: 50px;
          background: #fff;
          border-radius: 50%;
          color: #000;
          text-align: center;
          content: "\f16d";
          font-size: 20px;
          line-height: 50px;
          opacity: 0;
          transition: opacity 0.3s; }
        .no-touch .widget.lemon-limes-widget_instagram ul li a:hover:after {
          opacity: 1; }
        .no-touch .widget.lemon-limes-widget_instagram ul li a:hover .feed-bg {
          -webkit-transform: scale(1.06);
          -ms-transform: scale(1.06);
          transform: scale(1.06); }
      .widget.lemon-limes-widget_instagram ul li .feed-bg {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 0;
        padding-top: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: all 0.4s ease-out;
        -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
        transform: scale(1.02); }
      .widget.lemon-limes-widget_instagram ul li .feed-video {
        margin-bottom: 0; }
  .widget.lemon-limes-widget_instagram.column-4 ul {
    grid-template-columns: repeat(4, 1fr); }
  .widget.lemon-limes-widget_instagram.column-5 ul {
    grid-template-columns: repeat(5, 1fr); }
  .widget.lemon-limes-widget_instagram.column-6 ul {
    grid-template-columns: repeat(6, 1fr); }
  .widget.lemon-limes-widget_instagram.column-7 ul {
    grid-template-columns: repeat(7, 1fr); }
  .widget.lemon-limes-widget_instagram.column-8 ul {
    grid-template-columns: repeat(8, 1fr); }
  .widget.loftocean-widget_facebook {
    overflow: hidden; }
    .widget.loftocean-widget_facebook > div {
      text-align: center; }
  .widget.lemon-limes-widget_posts ul {
    margin: 0;
    list-style: none; }
    .widget.lemon-limes-widget_posts ul li {
      position: relative;
      padding: 0; }
      .widget.lemon-limes-widget_posts ul li:not(:first-child) {
        margin-top: 34px; }
  .widget.lemon-limes-widget_posts .thumbnail,
  .widget.lemon-limes-widget_posts .post-content {
    position: relative;
    z-index: 2;
    pointer-events: none; }
  .widget.lemon-limes-widget_posts.round-thumbnail .thumbnail,
  .widget.lemon-limes-widget_posts.round-thumbnail img {
    border-radius: 50%; }
  .widget.lemon-limes-widget_posts .post-content > * {
    position: relative;
    z-index: 3; }
  .widget.lemon-limes-widget_posts .post-link {
    position: relative;
    z-index: 1;
    display: block; }
  .widget.lemon-limes-widget_posts .thumbnail img {
    display: block;
    margin: 0; }
  .widget.lemon-limes-widget_posts .cat-links,
  .widget.lemon-limes-widget_posts .post-title,
  .widget.lemon-limes-widget_posts .meta {
    width: 100%; }
  .widget.lemon-limes-widget_posts .cat-links {
    padding: 0;
    background: none;
    color: var(--primary-color); }
  .widget.lemon-limes-widget_posts .post-title {
    margin-bottom: 0;
    font-size: 21px;
    font-size: 1.3125rem;
    transition: color 0.3s; }
  .no-touch .widget.lemon-limes-widget_posts .post-link:hover .post-title {
    color: var(--primary-color); }
  .widget.lemon-limes-widget_posts .meta {
    margin-top: 8px;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0;
    opacity: 0.5; }
  .widget.lemon-limes-widget_posts.small-thumbnail .post-link {
    display: flex;
    width: 100%;
    clear: both; }
  .widget.lemon-limes-widget_posts.small-thumbnail .thumbnail {
    position: relative;
    align-self: flex-start;
    width: 68px;
    height: 68px;
    margin-right: 18px;
    overflow: hidden; }
    .widget.lemon-limes-widget_posts.small-thumbnail .thumbnail img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 9;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .widget.lemon-limes-widget_posts.small-thumbnail .thumbnail + .post-content {
      width: calc(100% - 86px); }
  .widget.lemon-limes-widget_posts.small-thumbnail .post-content {
    width: 100%;
    display: flex;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  .widget.lemon-limes-widget_posts.small-thumbnail .post-title {
    font-size: 18px;
    font-size: 1.125rem; }
  .widget.lemon-limes-widget_posts.small-thumbnail .cat-links {
    display: block;
    margin-bottom: 5px; }
    .widget.lemon-limes-widget_posts.small-thumbnail .cat-links span {
      line-height: 1; }
  .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .post-link {
    min-height: 68px; }
  .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .post-content {
    position: static; }
    .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .post-content:before {
      position: absolute;
      left: 0;
      top: 0;
      width: 66px;
      height: 66px;
      background: var(--bg-color);
      border: 1px solid #e4e3e3;
      line-height: 66px;
      transition: opacity 0.3s; }
    .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .post-content:first-child {
      padding-left: 86px; }
  .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number.round-thumbnail .post-content:before {
    border-radius: 50%; }
  .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .thumbnail {
    transition: opacity 0.3s;
    opacity: 0; }
  .no-touch .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .post-link:hover .thumbnail {
    opacity: 1; }
  .no-touch .widget.lemon-limes-widget_posts.small-thumbnail.with-post-number .post-link:hover .thumbnail + .post-content:before {
    opacity: 0; }
  .widget.lemon-limes-widget_posts.large-thumbnail {
    text-align: center; }
    .widget.lemon-limes-widget_posts.large-thumbnail li:not(:first-child) {
      margin-top: 40px; }
    .widget.lemon-limes-widget_posts.large-thumbnail .thumbnail {
      position: relative;
      width: 100%;
      height: 0;
      padding-top: 66.6666%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .widget.lemon-limes-widget_posts.large-thumbnail .thumbnail + .post-content {
        padding-top: 10px; }
    .widget.lemon-limes-widget_posts.large-thumbnail.round-thumbnail .thumbnail {
      padding-top: 0;
      width: 225px;
      height: 225px; }
    .widget.lemon-limes-widget_posts.large-thumbnail.with-post-number .post-content:before {
      margin: 0 auto;
      width: 45px;
      height: 45px;
      background: var(--bg-color);
      border-radius: 50%;
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 45px; }
    .widget.lemon-limes-widget_posts.large-thumbnail.with-post-number .thumbnail + .post-content:before {
      position: absolute;
      top: -22px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      line-height: 35px; }
  .widget.lemon-limes-widget_posts.with-post-number ul li {
    counter-increment: step-counter; }
  .widget.lemon-limes-widget_posts.with-post-number .post-content:before {
    z-index: 1;
    display: block;
    color: inherit;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 500;
    content: counter(step-counter,decimal-leading-zero);
    pointer-events: none; }
  .widget.lemon-limes-widget_cat .catwidget {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0; }
  .widget.lemon-limes-widget_cat .cat {
    overflow: hidden; }
    .widget.lemon-limes-widget_cat .cat a {
      position: relative;
      display: block;
      width: 100%;
      text-align: center;
      text-decoration: none !important; }
  .widget.lemon-limes-widget_cat .cat-bg {
    position: relative;
    z-index: 1;
    height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; }
  .widget.lemon-limes-widget_cat .category-name {
    position: relative;
    z-index: 3;
    display: block;
    padding: 10px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize; }
  .round-img .widget.lemon-limes-widget_cat .cat a {
    max-width: 160px; }
    .no-touch .round-img .widget.lemon-limes-widget_cat .cat a:hover {
      color: var(--primary-color); }
  .round-img .widget.lemon-limes-widget_cat .cat-bg {
    height: 0;
    padding-top: 100%;
    border-radius: 50%; }
.round-img .widget.lemon-limes-widget_cat .cat > a > img {
    border-radius: 50%;
}
  .square-img .widget.lemon-limes-widget_cat .cat a .category-name, .no-img .widget.lemon-limes-widget_cat .cat a .category-name {
    transition: 0.4s; }
  .no-touch .square-img .widget.lemon-limes-widget_cat .cat a:hover .category-name, .no-touch .no-img .widget.lemon-limes-widget_cat .cat a:hover .category-name {
    background: var(--primary-color);
    color: #fff; }
  .square-img .widget.lemon-limes-widget_cat .cat-bg {
    height: 0;
    padding-top: 150%; }
  .square-img .widget.lemon-limes-widget_cat .category-name {
    background: #fff;
    color: #000; }
  .square-img .widget.lemon-limes-widget_cat .cat-bg + .cat-meta {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 10px; }
  .no-img .widget.lemon-limes-widget_cat .category-name {
    background: var(--secondary-color); }
  .no-img.black-text .widget.lemon-limes-widget_cat .category-name {
    color: #000; }
  .no-img.white-text .widget.lemon-limes-widget_cat .category-name {
    color: #fff; }
  .widget-area .widget.lemon-limes-widget_cat .cat,
  .widget-area .widget.lemon-limes-widget_cat .cat a {
    width: 100%; }
  .widget-area .widget.lemon-limes-widget_cat .cat {
    margin: 0 0 17px; }
    .widget-area .widget.lemon-limes-widget_cat .cat a {
      display: flex;
      align-items: center;
      height: 124px;
      background: var(--primary-color-semi); }
  .widget-area .widget.lemon-limes-widget_cat .cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .widget-area .widget.lemon-limes-widget_cat .cat-meta {
    position: relative;
    z-index: 9;
    padding: 6px;
    border: 1px solid #fff; }
  .widget-area .widget.lemon-limes-widget_cat .category-name {
    padding: 10px 30px;
    width: 150px;
    background: #fff;
    color: #000;
    font-family: inherit;
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center; }

.featured-categories .widget.lemon-limes-widget_cat .catwidget {
  margin-right: -7px;
  margin-left: -7px; }
.featured-categories .widget.lemon-limes-widget_cat .cat {
  padding: 7px;
  margin: 0;
  width: 50%; }
.featured-categories.column-9 .widget.lemon-limes-widget_cat .cat {
  width: 33.3333%; }

/* Widgets Area
   ========================================================================== */
.widget-area .widget p,
.widget-area .widget .textwidget ul,
.widget-area .widget .textwidget ol {
  margin-bottom: 17px;
  font-size: 14px;
  font-size: 0.875rem; }
.widget-area .widget.lemon-limes-widget_social ul {
  text-align: center; }
.widget-area .widget.lemon-limes-widget_social ul.social-nav li a {
  margin: 4px;
  background: #000;
  border-radius: 50%;
  color: #fff; }
  .no-touch .widget-area .widget.lemon-limes-widget_social ul.social-nav li a:hover {
    background: var(--primary-color); }
  .widget-area .widget.lemon-limes-widget_social ul.social-nav li a:before {
    font-size: 12px;
    font-size: 0.75rem; }

.dark-color .widget-area.sidebar .widget.lemon-limes-widget_social ul.social-nav li a:not(:hover) {
  background: #fff;
  color: #000; }

/* MailChimp for WordPress form
   ========================================================================== */
.mc4wp-form .fields-container {
  position: relative;
  display: flex;
  margin-top: 17px;
  width: 100%;
  overflow: hidden; }
  .widget-area .mc4wp-form .fields-container, .popup-signup .mc4wp-form .fields-container {
    display: block; }
  .mc4wp-form .fields-container input:not([type="submit"]) {
    position: relative;
    z-index: 1;
    margin: 0 -1px 0 0;
    max-width: 220px;
    height: 42px;
    border-radius: 0;
    text-align: left; }
    .widget-area .mc4wp-form .fields-container input:not([type="submit"]), .popup-signup .mc4wp-form .fields-container input:not([type="submit"]) {
      max-width: none;
      margin: 0; }
  .mc4wp-form .fields-container input[type="submit"] {
    width: auto;
    margin: 0 0 0 10px; }
    .widget-area .mc4wp-form .fields-container input[type="submit"], .popup-signup .mc4wp-form .fields-container input[type="submit"] {
      width: 100%;
      padding-right: 0;
      padding-left: 0;
      margin-left: 0; }
  .mc4wp-form .fields-container + p {
    margin-top: 17px; }
.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"] {
  max-width: 450px;
  font-size: 14px;
  font-size: 0.875rem; }
.no-touch .mc4wp-form input[type="submit"]:hover {
  background: #000; }
.mc4wp-form p {
  margin-bottom: 17px; }
.entry-content .mc4wp-form .mc4wp-form-fields > p:last-child,
.entry-content .mc4wp-form .mc4wp-alert > p:last-child {
  margin-bottom: 0; }
.mc4wp-form a {
  text-decoration: underline 2px var(--primary-color-semi); }
  .no-touch .mc4wp-form a:hover {
    color: var(--primary-color); }
.entry-content .has-text-align-center .mc4wp-form .fields-container, .article-footer .mc4wp-form .fields-container {
  justify-content: center; }
.submitting-form .mc4wp-form {
  opacity: 0.5;
  pointer-events: none; }

.widget.widget_mc4wp_form_widget .widget-title {
  position: relative;
  display: block;
  margin-bottom: 17px;
  font-size: 1.4rem;
  font-weight: 500; }
  .widget-area .widget.widget_mc4wp_form_widget .widget-title {
    padding: 0;
    border: none;
    font-size: 1.5rem;
    letter-spacing: 0;
    text-transform: none;
    font-style: normal; }
    .widget-area .widget.widget_mc4wp_form_widget .widget-title:after {
      display: none; }
.widget.widget_mc4wp_form_widget p:last-of-type {
  margin-bottom: 0; }
.home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget {
  text-align: center; }
  .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget .fields-container {
    justify-content: center; }
.widget-area .widget.widget_mc4wp_form_widget {
  padding: 40px;
  background: var(--secondary-color);
  border-radius: 0;
  text-align: center;
  color: #000; }
  .widget-area .widget.widget_mc4wp_form_widget .fields-container input:not(:first-child) {
    margin-top: 10px; }
  .widget-area .widget.widget_mc4wp_form_widget:not(:first-child) {
    margin-top: 90px; }
  .widget-area .widget.widget_mc4wp_form_widget:first-child {
    margin-top: 30px; }
.widget-area .widget.widget_mc4wp_form_widget .widget-header, .popup-signup .widget.widget_mc4wp_form_widget .widget-title {
  margin-top: -70px; }
  .widget-area .widget.widget_mc4wp_form_widget .widget-header:before, .popup-signup .widget.widget_mc4wp_form_widget .widget-title:before {
    position: relative;
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 400;
    line-height: 62px;
    content: "\f0e0"; }
.popup-signup .widget.widget_mc4wp_form_widget .widget-title:before {
  display: block;
  left: 50%;
  margin-left: -30px;
  margin-bottom: 17px; }
.widget.widget_mc4wp_form_widget .mc4wp-alert {
  margin-top: 17px; }

/* Popup Newsletter Signup Form
   ========================================================================== */
.popup-signup {
  position: fixed;
  z-index: 100000;
  top: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  visibility: hidden;
  transition: visibility 0s 0.4s, opacity 0.3s 0s;
  opacity: 0;
  pointer-events: none; }
  .popup-signup.has-overlay:before {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background: #000;
    content: "";
    opacity: 0.25;
    pointer-events: auto; }
  .popup-signup.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s; }
    .popup-signup.show .container {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }
  .popup-signup .popup-header-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-top: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .popup-signup .close-button {
    position: absolute;
    top: 10px;
    right: 10px; }
  .popup-signup .close-button + .container-inner .widget.widget_mc4wp_form_widget .widget-title {
    margin-top: 0; }
  .popup-signup .container {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    padding: 0;
    width: 400px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    overflow: auto;
    text-align: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    box-shadow: -10px 0 26px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 0.4s 0s ease; }
    .popup-signup .container::-webkit-scrollbar {
      display: none; }
    .popup-signup .container .widget.widget_mc4wp_form_widget .fields-container input:not(:first-child) {
      margin-top: 10px; }
  .popup-signup .container-inner {
    position: relative;
    z-index: 8;
    padding: 40px;
    background: var(--secondary-color);
    text-align: center; }
  .popup-signup p {
    font-size: 14px;
    font-size: 0.875rem; }
  .popup-signup .popup-exit {
    width: 100%;
    padding: 10px 0 0 0;
    text-align: center; }
  .popup-signup .lemon-limes-disable-popup-signup-form,
  .popup-signup .lemon-limes-exit-popup-signup-form {
    display: inline-block;
    font-size: 13px;
    font-size: 0.8125rem;
    text-decoration: underline; }
  .popup-signup .lemon-limes-exit-popup-signup-form {
    display: none; }
  .popup-signup.subscribed form,
  .popup-signup.subscribed .lemon-limes-disable-popup-signup-form {
    display: none; }
  .popup-signup.subscribed .lemon-limes-exit-popup-signup-form {
    display: inline-block; }
  .popup-signup.submitting-form form {
    opacity: 0.5;
    pointer-events: none; }

/* Sidebar Widgets Area
   ========================================================================== */
.sidebar .widget:not(:first-child) {
  margin-top: 60px; }
.sidebar .widget:last-child {
  margin-bottom: 0; }
.sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px; }
  .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line + .widget-title {
    padding: 0 20px;
    margin: 0;
    width: auto; }
  .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line {
    display: block;
    position: relative;
    width: 40px;
    height: 4px; }
    .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:before, .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:after {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      display: block;
      background: var(--primary-color);
      content: ""; }
    .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:before {
      left: 0;
      width: 40px;
      height: 1px; }
    .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:after {
      width: 4px;
      height: 4px;
      border-radius: 50%; }
    .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:first-child {
      margin-right: 0; }
      .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:first-child:after {
        right: 0; }
    .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:last-child {
      margin-left: 0; }
      .sidebar .widget:not(.widget_mc4wp_form_widget) .widget-header .title-decor-line:last-child:after {
        left: 0; }

/* Site Footer
   ========================================================================== */
.site-footer {
  clear: both; }
  .site-footer .site-footer-bottom {
    padding: 30px 0;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center; }
    .site-footer .site-footer-bottom .container {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .site-footer .site-footer-bottom .widget_text {
      order: 1; }
    .site-footer .site-footer-bottom .widget_nav_menu {
      order: 2; }
    .site-footer .site-footer-bottom a {
      color: inherit; }
    .site-footer .site-footer-bottom .widget.widget_text {
      padding: 10px 0; }
    .site-footer .site-footer-bottom .widget.widget_nav_menu > div {
      font-size: 0; }
    .site-footer .site-footer-bottom .widget.widget_nav_menu ul {
      display: inline-block;
      margin: 10px auto; }
      .site-footer .site-footer-bottom .widget.widget_nav_menu ul li {
        display: inline-block;
        padding: 0;
        margin: 0;
        border: none; }
        .site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
          display: block;
          padding: 5px 15px;
          font-size: 14px;
          font-size: 0.875rem;
          text-transform: capitalize;
          letter-spacing: 0; }

/* Footer Logo, Signup Section & Instagram Feed
   ========================================================================== */
.site-footer-branding {
  position: relative;
  padding: 80px 20px;
  width: 100%;
  text-align: center;
  font-size: 0; }
  .site-footer-branding .footer-logo + .social-navigation {
    margin-top: 30px; }
  .site-footer-branding ul.social-nav li a {
    width: 45px;
    height: auto;
    line-height: 1; }
  .site-footer-main .site-footer-branding:not(:last-child) {
    padding-bottom: 50px; }

.site-footer-main {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.site-footer-signup {
  background: none;
  text-align: center; }
  .site-footer-signup .container {
    max-width: calc(var(--site-width) - 60px); }
    .site-footer-branding + .site-footer-signup .container {
      padding-top: 0 !important; }
    .site-footer > .site-footer-signup .container {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
  .site-footer > .site-footer-signup:not(.has-bg) .container {
    padding: 0; }
  .site-footer-signup.has-bg .container {
    padding: 80px; }
  .site-footer-signup.fullwidth .container {
    max-width: none; }
  .site-footer-signup.fullwidth.has-bg .widget {
    max-width: calc(var(--site-width) - 60px); }
  .site-footer-signup .container .widget {
    padding: 50px;
    background: var(--secondary-color); }
    .site-footer-main .site-footer-signup .container .widget {
      max-width: 800px; }
  .site-footer-main .site-footer-signup:not(.has-bg) .container .widget {
    background: transparent; }
  .site-footer-signup .fields-container {
    justify-content: center; }

/** Site footer > Newsletter form */
#colophon {
  background-color: #f2f3ee;
}

.site-footer-signup .mc4wp-form-fields .tnp-field,
.site-footer-signup .mc4wp-form-fields label a {
  margin: 0;
}

@media screen and (min-width: 1260px) {
  .site-footer-signup .mc4wp-form-fields .tnp-field > input {
    width: 220px;
  }
}

.site-footer-signup .mc4wp-form-fields label {
  text-align: center;
  display: inherit;
}

.site-footer-signup .widget.widget_newsletterwidget.amr_widget {
  padding: 0;
}
/** EOL Site footer > Newsletter form */

/** Popup > Newsletter form */
.popup-signup .mc4wp-form-fields .tnp-field,
.popup-signup .mc4wp-form-fields label a {
  margin: 0;
}

.popup-signup .mc4wp-form-fields label {
  text-align: center;
  display: inherit;
}
/** EOL Popup > Newsletter form */

.site-footer-instagram .widget.lemon-limes-widget_instagram {
  position: relative;
  margin: 0; }
  .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title {
    position: relative;
    z-index: 99;
    display: block;
    width: 100%;
    padding-top: 100%;
    margin-bottom: 0;
    background: #000;
    color: #fff;
    font-family: inherit;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden; }
    .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title a {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      width: 100%;
      height: 100%; }
      .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title a:before {
        font-family: "Font Awesome 5 Brands";
        font-weight: 400;
        content: "\f16d";
        font-size: 24px; }
      .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title a:after {
        display: none; }
  .site-footer-instagram .widget.lemon-limes-widget_instagram.small-gap {
    padding: 8px 8px 0; }
    .site-footer-instagram .widget.lemon-limes-widget_instagram.small-gap ul {
      gap: 8px; }
    .site-footer-branding + .site-footer-instagram .widget.lemon-limes-widget_instagram.small-gap {
      padding-top: 0; }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 37px;
  z-index: 1000;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f7f7f7;
  color: #000;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s, filter 0.3s; }
  .to-top:before {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\32";
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 45px;
    display: block; }
  .to-top.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .no-touch .to-top:hover {
    filter: brightness(95%); }

/* Search / Print screen (popup)
   ========================================================================== */
.search-screen,
#print-screen {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: 100%;
  padding: 0;
  background: inherit;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

@media screen and (min-width: 783px) {
  .logged-in.admin-bar .search-screen {
    top: 32px;
    height: calc(100% - 32px);
  }
}

.search-screen.show,
#print-screen.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  width: 100%;
}

.search-screen .container {
  width: 100vw;
  height: 100%;
  padding: 0;
}

.search-screen .close-button,
#print-screen .close-button {
  position: absolute;
  top: 80px;
  right: 30px;
  background: none;
  color: inherit;
}

.search-screen .close-button:before,
.search-screen .close-button:after,
#print-screen .close-button:before,
#print-screen .close-button:after {
  width: 38px;
  height: 2px;
}

.search-screen .search-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 660px;
}

.search-screen .search-form:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  left: 15px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  font-weight: 900;
  font-size: 16px;
  font-size: 1rem;
  line-height: 40px;
  content: "\f002";
}

.search-screen .search-form {
  max-width: 100%;
}

.search-screen .search-form input[type="search"] {
  padding: 0 0 0 50px;
  height: 50px;
  border: none;
  border-bottom: 2px solid;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 50px;
}

.search-screen button.search-submit {
  display: none;
}

.search-screen .keywords {
  margin-top: 20px;
}

.search-screen .keywords-label {
  float: left;
  margin-right: 20px;
  font-weight: 500;
  line-height: 28px;
}

.search-screen .tagcloud a {
  margin-right: 12px;
  margin-left: 0; }

/* Print screen (fullscreen popup)
   ========================================================================== */

#print-screen {
  position: absolute;
  width: auto;
  height: auto;
  padding: 10px;
  background-color: #FFFFFF;
}

#print-screen .close-button {
  position: absolute;
  top: 15px;
  right: 30px;
  background: none;
  color: inherit;
}

#print-screen .print-image-template {
  display: none;
}

#print-screen .print-image {
  float: right;
  margin-left: 15px;
}

#print-screen .print-options {
  margin-top: 10px;
  margin-bottom: 20px;
}

#print-screen .print-options button {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 12px;
  border: none;
  border-radius: 3px;
  background: #eee;
}

#print-screen .print-options > * {
  cursor: pointer;
}

#print-screen .print-options > input[type="checkbox"] {
  margin-left: 20px;
}

#print-screen .print-info {
  border: 2px solid orange;
  padding: 5px;
  margin-bottom: 5px;
  display: none;
}

#print-screen .print-info > .print-shortlink {
  text-decoration: underline;
}

#print-screen .print-info.footer {
  text-align: center;
}

#print-screen .print-title {
  margin-bottom: 20px;
}

#print-screen .print-content {
  display: none;
  text-align: justify;
}

/* Printed document formatting */
@media print {

  #print-screen .print-content,
  #print-screen .print-content p,
  #print-screen .print-content ul {
    color: #000;
  }

  #print-screen .print-options,
  #print-screen .close-button {
    display: none;
  }

  #print-screen .print-info {
    display: block;
  }

  #print-screen .print-content p,
  #print-screen .print-content ul {
    margin-bottom: 10px;
  }
}

/* EOL Print screen (fullscreen popup)
   ========================================================================== */

.heart-beat {
  -webkit-animation: heartBeat 1s infinite;
  animation: heartBeat 1s infinite;
  display: inline-block; }

@media screen and (min-width: 768px) {
  .featured-categories.column-4 .widget.lemon-limes-widget_cat .cat, .featured-categories.column-8 .widget.lemon-limes-widget_cat .cat {
    width: 25%; }
  .featured-categories.column-5 .widget.lemon-limes-widget_cat .cat, .featured-categories.column-10 .widget.lemon-limes-widget_cat .cat {
    width: 20%; }
  .featured-categories.column-6 .widget.lemon-limes-widget_cat .cat {
    width: 16.6666%; }
  .featured-categories.column-7 .widget.lemon-limes-widget_cat .cat {
    width: 14.28%; }

  .site-footer-instagram .widget.lemon-limes-widget_instagram.column-mosaic ul {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr); }
    .site-footer-instagram .widget.lemon-limes-widget_instagram.column-mosaic ul li:nth-child(2) {
      grid-column: 2 / span 2;
      grid-row: 1 / span 2; }
    .site-footer-instagram .widget.lemon-limes-widget_instagram.column-mosaic ul li:nth-child(5) {
      grid-column: 6 / span 2;
      grid-row: 1 / span 2; } }
@media screen and (min-width: 1024px) {
  .search-screen .close-button {
    right: 80px; }
  .search-screen .search-form:before {
    left: 25px;
    font-size: 20px;
    font-size: 1.25rem; }
  .search-screen .search-form input[type="search"] {
    padding: 0 0 0 80px;
    height: 70px;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 70px; }

  .site-footer .site-footer-bottom:not(.column-single) .container > .widget {
    flex: 1;
    flex-grow: 1; }
  .site-footer .site-footer-bottom:not(.column-single) .container .widget.widget_text:not(:only-child) {
    text-align: left; }
  .site-footer .site-footer-bottom:not(.column-single) .container .widget.widget_nav_menu:not(:only-child) {
    text-align: right; }
    .site-footer .site-footer-bottom:not(.column-single) .container .widget.widget_nav_menu:not(:only-child) ul.menu {
      margin-right: -15px; }
  .site-footer .site-footer-bottom.column-single .container .widget.widget_text:not(:only-child) {
    margin-right: 0; }
  .site-footer .site-footer-bottom.column-single .container .widget.widget_nav_menu:not(:only-child) {
    padding-left: 20px;
    margin-left: 0; }
    .site-footer .site-footer-bottom.column-single .container .widget.widget_nav_menu:not(:only-child):before {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 15px;
      content: "|"; }

  .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title {
    font-size: 12px;
    font-size: 0.75rem; }
    .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title a {
      width: calc(100% - 40px); }
      .site-footer-instagram .widget.lemon-limes-widget_instagram .widget-title a:before {
        font-size: 34px; }

  .home-widget.signup-form.right-column .widget.widget_mc4wp_form_widget {
    width: 50%;
    margin-right: 0; } }
@media screen and (min-width: 1120px) {
  .sidebar {
    padding-bottom: 100px; }

  .featured-categories.column-4 .widget.lemon-limes-widget_cat .cat a .category-name, .featured-categories.column-5 .widget.lemon-limes-widget_cat .cat a .category-name {
    font-size: 20px;
    font-size: 1.25rem; }
  .featured-categories.column-8 .widget.lemon-limes-widget_cat .cat {
    width: 12.5%; }
  .featured-categories.column-9 .widget.lemon-limes-widget_cat .cat {
    width: 11.1111%; }
  .featured-categories.column-10 .widget.lemon-limes-widget_cat .cat {
    width: 10%; }
  .featured-categories.round-img .widget.lemon-limes-widget_cat .catwidget {
    margin-right: -15px;
    margin-left: -15px; }
  .featured-categories.round-img .widget.lemon-limes-widget_cat .cat {
    padding: 15px 15px 0; }
  .featured-categories.square-img.column-4 .widget.lemon-limes-widget_cat .cat a .cat-bg + .cat-meta, .featured-categories.square-img.column-5 .widget.lemon-limes-widget_cat .cat a .cat-bg + .cat-meta {
    bottom: 20px; }
  .featured-categories.square-img.column-4 .widget.lemon-limes-widget_cat .cat a .category-name, .featured-categories.square-img.column-5 .widget.lemon-limes-widget_cat .cat a .category-name {
    padding-top: 7px;
    padding-bottom: 7px;
    max-width: 180px; }

  .site-footer-signup .widget.widget_mc4wp_form_widget .widget-title {
    font-size: 32px;
    font-size: 2rem; } }
@media screen and (max-width: 767px) {
  .site-footer-instagram .widget.lemon-limes-widget_instagram.column-4 ul, .site-footer-instagram .widget.lemon-limes-widget_instagram.column-5 ul {
    grid-template-columns: repeat(2, 1fr); }
  .site-footer-instagram .widget.lemon-limes-widget_instagram.column-5 ul li:last-child, .site-footer-instagram .widget.lemon-limes-widget_instagram.column-7 ul li:last-child {
    display: none; }
  .site-footer-instagram .widget.lemon-limes-widget_instagram.column-6 ul, .site-footer-instagram .widget.lemon-limes-widget_instagram.column-7 ul {
    grid-template-columns: repeat(3, 1fr); }
  .site-footer-instagram .widget.lemon-limes-widget_instagram.column-8 ul, .site-footer-instagram .widget.lemon-limes-widget_instagram.column-mosaic ul {
    grid-template-columns: repeat(4, 1fr); } }
@media screen and (max-width: 600px) {
  .mc4wp-form .fields-container {
    display: block; }
    .mc4wp-form .fields-container input[type="text"],
    .mc4wp-form .fields-container input[type="email"] {
      max-width: none;
      margin: 0; }
    .mc4wp-form .fields-container input[type="submit"] {
      width: 100%;
      padding-right: 0;
      padding-left: 0;
      margin-left: 0; }
    .mc4wp-form .fields-container input:not(:first-child) {
      margin-top: 10px; } }
@media screen and (max-width: 480px) {
  .site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
    padding-right: 8px;
    padding-left: 8px; }

  .widget-area .widget.widget_mc4wp_form_widget,
  .widget.lemon-limes-widget_about {
    padding-right: 20px;
    padding-left: 20px; }

  .widget.lemon-limes-widget_about .subheading {
    font-size: 21px;
    font-size: 1.3125rem; }

  .site-footer-signup.has-bg .container {
    padding: 50px 20px; }
  .site-footer-signup .container .widget {
    padding: 20px; } }
/* ==========================================================================
   9.0 Forms
   ========================================================================== */
::-webkit-input-placeholder {
  color: currentColor;
  opacity: 0.5; }

:-moz-placeholder {
  color: currentColor;
  opacity: 0.5; }

:-ms-input-placeholder {
  color: currentColor;
  opacity: 0.5; }

form * {
  outline: 0; }
form ul {
  position: relative;
  margin: 0 auto;
  list-style: none; }
  form ul > li > label {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2; }
form li fieldset {
  padding: 0;
  margin: 0;
  border: none; }
form label {
  font-size: 14px;
  font-size: 0.875rem; }
form p:not(:last-child) {
  margin-bottom: 17px; }

input[type="text"], input[type="email"], input[type="url"], input[type="file"], input[type="password"], input[type="number"], input[type="date"], input[type="search"], input[type="tel"], textarea {
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  background: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: #000;
  -webkit-appearance: none !important;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  font-weight: 400; }
  .touch input[type="text"],
  .touch input[type="email"],
  .touch input[type="url"],
  .touch input[type="file"],
  .touch input[type="password"],
  .touch input[type="number"],
  .touch input[type="date"],
  .touch input[type="search"],
  .touch input[type="tel"],
  .touch textarea {
    font-size: 16px !important;
    font-size: 1rem !important; }
  input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="file"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="search"]:focus, input[type="tel"]:focus, textarea:focus {
    outline: 0; }
  .light-color input[type="text"], .dark-color .light-color input[type="text"], .light-color input[type="email"], .dark-color .light-color input[type="email"], .light-color input[type="url"], .dark-color .light-color input[type="url"], .light-color input[type="file"], .dark-color .light-color input[type="file"], .light-color input[type="password"], .dark-color .light-color input[type="password"], .light-color input[type="number"], .dark-color .light-color input[type="number"], .light-color input[type="date"], .dark-color .light-color input[type="date"], .light-color input[type="search"], .dark-color .light-color input[type="search"], .light-color input[type="tel"], .dark-color .light-color input[type="tel"], .light-color textarea, .dark-color .light-color textarea {
    border-color: rgba(0, 0, 0, 0.1);
    color: #000; }
  .dark-color input[type="text"], .light-color .dark-color input[type="text"], .dark-color input[type="email"], .light-color .dark-color input[type="email"], .dark-color input[type="url"], .light-color .dark-color input[type="url"], .dark-color input[type="file"], .light-color .dark-color input[type="file"], .dark-color input[type="password"], .light-color .dark-color input[type="password"], .dark-color input[type="number"], .light-color .dark-color input[type="number"], .dark-color input[type="date"], .light-color .dark-color input[type="date"], .dark-color input[type="search"], .light-color .dark-color input[type="search"], .dark-color input[type="tel"], .light-color .dark-color input[type="tel"], .dark-color textarea, .light-color .dark-color textarea {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff; }
  .mc4wp-form-fields input[type="text"], .mc4wp-form-fields input[type="email"], .mc4wp-form-fields input[type="url"], .mc4wp-form-fields input[type="file"], .mc4wp-form-fields input[type="password"], .mc4wp-form-fields input[type="number"], .mc4wp-form-fields input[type="date"], .mc4wp-form-fields input[type="search"], .mc4wp-form-fields input[type="tel"], .mc4wp-form-fields textarea {
    background: #fff !important;
    border-color: #000 !important;
    color: #000 !important; }

textarea {
  display: block;
  min-height: 120px;
  resize: vertical; }

input[type="submit"] {
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 11.5px 35px;
  background: var(--primary-color);
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
  transition: 0.4s;
  cursor: pointer; }
  .light-color .form-submit input[type="submit"]:not(:hover), .dark-color .light-color .form-submit input[type="submit"]:not(:hover), .light-color .wpcf7 input[type="submit"]:not(:hover), .dark-color .light-color .wpcf7 input[type="submit"]:not(:hover) {
    background: #000 !important;
    color: #fff !important; }
  .dark-color .form-submit input[type="submit"]:not(:hover), .light-color .dark-color .form-submit input[type="submit"]:not(:hover), .dark-color .wpcf7 input[type="submit"]:not(:hover), .light-color .dark-color .wpcf7 input[type="submit"]:not(:hover) {
    background: #fff !important;
    color: #000 !important; }

select {
  height: 40px;
  padding: 2px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
  color: #000;
  outline: 0;
  line-height: 40px;
  vertical-align: middle;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: none; }
  .dark-color select {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff; }
  .touch select {
    font-size: 16px !important;
    font-size: 1rem !important; }

form.post-password-form label {
  position: relative;
  z-index: 9;
  display: inline-block;
  width: 280px;
  height: 40px;
  padding-left: 10px;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 40px;
  text-align: left;
  vertical-align: bottom; }
  form.post-password-form label input[type="password"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 40px;
    padding: 0 0 0 80px;
    line-height: 40px; }
form.post-password-form input[type="submit"] {
  width: 130px;
  margin: 8px 0 0 0;
  padding: 0;
  line-height: 40px; }
  form.post-password-form input[type="submit"]:not(:hover) {
    background: #000; }

.search-form {
  position: relative;
  max-width: 600px; }
  .search-form input[type="search"] {
    padding-right: 60px;
    height: 50px;
    border-color: currentColor !important;
    font-size: 16px;
    font-size: 1rem; }
    .sidebar .search-form input[type="search"] {
      padding-right: 50px;
      height: 40px;
      font-size: 15px;
      font-size: 0.9375rem; }
  .search-form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    background: none;
    border: none;
    box-shadow: none;
    color: inherit; }
    .search-form .search-submit:before {
      position: relative;
      z-index: 3;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 16px;
      font-size: 1rem;
      line-height: 50px;
      content: "\f002"; }
    .sidebar .search-form .search-submit {
      width: 40px;
      height: 40px; }
      .sidebar .search-form .search-submit:before {
        line-height: 40px; }

.wpcf7-acceptance span.wpcf7-list-item {
  margin: 0; }

.bbp-search-form input[type="text"] {
  display: inline-block;
  width: auto; }

#bbpress-forums div.bbp-the-content-wrapper .quicktags-toolbar input[type="button"] {
  letter-spacing: 0; }

@media screen and (min-width: 600px) {
  form.post-password-form input[type="submit"] {
    margin: 0 0 0 8px; } }
/* ==========================================================================
   10.0 Media
   ========================================================================== */
.site .avatar {
  border-radius: 50%; }

.entry-content .wp-smiley,
.comment-content .wp-smiley,
.textwidget .wp-smiley {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border: none; }

.comment-content a img,
.textwidget a img {
  display: block; }

.lemon-limes-bannr > a > img,
.lemon-limes-bannr > img {
  display: block; }
.entry-content > .lemon-limes-bannr:first-child {
  margin-bottom: 34px; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
  margin-bottom: 34px;
  max-width: 100%;
  border: none;
  vertical-align: middle; }
  p > embed, p >
  iframe, p >
  object, p >
  video {
    margin-bottom: 0; }

.fluid-width-video-wrapper {
  margin-bottom: 34px; }
  .fluid-width-video-wrapper iframe {
    margin-bottom: 0; }

.wp-block-embed-twitter iframe {
  margin-bottom: 0; }

.wp-video-shortcode {
  margin-bottom: 34px; }

#page .wp-playlist {
  margin: 0 0 34px;
  padding-bottom: 0; }
  #page .wp-playlist .wp-playlist-tracks {
    margin-top: 0; }
  #page .wp-playlist a {
    border-bottom: none;
    box-shadow: none !important; }

.wp-playlist-item .wp-playlist-caption {
  padding: 17px 0;
  margin-left: 0;
  color: inherit !important; }

.wp-playlist-item .wp-playlist-item-length {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.mejs-container a {
  padding-bottom: 0;
  border-bottom: none;
  box-shadow: none !important; }

/**
 * Captions
 */
.wp-caption {
  margin: 34px 0;
  max-width: 100%;
  clear: both; }
  .wp-caption.aligncenter {
    text-align: center; }

.wp-caption-text,
figcaption {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  opacity: 0.8; }
  .wp-caption-text a,
  figcaption a {
    font-weight: 600; }

.entry-content p > img.alignnone {
  margin-top: 34px;
  margin-bottom: 34px; }
  .entry-content p > img.alignnone:first-child {
    margin-top: 0; }
  .entry-content p > img.alignnone:last-child {
    margin-bottom: 0; }

.blocks-gallery-grid + .blocks-gallery-caption {
  padding-top: 0; }

.blocks-gallery-grid .blocks-gallery-item figcaption {
  opacity: 1;
  font-family: var(--body-font);
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal; }

img[class*="wp-image-"] {
  display: block;
  margin-left: 0; }
  img[class*="wp-image-"].aligncenter {
    margin-right: auto;
    margin-left: auto; }
  img[class*="wp-image-"].alignright {
    margin-right: 0;
    margin-left: 34px; }

/**
 * Galleries
 */
.gallery {
  margin: 0 -2px 34px; }
  .gallery .gallery-item {
    float: left;
    display: inline-block;
    width: 100%;
    max-width: 33.33%;
    text-align: center;
    vertical-align: top; }
    .gallery .gallery-item .gallery-icon {
      font-size: 0;
      padding: 0 2px 4px; }
      .gallery .gallery-item .gallery-icon a {
        transition: 0s; }
      .gallery .gallery-item .gallery-icon img {
        margin: 0 auto; }
    .gallery .gallery-item .gallery-caption {
      padding: 6px 10px 20px; }
  .gallery.gallery-columns-1 .gallery-item {
    max-width: 100%; }
  .gallery.gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery.gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery.gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery.gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery.gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery.gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery.gallery-columns-9 .gallery-item {
    max-width: 11.11%; }
  .gallery.gallery-columns-1 .gallery-item, .gallery.gallery-columns-2 .gallery-item:nth-child(2n+1), .gallery.gallery-columns-3 .gallery-item:nth-child(3n+1), .gallery.gallery-columns-4 .gallery-item:nth-child(4n+1), .gallery.gallery-columns-5 .gallery-item:nth-child(5n+1), .gallery.gallery-columns-6 .gallery-item:nth-child(6n+1), .gallery.gallery-columns-7 .gallery-item:nth-child(7n+1), .gallery.gallery-columns-8 .gallery-item:nth-child(8n+1), .gallery.gallery-columns-9 .gallery-item:nth-child(9n+1) {
    clear: left; }

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none; }

/**
 * Embeded Twitter Tweet
 */
.entry-content .twitter-tweet.twitter-tweet-rendered {
  margin-left: 0; }

/**
 * Fullscreen Video
 */
.loftocean-media-wrapper.loftocean-media-fullscreen-playing {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing .close-button {
    position: absolute;
    z-index: 9;
    top: 20px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 0;
    text-align: center;
    cursor: pointer; }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing embed,
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing iframe,
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing object,
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing video {
    max-height: 100%;
    margin-bottom: 0; }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing.show {
    display: block; }
  @media screen and (max-width: 782px) and (min-width: 601px) {
    .logged-in.admin-bar .loftocean-media-wrapper.loftocean-media-fullscreen-playing {
      top: 46px;
      height: calc(100% - 46px); } }
  @media screen and (min-width: 783px) {
    .logged-in.admin-bar .loftocean-media-wrapper.loftocean-media-fullscreen-playing {
      top: 32px;
      height: calc(100% - 32px); } }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing .loftocean-video-wrap {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%; }
    .loftocean-media-wrapper.loftocean-media-fullscreen-playing .loftocean-video-wrap video {
      margin: auto; }

/**
 * Wide Image - only works when there is no sidebar
 */
.site-content:not([class*="with-sidebar"]) .wide-image {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  text-align: center; }
  .site-content:not([class*="with-sidebar"]) .wide-image > img {
    margin: 0 auto 20px; }
  .site-content:not([class*="with-sidebar"]) .wide-image > .wp-caption {
    margin-right: auto;
    margin-left: auto; }

/**
 * Show justified gallery after initialization
 */
.post-content-gallery.gallery-justified {
  opacity: 0; }
  .post-content-gallery.gallery-justified.justified-gallery-initialized {
    margin-bottom: 34px;
    opacity: 1;
    transition: opacity 0.4s; }
  .post-content-gallery.gallery-justified img {
    cursor: pointer; }
  .post-content-gallery.gallery-justified .gallery-item img {
    z-index: 1; }
  .post-content-gallery.gallery-justified .gallery-item:before, .post-content-gallery.gallery-justified .gallery-item:after {
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; }
  .post-content-gallery.gallery-justified .gallery-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #000;
    content: ""; }
  .post-content-gallery.gallery-justified .gallery-item:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\4c";
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 40px;
    color: #fff; }
  .no-touch .post-content-gallery.gallery-justified .gallery-item:hover:before {
    opacity: 0.5; }
  .no-touch .post-content-gallery.gallery-justified .gallery-item:hover:after {
    opacity: 1; }

/**
 * Gallery Slider - Slick Slider
 */
.image-gallery .gallery-item .gallery-img {
  position: relative;
  width: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.image-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9; }
  .image-gallery .slick-arrow.slick-prev {
    left: 20px; }
  .image-gallery .slick-arrow.slick-next {
    right: 20px; }

.gallery-slider {
  position: relative;
  width: 100%;
  height: 0;
  clear: both;
  overflow: hidden; }
  .gallery-slider .image-gallery .gallery-item div {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .gallery-slider .image-gallery,
  .gallery-slider .slick-list,
  .gallery-slider .slick-track,
  .gallery-slider .slick-slide > div,
  .gallery-slider .gallery-item {
    height: 100%; }
  .gallery-slider .slider-arrows {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 40px; }
    .gallery-slider .slider-arrows .slick-arrow {
      position: absolute;
      top: 0;
      padding: 0;
      border: 0;
      outline: 0;
      font-size: 0 !important;
      text-align: center; }
      .gallery-slider .slider-arrows .slick-arrow.slick-prev {
        left: 10px; }
      .gallery-slider .slider-arrows .slick-arrow.slick-next {
        right: 10px; }
  .gallery-slider.ratio-3-2 {
    padding-top: 66.666666%; }
    .gallery-slider.ratio-3-2.alignfull {
      padding-top: 66.66vw; }
  .gallery-slider.ratio-1-1 {
    padding-top: 100%; }
    .gallery-slider.ratio-1-1.alignfull {
      padding-top: 100vw; }
  .gallery-slider.ratio-4-5 {
    padding-top: 125%; }
    .gallery-slider.ratio-4-5.alignfull {
      padding-top: 125vw; }
  .entry-content .gallery-slider {
    margin-bottom: 34px; }
  .gallery-slider .image-gallery {
    position: absolute;
    top: 0;
    width: 100%; }
  .gallery-slider .gallery-item .wp-caption-text {
    display: none; }
  .gallery-slider .gallery-item img {
    display: none; }
  .gallery-slider .loftocean-gallery-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: ease 0.4s; }
    .no-touch .gallery-slider .loftocean-gallery-zoom:hover {
      background: rgba(0, 0, 0, 0.9); }
    .gallery-slider .loftocean-gallery-zoom:after {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      font-size: 16px;
      font-size: 1rem;
      line-height: 40px;
      content: "\30"; }
  .gallery-slider .slick-initialized ~ .zoom {
    opacity: 1; }
  .no-touch .gallery-slider:not(.fullscreen):not(:hover) .slick-arrow,
  .no-touch .gallery-slider:not(.fullscreen):not(:hover) .zoom {
    opacity: 0; }
  .gallery-slider.fullscreen {
    position: fixed !important;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.95); }
    .gallery-slider.fullscreen .image-gallery,
    .gallery-slider.fullscreen .image-gallery .slick-list,
    .gallery-slider.fullscreen .image-gallery .slick-track {
      height: 100%; }
      .gallery-slider.fullscreen .image-gallery .slick-slide,
      .gallery-slider.fullscreen .image-gallery .slick-list .slick-slide,
      .gallery-slider.fullscreen .image-gallery .slick-track .slick-slide {
        height: auto; }
    .gallery-slider.fullscreen .gallery-item div {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      height: 100vh;
      padding: 0 !important;
      background: none !important; }
      .gallery-slider.fullscreen .gallery-item div img {
        display: block;
        width: auto;
        max-height: calc(100vh - 100px); }
    .gallery-slider.fullscreen .wp-caption-text {
      position: relative;
      z-index: 9;
      display: block;
      width: 100%;
      max-height: 50px;
      overflow: auto;
      padding: 10px 30px;
      color: #fff;
      text-align: center;
      opacity: 1; }
    .gallery-slider.fullscreen .slider-arrows .slick-arrow.slick-prev {
      left: 30px; }
    .gallery-slider.fullscreen .slider-arrows .slick-arrow.slick-next {
      right: 30px; }
    .gallery-slider.fullscreen .loftocean-gallery-zoom {
      opacity: 1; }
    .gallery-slider.fullscreen .zoom,
    .gallery-slider.fullscreen .loftocean-popup-gallery-close {
      z-index: 9;
      display: block;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #000;
      color: #fff;
      font-size: 0;
      cursor: pointer;
      transition: 0.4s;
      position: absolute;
      z-index: 9;
      top: 60px;
      right: 30px; }
      .gallery-slider.fullscreen .zoom:before, .gallery-slider.fullscreen .zoom:after,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:before,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:after {
        position: absolute;
        top: 23px;
        left: 12px;
        display: block;
        width: 22px;
        height: 1px;
        background: currentColor;
        content: ""; }
      .gallery-slider.fullscreen .zoom:before,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .gallery-slider.fullscreen .zoom:after,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:after {
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg); }

.gallery-zoom {
  overflow: hidden;
  height: 100vh; }
  .gallery-zoom .site-content {
    z-index: 99999; }

.video-block {
  position: relative;
  width: 100%;
  height: 400px; }
  .entry-content > .video-block:not(:last-child) {
    margin-bottom: 34px; }
  .video-block .video-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform; }
  .video-block .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    cursor: pointer; }
    .video-block .video-play-btn:after {
      position: absolute;
      z-index: 3;
      top: 52px;
      left: 55px;
      transform: translate(-50%, -50%);
      display: block;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-left: 26px solid #000;
      content: "";
      transition: 0.3s; }
    .no-touch .video-block .video-play-btn:hover:after {
      border-left-color: var(--primary-color); }

@media screen and (max-width: 600px) {
  .logged-in.admin-bar .lemon-limes-media-wrapper.lemon-limes-media-fullscreen-playing .close-button {
    top: 70px; } }
@media screen and (max-width: 599px) {
  .gallery:not(.gallery-columns-1):not(.gallery-columns-2) .gallery-item .gallery-caption {
    display: none; } }
@media screen and (min-width: 768px) {
  .gallery-slider .loftocean-gallery-zoom {
    display: block; } }
/* ==========================================================================
   10.0 - Shortcode & Blocks
   ========================================================================== */
/* Gutenberg Elements
   ========================================================================== */
.entry-content *[class*="wp-block-"] {
  margin-bottom: 34px; }
  .entry-content *[class*="wp-block-"] *[class*="wp-block-"] {
    margin-bottom: 0; }

.entry-content .wp-block-group__inner-container > *[class*="wp-block-"],
.entry-content .wp-block-column > *[class*="wp-block-"] {
  margin-bottom: 34px; }

.entry-content .small-margin h1,
.entry-content .small-margin h2,
.entry-content .small-margin h3,
.entry-content .small-margin h4,
.entry-content .small-margin h5,
.entry-content .small-margin h6 {
  margin-bottom: 8.5px; }
  .entry-content .small-margin h1:last-child,
  .entry-content .small-margin h2:last-child,
  .entry-content .small-margin h3:last-child,
  .entry-content .small-margin h4:last-child,
  .entry-content .small-margin h5:last-child,
  .entry-content .small-margin h6:last-child {
    margin-bottom: 0; }
.entry-content .small-margin p {
  margin-bottom: 17px; }
  .entry-content .small-margin p:last-child {
    margin-bottom: 0; }

.entry-content h1.small-margin,
.entry-content h2.small-margin,
.entry-content h3.small-margin,
.entry-content h4.small-margin,
.entry-content h5.small-margin,
.entry-content h6.small-margin {
  margin-bottom: 8.5px; }
.entry-content p.small-margin {
  margin-bottom: 17px; }

.light-color .light-grey[class*="wp-block-"] {
  background-color: #fafafa; }

.dark-color .light-grey[class*="wp-block-"] {
  background-color: #191919; }
  .dark-color .light-grey[class*="wp-block-"] .wp-block-social-link {
    color: #fff !important; }

.alignleft[class*="wp-block-"] {
  margin-right: 34px; }

.alignright[class*="wp-block-"] {
  margin-left: 34px; }

.aligncenter[class*="wp-block-"] {
  clear: both; }

.entry-content .wp-block-spacer {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }
  .entry-content .wp-block-spacer + * {
    margin-top: 0 !important; }

.wp-block-media-text .wp-block-media-text__content {
  width: 100%; }
  .wp-block-media-text .wp-block-media-text__content > * {
    margin-bottom: 17px; }
    .wp-block-media-text .wp-block-media-text__content > *:first-child {
      margin-top: 17px; }

.wp-block-media-text.has-background .wp-block-media-text__content {
  padding-top: 8%;
  padding-bottom: 8%; }

.wp-embed-responsive .wp-block-embed[class*="wp-embed-aspect-"] .wp-block-embed__wrapper:before {
  display: none; }

.no-touch .wp-block-gallery a:hover, .no-touch
.wp-block-button a:hover {
  text-decoration: none; }

.wp-block-image .alignleft {
  margin-right: 34px;
  margin-bottom: 34px; }

.wp-block-image .alignright {
  margin-left: 34px;
  margin-bottom: 34px; }

.wp-block-image.alignnone {
  display: inline-block;
  margin-top: 0 !important;
  width: auto; }

.wp-block-image img {
  margin: 0; }

.wp-block-image img[class*="wp-image-"] {
  display: block; }

.wp-block-image figcaption {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0; }

/**
 * Gutenberg Heading Font Size
 */
.entry-content .has-small-font-size {
  font-size: .8125em; }
.entry-content .has-normal-font-size,
.entry-content .has-regular-font-size {
  font-size: 1em; }
.entry-content .has-medium-font-size {
  font-size: 1.25em; }
.entry-content .has-large-font-size {
  font-size: 2.25em; }
.entry-content .has-huge-font-size,
.entry-content .has-larger-font-size {
  font-size: 2.625em; }

/**
 * Gutenberg Button
 */
.light-color .wp-block-button .wp-block-button__link:not(.has-background) {
  background: #111; }
.light-color .wp-block-button .wp-block-button__link:not(.has-text-color) {
  color: #fff; }
.dark-color .wp-block-button .wp-block-button__link:not(.has-background) {
  background: #fff; }
.dark-color .wp-block-button .wp-block-button__link:not(.has-text-color) {
  color: #111; }
.wp-block-button.is-style-outline {
  background: none;
  color: inherit; }
  .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
    background: none; }
  .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
    color: inherit; }
.no-touch .wp-block-button .wp-block-button__link:hover {
  opacity: 0.7; }
.wp-block-button.aligncenter {
  text-align: center; }
.wp-block-button.alignleft, .wp-block-button.alignright {
  margin-top: 8px; }

.wp-block-buttons > *:not(:last-child) {
  margin-bottom: .5em !important; }

.wp-block-button__link {
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500; }

.wp-block-file * + .wp-block-file__button {
  margin-right: 10px; }
.wp-block-file .wp-block-file__button {
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500; }
  .no-touch .wp-block-file .wp-block-file__button:hover {
    box-shadow: none;
    opacity: 0.7; }

/**
 * Gutenberg Cover
 */
.wp-block-cover,
.wp-block-cover-image {
  color: #fff;
  padding: 50px; }
  .wp-block-cover .wp-block-cover-image-text a,
  .wp-block-cover .wp-block-cover-text a,
  .wp-block-cover .wp-block-cover__inner-container a,
  .wp-block-cover-image .wp-block-cover-image-text a,
  .wp-block-cover-image .wp-block-cover-text a,
  .wp-block-cover-image .wp-block-cover__inner-container a {
    color: inherit; }
    .no-touch .wp-block-cover .wp-block-cover-image-text a:hover,
    .no-touch .wp-block-cover .wp-block-cover-text a:hover,
    .no-touch .wp-block-cover .wp-block-cover__inner-container a:hover,
    .no-touch .wp-block-cover-image .wp-block-cover-image-text a:hover,
    .no-touch
    .wp-block-cover-image .wp-block-cover-text a:hover,
    .no-touch
    .wp-block-cover-image .wp-block-cover__inner-container a:hover {
      color: #fff;
      text-decoration-color: #fff; }
  .wp-block-cover .wp-block-cover-image-text,
  .wp-block-cover .wp-block-cover-text,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover-image .wp-block-cover-image-text,
  .wp-block-cover-image .wp-block-cover-text,
  .wp-block-cover-image .wp-block-cover__inner-container {
    width: 100%;
    max-width: 800px;
    line-height: 1.25; }
  .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
    margin-bottom: 0; }
  .wp-block-cover h1,
  .wp-block-cover-image h1 {
    margin-top: 0; }
  .wp-block-cover * + h1,
  .wp-block-cover * + h2,
  .wp-block-cover * + h3,
  .wp-block-cover * + h4,
  .wp-block-cover * + h5,
  .wp-block-cover * + h6,
  .wp-block-cover-image * + h1,
  .wp-block-cover-image * + h2,
  .wp-block-cover-image * + h3,
  .wp-block-cover-image * + h4,
  .wp-block-cover-image * + h5,
  .wp-block-cover-image * + h6 {
    margin-top: 0; }
  .wp-block-cover form,
  .wp-block-cover-image form {
    color: inherit; }

.wp-block-column .wp-block-cover {
  height: auto; }

.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  margin-top: 8px; }

/**
 * Gutenberg Group
 */
.wp-block-group.has-background {
  padding: 50px 20px; }
  .wp-block-group.has-background.alignfull + .wp-block-cover.alignfull, .wp-block-group.has-background.alignfull + .wp-block-group.has-background.alignfull, .wp-block-cover.alignfull + .wp-block-group.has-background.alignfull {
    margin-top: -34px; }
.wp-block-group.alignfull {
  padding: 50px 20px; }
.entry-content .wp-block-group.light-color a {
  color: #000; }
.entry-content .wp-block-group.dark-color a {
  color: #fff; }
.entry-content .wp-block-group.has-text-color a {
  color: inherit; }

.entry-content .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0; }

/**
 * Gutenberg Verse
 */
.wp-block-verse {
  padding: 34px;
  background: #f7f7f7;
  border: 1px solid #eee;
  color: #000; }

/**
 * Gutenberg Quote & Pullquote
 */
.wp-block-quote:not(:first-child) {
  margin-top: 50px; }
.wp-block-quote:not(:last-child) {
  margin-bottom: 50px; }
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  padding: 0 50px;
  margin-right: auto;
  margin-left: auto; }
  .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 24px;
    font-size: 1.5rem;
    font-style: normal;
    line-height: 1.25; }
  .wp-block-quote.is-large cite,
  .wp-block-quote.is-large footer, .wp-block-quote.is-style-large cite,
  .wp-block-quote.is-style-large footer {
    text-align: left;
    font-size: 16px;
    font-size: 1rem; }
  .wp-block-quote.is-large.has-text-align-right cite,
  .wp-block-quote.is-large.has-text-align-right footer, .wp-block-quote.is-style-large.has-text-align-right cite,
  .wp-block-quote.is-style-large.has-text-align-right footer {
    text-align: right; }
  .wp-block-quote.is-large.has-text-align-center cite,
  .wp-block-quote.is-large.has-text-align-center footer, .wp-block-quote.is-style-large.has-text-align-center cite,
  .wp-block-quote.is-style-large.has-text-align-center footer {
    text-align: center; }
  .wp-block-quote.is-large:not(.has-text-align-center):before, .wp-block-quote.is-style-large:not(.has-text-align-center):before {
    top: 5px; }
.wp-block-quote.has-text-align-center {
  padding: 0; }
  .entry-content .wp-block-quote.has-text-align-center:before {
    position: relative;
    top: 0;
    width: 100%; }

.wp-block-pullquote {
  padding: 35px;
  border-top: 4px solid;
  border-bottom: 4px solid; }
  .wp-block-pullquote blockquote {
    margin-bottom: 0;
    padding: 0;
    max-width: 100%;
    color: inherit; }
    .wp-block-pullquote blockquote:before {
      display: none; }
  .wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
    margin-left: 0; }
    .wp-block-pullquote.is-style-solid-color blockquote p {
      font-size: 28px;
      font-size: 1.75rem; }
  .wp-block-pullquote p {
    font-size: 24px;
    font-size: 1.5rem; }
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    margin-top: 8px; }
    .wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
      font-size: 20px;
      font-size: 1.25rem; }
    .wp-block-pullquote.alignleft cite, .wp-block-pullquote.alignright cite {
      font-size: 16px;
      font-size: 1rem; }

/**
 * Gutenberg Separator
 */
.wp-block-separator {
  margin: 50px auto !important;
  clear: both;
  height: 0; }
  .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px; }

/**
 * Gutenberg Video, Audio & Embed
 */
.wp-block-video video {
  margin-bottom: 0; }

.wp-block-embed .fluid-width-video-wrapper {
  margin-bottom: 0; }

.wp-block-video figcaption,
.wp-block-embed figcaption,
.wp-block-audio figcaption {
  margin: 0;
  padding-bottom: 0; }

/**
 * Gutenberg Table
 */
.wp-block-table table {
  margin-bottom: 0; }
.wp-block-table tbody th,
.wp-block-table tbody td {
  vertical-align: middle; }
.wp-block-table.is-style-stripes {
  border: none;
  border-bottom: 1px solid #eee; }
  .wp-block-table.is-style-stripes table {
    border: none; }

/**
 * Gutenberg Widgets
 */
.entry-content .wp-block-latest-posts,
.entry-content .wp-block-categories,
.entry-content .wp-block-archives,
.entry-content .wp-block-latest-comments {
  margin-right: 0;
  margin-left: 0;
  list-style: none; }
  .entry-content .wp-block-latest-posts a,
  .entry-content .wp-block-categories a,
  .entry-content .wp-block-archives a,
  .entry-content .wp-block-latest-comments a {
    padding-bottom: 0;
    border-bottom: none;
    box-shadow: none;
    text-decoration: none;
    font-weight: 600; }
  .entry-content .wp-block-latest-posts li,
  .entry-content .wp-block-categories li,
  .entry-content .wp-block-archives li,
  .entry-content .wp-block-latest-comments li {
    padding-right: 0;
    padding-left: 0; }
    .entry-content .wp-block-latest-posts li:before,
    .entry-content .wp-block-categories li:before,
    .entry-content .wp-block-archives li:before,
    .entry-content .wp-block-latest-comments li:before {
      display: none; }

.wp-block-latest-posts {
  line-height: 1.3; }
  .wp-block-latest-posts li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem; }
  .wp-block-latest-posts .wp-block-latest-posts__post-author,
  .wp-block-latest-posts .wp-block-latest-posts__post-date {
    display: inline-block;
    margin-top: 8px; }
  .wp-block-latest-posts .wp-block-latest-posts__post-author + .wp-block-latest-posts__post-date {
    margin-left: 6px; }
  .entry-content .wp-block-latest-posts li:not(:last-child) {
    margin-bottom: 34px; }
  .entry-content .wp-block-latest-posts.is-grid {
    margin-bottom: 0; }
    .entry-content .wp-block-latest-posts.is-grid li {
      margin-bottom: 34px; }

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
  color: inherit;
  opacity: 0.5; }

.wp-block-latest-posts__post-excerpt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6; }
  .wp-block-latest-posts__post-excerpt a {
    font-size: 14px;
    font-size: 0.875rem; }

.entry-content .wp-block-latest-comments li:not(:last-child) {
  margin-bottom: 17px; }

.entry-content .wp-block-latest-comments__comment {
  line-height: 1.35; }

.entry-content .wp-block-latest-comments__comment-author {
  font-weight: 600; }

.entry-content .wp-block-latest-comments__comment-date {
  margin-top: 5px;
  opacity: 0.5; }

.wp-block-tag-cloud a {
  position: relative;
  display: initial;
  overflow: hidden;
  padding: 0 12px;
  margin: 0 5px 5px 0;
  background: var(--primary-color-light);
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  color: inherit;
  font-size: 14px !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 30px;
  text-transform: none;
  text-decoration: none !important; }
  .wp-block-tag-cloud a:not(:hover) {
    color: inherit; }
  .wp-block-tag-cloud a:before {
    content: "#"; }
  .no-touch #page .wp-block-tag-cloud a:hover, .wp-block-tag-cloud a:focus {
    background: var(--primary-color);
    color: #fff; }

.wp-block-calendar table {
  margin-bottom: 0;
  border: none;
  border-collapse: separate;
  border-spacing: 2px; }
  .wp-block-calendar table a {
    box-shadow: none !important;
    text-decoration: none !important; }
  .wp-block-calendar table caption,
  .wp-block-calendar table tbody {
    color: inherit; }
  .wp-block-calendar table caption {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600; }
  .wp-block-calendar table th,
  .wp-block-calendar table td {
    padding: 0 5px;
    text-align: center;
    border: none !important; }
  .wp-block-calendar table th {
    background: none;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center; }
  .wp-block-calendar table td {
    font-size: 16px;
    font-size: 1rem; }
  .wp-block-calendar table tbody td {
    position: relative;
    background: #f7f7f7;
    line-height: 40px; }
    .dark-color .wp-block-calendar table tbody td {
      background: #363636; }
    .wp-block-calendar table tbody td[colspan="2"], .wp-block-calendar table tbody td[colspan="3"], .wp-block-calendar table tbody td[colspan="4"], .wp-block-calendar table tbody td[colspan="5"], .wp-block-calendar table tbody td[colspan="6"] {
      background: none; }
    .wp-block-calendar table tbody td a {
      font-weight: 800; }
    .wp-block-calendar table tbody td a:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-color);
      opacity: 0.1;
      content: ""; }
  .wp-block-calendar table tfoot td {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase; }
    .wp-block-calendar table tfoot td a {
      padding: 2px 10px;
      border: 1px solid #e6e6e6;
      border-radius: 0;
      color: inherit !important; }
      .dark-color .wp-block-calendar table tfoot td a {
        border-color: #393939; }
      .no-touch .wp-block-calendar table tfoot td a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff !important; }

.wp-block-calendar .wp-calendar-nav {
  font-size: 0; }
  .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev,
  .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase; }
    .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a, .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
      display: inline-block;
      padding: 2px 10px;
      border: 1px solid #e6e6e6;
      border-radius: 0;
      color: inherit !important;
      box-shadow: none !important;
      text-decoration: none !important;
      line-height: 1.5; }
      .dark-color .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a,
      .dark-color .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
        border-color: #393939; }
      .no-touch .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover, .no-touch .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff !important; }
  .wp-block-calendar .wp-calendar-nav .pad {
    display: inline-block;
    width: 10%; }

.wp-block-search {
  position: relative;
  margin-bottom: 34px; }
  .wp-block-search .wp-block-search__label {
    font-weight: 700; }
  .wp-block-search input[type="search"] {
    width: auto; }
  .wp-block-search .wp-block-search__button {
    padding: 0 10px;
    background: #000;
    border: none;
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer; }
    .wp-block-search .wp-block-search__button svg path {
      fill: #fff; }
  .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    padding: 4px;
    border: 1px solid #949494; }
    .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
      border: none; }

.wp-block-rss {
  margin: 0 0 34px;
  list-style: none; }
  #page .wp-block-rss a {
    text-decoration: none; }
  .wp-block-rss .wp-block-rss__item {
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1); }
    .dark-color .wp-block-rss .wp-block-rss__item {
      border-bottom-color: rgba(255, 255, 255, 0.2); }
    .wp-block-rss .wp-block-rss__item:not(:last-child) {
      margin-bottom: 20px; }
  .wp-block-rss .wp-block-rss__item-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 600; }
  .wp-block-rss .wp-block-rss__item-publish-date,
  .wp-block-rss .wp-block-rss__item-author {
    display: inline-block;
    margin-top: 8px;
    color: inherit;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .wp-block-rss .wp-block-rss__item-publish-date + .wp-block-rss__item-author:before {
    margin-right: 5px;
    content: "."; }
  .wp-block-rss .wp-block-rss__item-excerpt {
    margin-top: 8px;
    font-size: 14px;
    font-size: 0.875rem; }

.wp-block-social-links.is-style-logos-only .wp-social-link.wp-social-link.wp-social-link {
  margin: 0; }
.wp-block-social-links:not(.aligncenter):not(.items-justified-center) {
  margin-left: -10px; }

.wp-social-link a,
.wp-social-link a:active,
.wp-social-link a:hover,
.wp-social-link a:visited,
.wp-social-link svg {
  color: currentColor !important; }

/**
 * Gutenberg Gallery
 */
.wp-block-gallery:not(.alignleft):not(.alignright) {
  clear: both; }
.entry-content .wp-block-gallery.alignright {
  margin-left: 34px; }
.entry-content .wp-block-gallery.alignleft {
  margin-right: 34px; }
.entry-content .wp-block-gallery > li,
.entry-content .wp-block-gallery ul > li {
  padding: 0; }
  .entry-content .wp-block-gallery > li:before,
  .entry-content .wp-block-gallery ul > li:before {
    display: none; }
.entry-content > .wp-block-gallery {
  margin-bottom: 20px; }
.entry-content > .wp-block-gallery li:not(:last-child) {
  margin-bottom: 16px; }

.blocks-gallery-grid .blocks-gallery-image a + figcaption,
.blocks-gallery-grid .blocks-gallery-item a + figcaption,
.wp-block-gallery .blocks-gallery-image a + figcaption,
.wp-block-gallery .blocks-gallery-item a + figcaption {
  pointer-events: none; }

.entry-content .blocks-gallery-item figcaption a {
  color: inherit; }

/**
 * Gutenberg Alignment Full
 */
.entry-content .alignfull {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 34px;
  clear: both; }
  .entry-content .alignfull.gallery-slider, .entry-content .alignfull.gallery-justified {
    width: 100vw;
    max-width: 100vw; }
  .entry-content .alignfull.wp-block-cover.has-parallax {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: -50vw; }

.entry-content *[class*="wp-block-"] *.alignfull {
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 100%;
  max-width: 100%; }

/* Query Loop
   ========================================================================== */
.entry-content .wp-block-query .wp-block-post-featured-image {
  margin-bottom: 15px; }
.entry-content .wp-block-query .wp-block-post-title {
  margin-top: 0; }
.entry-content .wp-block-query .wp-block-post-date {
  margin-top: 15px; }
.entry-content .wp-block-query ul {
  margin: 0; }

/* Dropcaps Shortcode
   ========================================================================== */
p.has-drop-cap:not(:focus):first-letter {
  margin: 11px 10px 0 0;
  font-size: 3.6em;
  font-weight: 400; }

.has-drop-cap:not(:focus):after {
  display: none; }

.entry-content .dropcap {
  text-align: left; }
  .entry-content .dropcap:first-letter {
    float: left;
    padding: 0;
    margin: 0.1em 0.15em 0 0;
    box-sizing: border-box;
    font-size: 475%;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1; }
  .entry-content .dropcap.dropcap-colorful:first-letter {
    margin: 11px 10px 0 0;
    color: var(--primary-color);
    font-size: 3.6em;
    font-weight: 400;
    line-height: 0.68; }
  .entry-content .dropcap.light:first-letter {
    float: none;
    margin: 0;
    color: rgba(0, 0, 0, 0.1);
    line-height: 0.8; }
    .dark-color .entry-content .dropcap.light:first-letter {
      color: rgba(255, 255, 255, 0.1); }
  .entry-content .dropcap.square:first-letter {
    display: block;
    padding: 0.12em 0.25em 0.02em;
    margin-top: 0.2em;
    margin-right: 0.3em;
    border: 3px solid #eee;
    border-radius: 0;
    font-size: 275%;
    line-height: 1.12;
    text-align: center; }
  .entry-content .dropcap.dark-bg:first-letter {
    background: #000;
    border-color: #000;
    color: #fff; }
  .entry-content .dropcap.light-bg:first-letter {
    background: #eee;
    border-color: #eee;
    color: #000; }

.entry-content p.dropcap:first-letter {
  margin: 0 0.15em 0 0;
  font-size: 530%; }
.entry-content p.dropcap.square:first-letter {
  font-size: 300%; }

/* Highlight Shortcode
   ========================================================================== */
.entry-content .highlight {
  transition: 0.4s; }
  .entry-content .highlight:not(.bottomline) {
    background: var(--primary-color-semi); }
    .no-touch .entry-content .highlight:not(.bottomline):hover {
      background: var(--primary-color);
      color: #fff; }

.entry-content .highlight.bottomline,
.entry-content .highlight-bottomline {
  border-bottom: 2px solid currentColor; }

/* Tweet it Shortcode
   ========================================================================== */
.entry-content a.tweet-it {
  position: relative;
  border-bottom: none;
  font-weight: 600;
  opacity: 0.8;
  box-shadow: none; }
  .entry-content a.tweet-it:before, .entry-content a.tweet-it:after {
    position: absolute;
    display: block;
    opacity: 0;
    transition: 0.4s; }
  .entry-content a.tweet-it:before {
    top: -32px;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--text-color);
    border-radius: 2px;
    color: var(--bg-color);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f099";
    font-size: 16px;
    line-height: 30px;
    text-align: center; }
  .entry-content a.tweet-it:after {
    top: -2px;
    left: 11px;
    width: 0;
    height: 0;
    border-top: 4px solid var(--text-color);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: ""; }
  .no-touch .entry-content a.tweet-it:hover {
    opacity: 1;
    box-shadow: none; }
    .no-touch .entry-content a.tweet-it:hover:before, .no-touch .entry-content a.tweet-it:hover:after {
      opacity: 1; }

.entry-content .tweet-it-paragraph {
  max-width: 600px;
  padding: 40px 30px 26px;
  text-align: center; }
  .entry-content .tweet-it-paragraph a.tweet-it {
    display: block;
    font-weight: inherit;
    color: inherit;
    opacity: 1; }
    .entry-content .tweet-it-paragraph a.tweet-it:before, .entry-content .tweet-it-paragraph a.tweet-it:after {
      top: -36px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      letter-spacing: 0;
      opacity: 1; }
    .entry-content .tweet-it-paragraph a.tweet-it:after {
      top: -6px; }
    .no-touch .entry-content .tweet-it-paragraph a.tweet-it:hover {
      text-decoration: underline; }
  .entry-content .tweet-it-paragraph h1,
  .entry-content .tweet-it-paragraph h2,
  .entry-content .tweet-it-paragraph h3,
  .entry-content .tweet-it-paragraph h4,
  .entry-content .tweet-it-paragraph h5,
  .entry-content .tweet-it-paragraph h6 {
    line-height: 1.8; }

/* Button Shortcode
   ========================================================================== */
.button.lo-button {
  margin-bottom: 34px;
  vertical-align: text-bottom; }
  p .button.lo-button {
    margin-bottom: 0; }
  .featured-section.custom-section .button.lo-button {
    margin: 2px 5px; }
  .button.lo-button.small {
    padding: 0 14px;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 28px; }
  .button.lo-button.large {
    padding: 0 40px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 50px; }
  .button.lo-button.extra-large {
    padding: 0 48px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 56px; }
  .button.lo-button.custom-bg {
    background: currentColor; }
  .button.lo-button span {
    color: #fff; }

/* Divider Shortcode
   ========================================================================== */
hr.lo-divider {
  background: none !important; }

/* Tabs Shortcode
   ========================================================================== */
.lo-tabs {
  margin-bottom: 34px; }
  .lo-tabs .lo-tabs-titles {
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
    color: #fff;
    overflow: hidden; }
    .lo-tabs .lo-tabs-titles a {
      display: inline-block;
      width: auto;
      padding: 10px 20px;
      margin: 0;
      background: none;
      border: none;
      border-radius: 0;
      color: inherit;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-decoration: none;
      text-transform: uppercase;
      box-shadow: none; }
      .no-touch .lo-tabs .lo-tabs-titles a:hover {
        background: rgba(0, 0, 0, 0.05);
        text-decoration: none;
        box-shadow: none;
        color: inherit; }
      .lo-tabs .lo-tabs-titles a.active {
        background: rgba(0, 0, 0, 0.1); }
  .lo-tabs .lo-tabs-content {
    padding: 34px;
    background: rgba(0, 0, 0, 0.025);
    border-radius: 0 0 4px 4px;
    color: #000; }
    .dark-color .lo-tabs .lo-tabs-content {
      background: #363636;
      color: #fff; }
    .lo-tabs .lo-tabs-content .lo-tab-content > *:last-child {
      margin-bottom: 0; }

/* Accordions Shortcode
   ========================================================================== */
.lo-accordions {
  border-top: 1px solid; }
  .lo-accordions .accordion-item {
    margin-bottom: 0;
    padding: 25px 0;
    border-bottom: 1px solid; }
    .lo-accordions .accordion-item .accordion-title {
      position: relative;
      padding: 0 0 0 40px;
      color: var(--text-color);
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.5;
      font-weight: 500;
      outline: 0;
      cursor: pointer; }
      .lo-accordions .accordion-item .accordion-title .accordion-icon {
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        position: absolute;
        top: 0;
        left: 0;
        line-height: 1.5;
        text-align: center; }
        .lo-accordions .accordion-item .accordion-title .accordion-icon:before {
          content: "\35"; }
      .lo-accordions .accordion-item .accordion-title.ui-state-active .accordion-icon:before {
        content: "\33"; }
    .lo-accordions .accordion-item .accordion-content {
      padding: 15px 0 0;
      border: none; }
      .lo-accordions .accordion-item .accordion-content > *:last-child {
        margin-bottom: 0; }

/* Authors List Shortcode
   ========================================================================== */
.authors-list {
  margin-bottom: 50px; }
  .authors-list:last-child {
    margin-bottom: 0; }
  .authors-list .authors-list-item {
    width: 100%;
    margin: 50px 0 0;
    text-align: center; }
    .authors-list .authors-list-item:first-child {
      margin-top: 0; }
    .authors-list .authors-list-item .author-info p {
      margin-top: 5px;
      margin-bottom: 15px;
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.5; }
    .authors-list .authors-list-item h5 {
      margin: 17px auto 0;
      font-size: 24px;
      font-size: 1.5rem;
      font-weight: 600;
      font-style: normal;
      text-transform: none;
      letter-spacing: 0; }
    .authors-list .authors-list-item .author-info h5 + p,
    .authors-list .authors-list-item h5 + .author-social {
      margin-top: 10px; }
  .authors-list a.author-link {
    box-shadow: none;
    border-bottom: none;
    color: inherit;
    text-decoration: none; }
    .no-touch .authors-list a.author-link:hover {
      box-shadow: none;
      color: inherit;
      text-decoration: none;
      opacity: 0.5; }
  .authors-list span {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.5; }
  .authors-list .author-social ul.social-nav li {
    padding: 0;
    margin-right: 10px; }
    .authors-list .author-social ul.social-nav li:last-child {
      margin-right: 0; }
    .authors-list .author-social ul.social-nav li a {
      text-align: center; }

/* Row & Column
   ========================================================================== */
.lo-column {
  margin-bottom: 34px; }
  .lo-column > *:first-child {
    margin-top: 0 !important; }
  .lo-column > *:last-child {
    margin-bottom: 0 !important; }

.entry-content .wp-block-column, .entry-content .wp-block-column:last-child > *:last-child {
  margin-bottom: 0; }

* + .styled-heading {
  margin-top: 34px; }

@media screen and (min-width: 600px) {
  .wp-block-group.alignfull,
  .wp-block-group.has-background {
    padding-right: 30px;
    padding-left: 30px; }

  .wp-block-columns.alignfull {
    padding-right: 30px;
    padding-left: 30px; }

  .lo-row {
    margin: 0 -20px; }

  .lo-column {
    float: left;
    padding: 0 20px; }
    .lo-column.one-half {
      width: 50%; }
    .lo-column.one-third {
      width: 33.333333%; }
    .lo-column.one-fourth {
      width: 25%; }
    .lo-column.one-fifth {
      width: 20%; }
    .lo-column.two-thirds {
      width: 66.666666%; }
    .lo-column.three-fourths {
      width: 75%; }
    .lo-column.two-fifths {
      width: 40%; }
    .lo-column.three-fifths {
      width: 60%; }
    .lo-column.four-fifths {
      width: 80%; }

  .wp-block-column:nth-last-child(2) > *:last-child {
    margin-bottom: 0; }

  .entry-content *.alignwide {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 60px);
    max-width: calc(var(--site-width) - 60px); }
    .entry-content *.alignwide.wp-block-cover.has-parallax {
      left: 0;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }

  .entry-content *[class*="wp-block-"] *.alignwide {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    max-width: 100%; }

  .entry-content .wp-block-cover.alignfull *.alignwide,
  .entry-content .wp-block-cover.alignwide *.alignwide {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 60px);
    max-width: calc(var(--site-width) - 60px); }

  .entry-content .wp-block-cover.alignwide *.alignwide {
    max-width: 1008px; }

  .authors-list.layout-list .authors-list-item {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    text-align: left; }
    .authors-list.layout-list .authors-list-item .author-photo {
      margin: 0;
      width: 160px; }
    .authors-list.layout-list .authors-list-item .author-info {
      width: calc(100% - 160px);
      padding-left: 30px;
      margin: 0; }
      .authors-list.layout-list .authors-list-item .author-info h5 {
        margin-top: 0; }
      .authors-list.layout-list .authors-list-item .author-info .author-social ul li a {
        text-align: left; }

  .lo-tabs.vertical-tab {
    position: relative;
    padding-left: 140px; }
    .lo-tabs.vertical-tab .lo-tabs-titles {
      position: absolute;
      left: 0;
      display: block;
      width: 140px;
      height: 100%;
      border-radius: 4px 0 0 4px;
      overflow-y: auto; }
      .lo-tabs.vertical-tab .lo-tabs-titles a {
        width: 100%; }
    .lo-tabs.vertical-tab .lo-tabs-content {
      border-radius: 0 4px 4px 0; } }
@media screen and (min-width: 782px) {
  .wp-block-column > *:last-child {
    margin-bottom: 0; } }
@media screen and (min-width: 768px) {
  .authors-list.layout-grid:not(.cols-1) {
    margin-left: -35px; }
    .authors-list.layout-grid:not(.cols-1) .authors-list-item {
      float: left;
      margin-left: 35px; }
  .authors-list.layout-grid.cols-2 .authors-list-item {
    width: calc(50% - 35px); }
    .authors-list.layout-grid.cols-2 .authors-list-item:nth-child(2n+1) {
      clear: both; }
    .authors-list.layout-grid.cols-2 .authors-list-item:nth-child(-n+2) {
      margin-top: 0; }
  .authors-list.layout-grid.cols-3 .authors-list-item {
    width: calc(33.333333% - 35px); }
    .authors-list.layout-grid.cols-3 .authors-list-item:nth-child(3n+1) {
      clear: both; }
    .authors-list.layout-grid.cols-3 .authors-list-item:nth-child(-n+3) {
      margin-top: 0; }
  .authors-list.layout-grid.cols-4 .authors-list-item {
    width: calc(25% - 40px); }
    .authors-list.layout-grid.cols-4 .authors-list-item:nth-child(4n+1) {
      clear: both; }
    .authors-list.layout-grid.cols-4 .authors-list-item:nth-child(-n+4) {
      margin-top: 0; }
  .authors-list.layout-grid .author-info {
    padding: 0 20px; } }
@media screen and (min-width: 860px) {
  .entry-content .wp-block-cover.has-parallax.alignwide {
    margin-left: calc(0px - (100vw - 860px)/2); } }
@media screen and (min-width: 1024px) {
  .wp-block-quote.is-large:before,
  .wp-block-quote.is-large p,
  .wp-block-quote.is-style-large:before,
  .wp-block-quote.is-style-large p {
    font-size: 32px;
    font-size: 2rem; }
  .wp-block-quote.is-large cite,
  .wp-block-quote.is-style-large cite {
    font-size: 21px;
    font-size: 1.3125rem; } }
@media screen and (min-width: 1120px) {
  .site-content[class*="with-sidebar"] .entry-content *.alignfull,
  .site-content[class*="with-sidebar"] .entry-content *.alignwide {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto;
    max-width: none; }
    .site-content[class*="with-sidebar"] .entry-content *.alignfull.wp-block-cover.has-parallax,
    .site-content[class*="with-sidebar"] .entry-content *.alignwide.wp-block-cover.has-parallax {
      margin-left: 0; }

  .wp-block-group.has-background {
    padding: 50px; }
  .wp-block-group.alignfull {
    padding: 50px 0; }
    .wp-block-group.alignfull .wp-block-group__inner-container {
      max-width: var(--site-width);
      padding: 0 30px; } }
@media screen and (min-width: 1260px) {
  .entry-content .wp-block-cover.has-parallax.alignwide {
    margin-left: -200px; } }
@media screen and (max-width: 1119px) {
  .entry-content > .wp-block-group.alignfull:not(.has-background):first-child {
    padding-top: 0; } }
@media screen and (max-width: 599px) {
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    width: calc(50% - 30px); }

  .wp-block-quote.is-large,
  .wp-block-quote.is-style-large {
    padding-right: 0; }

  .wp-block-cover,
  .wp-block-cover-image {
    padding-right: 20px;
    padding-left: 20px; } }
@media screen and (max-width: 480px) {
  blockquote.tiktok-embed {
    padding: 0; }

  blockquote.tiktok-embed:before {
    display: none; } }
@media screen and (max-width: 400px) {
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    width: 100%;
    max-width: 100%;
    margin: 0 0 34px; } }