/**
 * ITS Fox Deferred CSS — Single/Page
 * Non-blocking stylesheet for below-fold content on posts and pages.
 *
 * Contents: common-below, header-below, footer, misc, single-below
 *
 * @version 1.5.0
 * @generated 2026-03-17
 */
@charset "UTF-8";
/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Less than 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
[aria-label][role~=tooltip] {
  position: relative;
}

[aria-label][role~=tooltip]:before, [aria-label][role~=tooltip]:after {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 100000000;
  transform-origin: top;
}

[aria-label][role~=tooltip]:before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~=tooltip]:after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~=tooltip]:hover:before, [aria-label][role~=tooltip]:hover:after, [aria-label][role~=tooltip]:focus:before, [aria-label][role~=tooltip]:focus:after {
  opacity: 1;
  pointer-events: auto;
}

[role~=tooltip][data-microtip-position|=top]:before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~=tooltip][data-microtip-position|=top]:after {
  margin-bottom: 11px;
}

[role~=tooltip][data-microtip-position|=top]:before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position|=top]:hover:before {
  transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position|=top]:after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=top]:hover:after {
  transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position=top-left]:after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-left]:hover:after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}

[role~=tooltip][data-microtip-position=top-right]:after {
  transform: translate3d(calc(0% - 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-right]:hover:after {
  transform: translate3d(calc(0% - 16px), -5px, 0);
}

[role~=tooltip][data-microtip-position|=bottom]:before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position|=bottom]:after {
  margin-top: 11px;
}

[role~=tooltip][data-microtip-position|=bottom]:before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~=tooltip][data-microtip-position|=bottom]:hover:before {
  transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position|=bottom]:after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=bottom]:hover:after {
  transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position=bottom-left]:after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-left]:hover:after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}

[role~=tooltip][data-microtip-position=bottom-right]:after {
  transform: translate3d(calc(0% - 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-right]:hover:after {
  transform: translate3d(calc(0% - 16px), 0, 0);
}

[role~=tooltip][data-microtip-position=left]:before, [role~=tooltip][data-microtip-position=left]:after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=left]:before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position=left]:after {
  margin-right: 11px;
}

[role~=tooltip][data-microtip-position=left]:hover:before, [role~=tooltip][data-microtip-position=left]:hover:after {
  transform: translate3d(0, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]:before, [role~=tooltip][data-microtip-position=right]:after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]:before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~=tooltip][data-microtip-position=right]:after {
  margin-left: 11px;
}

[role~=tooltip][data-microtip-position=right]:hover:before, [role~=tooltip][data-microtip-position=right]:hover:after {
  transform: translate3d(0, -50%, 0);
}

[role~=tooltip][data-microtip-size=small]:after {
  white-space: initial;
  width: 80px;
}

[role~=tooltip][data-microtip-size=medium]:after {
  white-space: initial;
  width: 150px;
}

[role~=tooltip][data-microtip-size=large]:after {
  white-space: initial;
  width: 260px;
}

/* microtip - tooltip disable
=================================================================================*/
[aria-label][role~=tooltip]::after, [aria-label][role~=tooltip]::before {
  display: none !important;
}

.fox56_tooltip {
  position: fixed;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  display: inline-block;
  pointer-events: none;
  z-index: 99999999;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #ffffff;
  padding: 0.4em 0.7em 0.3em;
  white-space: nowrap;
  box-sizing: content-box;
  font-size: 13px;
}
.fox56_tooltip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border: 4px solid rgba(17, 17, 17, 0.9);
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
}

.fox56_tooltip__top {
  transform: translate(0, -6px);
}
.fox56_tooltip__top::before {
  left: calc(50% - 4px);
  top: calc(100% - 5px);
  border-right-color: transparent;
  border-top-color: transparent;
}

.fox56_tooltip__left {
  transform: translate(-6px, 0);
}
.fox56_tooltip__left::before {
  left: calc(100% - 5px);
  top: calc(50% - 4px);
  border-left-color: transparent;
  border-top-color: transparent;
}

.fox56_tooltip__bottom {
  transform: translate(0, 6px);
}
.fox56_tooltip__bottom::before {
  left: calc(50% - 4px);
  top: -3px;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.fox56_tooltip__right {
  transform: translate(6px, 0);
}
.fox56_tooltip__right::before {
  left: -3px;
  top: calc(50% - 4px);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.scrollup56,
.site-footer,
.footer_sidebar56,
.footer_bottom56,
.widget,
.fox-error,
.blog56__sep__line,
#demo-bar,
.pagination56 {
  display: block;
}

/* GENERAL
=================================================================================*/
.color-accent {
  color: var(--accent-color);
}

.bg-accent {
  background: var(--accent-color);
}

.font-body {
  font-family: var(--font-body);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-nav {
  font-family: var(--font-nav);
}

.fox-error {
  display: inline-block;
  border: 1px dashed #ddd;
  color: #333;
  background: #f0f0f0;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  font-family: Arial, sans-serif;
  border-radius: 4px;
  padding: 4px 8px;
}
.fox-error a {
  color: inherit;
  font-weight: bold;
  transition: all 0.2s;
  display: inline !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
  text-decoration: underline;
}
.fox-error a:hover {
  text-decoration: none;
}

/* general
-------------------- */
.entry-content > p:last-child,
.entry-content > h2:last-child,
.entry-content > h3:last-child,
.entry-content > h4:last-child,
.entry-content > h5 > blockquote:last-child,
.entry-content > h5 > .wp-block-quote.is-large:last-child,
.entry-content > h5 > .wp-block-quote.is-style-large:last-child,
.entry-content > figure:last-child,
.entry-content > .wp-caption:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 42px;
  font-size: 2.625em;
}

h2 {
  font-size: 33px;
  font-size: 2.0625em;
}

h3 {
  font-size: 26px;
  font-size: 1.625em;
}

h4 {
  font-size: 20px;
  font-size: 1.25em;
}

h5 {
  font-size: 16px;
  font-size: 1em;
}

h6 {
  font-size: 0.9em;
}

/* media / video / audio
-------------------- */
.wp-block-video video {
  width: 100%;
}

iframe {
  display: block;
  max-width: 100%;
}

.wi-self-hosted-sc .wp-video {
  width: 100% !important;
}

.media-container {
  display: block;
  position: relative;
}
.media-container iframe {
  width: 100% !important;
}
.media-container .media-container iframe[src*=youtu] {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.media-container .wp-video {
  width: 100% !important;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.media-container .wp-video > * {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.media-container .wp-video > video {
  opacity: 0;
  visibility: hidden;
}

/*
.wp-block-embed-youtube iframe {
    aspect-ratio: 16 / 9; // 94% browser support
    width: 100%;
    height: 100%;
}
.wp-embed-aspect-9-16 iframe {
    aspect-ratio: 9 / 16; // 94% browser support
    height: 100%;
    width: 100%;
}
*/
html .mejs-controls .mejs-time-rail .mejs-time-current {
  background: var(--accent-color);
}

/* Table
-------------------- */
table {
  width: 100%;
  border: 1px solid var(--border-color);
  border-collapse: collapse;
}

td, th {
  border: 1px solid var(--border-color);
  padding: 0.5em;
}

/* Blockquote
-------------------- */
blockquote, .wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  font-weight: inherit;
  position: relative;
  margin: 1em auto;
  padding: 1.25em 1em 1.25em;
  font-size: 1.25em;
  text-align: left;
  line-height: 1.5;
  display: block;
  clear: both;
  -moz-column-span: all;
  column-span: all;
  border: 0 solid;
}
blockquote p, .wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
  margin: 0 0 0.7em;
}
blockquote p:last-child, .wp-block-quote.is-large p:last-child,
.wp-block-quote.is-style-large p:last-child {
  margin-bottom: 0;
}
blockquote:before, .wp-block-quote.is-large:before,
.wp-block-quote.is-style-large:before {
  content: "";
  display: none;
  z-index: 20;
  text-align: center;
  z-index: 20;
  line-height: 1;
  background: url(../images/quote.webp) center center no-repeat;
  background-size: 100%;
  width: 90px;
  height: 60px;
  margin: 0 0 20px;
  width: 50px;
  height: 40px;
}
@media only screen and (max-width: 840px) {
  blockquote:before, .wp-block-quote.is-large:before,
  .wp-block-quote.is-style-large:before {
    width: 40px;
    height: 32px;
  }
}
@media only screen and (max-width: 600px) {
  blockquote:before, .wp-block-quote.is-large:before,
  .wp-block-quote.is-style-large:before {
    width: 30px;
    height: 24px;
  }
}
blockquote cite, .wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
  text-align: inherit;
  font-weight: normal;
  margin-top: 1.5em;
}
blockquote cite:before, .wp-block-quote.is-large cite:before,
.wp-block-quote.is-style-large cite:before {
  content: "—";
  margin-right: 0.5em;
}
blockquote.align-left, .align-left.wp-block-quote.is-large,
.align-left.wp-block-quote.is-style-large {
  text-align: left;
  float: left;
  margin: 0 2.5em 1.25em 0;
  max-width: 50%;
  padding-right: 0;
  padding-left: 0;
}
blockquote.align-left:before, .align-left.wp-block-quote.is-large:before,
.align-left.wp-block-quote.is-style-large:before {
  left: 0;
  margin-left: 0;
}
blockquote.align-right, .align-right.wp-block-quote.is-large,
.align-right.wp-block-quote.is-style-large {
  text-align: right;
  float: right;
  margin: 0 0 2.5em 1.25em;
  max-width: 50%;
  padding-right: 0;
  padding-left: 0;
}
blockquote.align-right:before, .align-right.wp-block-quote.is-large:before,
.align-right.wp-block-quote.is-style-large:before {
  left: auto;
  right: 0;
  margin-left: 0;
}

.style--blockquote--icon-2 blockquote:before, .style--blockquote--icon-2 .wp-block-quote.is-large:before,
.style--blockquote--icon-2 .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote2.webp);
}

.style--blockquote--icon-3 blockquote:before, .style--blockquote--icon-3 .wp-block-quote.is-large:before,
.style--blockquote--icon-3 .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote3.webp);
}

.style--blockquote--icon-4 blockquote:before, .style--blockquote--icon-4 .wp-block-quote.is-large:before,
.style--blockquote--icon-4 .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote4.webp);
}

/**
 * no webp
 */
.no-webp blockquote:before, .no-webp .wp-block-quote.is-large:before,
.no-webp .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote.png);
}
.no-webp .style--blockquote--icon-2 blockquote:before, .no-webp .style--blockquote--icon-2 .wp-block-quote.is-large:before,
.no-webp .style--blockquote--icon-2 .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote2.png);
}
.no-webp .style--blockquote--icon-3 blockquote:before, .no-webp .style--blockquote--icon-3 .wp-block-quote.is-large:before,
.no-webp .style--blockquote--icon-3 .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote3.png);
}
.no-webp .style--blockquote--icon-4 blockquote:before, .no-webp .style--blockquote--icon-4 .wp-block-quote.is-large:before,
.no-webp .style--blockquote--icon-4 .wp-block-quote.is-style-large:before {
  background-image: url(../images/quote4.png);
}

.style--blockquote-above blockquote, .style--blockquote-above .wp-block-quote.is-large,
.style--blockquote-above .wp-block-quote.is-style-large {
  padding-top: 0;
  padding-bottom: 0;
}
.style--blockquote-above blockquote:before, .style--blockquote-above .wp-block-quote.is-large:before,
.style--blockquote-above .wp-block-quote.is-style-large:before {
  display: inline-block;
}

.style--blockquote-overlay blockquote, .style--blockquote-overlay .wp-block-quote.is-large,
.style--blockquote-overlay .wp-block-quote.is-style-large {
  position: relative;
}
.style--blockquote-overlay blockquote:before, .style--blockquote-overlay .wp-block-quote.is-large:before,
.style--blockquote-overlay .wp-block-quote.is-style-large:before {
  display: block;
  position: absolute;
  opacity: 0.1;
  top: 0;
  left: -30px;
  width: 100px;
  height: 100px;
}

@media only screen and (max-width: 600px) {
  blockquote, .wp-block-quote.is-large,
  .wp-block-quote.is-style-large {
    font-size: 1.1em;
  }
  blockquote.align-left, .align-left.wp-block-quote.is-large,
  .align-left.wp-block-quote.is-style-large, blockquote.align-right, .align-right.wp-block-quote.is-large,
  .align-right.wp-block-quote.is-style-large {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
    float: none;
    clear: both;
    width: 100%;
    max-width: 100%;
    padding-right: 1em;
    padding-left: 1em;
  }
  blockquote.align-left:before, .align-left.wp-block-quote.is-large:before,
  .align-left.wp-block-quote.is-style-large:before, blockquote.align-right:before, .align-right.wp-block-quote.is-large:before,
  .align-right.wp-block-quote.is-style-large:before {
    left: 50%;
    right: auto;
    margin-left: -24px;
  }
}
/* CONTENT IMAGE
=================================================================================*/
/* Image General
 * size, wp-block-image, caption etc
---------------------------------------- */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.wp-block-image,
.wp-block-gallery {
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}
.wp-block-image:first-child,
.wp-block-gallery:first-child {
  margin-top: 0 !important;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin: 0 !important;
}

.wp-block-gallery .blocks-gallery-caption {
  text-align: center;
}

.wp-block-image .alignleft {
  margin-right: 2em !important;
  text-align: left;
}
.wp-block-image .alignright {
  margin-left: 2em !important;
  text-align: right;
}

/* Align Left
---------------------------------------- */
.alignleft,
a img.alignleft {
  margin: 0.3em 2.25em 1.8em 0;
  float: left;
}

.alignleft figcaption,
.align-left figcaption {
  text-align: left !important;
}

/* Align Right
---------------------------------------- */
.alignright,
a img.alignright {
  margin: 0.3em 0 2.25em 1.8em;
  float: right;
}

.alignright figcaption,
.align-right figcaption {
  text-align: right !important;
}

/* Align Center
---------------------------------------- */
.aligncenter {
  clear: both;
  text-align: center;
}
.aligncenter::after {
  clear: both;
  content: "";
  display: table;
}

.aligncenter,
a img.aligncenter {
  display: block;
  margin: 1em auto 1.25em;
}

/* Align None
---------------------------------------- */
.alignnone {
  margin: 2em 0;
}

.wp-caption {
  border: none;
  max-width: 100%; /* Image does not overflow the content area */
}

.wp-caption.alignnone {
  margin: 1.5em 0;
}

.wp-caption.alignleft {
  margin: 0.3em 3em 1.6em 0;
}

.wp-caption.alignright {
  margin: 0.3em 0 1.6em 3em;
}

@media only screen and (max-width: 600px) {
  .wp-caption.alignleft {
    margin-right: 1em;
    margin-bottom: 1em;
  }
  .wp-caption.alignright {
    margin-left: 1em;
    margin-bottom: 1em;
  }
}
.wp-caption.aligncenter {
  margin: 0 auto 28px;
  text-align: center;
}

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

.gallery-caption {
  margin: 0;
  font-size: 0.88em;
  padding-top: 1em;
  line-height: 1.5;
}
.gallery-caption a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid;
  transition: all 0.15s;
}
.gallery-caption a:hover {
  text-decoration: none;
  border-bottom-color: transparent;
}

/* fix: align problem in Safari/Firefox since 4.9.2
---------------------------------------- */
.entry-content p a[href$=".jpg"], .entry-content p a[href$=".png"], .entry-content p a[href$=".jpeg"], .entry-content p a[href$=".webp"], .entry-content p a[href$=".gif"], .entry-content p a[href$=".JPG"], .entry-content p a[href$=".PNG"], .entry-content p a[href$=".JPEG"], .entry-content p a[href$=".WEBP"], .entry-content p a[href$=".GIF"] {
  display: inline;
}

/* Image Media Block
---------------------------------------- */
.has-media-on-the-right.wp-block-media-text .wp-block-media-text__content {
  padding-left: 0;
}

.has-media-on-the-left.wp-block-media-text .wp-block-media-text__content {
  padding-right: 0;
}

.wp-block-media-text__content h2, .wp-block-media-text__content h3, .wp-block-media-text__content h4 {
  margin-bottom: 0.3em;
}
.wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}

/* WP Gallery
---------------------------------------- */
.gallery {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px 24px;
}

.gallery-item {
  display: block;
  text-align: center;
  padding: 8px;
  margin: 0;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.11%;
}

.gallery-columns-10 .gallery-item {
  width: 10%;
}

.gallery-icon {
  transition: all 0.1s ease;
}
.gallery-icon:hover {
  transform: translate(0, -2px);
}

.widget .gallery {
  margin-top: 8px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 840px) {
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item,
  .gallery-columns-10 .gallery-item {
    width: 20%;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item {
    width: 33.33%;
  }
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item,
  .gallery-columns-10 .gallery-item {
    width: 25%;
  }
}
/* MISC
=================================================================================*/
address {
  font-style: italic;
  margin: 0 0 1.6em;
}

hr {
  border-top: 1px solid;
  border-bottom: 0;
  margin: 1em 0;
}

code,
kbd,
tt,
var,
samp,
pre {
  font-family: Inconsolata, monospace;
  -webkit-hyphens: none;
  hyphens: none;
}

pre {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.07);
  border: 0;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.2em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

mark {
  background: #ffd;
  padding: 0 5px;
}

.wp-block-separator {
  display: block;
  clear: both;
  margin: 2em 0;
}
.wp-block-separator::after {
  clear: both;
  content: "";
  display: table;
}

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

/* GUTENBERG SUPPORT @since 3.0
 * @improved in 4.0
------------------------------------------ */
.wp-block-cover,
.wp-block-cover-image {
  margin-bottom: 1em;
}

/* Image Block
--------------------- */
.wp-block-embed {
  overflow: hidden;
}
.wp-block-embed figcaption {
  text-align: center;
}

.wp-block-embed__wrapper blockquote, .wp-block-embed__wrapper .wp-block-quote.is-large,
.wp-block-embed__wrapper .wp-block-quote.is-style-large {
  border: 0 !important;
}
.wp-block-embed__wrapper blockquote:before, .wp-block-embed__wrapper .wp-block-quote.is-large:before,
.wp-block-embed__wrapper .wp-block-quote.is-style-large:before {
  display: none !important;
}

.wp-block-embed-twitter .twitter-tweet-rendered {
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-block-embed-instagram iframe {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Tiktok Embed
 * @since 4.4.1
--------------------- */
.tiktok-embed {
  border: 0 !important;
}
.tiktok-embed:before {
  display: none !important;
}

/* PDF embed
since 6.2.4
--------------------- */
body .fluid-width-video-wrapper object.wp-block-file__embed {
  position: static;
}

/* Spotify
 * @since 4.4.1
--------------------- */
.wp-block-embed-spotify iframe {
  width: 100%;
}

/* Gallery
--------------------- */
.blocks-gallery-item a {
  border: 0 !important;
}

.blocks-gallery-item figure {
  position: relative;
  overflow: hidden;
}
.blocks-gallery-item figcaption {
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
}
.blocks-gallery-item figure:hover figcaption {
  opacity: 1;
  visibility: visible;
}

/* Quote
--------------------- */
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  font-size: 1.5em;
}
.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
  font-style: normal;
  font-size: 1em;
}

.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: center;
  font-size: 0.85em;
}

/* Button
--------------------- */
.wp-block-button__link.is-style-default, .wp-block-button__link.is-style-squared {
  border-bottom: 0 !important;
}

/* Block Cover Text
--------------------- */
.wp-block-cover-text {
  font-family: var(--font-heading);
}

.wp-block-cover__inner-container {
  font-weight: 300;
}
.wp-block-cover__inner-container > *:last-child {
  margin-bottom: 0;
}

/* PAGINATION
=================================================================================*/
.pagination56 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  margin: 30px 0 0;
  font-family: var(--font-heading);
}
@media only screen and (max-width: 600px) {
  .pagination56 {
    margin-top: 10px;
  }
}
.pagination56 .page-numbers {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: inherit;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  border: 0 solid;
  transition: all 0.2s ease-out;
}
.pagination56 .page-numbers + .page-numbers {
  margin-left: 5px;
}
.pagination56 .page-numbers.current {
  color: #999;
}
.pagination56 .page-numbers.next, .pagination56 .page-numbers.prev {
  width: auto;
  padding: 0 15px;
  background: none;
  color: inherit;
  border: 0;
}
.pagination56 .page-numbers.next:hover, .pagination56 .page-numbers.prev:hover {
  color: inherit;
  background: none;
}

/* microtip - tooltip disable
=================================================================================*/
[aria-label][role~=tooltip]::after, [aria-label][role~=tooltip]::before {
  display: none !important;
}

.fox56_tooltip {
  position: fixed;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  display: inline-block;
  pointer-events: none;
  z-index: 99999999;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #ffffff;
  padding: 0.4em 0.7em 0.3em;
  white-space: nowrap;
  box-sizing: content-box;
  font-size: 13px;
}
.fox56_tooltip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border: 4px solid rgba(17, 17, 17, 0.9);
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
}

.fox56_tooltip__top {
  transform: translate(0, -6px);
}
.fox56_tooltip__top::before {
  left: calc(50% - 4px);
  top: calc(100% - 5px);
  border-right-color: transparent;
  border-top-color: transparent;
}

.fox56_tooltip__left {
  transform: translate(-6px, 0);
}
.fox56_tooltip__left::before {
  left: calc(100% - 5px);
  top: calc(50% - 4px);
  border-left-color: transparent;
  border-top-color: transparent;
}

.fox56_tooltip__bottom {
  transform: translate(0, 6px);
}
.fox56_tooltip__bottom::before {
  left: calc(50% - 4px);
  top: -3px;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.fox56_tooltip__right {
  transform: translate(6px, 0);
}
.fox56_tooltip__right::before {
  left: -3px;
  top: calc(50% - 4px);
  border-right-color: transparent;
  border-bottom-color: transparent;
}/*# sourceMappingURL=common-below.css.map */@charset "UTF-8";
/* STICKY HEADER
======================================================================================================================== */
.masthead--sticky .masthead__wrapper {
  transition: top 0.6s ease-out;
  position: static;
  top: -400px;
  /* this is to solve everything */
}
.masthead--sticky .masthead__wrapper.before-sticky {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  border: 0 solid;
}
.masthead--sticky .masthead__wrapper.before-sticky .header56__section,
.masthead--sticky .masthead__wrapper.before-sticky .header56__section > .container {
  border: 0;
}
.masthead--sticky .masthead__wrapper.before-sticky .disable--sticky {
  display: none;
}
.masthead--sticky .masthead__wrapper.is-sticky {
  top: 0;
}

.admin-bar .masthead--sticky .masthead__wrapper.is-sticky {
  top: 32px;
}

/* search
======================================================================================================================== */
.search-wrapper-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999999;
  background: white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

.search-modal-close-btn {
  position: absolute;
  top: 6%;
  right: 6%;
  z-index: 99;
  display: block;
  font-size: 28px;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.search-wrapper-modal .container {
  display: flex;
  height: 100%;
}

html.in-modal-search56 .search-wrapper-modal {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ------------------------------       modal search content */
.modal-search-content {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex: none;
  margin-top: 15%;
}

.modal-search-content .s {
  display: block;
  width: 100%;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
}
.modal-search-content .searchform .submit {
  font-size: 20px;
  text-align: center;
}

.search-suggestion {
  margin: 40px 0 0;
}
.search-suggestion h4 {
  margin: 0 0 1em;
  font-size: 0.8em;
  color: #999;
  font-weight: 400;
  display: block;
}
.search-suggestion nav {
  display: block;
}
.search-suggestion ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.search-suggestion nav a {
  color: inherit;
  text-decoration: none;
}
.search-suggestion nav a:hover {
  text-decoration: underline;
}
.search-suggestion nav li {
  display: inline-block;
  font-size: 1.1em;
}
.search-suggestion nav li + li:before {
  content: "·";
  margin: 0 0.9em;
  opacity: 0.5;
}
.search-suggestion nav li,
.search-suggestion h4 {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.46s;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 10px);
}
.search-suggestion h4 {
  transition-delay: 0.25s;
}
.search-suggestion nav li:first-child {
  transition-delay: 0.3s;
}
.search-suggestion nav li:nth-child(2) {
  transition-delay: 0.35s;
}
.search-suggestion nav li:nth-child(3) {
  transition-delay: 0.3s;
}
.search-suggestion nav li:nth-child(4) {
  transition-delay: 0.42s;
}
.search-suggestion nav li:nth-child(5) {
  transition-delay: 0.44s;
}

.in-modal-search56 .search-suggestion nav li,
.in-modal-search56 .search-suggestion h4 {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

/* ------------------------------       toggle search */
.header56__search__inner {
  position: relative;
}
.header56__search__inner .search-wrapper-toggle {
  position: absolute;
  top: calc(100% + 5px);
  width: 280px;
  z-index: 99;
}

.search-wrapper-toggle {
  display: none;
}
.search-wrapper-toggle.shown {
  display: block;
}

.header56__part--right .header56__search__inner .search-wrapper-toggle {
  right: -10px;
}

.header56__part--center .header56__search__inner .search-wrapper-toggle {
  right: -130px;
}

.header56__part--left .header56__search__inner .search-wrapper-toggle {
  left: -10px;
}

/* OFF CANVAS
======================================================================================================================== */
.offcanvas56 {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999999;
  padding: 16px;
  width: 320px;
  margin-top: 0;
  transform: translate(-102%, 0);
  transition: transform 0.2s;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
@media only screen and (max-width: 600px) {
  .offcanvas56 {
    top: 54px;
    width: 100%;
  }
}

.offcanvas56::-webkit-scrollbar {
  display: none;
}

.offcanvas56__overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-out;
  display: block;
}

html.on-offcanvas,
html.in-offcanvas-permanent {
  /*
  // fixed when open the offcanvas menu
  .mobile-header56-outer {
      position: fixed;
  }
  */
}
html.on-offcanvas .offcanvas56,
html.in-offcanvas-permanent .offcanvas56 {
  transform: translate(0, 0);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 600px) {
  html.on-offcanvas .offcanvas56,
  html.in-offcanvas-permanent .offcanvas56 {
    box-shadow: none;
    width: 100%;
  }
}
html.on-offcanvas .offcanvas56__overlay,
html.in-offcanvas-permanent .offcanvas56__overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 600px) {
  html.on-offcanvas .offcanvas56__overlay,
  html.in-offcanvas-permanent .offcanvas56__overlay {
    display: none;
  }
}
html.on-offcanvas .hamburger .icon-close,
html.in-offcanvas-permanent .hamburger .icon-close {
  display: block;
}
html.on-offcanvas .hamburger .icon-menu,
html.in-offcanvas-permanent .hamburger .icon-menu {
  display: none;
}

/* offcanvas nav
------------------------------------------------------------ */
.offcanvasnav56 {
  /* border top problem */
}
.offcanvasnav56 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.offcanvasnav56 a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 46px;
  position: relative;
}
.offcanvasnav56 ul.sub-menu {
  display: none;
  margin-left: 20px;
}
.offcanvasnav56 li {
  border-top: 0 solid;
}
.offcanvasnav56 ul.sub-menu {
  border: 0;
}
.offcanvasnav56 ul ul li {
  border: 0;
}
.offcanvasnav56 li + li {
  border-top: 1px solid;
}

.offcanvas56__element + .offcanvas56__element {
  margin-top: 20px;
}

/* -----------------------      dropdown indicator */
.offcanvasnav56 .mk {
  text-decoration: none;
  font-style: normal;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 99;
  width: 32px;
  height: 32px;
  font-size: 24px;
  text-align: center;
  line-height: 32px;
  text-align: center;
  /* ic56- */
  font-family: "icon56" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 32px;
}
.offcanvasnav56 .mk:before {
  content: "\e90f";
}
.offcanvasnav56 li.menu-item-has-children > a > .mk {
  display: block;
}
.offcanvasnav56 li.active > a > .mk:before {
  content: "\e90d";
}
.offcanvasnav56 a[href]:not([href^=http]) .mk,
.offcanvasnav56 a:not([href]) .mk {
  position: absolute;
  width: 100%;
  text-align: right;
  padding-right: 12px;
}

/* -----------------------      2 columns */
.nav--cols-2 ul.menu {
  display: flex;
  flex-flow: row wrap;
}
.nav--cols-2 ul.menu > li {
  width: 50%;
}
.nav--cols-2 ul.menu > li:nth-child(2) {
  border-top: 0 !important;
}

/* offcanvas with animation
------------------------------------------------------------ */
.offcanvas56--hasanimation .offcanvasnav56 ul.menu > li,
.offcanvas56--hasanimation .offcanvas56__social,
.offcanvas56--hasanimation .offcanvas56__search,
.offcanvas56--hasanimation .offcanvas56__html1,
.offcanvas56--hasanimation .offcanvas56__html2,
.offcanvas56--hasanimation .offcanvas56__html3,
.offcanvas56--hasanimation .offcanvas56__button1,
.offcanvas56--hasanimation .offcanvas56__button2,
.offcanvas56--hasanimation .widget {
  display: block;
  transform: translate(0, 20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

html.on-offcanvas .offcanvasnav56 ul.menu > li,
html.on-offcanvas .offcanvas56__social,
html.on-offcanvas .offcanvas56__search,
html.on-offcanvas .offcanvas56__html1,
html.on-offcanvas .offcanvas56__html2,
html.on-offcanvas .offcanvas56__html3,
html.on-offcanvas .offcanvas56__button1,
html.on-offcanvas .offcanvas56__button2,
html.on-offcanvas .widget,
html.in-offcanvas-permanent .offcanvasnav56 ul.menu > li,
html.in-offcanvas-permanent .offcanvas56__social,
html.in-offcanvas-permanent .offcanvas56__search,
html.in-offcanvas-permanent .offcanvas56__html1,
html.in-offcanvas-permanent .offcanvas56__html2,
html.in-offcanvas-permanent .offcanvas56__html3,
html.in-offcanvas-permanent .offcanvas56__button1,
html.in-offcanvas-permanent .offcanvas56__button2,
html.in-offcanvas-permanent .widget {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

/* switcher
------------------------------------------------------------ */
.offcanvas56__darkmode-switcher {
  display: inline-block;
}/*# sourceMappingURL=header-below.css.map */.site-footer {
  overflow: hidden;
  display: block;
}

#footer-instagram {
  overflow: hidden;
}

/* FOOTER SIDEBAR
=================================================================================*/
.footer_sidebar56 {
  display: block;
  border: 0 solid var(--border-color);
  border-width: 1px 0 0;
}
.footer_sidebar56 .container {
  border: 0 solid var(--border-color);
  padding: 30px 0;
}
@media only screen and (max-width: 840px) {
  .footer_sidebar56 .container {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 600px) {
  .footer_sidebar56 .container {
    padding: 10px 0;
  }
}

/* --------------------------       widgets */
.footer_sidebar56 .widget + .widget {
  margin-top: 12px;
  padding-top: 12px;
}
@media only screen and (max-width: 840px) {
  .footer_sidebar56 .widget + .widget {
    margin-top: 6px;
    padding-top: 6px;
  }
}
@media only screen and (max-width: 600px) {
  .footer_sidebar56 .widget + .widget .widget-title {
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
  }
}

/* --------------------------       col layout */
.footer56__row {
  align-items: stretch;
  margin: 0 -20px;
}
.footer56__row .footer56__col {
  padding: 0 20px;
}
@media only screen and (max-width: 840px) {
  .footer56__row .footer56__col {
    width: 100%;
  }
}
@media only screen and (max-width: 840px) {
  .footer56__row {
    display: block;
  }
}

.footer56__col {
  min-height: 1px;
  position: relative;
  padding: 0 20px;
}
@media only screen and (max-width: 840px) {
  .footer56__col + .footer56__col {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .footer56__col {
    width: 100% !important;
  }
}

.footer56__col__sep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: none;
  border: 0px solid var(--border-color);
  border-width: 0 1px 0 0;
}
@media only screen and (max-width: 600px) {
  .footer56__col__sep {
    display: none;
  }
}

.footer56__col + .footer56__col .footer56__col__sep {
  display: block;
}
@media only screen and (max-width: 600px) {
  .footer56__col + .footer56__col .footer56__col__sep {
    display: none;
  }
}

/* --------------------------       align - since 4.4 */
.footer__col--left .widget {
  width: auto;
  display: table;
  margin-right: auto;
  text-align: left;
}

.footer__col--center .widget {
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.footer__col--right .widget {
  width: auto;
  display: table;
  margin-left: auto;
  text-align: right;
}

/* --------------------------       valign */
.valign--stretch .footer56__row {
  align-items: stretch;
}

.valign--middle .footer56__row {
  align-items: center;
}

.valign--bottom .footer56__row {
  align-items: flex-end;
}

.valign--top .footer56__row {
  align-items: flex-start;
}

/* FOOTER BOTTOM
=================================================================================*/
.footer_bottom56 {
  display: block;
  border: 0 solid var(--border-color);
  border-width: 1px 0 0;
}
.footer_bottom56 .container {
  border: 0 solid var(--border-color);
  padding: 60px 0;
}
@media only screen and (max-width: 840px) {
  .footer_bottom56 .container {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 600px) {
  .footer_bottom56 .container {
    padding: 20px 0;
  }
}

/* -----------------------      stack */
.footer_bottom--stack {
  text-align: center;
}
.footer_bottom--stack .footer56__element + .footer56__element {
  margin-top: 26px;
}
@media only screen and (max-width: 840px) {
  .footer_bottom--stack .footer56__element + .footer56__element {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .footer_bottom--stack .footer56__element + .footer56__element {
    margin-top: 12px;
  }
}
.footer_bottom--stack .footer56__social ul {
  justify-content: center;
}

/* -----------------------      inline */
@media only screen and (max-width: 600px) {
  .footer_bottom__row {
    display: block;
  }
  .footer_bottom__row .footer_bottom__col {
    width: 100%;
  }
  .footer_bottom__row .footer_bottom__col + .footer_bottom__col {
    margin-top: 20px;
  }
}

.footer_bottom__col .footer56__element {
  margin-bottom: 4px;
}

.footer_bottom__col .footer56__element {
  display: inline-block;
}

.footer_bottom__col--left {
  text-align: left;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.footer_bottom__col--left .footer56__element {
  margin-right: 10px;
}
.footer_bottom__col--left .footer56__element:last-child {
  margin-right: 0;
}

.footer_bottom__col--right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-flow: row wrap;
}
.footer_bottom__col--right .footer56__element + .footer56__element {
  margin-left: 10px;
}
@media only screen and (max-width: 600px) {
  .footer_bottom__col--right .footer56__element + .footer56__element {
    margin-left: 0;
  }
}
@media only screen and (max-width: 600px) {
  .footer_bottom__col--right {
    text-align: inherit;
    justify-content: flex-start;
  }
  .footer_bottom__col--right .footer56__element {
    margin-right: 10px;
  }
}

/* LOGO
=================================================================================*/
.footer56__logo {
  line-height: 0;
}
.footer56__logo a {
  display: inline-block;
}
.footer56__logo img {
  display: block;
  width: 200px;
}

/* NAV
=================================================================================*/
.footer56__nav {
  font-family: var(--font-nav);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}
.footer56__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer56__nav li {
  display: inline-block;
}
.footer56__nav li + li {
  margin-left: 10px;
}
.footer56__nav a {
  color: inherit;
  display: block;
  transition: all 0.2s ease-out;
}
.footer56__nav a:hover {
  color: #888;
}
@media only screen and (max-width: 600px) {
  .footer56__nav a {
    letter-spacing: 0;
  }
}
.footer56__nav .current-menu-item a {
  color: #888;
}

/* SOCIAL
=================================================================================*/
/* SEARCH
=================================================================================*/
.footer56__search {
  position: relative;
}
.footer56__search .searchform {
  display: inline-block;
  width: 240px;
  max-width: 100%;
  position: relative;
}
.footer56__search .searchform .s {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 8px;
  padding-right: 40px;
  background: white;
  color: black;
}
.footer56__search .searchform .submit {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  font-size: 16px;
  text-align: center;
  transition: all 0.15s ease-out;
  cursor: pointer;
}
.footer56__search .searchform .submit i {
  display: block;
  margin: 0;
  line-height: inherit;
}
.footer56__search .searchform .submit:hover {
  background: var(--accent-color);
}

/* COPYRIGHT
=================================================================================*/
.footer56__copyright {
  position: relative;
}
.footer56__copyright p {
  display: inline-block;
  margin: 0;
  width: 440px;
  max-width: 100%;
}
@media only screen and (max-width: 840px) {
  .footer56__copyright p {
    width: auto;
    display: block;
  }
}
.footer56__copyright a {
  color: inherit;
}
.footer56__copyright a:hover {
  color: inherit;
}
.footer56__copyright i {
  margin: 0 4px;
  font-size: 12px;
}
.footer56__copyright i.fa-heart {
  color: #D82E2E;
}

/* Scroll Top
---------------------------------------------------------------------------------------------------------------------- */
.scrollup56 {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 30px;
  background-color: white;
  cursor: pointer;
}

/* ICON
----------------------------------------------------- */
.scrollup56--icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: all 0.15s ease-out;
  /* animation */
  opacity: 0;
  visibility: hidden;
}
.scrollup56--icon i {
  display: block;
}
.scrollup56--icon.scrollup56--round {
  border-radius: 4px;
}
.scrollup56--icon.scrollup56--circle {
  border-radius: 50%;
}
.scrollup56--icon.shown {
  opacity: 1;
  visibility: visible;
}

/* IMAGE
----------------------------------------------------- */
.scrollup56--image {
  background: none;
  /* animation */
  opacity: 0;
  visibility: hidden;
}
.scrollup56--image img {
  width: 32px;
}
.scrollup56--image.shown {
  opacity: 1;
  visibility: visible;
}

/* TEXT
----------------------------------------------------- */
.scrollup56--text {
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  text-align: center;
  font-family: var(--font-heading);
  /* animation */
  transition: all 0.35s ease-out;
  transform: translateY(105%);
}
.scrollup56--text.scrollup56--square {
  bottom: 0;
  bottom: -3px;
}
.scrollup56--text.scrollup56--round {
  border-radius: 4px 4px 0 0;
  bottom: -3px;
}
.scrollup56--text span {
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 0.15s ease-out;
}
.scrollup56--text:hover span {
  transform: translate(0, -3px);
}
.scrollup56--text .go {
  font-size: 12px;
}
.scrollup56--text .top {
  font-size: 20px;
  font-weight: bold;
}
.scrollup56--text.scrollup56--circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
}
.scrollup56--text.scrollup56--circle .go {
  display: none;
}
.scrollup56--text.scrollup56--circle .top {
  font-weight: normal;
  font-size: 0.7em;
  letter-spacing: 0.5px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
.scrollup56--text.scrollup56--circle:hover .top {
  transform: translate(0, -52%);
}
.scrollup56--text.scrollup56--circle, .scrollup56--text.shown {
  transform: translate(0, 0);
}/*# sourceMappingURL=footer.css.map */#wpstats {
  width: 0 !important;
  height: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
}

.wi-button {
  display: table;
  margin: 0 auto;
  width: 50%;
}
.wi-button .wi-btn {
  text-align: center;
}

/* SVG comments
=================================================================================*/
.fox56__css__icon__comment {
  width: 16px;
}

/* MISC
=================================================================================*/
.single-fox_block .site-content {
  min-height: 100vh;
}

.demonstration {
  display: block;
  background: #000;
  color: #fc0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.demonstration p {
  margin: 0;
}

.fox-library-modal-btn {
  margin-left: 5px;
  background: #000;
  color: white;
  vertical-align: top;
}

.fox-library-modal-btn:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/foxhead.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.elementor-add-new-section .elementor-add-section-area-button.fox-library-modal-btn {
  width: auto;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  background: #006ba1;
  color: white;
  border-radius: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

/* TEMPLATE BUILDER PROBLEM
---------------------------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
  .archive-builder .container,
  .single-builder .container {
    max-width: 100%;
  }
}
/* IMAGEBOX
-------------------------------------------------------------------------------------- */
.elementor-image-box-title {
  margin-top: 0;
}

/**
 *
 */
.widget56__edit {
  position: absolute;
  background: #2271b1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  color: white;
  z-index: 999;
  line-height: 28px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
  text-align: center;
  padding: 0 8px;
  cursor: pointer;
  top: 0px;
  left: 90%;
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  display: none;
}
.widget56__edit:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.widget56__edit i {
  margin-left: 1px;
  font-size: 14px;
  display: inline-block;
  line-height: inherit;
}

.heading56:hover > .widget56__edit,
.section56:hover > .widget56__edit,
.widget56:hover > .widget56__edit {
  opacity: 1;
  visibility: visible;
  display: block;
}

.section56 > .widget56__edit,
[data-widget=section] > .widget56__edit {
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
}

[data-widget=row] > .widget56__edit {
  top: -20px;
  left: 10px;
  transform: none;
}

[data-widget=column] > .widget56__edit {
  top: 10px;
  left: 20px;
  transform: none;
}

.customize-partial-edit-shortcuts-shown .focused {
  outline: 1px solid #2271b1;
  box-shadow: 2px 3px 10px #2271b1;
}
.customize-partial-edit-shortcuts-shown .section56,
.customize-partial-edit-shortcuts-shown .widget56 {
  position: relative;
  overflow: visible;
  min-height: 20px;
}
.customize-partial-edit-shortcuts-shown .section56.heading56,
.customize-partial-edit-shortcuts-shown .widget56.heading56 {
  overflow: hidden;
}
.customize-partial-edit-shortcuts-shown .section56:hover,
.customize-partial-edit-shortcuts-shown .widget56:hover {
  outline: 1px solid #2271b1;
  box-shadow: 2px 3px 10px #2271b1;
}
.customize-partial-edit-shortcuts-shown .section56 .customize-partial-edit-shortcut,
.customize-partial-edit-shortcuts-shown .widget56 .customize-partial-edit-shortcut {
  display: none !important;
}
.customize-partial-edit-shortcuts-shown .section56,
.customize-partial-edit-shortcuts-shown .row56 {
  min-height: 20px;
}

/* MOBILE STRETCH
-------------------------------------------------------------------------------------- */
.mobile-stretch .blog56--grid--mobile--1cols .thumbnail56 {
  margin-left: -10px;
  margin-right: -10px;
}
.mobile-stretch .blog56--group {
  overflow: visible;
}

.edit_with_fox_page_builder {
  position: fixed;
  background: white;
  bottom: 0;
  left: 0;
  z-index: 99999999;
  padding: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 1px 1px 0 0;
}
.edit_with_fox_page_builder a {
  text-decoration: none;
  color: #006ba1;
  font-weight: bold;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
.edit_with_fox_page_builder a:hover {
  text-decoration: underline;
}

.edit_with_builder_close {
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 14px;
  height: 14px;
  line-height: 14px;
  padding: 0;
  margin: 0;
  line-height: 14px;
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  background: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=misc.css.map *//* load unload stuffs
=================================================================================*/
.single56__related,
.authorboxes56,
#comments,
.singlebottom56 {
  visibility: visible;
}

/* CONTENT LINK STYLE
=================================================================================*/
.single56--link-1 .single56__content p a,
.single56--link-1 .single56__content ul a,
.single56--link-1 .single56__content ol a {
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-position: under;
  transition: all 0.15s ease;
}
.single56--link-1 .single56__content p a:hover,
.single56--link-1 .single56__content ul a:hover,
.single56--link-1 .single56__content ol a:hover {
  text-decoration-color: #333;
}

.single56--link-2 .single56__content p a,
.single56--link-2 .single56__content ul a,
.single56--link-2 .single56__content ol a {
  text-decoration: underline;
  text-underline-position: under;
  transition: all 0.15s ease;
}
.single56--link-2 .single56__content p a:hover,
.single56--link-2 .single56__content ul a:hover,
.single56--link-2 .single56__content ol a:hover {
  text-decoration-color: transparent;
}

.single56--link-3 .single56__content p a,
.single56--link-3 .single56__content ul a,
.single56--link-3 .single56__content ol a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.1s;
  text-underline-offset: 2px;
}
.single56--link-3 .single56__content p a:hover,
.single56--link-3 .single56__content ul a:hover,
.single56--link-3 .single56__content ol a:hover {
  text-decoration-color: transparent;
}

/* CONTENT ALIGN AND STRETCH
=================================================================================*/
.wp-block-image.alignfull figcaption,
.wp-block-image.alignwide figcaption {
  text-align: center;
}

.can-stretch-full .alignfull {
  width: auto;
  max-width: none !important;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
}
@media only screen and (max-width: 840px) {
  .can-stretch-full .alignfull {
    margin-left: 0;
    margin-right: 0;
    max-width: 100% !important;
  }
}

.can-stretch-wide .alignwide {
  margin-left: -60px;
  margin-right: -60px;
  max-width: calc(100% + 120px) !important;
}
@media only screen and (max-width: 840px) {
  .can-stretch-wide .alignwide {
    margin-left: 0;
    margin-right: 0;
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 1020px) {
  .can-stretch-wide .alignwide {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}
.single56--content-image-stretch .alignleft {
  margin-left: -60px;
}
@media only screen and (max-width: 840px) {
  .single56--content-image-stretch .alignleft {
    margin-left: 0;
  }
}
.single56--content-image-stretch .alignright {
  margin-right: -60px;
}
@media only screen and (max-width: 840px) {
  .single56--content-image-stretch .alignright {
    margin-right: 0;
  }
}
.single56--content-image-stretch .aligncenter {
  margin-left: -60px;
  margin-right: -60px;
  max-width: calc(100% + 120px) !important;
  display: block;
}
@media only screen and (max-width: 840px) {
  .single56--content-image-stretch .aligncenter {
    margin-left: 0;
    margin-right: 0;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 600px) {
  .single56--content-image-stretch .aligncenter {
    margin-left: -10px;
    margin-right: -10px;
    max-width: calc(100% + 20px) !important;
  }
}

/* TAGS / same style as terms56 - title bar sub-categories
=================================================================================*/
/* AUTHOR BOX
=================================================================================*/
.authorbox56 {
  max-width: 100%;
  display: block;
  border: 0 solid;
}

.authorbox56 + .authorbox56 {
  margin-top: 12px;
}

.authorbox56__inner {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
}

.authorbox56__avatar {
  display: block;
  color: inherit;
  outline: 0;
  text-decoration: none;
  border: 0;
  width: 90px;
  flex: none;
}
@media only screen and (max-width: 600px) {
  .authorbox56__avatar {
    width: 54px;
  }
}

.authorbox56__text {
  width: calc(100% - 90px);
  flex: none;
  padding-left: 0.8em;
}
@media only screen and (max-width: 600px) {
  .authorbox56__text {
    width: calc(100% - 54px);
    padding-left: 0.5em;
  }
}

.authorbox56__name {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0 0 0.4em;
}
.authorbox56__name a {
  color: inherit;
}
.authorbox56__name a:hover {
  color: inherit;
}

.authorbox56__description {
  line-height: 1.4;
  margin: 0 0 5px;
}
.authorbox56__description p {
  margin: 0;
}

.authorbox56 .fox56-social-list a:hover {
  color: inherit;
}

/* WIDTH
================================== */
.authorbox56--narrow {
  width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* AUTHOR BOX TAB
================================== */
.authorbox56__tabs {
  margin-bottom: 10px;
  display: flex;
}
.authorbox56__tabs a {
  display: block;
  color: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 28px;
  padding: 0 12px;
}
.authorbox56__tabs a:hover {
  color: inherit;
}
.authorbox56__tabs a + a {
  margin-left: 2px;
}
.authorbox56__tabs a.active {
  color: white;
  background: black;
  text-decoration: none;
}

.authorbox56__latest ol {
  margin: 0 0 10px;
}
.authorbox56__latest ol a {
  color: inherit;
}
.authorbox56__latest ol a:hover {
  color: inherit;
  text-decoration: underline;
}

.authorbox56--box {
  background: rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.authorbox56--box .authorbox56__inner {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 16px;
}
@media only screen and (max-width: 600px) {
  .authorbox56--box .authorbox56__inner {
    padding: 10px;
  }
}

.authorbox56--box .authorbox56__content {
  display: none;
}
.authorbox56--box .authorbox56__content.active {
  display: block;
}

/* WIDGET VERSION
================================== */
.authorboxes56--stack .authorbox56__inner {
  display: block;
}
.authorboxes56--stack .authorbox56__avatar {
  margin-right: 0;
}
.authorboxes56--stack .authorbox56__text {
  width: 100% !important;
}

.authorboxes56--stack.align-center .authorbox56__avatar {
  margin-right: auto;
  margin-left: auto;
}
.authorboxes56--stack.align-center .fox56-social-list ul {
  justify-content: center;
}

.authorboxes56--stack.align-right .authorbox56__avatar {
  margin-left: auto;
}
.authorboxes56--stack.align-right .fox56-social-list ul {
  justify-content: flex-end;
}

.authorboxes56--widget .authorbox56__text {
  padding-left: 10px;
}
.authorboxes56--widget .authorbox56__description {
  font-size: 0.9em;
  line-height: 1.3;
}
.authorboxes56--widget .fox56-social-list a {
  font-size: 14px;
  width: 28px;
  height: 28px;
}

/* SINGLE NAV
=================================================================================*/
.nav-links {
  display: flex;
}
.nav-links > div {
  display: block;
  width: 50%;
}

.nav-next {
  text-align: right;
}

/* MINIMAL
=================================== */
.singlenav56--minimal a {
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.singlenav56--minimal a:hover {
  color: inherit;
}
.singlenav56--minimal a span {
  transition: all 0.2s ease-out;
}
.singlenav56--minimal .nav-previous i {
  margin-right: 10px;
}
.singlenav56--minimal .nav-previous a:hover span {
  transform: translate(10px, 0);
}
.singlenav56--minimal .nav-next a {
  margin-left: auto;
}
.singlenav56--minimal .nav-next i {
  margin-left: 10px;
}
.singlenav56--minimal .nav-next a:hover span {
  transform: translate(-10px, 0);
}

/* -------- minimal 2 */
.singlenav56--minimal-2 a {
  padding: 10px 0;
  transition: all 0.3s ease-out;
}
.singlenav56--minimal-2 a:hover {
  background: #f0f0f0;
  padding-left: 20px;
  padding-right: 20px;
}

/* -------- minimal 3 */
.singlenav56--minimal-3 span {
  display: none;
}
.singlenav56--minimal-3 a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  transition: all 0.25s;
  justify-content: center;
}
.singlenav56--minimal-3 a:hover {
  background: #e0e0e0;
}
.singlenav56--minimal-3 a i {
  margin: 0 !important;
}

/* SIMPLE
=================================== */
.singlenav56--simple {
  padding-bottom: 1em;
}
.singlenav56--simple .meta-nav {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: underline;
}
.singlenav56--simple a:hover .meta-nav {
  text-decoration: none;
}
.singlenav56--simple h4 {
  display: block;
  text-align: inherit;
  font-size: 1.375em;
  line-height: 1.2;
  margin: 0;
  color: inherit;
}
.singlenav56--simple a {
  color: inherit;
}
.singlenav56--simple a:hover {
  color: inherit;
}

/* -------- simple 2 */
.singlenav56--simple-2 {
  padding-bottom: 1em;
}
.singlenav56--simple-2 .meta-nav {
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-size: 0.7em;
}
.singlenav56--simple-2 .ic56-caret-right {
  margin-left: 3px;
}
.singlenav56--simple-2 .ic56-caret-left {
  margin-right: 3px;
}
.singlenav56--simple-2 h4 {
  font-size: 1.1em;
}

/* ADVANCED
=================================== */
.singlenav56--advanced {
  display: grid;
  -moz-column-gap: 2px;
       column-gap: 2px;
  align-items: stretch;
  grid-auto-columns: 1fr;
}
@media only screen and (max-width: 600px) {
  .singlenav56--advanced {
    display: block;
  }
}

.singlenav56__post {
  display: block;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .singlenav56__post + .singlenav56__post {
    margin-top: 2px;
  }
}

.singlenav56__post a,
.singlenav56__post__overlay {
  color: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 300;
}

.singlenav56__post__overlay {
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
}

.singlenav56__post__bg {
  padding-bottom: 60%;
}
.singlenav56__post__bg img {
  display: block;
  transition: all 0.2s ease-out;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.singlenav56--1cols .singlenav56__post__bg {
  padding-bottom: 33.3333333333%;
}

.singlenav56__post:hover .singlenav56__post__bg img {
  transform: scale(1.02) translate(5px, 0);
}

.singlenav56__post:hover .singlenav56__post__overlay {
  background: rgba(0, 0, 0, 0.4);
}

.singlenav56__post__text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 4em;
  color: white;
}
@media only screen and (max-width: 840px) {
  .singlenav56__post__text {
    padding: 0 2em;
  }
}
.singlenav56__post__text span {
  display: block;
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: 2em;
}
@media only screen and (max-width: 840px) {
  .singlenav56__post__text span {
    margin-bottom: 1em;
  }
}
.singlenav56__post__text h4 {
  font-size: 1.875em;
  max-width: 800px;
  color: inherit;
  margin: 0;
}
@media only screen and (max-width: 840px) {
  .singlenav56__post__text h4 {
    font-size: 1.3em;
  }
}

/* COMMENTS
=================================================================================*/
.nocomments {
  font-size: 0.9em;
  margin: 20px 0 0;
  font-style: italic;
}

:root {
  --comment-avatar-width: 56px;
  --comment-avatar-text-spacing: 16px;
}
@media only screen and (max-width: 840px) {
  :root {
    --comment-avatar-width: 48px;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --comment-avatar-width: 30px;
    --comment-avatar-text-spacing: 8px;
  }
}

.comment-body {
  position: relative;
}
.comment-body:before {
  position: absolute;
  left: calc(var(--comment-avatar-width) / 2);
  top: calc(var(--comment-avatar-width) + 4px);
  bottom: 0;
  display: block;
  z-index: 20;
  border-left: 1px solid var(--border-color);
}

li.parent > .comment-body:before {
  content: "";
}

.commentlist .children {
  position: relative;
  padding-left: var(--comment-avatar-width);
  padding-top: 20px;
}
.commentlist .children:before {
  position: absolute;
  top: calc(-1 * var(--comment-avatar-width) / 2);
  left: calc(var(--comment-avatar-width) / 2);
  height: calc(var(--comment-avatar-width) + 20px);
  content: "";
  display: block;
  z-index: 20;
  border-left: 1px solid var(--border-color);
}
.commentlist .children:after {
  position: absolute;
  border-top: 1px solid var(--border-color);
  content: "";
  display: block;
  z-index: 20;
  width: calc(var(--comment-avatar-width) / 2);
  top: calc(var(--comment-avatar-width) / 2 + 20px);
  left: calc(var(--comment-avatar-width) / 2);
}

/* Commentlist
--------------------------------------------- */
#comment-nav-above {
  margin: 0 0 1em;
}

#comment-nav-below {
  margin: 1em 0;
}

.commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  /* main body */
  /* author */
  /* by post author */
  /* nested */
}
.commentlist li {
  overflow: hidden;
  position: relative;
}
.commentlist li + li {
  margin-top: 30px;
}
@media only screen and (max-width: 600px) {
  .commentlist li + li {
    margin-top: 14px;
  }
}
.commentlist li + li > .comment-body {
  padding: 0;
  display: block;
  position: relative;
}
.commentlist .comment-author img {
  float: left;
  border-radius: 50%;
  margin-right: var(--comment-avatar-text-spacing);
  width: var(--comment-avatar-width);
  display: block;
  margin-top: 3px;
}
.commentlist .fn {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 1.1em;
  line-height: 1.1;
  position: relative;
  display: table;
}
.commentlist .fn a {
  color: inherit;
}
.commentlist li.bypostauthor .fn:after {
  /*
  @extend .fa;
  content: $fa-var-check; // "\e92d"; // feather-check-circle */
  color: green;
  margin-left: 6px;
  font-size: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  text-align: center;
  line-height: 11px;
  background: #08c;
  color: white;
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -5px;
}
.commentlist ul.children {
  margin: 0;
  list-style: none;
}
.comment-metadata {
  line-height: 1.2;
}
.comment-metadata a {
  font-family: "Helvetica Neue", Helvetical, Arial, sans-serif !important;
  color: inherit;
  font-size: 0.8em;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.1s;
}
.comment-metadata a:hover {
  opacity: 1;
}
.comment-metadata .edit-link {
  margin-left: 16px;
}

.reply {
  display: block;
  margin: 1em 0 0;
}

.reply a {
  font-size: 0.9em;
  text-decoration: none;
  font-style: normal;
}
.comment-metadata,
.comment .reply,
.comment-content,
.comment .comment-respond {
  padding-left: calc(var(--comment-avatar-width) + var(--comment-avatar-text-spacing));
}

.comment-content {
  padding-top: 1em;
}
.comment-content::after {
  clear: both;
  content: "";
  display: table;
}
.comment-content p,
.comment-content ul,
.comment-content ol {
  margin-bottom: 0;
}
.comment-content p ul,
.comment-content p ol,
.comment-content ul ul,
.comment-content ul ol,
.comment-content ol ul,
.comment-content ol ol {
  margin-bottom: 0;
}
.comment-content p > a,
.comment-content ul > a,
.comment-content ol > a {
  text-decoration: none;
  border-bottom: 1px dotted;
}
.comment-content p > a:hover,
.comment-content ul > a:hover,
.comment-content ol > a:hover {
  border-bottom: 1px solid;
}
.comment-content p + p,
.comment-content p + ul,
.comment-content p + ol,
.comment-content ul + p {
  margin-top: 1.5em;
}
@media only screen and (max-width: 600px) {
  .comment-content p + p,
  .comment-content p + ul,
  .comment-content p + ol,
  .comment-content ul + p {
    margin-top: 0.9em;
  }
}

/* Respond
----------------------------------------------------------------------------------------------------------------------- */
.comment-notes,
.logged-in-as {
  text-align: center;
  padding: 8px 12px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.9em;
  letter-spacing: 0.5px;
  margin-bottom: 2em;
  display: none;
}

.logged-in-as a {
  color: inherit;
}

.logged-in-as a:hover {
  text-decoration: underline;
}

.commentlist + #respond {
  margin-top: 3em;
}

#respond {
  /* required */
}
#respond .required {
  color: red;
}
#respond p {
  margin-bottom: 1em;
}
#respond p.form-submit {
  margin-bottom: 0;
}
#respond #submit {
  line-height: 40px;
  padding: 0 32px;
  display: block;
  border: 0 solid;
}
#respond #submit:hover {
  background: var(--accent-color);
}

label[for=wp-comment-cookies-consent] {
  font-size: 0.9em;
  margin-left: 6px;
  vertical-align: middle;
}

#cancel-comment-reply-link {
  margin-left: 0.7em;
  color: inherit;
  font-size: 0.6em;
  font-weight: 400;
  margin-top: 6px;
  display: inline-block;
  text-decoration: underline;
}

.comment-awaiting-moderation {
  color: red;
  margin: 10px 0;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
  width: 32%;
  float: left;
  margin-left: 2%;
  margin-bottom: 1.25em;
}
@media only screen and (max-width: 600px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
    flex: none;
    margin-left: 0;
  }
}

.comment-form-author {
  margin-left: 0;
}

.form-submit {
  margin-bottom: 0.9em;
}

/* PAGE LINK
-------------------------------------------------------------------------------------- */
.page-links-container {
  overflow: hidden;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2;
  text-align: center;
  margin-top: 3em;
}

.page-links-label {
  display: inline-block;
  margin-right: 1em;
}

.page-links > span,
.page-links > a,
.page-links > a:hover {
  display: inline-block;
  padding: 0 10px;
  color: inherit;
}

.page-links > a:hover {
  color: var(--accent-color);
}

.page-links > span {
  opacity: 0.4;
}

/* SINGLE HEADING
=================================================================================*/
.single56__heading {
  font-weight: 400;
  font-size: 1.5em;
  font-style: normal;
  margin: 0 0 10px;
  padding: 0.5em 0;
  text-align: center;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .single56__heading {
    margin-bottom: 12px;
    padding: 10px 0;
  }
}
.single56__heading i {
  margin-right: 3px;
}
.single56__heading span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.single56__heading span:before, .single56__heading span:after {
  position: absolute;
  top: 50%;
  display: none;
  content: "";
  border-top: 1px solid var(--border-color);
  width: 999px;
}
.single56__heading span:before {
  right: 100%;
  margin-right: 20px;
}
.single56__heading span:after {
  left: 100%;
  margin-left: 20px;
}
.single56__heading span + a:before {
  content: "";
  font-weight: 400;
  margin: 0 10px;
  border-left: 1px solid;
  opacity: 0.2;
  color: #000;
}

.single56--small-heading-normal .single56__heading {
  border: 0 solid var(--border-color);
}

.single56--small-heading-around .single56__heading span:before, .single56--small-heading-around .single56__heading span:after {
  display: block;
}

/* PADDING
=================================================================================*/
.single56__before_content > div + div {
  margin-top: 16px;
  padding-top: 16px;
}

.single56__after_content {
  margin-top: 20px;
}
.single56__after_content > div + div {
  margin-top: 16px;
  padding-top: 16px;
}

.singlebottom56 {
  margin-top: 30px;
}
.singlebottom56 > div + div {
  margin-top: 16px;
  padding-top: 16px;
}

.singlebottom56__inner {
  margin: 0 auto;
  max-width: 1440px;
}
.singlebottom56__inner > * + * {
  margin-top: 1em;
}

.single56__bottom_posts,
.singlebottom56 .single56__related {
  padding: 0 20px;
}
@media only screen and (max-width: 600px) {
  .single56__bottom_posts,
  .singlebottom56 .single56__related {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* RELATED
=================================================================================*/
/* BOTTOM POSTS
=================================================================================*/
.single56__bottom_posts .title56 {
  font-size: 1.1em;
  margin-bottom: 0.3em;
}
.single56__bottom_posts .excerpt56 {
  font-size: 0.85em;
  line-height: 1.2;
}

/* SIDE DOCK
=================================================================================*/
.in-single-sidedock-permanent .sidedock56,
.sidedock56.shown {
  transform: translate(0, 0);
}

.sidedock56::-webkit-scrollbar {
  display: none;
}

.sidedock56 {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.sidedock56__heading {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  background: #000;
  color: #fff;
  padding: 6px 28px 6px 14px;
  font-weight: normal;
  margin: 0;
  border: 0;
}

.sidedock56 .close {
  cursor: pointer;
  position: absolute;
  top: 1px;
  right: 0px;
  z-index: 50001;
  height: 24px;
  width: 24px;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  outline: 0;
  display: block;
}
.sidedock56 .close i {
  margin: 0;
  display: block;
  line-height: inherit;
}

.sidedock56__content {
  padding: 14px;
}
.sidedock56__content .blog56--list {
  row-gap: 10px;
}

.sidedock56__post {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 10px);
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.sidedock56__post + .sidedock56__post {
  margin-top: 16px;
}
.sidedock56__post .title56 {
  margin: 0;
  font-size: 1.1em;
}
.sidedock56__post .excerpt56 {
  font-size: 0.85em;
  margin: 0;
  margin-top: 5px;
  line-height: 1.2;
}
.sidedock56__post .excerpt56 p {
  margin: 0;
}

.sidedock56__post__thumbnail {
  float: left;
  margin: 0;
  width: 90px;
}
.sidedock56__post__thumbnail img {
  display: block;
  width: 100%;
}

.sidedock56__post__text {
  overflow: hidden;
}

.sidedock56__post__thumbnail + .sidedock56__post__text {
  padding-left: 16px;
}

.sidedock56__post__title {
  font-size: 1.05em;
  margin: 0;
}
.sidedock56__post__title a {
  color: inherit;
}
.sidedock56__post__title a:hover {
  color: inherit;
}

.in-single-sidedock-permanent .sidedock56__post,
.sidedock56.shown .sidedock56__post {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}/*# sourceMappingURL=single-below.css.map */