/*!/wp-content/themes/fox/css56/common-below.css*/
@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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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(/wp-content/themes/fox/css56/../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 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;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: common-below.css.map */
/*!/wp-content/themes/fox/css56/header-below.css*/
@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;
  background: white;
  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;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: header-below.css.map */
/*!/wp-content/themes/fox/css56/footer.css*/
.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);
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: footer.css.map */
/*!/wp-content/themes/fox/css56/widgets.css*/
/* GENERAL
=================================================================================*/
.widget {
  display: block;
  position: relative;
  clear: both;
  width: 100%;
  border: 0 solid var(--border-color);
}
.widget::after {
  content: "";
  display: block;
}
.widget + .widget {
  margin-top: 20px;
  padding-top: 20px;
}
@media only screen and (max-width: 840px) {
  .widget + .widget {
    margin-top: 15px;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .widget + .widget {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.widget-title,
.secondary56 .wp-block-heading {
  border: 0 solid;
  font-size: 18px;
  margin: 0;
  margin-bottom: 8px;
}
.widget-title a,
.secondary56 .wp-block-heading a {
  color: inherit;
}

.widget select {
  width: 100%;
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 32px;
  outline: none;
  background: none;
}

/* WIDGET TEXT
=================================================================================*/
.textwidget {
  font-size: 0.9em;
  line-height: 1.4;
}
.textwidget p:last-child,
.textwidget ul:last-child,
.textwidget ol:last-child {
  margin-bottom: 0;
}

/* CALENDAR
=================================================================================*/
#today {
  background: rgba(0, 0, 0, 0.04);
}

#wp-calendar td {
  text-align: center;
}

/* SOCIAL
=================================================================================*/
.fox56-social-list.align-center ul {
  justify-content: center;
}

.fox56-social-list.align-left ul {
  justify-content: flex-start;
}

.fox56-social-list.align-right ul {
  justify-content: flex-end;
}

/* ABOUT
=================================================================================*/
.about-image {
  text-align: center;
  margin: 0;
  max-width: 100%;
}
.about-image.thumbnail-acute img {
  border-radius: 0;
}
.about-image.thumbnail-round img {
  border-radius: 4px;
}
.about-image.thumbnail-circle img {
  border-radius: 50%;
}
.about-image figcaption {
  font-size: 0.8em;
  color: #777;
  line-height: 1.3;
  margin: 6px 0 0;
  text-align: left;
}
.about-image figcaption a {
  color: #111;
}
.about-image + .widget-title {
  margin-top: 20px;
}

.about-image img {
  display: block;
  width: 100%;
}

.widget-about .desc {
  font-size: 0.9em;
  margin-top: 0.3em;
}

.widget-about .desc p {
  margin-bottom: 1.4em;
}

.widget-about .desc p:last-child {
  margin-bottom: 0;
}

.about-signature {
  margin: 1em 0 0;
  max-width: 100%;
}
.about-signature img {
  display: block;
}

.about-wrapper.align-center .widget-title {
  text-align: center;
}
.about-wrapper.align-center .about-image,
.about-wrapper.align-center .about-signature {
  margin-left: auto;
  margin-right: auto;
}

.about-wrapper.align-right .widget-title {
  text-align: right;
}
.about-wrapper.align-right .about-image,
.about-wrapper.align-right .about-signature {
  margin-left: auto;
}

/* LIST WIDGETS
=================================================================================*/
.widget_archive ul, .widget_nav_menu ul, .widget_meta ul, .widget_recent_entries ul, .widget_pages ul, .widget_categories ul, .widget_product_categories ul, ul.wp-block-categories-list, ul.wp-block-archives-list {
  font-family: var(--font-heading);
}

.widget_archive ul, .widget_nav_menu ul, .widget_meta ul, .widget_recent_entries ul, .widget_pages ul, .widget_categories ul, .widget_product_categories ul, ul.wp-block-categories-list, ul.wp-block-archives-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0 solid var(--border-color);
  border-style: var(--list-widget-border-style);
  border-color: var(--list-widget-border-color);
}
.widget_archive ul li, .widget_nav_menu ul li, .widget_meta ul li, .widget_recent_entries ul li, .widget_pages ul li, .widget_categories ul li, .widget_product_categories ul li, ul.wp-block-categories-list li, ul.wp-block-archives-list li {
  position: relative;
  border: 0 solid;
  border-style: var(--list-widget-border-style);
  border-color: var(--list-widget-border-color);
}
.widget_archive ul li + li, .widget_nav_menu ul li + li, .widget_meta ul li + li, .widget_recent_entries ul li + li, .widget_pages ul li + li, .widget_categories ul li + li, .widget_product_categories ul li + li, ul.wp-block-categories-list li + li, ul.wp-block-archives-list li + li {
  border-width: 1px 0 0;
  margin-top: var(--list-widget-spacing);
  padding-top: var(--list-widget-spacing);
}
.widget_archive ul a, .widget_nav_menu ul a, .widget_meta ul a, .widget_recent_entries ul a, .widget_pages ul a, .widget_categories ul a, .widget_product_categories ul a, ul.wp-block-categories-list a, ul.wp-block-archives-list a {
  color: var(--list-widget-link-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.widget_archive ul a:hover, .widget_nav_menu ul a:hover, .widget_meta ul a:hover, .widget_recent_entries ul a:hover, .widget_pages ul a:hover, .widget_categories ul a:hover, .widget_product_categories ul a:hover, ul.wp-block-categories-list a:hover, ul.wp-block-archives-list a:hover {
  color: var(--list-widget-link-hover-color);
}
.widget_archive ul li.current-menu-item > a,
.widget_archive ul li.current_page_item > a, .widget_nav_menu ul li.current-menu-item > a,
.widget_nav_menu ul li.current_page_item > a, .widget_meta ul li.current-menu-item > a,
.widget_meta ul li.current_page_item > a, .widget_recent_entries ul li.current-menu-item > a,
.widget_recent_entries ul li.current_page_item > a, .widget_pages ul li.current-menu-item > a,
.widget_pages ul li.current_page_item > a, .widget_categories ul li.current-menu-item > a,
.widget_categories ul li.current_page_item > a, .widget_product_categories ul li.current-menu-item > a,
.widget_product_categories ul li.current_page_item > a, ul.wp-block-categories-list li.current-menu-item > a,
ul.wp-block-categories-list li.current_page_item > a, ul.wp-block-archives-list li.current-menu-item > a,
ul.wp-block-archives-list li.current_page_item > a {
  color: var(--list-widget-link-current-color);
}
.widget_archive ul ul, .widget_nav_menu ul ul, .widget_meta ul ul, .widget_recent_entries ul ul, .widget_pages ul ul, .widget_categories ul ul, .widget_product_categories ul ul, ul.wp-block-categories-list ul, ul.wp-block-archives-list ul {
  padding-left: 20px;
  margin-left: 0;
  border-width: 1px 0 0;
  margin-top: 6px;
  padding-top: 6px;
}

.fox-post-count {
  float: right;
}
.fox-post-count:before {
  content: "(";
}
.fox-post-count:after {
  content: ")";
}

.wp-block-latest-posts,
.wp-block-latest-comments {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-latest-posts li,
.wp-block-latest-comments li {
  position: relative;
  line-height: 1.3;
  border: 0 solid;
  border-style: var(--list-widget-border-style);
  border-color: var(--list-widget-border-color);
}
.wp-block-latest-posts li + li,
.wp-block-latest-comments li + li {
  border-width: 1px 0 0;
  margin-top: 6px;
  padding-top: 6px;
}
.wp-block-latest-posts a,
.wp-block-latest-comments a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.wp-block-latest-posts a:hover,
.wp-block-latest-comments a:hover {
  color: var(--accent-color);
}
.wp-block-latest-posts ul ul,
.wp-block-latest-comments ul ul {
  padding-left: 20px;
  margin-left: 0;
  border-width: 1px 0 0;
  margin-top: 6px;
  padding-top: 6px;
}

/* Recent Entries
------------------------------ */
.post-date {
  display: block;
  font-size: 0.8em;
  color: #999;
}

/* RSS
=================================================================================*/
.widget-title .rsswidget img {
  margin-top: -4px;
  margin-right: 6px;
}

.widget_rss > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_rss > ul > li {
  border-top: 1px solid;
  padding-top: 14px;
  margin-top: 14px;
  line-height: 1.5;
  overflow: hidden;
}
.widget_rss > ul > li:first-child {
  border-top: 0;
}
.widget_rss > ul a.rsswidget {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1;
}

.rss-date {
  display: block;
}

.rssSummary {
  font-size: 0.9em;
  margin-top: 20px;
}

.widget_rss > ul > li > cite {
  float: right;
  margin-top: 8px;
  font-size: 0.8em;
  font-family: var(--font-heading);
}

/* RECENT COMMENTS
 * RECENT POSTS
=================================================================================*/
.widget_recent_comments,
.widget_recent_entries {
  font-family: var(--font-heading);
}

.widget_recent_comments ul,
.widget_recent_entries ul {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: count;
}
.widget_recent_comments ul li,
.widget_recent_entries ul li {
  display: block;
  padding: 10px 0;
  position: relative;
  border: 0 solid rgba(0, 0, 0, 0.5);
  padding-left: 40px;
}
.widget_recent_comments ul li + li,
.widget_recent_entries ul li + li {
  border-width: 1px 0 0;
}
.widget_recent_comments ul li:last-child,
.widget_recent_entries ul li:last-child {
  padding-bottom: 0;
}
.widget_recent_comments ul li:before,
.widget_recent_entries ul li:before {
  content: counter(count);
  counter-increment: count;
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 32px;
  font-style: italic;
  font-family: serif;
}
.widget_recent_comments ul li a,
.widget_recent_entries ul li a {
  color: inherit;
  text-decoration: none;
}
.widget_recent_comments ul li a:last-child,
.widget_recent_entries ul li a:last-child {
  transition: all 0.3s ease-out;
  line-height: 1.3;
}
.widget_recent_comments ul li > a:last-child,
.widget_recent_entries ul li > a:last-child {
  display: block !important;
}
.widget_recent_comments ul li > a:last-child:hover,
.widget_recent_entries ul li > a:last-child:hover {
  text-decoration: underline;
}

.widget_recent_entries ul li {
  padding-left: 32px;
}

.widget_recent_entries ul li:before {
  font-size: 24px;
}

/* TAGCLOUD
=================================================================================*/
.tagcloud {
  overflow: hidden;
  font-family: var(--font-heading);
}

.tagcloud a {
  color: inherit;
  text-decoration: none;
  transition: all 0.15s ease-out;
}
.tagcloud a:hover {
  color: var(--accent-color);
}

/**
* Tagcloud Style 2
*/
.style--tagcloud-2 .tagcloud {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
.style--tagcloud-2 .tagcloud a {
  float: left;
  margin: 0 5px 5px 0;
  background: #f0f0f0;
  padding: 3px 5px;
  color: #777;
  font-size: 10px !important;
}
.style--tagcloud-2 .tagcloud a:hover {
  color: #333;
  background: #eaeaea;
}

/**
* Tagcloud Style 3
*/
.style--tagcloud-3 .tagcloud {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
.style--tagcloud-3 .tagcloud a {
  float: left;
  margin: 0 5px 5px 0;
  background: none;
  border: 2px solid var(--border-color);
  padding: 3px 5px;
  color: inherit;
  font-size: 10px !important;
}
.style--tagcloud-3 .tagcloud a:hover {
  color: white;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* FACEBOOK
=================================================================================*/
.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe {
  width: 100%;
}

/* PINTEREST
=================================================================================*/
.wi-pin-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: -4px -2px 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.wi-pin-list li {
  display: block;
  padding: 4px 2px 0;
}
.wi-pin-list a {
  display: block;
  color: inherit;
  outline: 0;
  width: 100%;
  text-decoration: none;
}
.wi-pin-list a:hover {
  opacity: 0.85;
}
.wi-pin-list img {
  display: block;
  width: 100%;
}

.widget-pin__follow {
  margin: 1em 0 0;
}
.widget-pin__follow a {
  background: var(--pin);
  color: white;
}
.widget-pin__follow a:hover {
  color: white;
}

/* AUTHOR LIST
=================================================================================*/
.widget-author-list .author-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-author-list .author-list-item {
  display: block;
  border: 0 solid var(--border-color);
}
.widget-author-list .author-list-item:after {
  content: "";
  display: table;
  clear: both;
}
.widget-author-list .author-list-item + .author-list-item {
  margin-top: 0.7em;
}
.widget-author-list .author-list-item-avatar {
  float: left;
  width: 72px;
  height: 72px;
  margin: 0 1.2em 0 0;
}

.authors-has-sep .author-list-item + .author-list-item {
  border-width: 1px 0 0;
  padding-top: 0.7em;
}

.author-list-item-avatar {
  display: block;
}
.author-list-item-avatar a {
  display: block;
  outline: 0;
}
.author-list-item-avatar img {
  margin: 0;
  display: block;
  width: 100%;
}

/**
    * avatar color
    */
.authors-avatar--grayscale .author-list-item-avatar {
  filter: grayscale(1);
}

.authors-avatar--hover-color .author-list-item-avatar:hover {
  filter: grayscale(0);
}

.authors-avatar--hover-grayscale .author-list-item-avatar:hover {
  filter: grayscale(1);
}

/**
    * author avatar shape
    * since 4.4.2
    */
.authors-avatar--circle img {
  border-radius: 50% !important;
}

.authors-avatar--round img {
  border-radius: 4px !important;
}

.author-list-item-text {
  display: block;
  overflow: hidden;
}

.author-list-item-name {
  font-size: 0.9em;
  margin: 0 0 0.3em;
}
.author-list-item-name a {
  color: inherit;
  outline: 0;
}
.author-list-item-post-name {
  display: block;
  color: inherit;
  font-size: 0.85em;
  outline: 0;
  line-height: 1.3;
}
.author-list-item-description {
  font-size: 0.85em;
  line-height: 1.4;
}
.author-list-item-description p {
  margin: 0;
}

/* Author Grid
------------------- */
.widget-author-grid {
  padding-bottom: 10px;
}
.widget-author-grid ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 0;
  margin: -8px -4px 0;
}
.widget-author-grid ul li {
  display: block;
  padding: 8px 4px 0;
  width: 25%;
}
.widget-author-grid a {
  transition: all 0.1s ease-out;
}
.widget-author-grid a:hover {
  transform: translate(0, -2px);
}
.widget-author-grid.column-2 ul li {
  width: 50%;
}
.widget-author-grid.column-3 ul li {
  width: 33.33%;
}

/* IMAGEBOX
=================================================================================*/
.fox-imagebox {
  overflow: hidden;
  position: relative;
}

.imagebox-inner {
  position: relative;
  display: block;
  z-index: 30;
}

.imagebox-height {
  display: block;
  padding-bottom: 50%;
}

.imagebox-image,
.imagebox-content,
.imagebox-overlay,
.imagebox-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}

.imagebox-link {
  outline: 0;
  border: 0;
  color: inherit;
  text-decoration: none;
  z-index: 40;
}

.imagebox-overlay {
  background: black;
  opacity: 0.3;
  z-index: 20;
}

.imagebox-image {
  margin: 0;
  display: block;
  z-index: 10;
}
.imagebox-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}

/**
    * hover scale
    */
.imagebox-hover-scale .imagebox-image img {
  transition: all 0.3s ease;
}
.imagebox-hover-scale:hover .imagebox-image img {
  transform: scale(1.05);
}

.imagebox-hover-slide .imagebox-image img {
  transform: scale(1.15);
  transition: all 0.3s ease;
}
.imagebox-hover-slide:hover .imagebox-image img {
  transform: scale(1.15) translate(10px, 0);
}

.imagebox-content {
  z-index: 30;
  color: white;
  padding: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-top .imagebox-content {
  align-items: flex-start;
}

.text-bottom .imagebox-content {
  align-items: flex-end;
}

h3.imagebox-name {
  text-align: center;
  margin: 0;
  color: inherit;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1em;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 600px) {
  h3.imagebox-name {
    font-size: 1.1em;
  }
}

/* imagebox style 2 */
.imagebox-style-2 .imagebox-overlay {
  opacity: 0;
}
.imagebox-style-2 .imagebox-name {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 10px;
}

.imagebox-style-3 .imagebox-overlay {
  opacity: 0;
}
.imagebox-style-3 .imagebox-content {
  padding: 0;
  display: block;
  position: absolute;
  bottom: 0;
  top: auto;
  text-align: center;
}
.imagebox-style-3 .imagebox-name {
  display: table;
  margin: 0 auto;
  background: white;
  color: black;
  padding: 10px 10px 0;
}

/* imagebox border */
.fox-imagebox.has-inner-border {
  padding: 10px;
}
.fox-imagebox.has-inner-border .imagebox-inner {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.imagebox-border-top,
.imagebox-border-bottom {
  border-top: 1px solid white;
  transform: scale(0, 1);
  left: -1px;
  right: -1px;
}

.imagebox-border-left,
.imagebox-border-right {
  border-left: 1px solid white;
  transform: scale(1, 0);
  height: 100%;
  top: -1px;
  bottom: -1px;
}

.imagebox-border-top {
  top: -1px;
}

.imagebox-border-bottom {
  bottom: -1px;
}

.imagebox-border-left {
  left: -1px;
}

.imagebox-border-right {
  right: -1px;
}

.imagebox-border {
  position: absolute;
  z-index: 30;
  transition: all 0.3s ease;
}

.fox-imagebox:hover .imagebox-border {
  transform: scale(1, 1);
}

/* IMAGE TEXT
=================================================================================*/
.fox-imagetext {
  display: block;
  overflow: hidden;
}
.fox-imagetext figure img {
  display: block;
  max-width: 100%;
}
.fox-imagetext figure a {
  display: block;
  color: inherit;
  border: 0;
  text-decoration: none;
}
.fox-imagetext figure a:focus {
  outline: 0;
}
.fox-imagetext .image-element {
  max-width: 100%;
}

.imagetext-imagetop figure {
  margin: 0 0 10px;
}
.imagetext-imagetop figure .image-element {
  display: inline-block;
}

.imagetext-imageleft .imagetext-image {
  float: left;
  margin: 0 20px 0 0;
  max-width: 80%;
}
@media only screen and (max-width: 600px) {
  .imagetext-imageleft .imagetext-image {
    max-width: 150px;
  }
}
.imagetext-imageleft .imagetext-text {
  overflow: hidden;
}

.imagetext-image picture,
.imagetext-image img {
  display: block;
}

.imagetext-heading {
  margin: 0 0 5px;
}
.imagetext-heading a {
  color: inherit;
  outline: 0;
  border: 0;
  text-decoration: none;
}
.imagetext-heading a:hover {
  color: inherit;
}

.imagetext-description {
  max-width: 300px;
  display: inline-block;
  line-height: 1.4;
  font-size: 0.9em;
}
.imagetext-description p {
  margin: 0 0 5px;
}
.imagetext-description p:last-child {
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .imagetext-description {
    max-width: none;
  }
}

/**
    * fix image shape
    */
.image-shape-circle img {
  border-radius: 50%;
}

.image-shape-round img {
  border-radius: 4px;
}

/* CORONAVIRUS - since 4.4
=================================================================================*/
.fox-coronavirus {
  overflow: hidden;
  font-size: 90%;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.coronavirus-big-numbers {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 5px;
  text-align: center;
  margin: 0 0 5px;
}
.coronavirus-big-numbers .big-number {
  display: block;
  width: 50%;
  flex: none;
  padding: 16px 5px;
}
.coronavirus-big-numbers .big-number span {
  display: block;
}
.coronavirus-big-numbers .big-number .num {
  font-size: 2em;
  font-weight: bold;
}

.num-today {
  color: #999;
}

.coronavirus-table-wrapper {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

.t-row-th {
  border: 0;
  display: block;
  display: flex;
  align-content: center;
  font-weight: bold;
  padding: 5px 0;
}

.th-name {
  width: 40%;
  flex: none;
}

.th-case,
.th-death {
  width: 30%;
  flex: none;
  text-align: right;
}

.coronavirus-table-container {
  margin: 0 -5px;
}

.coronavirus-table {
  display: table;
  width: 100%;
}
.coronavirus-table .t-row {
  display: table-row;
}
.coronavirus-table .td {
  display: table-cell;
  padding: 5px;
  border-top: 1px solid #ccc;
}

.td-case,
.td-death {
  width: 30%;
  text-align: right;
}

.coronavirus-source {
  margin: 10px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid #ccc;
  color: #aaa;
  font-size: 90%;
}
.coronavirus-source a {
  color: inherit;
  transition: all 0.1s;
}
.coronavirus-source a:hover {
  color: #111;
}

/* MAILCHIMP - since 4.6
=================================================================================*/
/* general
================================= */
.mc4wp-form-fields p {
  margin-bottom: 10px;
}
.mc4wp-form-fields p:last-child {
  margin-bottom: 0;
}

.foxmc {
  position: relative;
  /* why?? - ok just don't touch it */
}
.foxmc-inner {
  padding: 30px;
  position: relative;
  z-index: 30;
  border: 1px solid transparent;
}

.secondary56 .foxmc {
  padding: 5px;
}
.secondary56 .foxmc-inner {
  padding: 15px;
}
.secondary56 .foxmc-title {
  font-size: 1.1em;
}
.secondary56 .foxmc-subtitle {
  font-style: normal;
}

/* background
================================= */
.foxmc-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
}
.foxmc-bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* heading
================================= */
.foxmc-title {
  font-size: 1.3em;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  display: inline-flex;
  align-content: center;
  align-items: center;
}
.foxmc-title i {
  display: block;
  margin: 0 6px 0 0;
  font-size: 80%;
}
@media only screen and (max-width: 600px) {
  .foxmc-title i {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .foxmc-title {
    letter-spacing: 0;
  }
}

.foxmc-subtitle {
  margin: 5px 0 0;
  font-size: 0.9em;
  line-height: 1.1;
  color: #999;
}

.foxmc-heading {
  text-align: center;
  margin-bottom: 10px;
}

/* form stack
================================= */
.foxmc-stack input[type=submit] {
  display: block;
  width: 100%;
}

/* form inline
================================= */
.foxmc-inline .mc4wp-form-fields {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1168px) {
  .foxmc-inline .mc4wp-form-fields {
    justify-content: center;
  }
}
@media only screen and (max-width: 840px) {
  .foxmc-inline .mc4wp-form-fields {
    display: block;
  }
}
.foxmc-inline .mc4wp-form-fields > p {
  margin: 0 2px;
}
@media only screen and (max-width: 840px) {
  .foxmc-inline .mc4wp-form-fields > p {
    margin: 5px 2px;
  }
}
.foxmc-inline .mc4wp-form-fields input[type=text],
.foxmc-inline .mc4wp-form-fields input[type=email] {
  width: 300px;
}
@media only screen and (max-width: 1168px) {
  .foxmc-inline .mc4wp-form-fields input[type=text],
  .foxmc-inline .mc4wp-form-fields input[type=email] {
    width: 280px;
  }
}
@media only screen and (max-width: 840px) {
  .foxmc-inline .mc4wp-form-fields input[type=text],
  .foxmc-inline .mc4wp-form-fields input[type=email] {
    width: 100%;
  }
}

/* form button style
================================= */
.foxmc-button-primary input[type=submit] {
  background: var(--accent-color);
  color: white;
  line-height: 46px;
}

.foxmc-button-black input[type=submit] {
  line-height: 46px;
}

.foxmc-button-outline input[type=submit],
.foxmc-button-fill input[type=submit] {
  border: 2px solid;
  color: inherit;
  background: none;
  line-height: 42px;
}

.foxmc-button-fill input[type=submit]:hover {
  background: black;
  color: white;
  border-color: black;
}

/**
* No padding case
* @since 4.6.2
*/
.foxmc-no-bg.foxmc {
  padding: 0;
}
.foxmc-no-bg.foxmc-no-border .foxmc-inner {
  padding: 0;
}

/* AUTHOR BOX
=================================================================================*/
/* Authorbox
    * @since 4.6.2
------------------------------ */
.authorbox-widget + .authorbox-widget {
  margin-top: 2em;
}

.authorbox-widget-inline {
  overflow: hidden;
}
.authorbox-widget-inline .authorbox-widget-avatar {
  display: block;
  float: left;
  width: 90px;
  margin: 0 16px 0 0;
}
.authorbox-widget-inline .authorbox-widget-avatar img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 50%;
}
.authorbox-widget-inline .authorbox-widget-text {
  overflow: hidden;
}
.authorbox-widget-inline .authorbox-widget-name {
  font-size: 1.1em;
}
.authorbox-widget-inline .authorbox-widget-description {
  font-size: 0.9em;
}

.authorbox-widget-name {
  margin: 0 0 0.5em;
}
.authorbox-widget-name a {
  color: inherit;
}

.authorbox-widget-description {
  display: block;
  line-height: 1.5;
}
.authorbox-widget-description p {
  margin: 0;
}

.authorbox-widget-stack .authorbox-widget-avatar {
  display: inline-block;
  margin: 0 0 10px;
  width: 120px;
}
.authorbox-widget-stack .authorbox-widget-avatar img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 50%;
}
.authorbox-widget-stack .authorbox-widget-name {
  font-size: 1.2em;
}

/* BLOG / POST
=================================================================================*/
.blog56--widget--small.blog56--list {
  row-gap: 20px;
}
.blog56--widget--small .post56__sep__line {
  border-color: var(--border-color);
  top: -10px;
}
.blog56--widget--small .post56--list .thumbnail56 {
  padding-right: 10px;
  width: 100px;
}
.blog56--widget--small .post56--list--thumb-right .thumbnail56 {
  padding-right: 0;
  padding-left: 10px;
}
.blog56--widget--small .thumbnail56 {
  overflow: visible;
  width: 100px;
  border-radius: 0;
}
.blog56--widget--small .thumbnail56 img {
  border-radius: 0;
}
.blog56--widget--small .thumbnail56__index {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 20;
  background: var(--accent-color);
  color: #fff;
  width: 28px;
  height: 28px;
  line-height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: none;
  text-shadow: none;
  font-size: 12px;
  font-style: normal;
  font-family: sans-serif;
}
.blog56--widget--small .post56--list .thumbnail56 + .post56__text {
  width: calc(100% - 100px);
}
.blog56--widget--small .title56 {
  margin: 0;
  font-size: 1.1em;
}
.blog56--widget--small .excerpt56 {
  font-size: 0.88em;
  line-height: 1.4;
  margin: 5px 0 0;
}
.blog56--widget--small .component56 + .component56 {
  margin-top: 0px;
}
.blog56--widget--small .post56 .post56__text {
  padding: 0;
}

.blog56--widget--big .thumbnail56__index {
  display: block;
  position: absolute;
  font-size: 2.4em;
  line-height: 1;
  color: #fff;
  bottom: 6px;
  right: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 30;
  font-family: serif;
  font-style: italic;
}
.blog56--widget--big .title56 {
  font-size: 1.3em;
}
.blog56--widget--big .excerpt56 {
  font-size: 0.95em;
}
.blog56--widget--big .component56 + .component56 {
  margin-top: 5px;
}
.blog56--widget--big .post56 .post56__text {
  padding: 0;
}

/* INSTAGRAM - @since 4.6
=================================================================================*/
.instagram56 {
  display: block;
}

/* HEADING
================================= */
.instagram56__header {
  text-align: center;
  padding: 2% 0;
}

.instagram56__header__subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em;
  margin: 0 0 6px;
  opacity: 0.7;
}

.instagram56__header__title {
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}
.instagram56__header__title i {
  margin-right: 4px;
}
.instagram56__header__title a {
  color: inherit;
  text-decoration: none;
}
.instagram56__header__title a:hover {
  color: inherit;
}

/* FEED
================================= */
.sb_instagram_header a {
  color: inherit;
}

.sbi_header_img_hover {
  display: none;
}

#sb_instagram {
  padding-bottom: 0 !important;
}

#sb_instagram .sbi_follow_btn a {
  background: #3897f0;
}

/* FOLLOW TEXT
================================= */
.follow-text {
  margin: 1em 0 0;
  display: block;
  text-align: center;
}
.follow-text::after {
  clear: both;
  content: "";
  display: table;
}
.follow-text a.btn56 {
  line-height: 32px;
  padding: 0 32px;
  display: inline-block;
  margin: 0;
  max-width: 100%;
}
.follow-text a.btn56.btn56--insta {
  background: #3897f0;
  color: white;
  border-radius: 4px;
}
.follow-text a.btn56.btn56--white {
  background: white;
  color: #111;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.instagram56__main {
  position: relative;
}

.follow-text--overlap {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 50;
}
.follow-text--overlap a.btn56 {
  display: block;
}

/* HOVER FADE
================================= */
.instagram56--fade .sbi_item img {
  transition: all 0.15s ease-out;
}
.instagram56--fade .sbi_item:hover img {
  opacity: 0.7;
}

/* HOVER BORDER
================================= */
.instagram56--border .sbi_item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.instagram56--border .sbi_item a:before, .instagram56--border .sbi_item a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  transition: all 0.4s ease-out;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid white;
}
.instagram56--border .sbi_item a:before {
  border-width: 1px 0;
  transform: scale(0, 1);
}
.instagram56--border .sbi_item a:after {
  border-width: 0 1px;
  transform: scale(1, 0);
}
.instagram56--border .sbi_item:hover a:before, .instagram56--border .sbi_item:hover a:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

/* DARK SKIN WIDGETS
-------------------------------------------------------------------------------------- */
.skin-dark {
  background: black;
  color: white;
}
.skin-dark .widget-title {
  background: none !important;
  color: inherit !important;
}
.skin-dark .widget_archive ul ul,
.skin-dark .widget_archive ul li, .skin-dark .widget_nav_menu ul ul,
.skin-dark .widget_nav_menu ul li, .skin-dark .widget_meta ul ul,
.skin-dark .widget_meta ul li, .skin-dark .widget_recent_entries ul ul,
.skin-dark .widget_recent_entries ul li, .skin-dark .widget_pages ul ul,
.skin-dark .widget_pages ul li, .skin-dark .widget_categories ul ul,
.skin-dark .widget_categories ul li, .skin-dark .widget_product_categories ul ul,
.skin-dark .widget_product_categories ul li, .skin-dark ul.wp-block-categories-list ul,
.skin-dark ul.wp-block-categories-list li, .skin-dark ul.wp-block-archives-list ul,
.skin-dark ul.wp-block-archives-list li {
  border: 0;
}
.skin-dark .widget_archive ul a:hover, .skin-dark .widget_nav_menu ul a:hover, .skin-dark .widget_meta ul a:hover, .skin-dark .widget_recent_entries ul a:hover, .skin-dark .widget_pages ul a:hover, .skin-dark .widget_categories ul a:hover, .skin-dark .widget_product_categories ul a:hover, .skin-dark ul.wp-block-categories-list a:hover, .skin-dark ul.wp-block-archives-list a:hover {
  color: inherit;
  text-decoration: underline;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: widgets.css.map */
/*!/wp-content/themes/fox/css56/builder/common.css*/
:root {
  /* COLOR */
  /* GRID */
  --blog-grid-h-spacing: 20px;
  --blog-grid-v-spacing: 40px;
}

.widget56__row .col {
  border-left: 0 solid var(--border-color);
}

@media only screen and (max-width: 600px) {
  .widget56__row .col + .col {
    border-left: 0;
    margin-top: 2em;
  }
}

.customize-partial-edit-shortcuts-shown .nocontent {
  background: rgba(0, 0, 0, 0.04);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  height: 150px;
}

/* GENERAL
=================================================================================*/
.imageframe56 {
  display: block;
  padding-bottom: 50%;
  position: relative;
}
.imageframe56 img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* BUILDER
=================================================================================*/
.builder56 {
  display: block;
  padding: 20px 0 30px;
}
@media only screen and (max-width: 840px) {
  .builder56 {
    padding: 0 0 20px;
  }
}
@media only screen and (max-width: 600px) {
  .builder56 {
    padding: 0 0 10px;
  }
}

.builder56__section {
  border: 0 solid black;
}

.builder56__section + .builder56__section {
  margin-top: 24px;
}

.section56 {
  overflow: hidden;
  position: relative;
}

.container--main {
  border: 0 solid;
}

.section56--stretch-fullwidth .container {
  width: 100%;
  max-width: 100%;
}

.section56--stretch-narrow .container {
  width: 660px;
}

.section56__after_code {
  margin: 20px 0 0;
}

.section56 > .container--main {
  position: relative;
  z-index: 20;
}

.section56__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0;
}
.section56__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* HEADING
=================================================================================*/
.container--heading {
  position: relative;
}

.heading56__wrapper {
  position: relative;
  margin: 0 0 24px;
}
@media only screen and (max-width: 600px) {
  .heading56__wrapper {
    margin-bottom: 1em;
  }
}

.heading56 {
  display: block;
  position: relative;
  margin: 0;
}

.heading56 a {
  color: inherit;
}
.heading56 a:hover {
  color: inherit;
}

.heading56__text {
  display: inline-block;
  position: relative;
}

/* border top / bottom
--------------------------------- */
.heading56--border-bottom {
  border: 1px solid;
  border-width: 0 0 1px;
}

.heading56--border-top {
  border: 1px solid;
  border-width: 1px 0 0;
}

/* Border Around
--------------------------------- */
.heading56--border-around .heading56__text {
  padding: 16px;
  border: 5px solid;
}

/* decorate middle
--------------------------------- */
.heading56--decorate-middle .heading56__line {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.heading56--decorate-middle .heading56__line--left {
  right: 100%;
  margin-right: 20px;
}
.heading56--decorate-middle .heading56__line--right {
  left: 100%;
  margin-left: 20px;
}
.heading56--decorate-middle.heading56--stretch-full .heading56__line {
  width: 2000px;
}
.heading56--decorate-middle.heading56--stretch-content {
  overflow: hidden;
}
.heading56--decorate-middle.heading56--stretch-content .heading56__line {
  width: 2000px;
}
.heading56--decorate-middle.heading56--stretch-half .heading56__line {
  width: 200px;
}

/* line middle
--------------------------------- */
.heading56--middle-line .heading56__line {
  background: currentColor;
  height: 1px;
}

/* Diagonal Strip
--------------------------------- */
.heading56--diagonal-stripe .heading56__line {
  background: repeating-linear-gradient(-45deg, transparent, transparent 6px, currentColor 7px, currentColor 1px);
  background-position: top left;
  opacity: 0.5;
  height: 30%;
}

/* Pixelate Dots
--------------------------------- */
.heading56--pixelate-dots .heading56__line {
  height: 40%;
  background-image: radial-gradient(currentColor 20%, transparent 20%);
  background-position: 0 0;
  background-size: 8px 8px;
  opacity: 0.6;
}

/* Alignment
--------------------------------- */
.heading56--left {
  text-align: left;
}

.heading56--center {
  text-align: center;
}

.heading56--right {
  text-align: right;
}

/* separated
--------------------------------- */
.heading56__link {
  font-size: 0.925em;
}

.heading56__link--separated {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 20;
  display: block;
  transform: translate(0, -50%);
  padding: 2px 6px 1px;
}
@media only screen and (max-width: 600px) {
  .heading56__link--separated {
    padding-left: 10px;
  }
}

.heading56--right + .heading56__link--separated {
  right: auto;
  left: 0;
  padding-left: 0;
  padding-right: 20px;
}

/* AD
=================================================================================*/
.ad56__wrapper .ad56__container {
  margin-bottom: 20px;
}

/* COMMON
=================================================================================*/
.blog56 {
  position: relative;
}

.post56 {
  position: relative;
  z-index: 10;
}

.component56 + .component56 {
  margin-top: 8px;
}

body .post56__text > .component56:last-child {
  margin-bottom: 0;
}

.post56 .post56__text {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* Number
================================*/
.number56 {
  margin-right: 0.5em;
  font-size: 1.2em;
}

/* THUMBNAIL
================================*/
.thumbnail56 {
  display: block;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.thumbnail56 img {
  width: 100%;
  display: block;
  margin: 0;
  border: 0 solid;
}
.thumbnail56 a {
  display: block;
  position: relative;
}

.iframe-inserted {
  background: black;
}
.iframe-inserted a,
.iframe-inserted img,
.iframe-inserted figcaption {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.iframe-inserted iframe {
  display: block;
  visibility: visible;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Caption
---------------------------------------- */
.wp-caption-text,
.wp-element-caption,
.wp-block-image figcaption,
.blocks-gallery-caption {
  display: block;
  margin: 10px auto 0;
  max-width: 940px;
  font-size: 15px;
  text-align: left;
  line-height: 1.4;
}
.wp-caption-text a,
.wp-element-caption a,
.wp-block-image figcaption a,
.blocks-gallery-caption a {
  color: inherit;
  text-decoration: underline;
  display: inline;
}
.wp-caption-text a:hover,
.wp-element-caption a:hover,
.wp-block-image figcaption a:hover,
.blocks-gallery-caption a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 600px) {
  .wp-caption-text,
  .wp-element-caption,
  .wp-block-image figcaption,
  .blocks-gallery-caption {
    width: 100%;
    margin-top: 3px;
  }
}

/* THUMBNAIL VIEW
================================*/
.thumbnail56__view {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  background: black;
  color: white;
  font-size: 11px;
  text-align: center;
  padding: 2px 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  z-index: 40;
}

/* REVIEW
================================*/
.thumbnail56__score {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  background: black;
  color: white;
  z-index: 99;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 2.4em;
}

/* TITLE
================================*/
.title56 {
  margin: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.title56 a {
  display: block;
  color: inherit;
  transition: color 0.15s ease-out;
}
.title56 a:hover {
  color: inherit;
}

/* EXCERPT
================================*/
.excerpt56 {
  display: block;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.excerpt56 p {
  margin: 0;
}

.excerpt56--cols--2,
.excerpt56--cols--3 {
  text-align: justify;
}

.excerpt56--cols--2 {
  -moz-column-count: 2;
       column-count: 2;
}

.excerpt56--cols--3 {
  -moz-column-count: 3;
       column-count: 3;
}

/* AFTER EXCERPT TITLES
================================*/
.compact-titles .title56 {
  margin-bottom: 0 !important;
  border-top: 0 solid var(--border-color);
}

/* MORE
================================*/
.readmore56 .btn56 {
  line-height: 24px;
}

a.more--plain {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

a.more--minimal {
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 90%;
  display: inline-block;
  margin-top: 0.5em;
  position: relative;
}
a.more--minimal:hover {
  color: inherit;
}
a.more--minimal:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transform-origin: 0 0;
  transition: all 0.2s ease-out;
  display: block;
  border-top: 2px solid;
  content: "";
}
a.more--minimal:hover:after {
  transform: scale(1, 1);
}

/* HOVER STYLES
=================================================================================*/
.hover--fade a {
  transition: all 0.2s ease-out;
}
.hover--fade a:hover {
  opacity: 0.8;
}

.hover--grayscale img {
  transition: all 0.4s ease-out;
}
.hover--grayscale img:hover {
  filter: grayscale(100%);
}

.hover--sepia img {
  transition: all 0.4s ease-out;
}
.hover--sepia img:hover {
  filter: sepia(100%);
}

.thumbnail56__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  background: black;
  display: none;
}

.hover--dark .thumbnail56__overlay {
  display: block;
}
.hover--dark a:hover .thumbnail56__overlay {
  opacity: 0.4;
  visibility: visible;
}

.hover--zoomin img {
  display: block;
  transition: all 0.3s ease-out;
}
.hover--zoomin a:hover img, .hover--zoomin:hover img {
  transform: scale(1.05);
}

.thumbnail56__letter {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: block;
  z-index: 30;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: white;
  position: absolute;
  font-size: 5em;
}

.thumbnail56__letter__main {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  transform: scale(0.9);
  font-weight: 100;
}

.thumbnail56__letter__cross {
  position: absolute;
  display: block;
  border-left: 1px solid;
  height: 0;
  transition: all 0.3s ease-out;
  opacity: 0.8;
}

.thumbnail56__letter__cross--left {
  transform: rotate(45deg);
  transform-origin: 0 0;
  top: 100%;
  right: 100%;
}

.thumbnail56__letter__cross--right {
  transform: rotate(45deg);
  transform-origin: 100% 100%;
  bottom: 100%;
  left: 100%;
}

.hover--letter a:hover .thumbnail56__overlay {
  opacity: 0.7;
}
.hover--letter a:hover .thumbnail56__letter__cross {
  height: 60px;
}
.hover--letter a:hover .thumbnail56__letter__main {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.thumbnail56__hover-img {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 50;
  border-radius: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  transform: translate(-50%, -45%);
  border: 0 !important;
}

.thumbnail56 .thumbnail56__hover-img {
  width: 40%;
}

.thumbnail56.hover--logo a:hover img.thumbnail56__hover-img {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

/* SHOWING EFFECT
=================================================================================*/
.thumbnail56--hasshowing--fade a {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  transition-delay: 0.1s;
}
.thumbnail56--hasshowing--fade.inview a {
  opacity: 1;
  visibility: visible;
}

.thumbnail56--hasshowing--slide a {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 40px);
  transition: all 0.3s ease-out;
}
.thumbnail56--hasshowing--slide.inview a {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.thumbnail56--hasshowing--popup a {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.thumbnail56--hasshowing--popup.inview a {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.thumbnail56--hasshowing--zoomin a {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.3);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.thumbnail56--hasshowing--zoomin.inview a {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* FORMAT INDICATOR
=================================================================================*/
.format-icon {
  position: absolute;
  z-index: 999;
  display: block;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  color: white;
  width: 36px;
  height: 36px;
  text-align: center;
}
.format-icon i {
  font-size: 16px;
  line-height: 36px;
  margin: 0;
}

.format-icon--video {
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  transition: all 0.15s ease-out;
}
.format-icon--video i {
  transform: translate(3px, 0);
  font-size: 22px;
  line-height: 48px;
}

.format-icon--video--minimal {
  background: none;
}
.format-icon--video--minimal i {
  font-size: 28px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.format-icon--video--solid {
  background: #000;
}

.thumbnail56:hover .format-icon--video--solid {
  background: var(--accent-color);
}

.format-icon--video--outline {
  width: 48px;
  height: 48px;
  line-height: 42px;
  font-size: 14px;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease-out;
}
.format-icon--video--outline i {
  line-height: 40px;
  transform: translate(3px, 0);
  font-size: 22px;
}

.thumbnail56:hover .format-icon--video--outline {
  border-color: white;
  color: white;
}

/* POST ONTOP
=================================================================================*/
.post56__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.post56__wraplink {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 32;
  display: block;
}

.post56__padding {
  display: none;
  padding-bottom: 80%;
}

.post56__height {
  display: none;
  height: 320px;
}

.post56__wraplink {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.post56--ontop {
  color: white;
  overflow: hidden;
}
.post56--ontop .post56__overlay,
.post56--ontop .post56__height,
.post56--ontop .post56__padding,
.post56--ontop .post56__wraplink {
  display: block;
}
.post56--ontop .thumbnail56 {
  z-index: 10;
  margin: 0 !important;
}
.post56--ontop .thumbnail56 a {
  width: 100%;
  height: 100%;
  display: block;
}
.post56--ontop .thumbnail56 img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
}
.post56--ontop .post56__text {
  z-index: 40;
  padding: 24px;
}
.post56--ontop .post56__text,
.post56--ontop .thumbnail56 {
  position: absolute;
  left: 0;
  right: 0;
}
.post56--ontop .thumbnail56 {
  top: 0;
  bottom: 0;
}

.text--top .post56__text {
  top: 0;
}

.text--bottom .post56__text {
  bottom: 0;
}

.text--middle .post56__text {
  top: 50%;
  transform: translate(0, -50%);
}

/* AUTHOR
=================================================================================*/
.authors56__container {
  display: flex;
  flex-flow: row wrap;
}

.authors56--desktop--6 .author56 {
  width: 16.66%;
}

.authors56--desktop--5 .author56 {
  width: 20%;
}

.authors56--desktop--4 .author56 {
  width: 25%;
}

.authors56--desktop--3 .author56 {
  width: 33.33%;
}

.authors56--desktop--2 .author56 {
  width: 50%;
}

.authors56--desktop--1 .author56 {
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .authors56--tablet--6 .author56 {
    width: 16.66%;
  }
  .authors56--tablet--5 .author56 {
    width: 20%;
  }
  .authors56--tablet--4 .author56 {
    width: 25%;
  }
  .authors56--tablet--3 .author56 {
    width: 33.33%;
  }
  .authors56--tablet--2 .author56 {
    width: 50%;
  }
  .authors56--tablet--1 .author56 {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .authors56--mobile--6 .author56 {
    width: 16.66%;
  }
  .authors56--mobile--5 .author56 {
    width: 20%;
  }
  .authors56--mobile--4 .author56 {
    width: 25%;
  }
  .authors56--mobile--3 .author56 {
    width: 33.33%;
  }
  .authors56--mobile--2 .author56 {
    width: 50%;
  }
  .authors56--mobile--1 .author56 {
    width: 100%;
  }
}
/* Layout
------------------------ */
.authors56--item--left .author56 {
  display: flex;
}

.authors56--item--left .author56__avatar {
  width: 120px;
  flex: none;
}

.authors56--item--left .author56__text {
  flex: none;
  width: calc(100% - 120px);
}

.authors56--item--top .author56__avatar {
  display: inline-block;
}

/* Sep
------------------------ */
.authors56 {
  position: relative;
}

.author56 {
  border-left: 0 solid var(--border-color);
  border-top: 0 solid var(--border-color);
}

/* Avatar
------------------------ */
.author56__avatar img {
  border-radius: 150px;
}

/* Text
------------------------ */
.author56__name {
  margin: 0;
}
.author56__name a {
  color: inherit;
}

.author56__description p,
.author56__description ul,
.author56__description ol {
  margin: 0;
}

.author56__description a {
  color: inherit;
}

/* Typo
------------------------ */
/* Color
------------------------ *//*# Current File Updated by Asset CleanUp Pro - Original Source Map: common.css.map */
/*!/wp-content/themes/fox/css56/builder/grid.css*/
:root {
  /* GRID */
  --blog-grid-h-spacing: 20px;
  --blog-grid-v-spacing: 40px;
}

/* GRID
=================================================================================*/
.blog56--grid {
  display: grid;
  row-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.blog56--grid--1cols {
  grid-template-columns: 1fr;
}

.blog56--grid--2cols {
  grid-template-columns: 1fr 1fr;
}

.blog56--grid--3cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.blog56--grid--4cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.blog56--grid--5cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.blog56--grid--6cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 840px) {
  .blog56--grid--tablet--1cols {
    grid-template-columns: 1fr;
  }
  .blog56--grid--tablet--2cols {
    grid-template-columns: 1fr 1fr;
  }
  .blog56--grid--tablet--3cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .blog56--grid--tablet--4cols {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .blog56--grid--mobile--1cols {
    grid-template-columns: 1fr;
  }
  .blog56--grid--mobile--2cols {
    grid-template-columns: 1fr 1fr;
  }
}
.post56--grid .post56__text {
  padding: 16px 0 0;
}

/* LIST
=================================================================================*/
.blog56--list {
  display: grid;
  row-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  position: relative;
}

.post56--list {
  display: flex;
  position: relative;
  z-index: 20;
}
.post56--list .post56__text {
  width: 100%;
}
.post56--list .thumbnail56 {
  width: 40%;
  order: 1;
  padding-right: 24px;
  flex: none;
  margin-bottom: 0 !important;
  max-width: 80%;
}
@media only screen and (max-width: 840px) {
  .post56--list .thumbnail56 {
    padding-right: 14px;
    max-width: 60%;
  }
}
@media only screen and (max-width: 600px) {
  .post56--list .thumbnail56 {
    padding-right: 6px;
    max-width: 40%;
  }
}
.post56--list .thumbnail56 + .post56__text {
  width: 60%;
  order: 2;
  flex: none;
  min-width: 20%;
}
@media only screen and (max-width: 840px) {
  .post56--list .thumbnail56 + .post56__text {
    padding-right: 14px;
    min-width: 40%;
  }
}
@media only screen and (max-width: 600px) {
  .post56--list .thumbnail56 + .post56__text {
    padding-right: 6px;
    min-width: 60%;
  }
}

.valign-top {
  align-items: stretch;
}

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

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

/**
 * thumbnail right
 */
.post56--list--thumb-right .thumbnail56 {
  order: 3;
  padding-left: 24px;
  padding-right: 0;
}
@media only screen and (max-width: 840px) {
  .post56--list--thumb-right .thumbnail56 {
    padding-right: 0;
    padding-left: 14px;
  }
}
@media only screen and (max-width: 840px) {
  .post56--list--thumb-right .thumbnail56 {
    padding-right: 0;
    padding-left: 6px;
  }
}

/* BORDER PROBLEM
=================================================================================*/
.blog56__sep {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: grid;
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.blog56__sep__line {
  height: 100%;
  border-right: 0 solid var(--border-color);
  transform: translate(16px, 0);
}

.blog56--grid--1cols .blog56__sep__line {
  display: none;
}

.blog56--grid--2cols .blog56__sep {
  grid-template-columns: 1fr 1fr;
}
.blog56--grid--2cols .line--2,
.blog56--grid--2cols .line--3,
.blog56--grid--2cols .line--4,
.blog56--grid--2cols .line--5 {
  display: none;
}

.blog56--grid--3cols .blog56__sep {
  grid-template-columns: 1fr 1fr 1fr;
}
.blog56--grid--3cols .line--3,
.blog56--grid--3cols .line--4,
.blog56--grid--3cols .line--5 {
  display: none;
}

.blog56--grid--4cols .blog56__sep {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.blog56--grid--4cols .line--4,
.blog56--grid--4cols .line--5 {
  display: none;
}

.blog56--grid--5cols .blog56__sep {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.blog56--grid--5cols .line--5 {
  display: none;
}

.blog56--grid--6cols .blog56__sep {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

/* TABLET VERSION */
@media only screen and (max-width: 840px) {
  .blog56--grid--tablet--1cols .blog56__sep__line {
    display: none;
  }
  .blog56--grid--tablet--2cols .blog56__sep {
    grid-template-columns: 1fr 1fr;
  }
  .blog56--grid--tablet--2cols .line--1 {
    display: block;
  }
  .blog56--grid--tablet--2cols .line--2,
  .blog56--grid--tablet--2cols .line--3,
  .blog56--grid--tablet--2cols .line--4,
  .blog56--grid--tablet--2cols .line--5 {
    display: none;
  }
  .blog56--grid--tablet--3cols .blog56__sep {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .blog56--grid--tablet--3cols .line--1,
  .blog56--grid--tablet--3cols .line--2 {
    display: block;
  }
  .blog56--grid--tablet--3cols .line--3,
  .blog56--grid--tablet--3cols .line--4,
  .blog56--grid--tablet--3cols .line--5 {
    display: none;
  }
  .blog56--grid--tablet--4cols .blog56__sep {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .blog56--grid--tablet--4cols .line--1,
  .blog56--grid--tablet--4cols .line--2,
  .blog56--grid--tablet--4cols .line--3 {
    display: block;
  }
  .blog56--grid--tablet--4cols .line--4,
  .blog56--grid--tablet--4cols .line--5 {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .blog56--grid--mobile--1cols .blog56__sep__line {
    display: none;
  }
  .blog56--grid--mobile--2cols .blog56__sep {
    grid-template-columns: 1fr 1fr;
  }
  .blog56--grid--mobile--2cols .line--1 {
    display: block;
  }
  .blog56--grid--mobile--2cols .line--2,
  .blog56--grid--mobile--2cols .line--3,
  .blog56--grid--mobile--2cols .line--4,
  .blog56--grid--mobile--2cols .line--5 {
    display: none;
  }
}
/**
 * POST HORIZONTAL SEP
 */
.post56__sep__line {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  /* no need this, it's complicated
  left: -16px;
  right: -16px; */
  z-index: 11;
  border-top: 0 solid var(--border-color);
}

.griditem56:first-child .post56__sep__line {
  display: none !important;
}

.blog56--grid--2cols .griditem56:nth-child(2) .post56__sep__line,
.blog56--grid--3cols .griditem56:nth-child(2) .post56__sep__line,
.blog56--grid--4cols .griditem56:nth-child(2) .post56__sep__line,
.blog56--grid--5cols .griditem56:nth-child(2) .post56__sep__line,
.blog56--grid--6cols .griditem56:nth-child(2) .post56__sep__line {
  display: none;
}

.blog56--grid--3cols .griditem56:nth-child(3) .post56__sep__line,
.blog56--grid--4cols .griditem56:nth-child(3) .post56__sep__line,
.blog56--grid--5cols .griditem56:nth-child(3) .post56__sep__line,
.blog56--grid--6cols .griditem56:nth-child(3) .post56__sep__line {
  display: none;
}

.blog56--grid--4cols .griditem56:nth-child(4) .post56__sep__line,
.blog56--grid--5cols .griditem56:nth-child(4) .post56__sep__line,
.blog56--grid--6cols .griditem56:nth-child(4) .post56__sep__line {
  display: none;
}

.blog56--grid--5cols .griditem56:nth-child(5) .post56__sep__line,
.blog56--grid--6cols .griditem56:nth-child(5) .post56__sep__line {
  display: none;
}

.blog56--grid--6cols .griditem56:nth-child(6) .post56__sep__line {
  display: none;
}

/* TABLET VERSION */
@media only screen and (max-width: 840px) {
  .blog56.blog56--grid--tablet--1cols .griditem56 .post56__sep__line,
  .blog56.blog56--grid--tablet--2cols .griditem56 .post56__sep__line,
  .blog56.blog56--grid--tablet--3cols .griditem56 .post56__sep__line,
  .blog56.blog56--grid--tablet--4cols .griditem56 .post56__sep__line,
  .blog56.blog56--grid--tablet--5cols .griditem56 .post56__sep__line,
  .blog56.blog56--grid--tablet--6cols .griditem56 .post56__sep__line {
    display: block;
  }
  .blog56.blog56--grid--tablet--2cols .griditem56:nth-child(2) .post56__sep__line,
  .blog56.blog56--grid--tablet--3cols .griditem56:nth-child(2) .post56__sep__line,
  .blog56.blog56--grid--tablet--4cols .griditem56:nth-child(2) .post56__sep__line {
    display: none;
  }
  .blog56.blog56--grid--tablet--3cols .griditem56:nth-child(3) .post56__sep__line,
  .blog56.blog56--grid--tablet--4cols .griditem56:nth-child(3) .post56__sep__line {
    display: none;
  }
  .blog56.blog56--grid--tablet--4cols .griditem56:nth-child(4) .post56__sep__line {
    display: none;
  }
}
/* MOBILE VERSION */
@media only screen and (max-width: 600px) {
  .post56__sep__line {
    display: block !important;
  }
  .griditem56:first-child .post56__sep__line {
    visibility: hidden;
    opacity: 0;
  }
  .blog56.blog56--grid--mobile--2cols .griditem56:nth-child(2) .post56__sep__line {
    visibility: hidden;
    opacity: 0;
  }
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: grid.css.map */
/*!/wp-content/themes/fox/css56/builder/list.css*/
@media only screen and (max-width: 840px) {
  .post56--list--thumb-pixel .thumbnail56 {
    width: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .post56--list--thumb-pixel .thumbnail56 {
    width: 100px;
  }
}
@media only screen and (max-width: 840px) {
  .post56--list--thumb-pixel .thumbnail56 + .post56__text {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 600px) {
  .post56--list--thumb-pixel .thumbnail56 + .post56__text {
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 840px) {
  .post56--list--thumb-percent .thumbnail56 {
    width: 60%;
  }
}
@media only screen and (max-width: 600px) {
  .post56--list--thumb-percent .thumbnail56 {
    width: 40%;
  }
}
@media only screen and (max-width: 840px) {
  .post56--list--thumb-percent .thumbnail56 + .post56__text {
    width: 40%;
  }
}
@media only screen and (max-width: 600px) {
  .post56--list--thumb-percent .thumbnail56 + .post56__text {
    width: 60%;
  }
}

/* LIST
=================================================================================*/
.blog56--list {
  display: grid;
  row-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  position: relative;
}

.post56--list {
  display: flex;
  position: relative;
  z-index: 20;
}
.post56--list .post56__text {
  width: 100%;
}
.post56--list .thumbnail56 {
  width: 40%;
  order: 1;
  padding-right: 24px;
  flex: none;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 840px) {
  .post56--list .thumbnail56 {
    padding-right: 14px;
  }
}
@media only screen and (max-width: 840px) {
  .post56--list .thumbnail56 {
    padding-right: 6px;
  }
}
.post56--list .thumbnail56 + .post56__text {
  width: 60%;
  order: 2;
  flex: none;
}

.valign-top {
  align-items: stretch;
}

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

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

/**
 * thumbnail right
 */
.post56--list--thumb-right .thumbnail56 {
  order: 3;
  padding-left: 24px;
  padding-right: 0;
}
@media only screen and (max-width: 840px) {
  .post56--list--thumb-right .thumbnail56 {
    padding-right: 0;
    padding-left: 14px;
  }
}
@media only screen and (max-width: 840px) {
  .post56--list--thumb-right .thumbnail56 {
    padding-right: 0;
    padding-left: 6px;
  }
}

/* -------------------------        list mobile layout grid */
@media only screen and (max-width: 600px) {
  .post56--list.list56--mobile-grid {
    display: block;
  }
  .post56--list.list56--mobile-grid .thumbnail56,
  .post56--list.list56--mobile-grid .post56__text {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .post56--list.list56--mobile-grid .thumbnail56 + .post56__text {
    margin-top: 10px;
  }
  .post56--list.list56--mobile-list .thumbnail56__caption {
    display: none !important;
  }
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: list.css.map */
/*!/wp-content/themes/fox/css56/builder/masonry.css*/
/* MASONRY
=================================================================================*/
.main-masonry {
  margin: -32px -16px 0;
}

.masonry-cell {
  display: block;
  float: left;
  padding: 32px 16px 0;
  z-index: 99;
}

.masonry56--1cols .masonry-cell,
.masonry56--1cols .grid-sizer {
  width: 100%;
}

.masonry56--2cols .masonry-cell,
.masonry56--2cols .grid-sizer {
  width: 50%;
}

.masonry56--3cols .masonry-cell,
.masonry56--3cols .grid-sizer {
  width: 33.33%;
}

.masonry56--4cols .masonry-cell,
.masonry56--4cols .grid-sizer {
  width: 25%;
}

.masonry56--5cols .masonry-cell,
.masonry56--5cols .grid-sizer {
  width: 20%;
}

.masonry56--6cols .masonry-cell,
.masonry56--6cols .grid-sizer {
  width: 16.66%;
}

/* --------------- tablet */
@media only screen and (max-width: 840px) {
  .masonry56--tablet--1cols .masonry-cell,
  .masonry56--tablet--1cols .grid-sizer {
    width: 100%;
  }
  .masonry56--tablet--2cols .masonry-cell,
  .masonry56--tablet--2cols .grid-sizer {
    width: 50%;
  }
  .masonry56--tablet--3cols .masonry-cell,
  .masonry56--tablet--3cols .grid-sizer {
    width: 33.33%;
  }
  .masonry56--tablet--4cols .masonry-cell,
  .masonry56--tablet--4cols .grid-sizer {
    width: 25%;
  }
  .masonry56--tablet--5cols .masonry-cell,
  .masonry56--tablet--5cols .grid-sizer {
    width: 20%;
  }
  .masonry56--tablet--6cols .masonry-cell,
  .masonry56--tablet--6cols .grid-sizer {
    width: 16.66%;
  }
}
/* --------------- mobile */
@media only screen and (max-width: 600px) {
  .masonry56--mobile--1cols .masonry-cell,
  .masonry56--mobile--1cols .grid-sizer {
    width: 100%;
  }
  .masonry56--mobile--2cols .masonry-cell,
  .masonry56--mobile--2cols .grid-sizer {
    width: 50%;
  }
  .masonry56--mobile--3cols .masonry-cell,
  .masonry56--mobile--3cols .grid-sizer {
    width: 33.33%;
  }
  .masonry56--mobile--4cols .masonry-cell,
  .masonry56--mobile--4cols .grid-sizer {
    width: 25%;
  }
  .masonry56--mobile--5cols .masonry-cell,
  .masonry56--mobile--5cols .grid-sizer {
    width: 20%;
  }
  .masonry56--mobile--6cols .masonry-cell,
  .masonry56--mobile--6cols .grid-sizer {
    width: 16.66%;
  }
}
/* ----------------------       big first */
.masonry56--bigfirst .masonry-cell:first-child {
  transform: translate(-1px, 0);
  background: white;
}

.masonry56--bigfirst.masonry56--2cols .masonry-cell:first-child {
  width: 100%;
}

.masonry56--bigfirst.masonry56--3cols .masonry-cell:first-child {
  width: 66.66%;
}

.masonry56--bigfirst.masonry56--4cols .masonry-cell:first-child {
  width: 50%;
}

.masonry56--bigfirst.masonry56--5cols .masonry-cell:first-child {
  width: 40%;
}

.masonry56--bigfirst.masonry56--6cols .masonry-cell:first-child {
  width: 33.33%;
}

@media only screen and (max-width: 840px) {
  .masonry56--bigfirst.masonry56--tablet--1cols .masonry-cell:first-child {
    width: 100%;
  }
  .masonry56--bigfirst.masonry56--tablet--2cols .masonry-cell:first-child {
    width: 100%;
  }
  .masonry56--bigfirst.masonry56--tablet--3cols .masonry-cell:first-child {
    width: 66.66%;
  }
  .masonry56--bigfirst.masonry56--tablet--4cols .masonry-cell:first-child {
    width: 50%;
  }
  .masonry56--bigfirst.masonry56--tablet--5cols .masonry-cell:first-child {
    width: 40%;
  }
  .masonry56--bigfirst.masonry56--tablet--6cols .masonry-cell:first-child {
    width: 33.33%;
  }
}
@media only screen and (max-width: 600px) {
  .masonry56--bigfirst.masonry56--mobile--1cols .masonry-cell:first-child {
    width: 100%;
  }
  .masonry56--bigfirst.masonry56--mobile--2cols .masonry-cell:first-child {
    width: 100%;
  }
  .masonry56--bigfirst.masonry56--mobile--3cols .masonry-cell:first-child {
    width: 66.66%;
  }
  .masonry56--bigfirst.masonry56--mobile--4cols .masonry-cell:first-child {
    width: 50%;
  }
  .masonry56--bigfirst.masonry56--mobile--5cols .masonry-cell:first-child {
    width: 40%;
  }
  .masonry56--bigfirst.masonry56--mobile--6cols .masonry-cell:first-child {
    width: 33.33%;
  }
}
.thumbnail56__padding {
  display: block;
  padding-bottom: 60%;
  background-color: #f0f0f0;
}

/* ----------------------       sep problem */
.blog56--masonry {
  overflow: hidden;
}

.blog56--masonry .blog56__sep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* ----------------------       creative masonry */
.post56--portrait .thumbnail56 {
  float: left;
  width: 50%;
  margin: 0 20px 5px 0 !important;
  z-index: 999;
}

.masonry-cell .thumbnail56,
.masonry-cell .post56__text {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 5px);
  transition: all 0.3s ease-out;
  transition-delay: 0.15s;
}
.masonry-cell .post56__text {
  transition-delay: 0.45s;
}

.masonry-cell.inview .thumbnail56,
.masonry-cell.inview .post56__text {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: masonry.css.map */
/*!/wp-content/themes/fox/css56/builder/group.css*/
/* GROUP
=================================================================================*/
/**
 * SEP FOR GROUP
 */
.row56__col {
  position: relative;
}

.row56__col .blog56__sep__line {
  display: block !important;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 840px) {
  .row56__col .blog56__sep__line {
    height: 0;
  }
}

.col--last .blog56__sep__line {
  height: 0;
}

.row56__col .blog56--grid {
  height: 100%;
}

/**
 * make sure that sep of post in group isn't beyond the col width
 */
.row56 .post56__sep__line {
  left: 0 !important;
  right: 0 !important;
}

.blog56--group {
  overflow: hidden;
}

/* ----------------------------     CUSTOM POST GROUP CSS */
/* translation: post big, grid 1 col, align center --> max width 600px */
.row56__col--big .blog56--grid--1cols .align-center .post56__text {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* translation: text-gap for list layout of medium/small columns */
body .builder56 .section56 .row56__col--medium .post56--list--thumb-right .thumbnail56,
body .builder56 .section56 .row56__col--small .post56--list--thumb-right .thumbnail56 {
  padding-left: 10px;
}

body .builder56 .section56 .row56__col--medium .post56--list--thumb-left .thumbnail56,
body .builder56 .section56 .row56__col--small .post56--list--thumb-left .thumbnail56 {
  padding-right: 10px;
}

.row56__col--medium .post56--list,
.row56__col--small .post56--list {
  align-items: flex-start;
}
.row56__col--medium .post56--list .thumbnail56,
.row56__col--small .post56--list .thumbnail56 {
  width: 100px;
}
.row56__col--medium .post56--list .thumbnail56 + .post56__text,
.row56__col--small .post56--list .thumbnail56 + .post56__text {
  width: calc(100% - 100px);
}
.row56__col--medium .post56--list--thumb-right .thumbnail56,
.row56__col--small .post56--list--thumb-right .thumbnail56 {
  padding-left: 12px;
}
.row56__col--medium .post56--list--thumb-left .thumbnail56,
.row56__col--small .post56--list--thumb-left .thumbnail56 {
  padding-right: 12px;
}

.row56__col--medium .title56 {
  font-size: 1.3em;
}
@media only screen and (max-width: 600px) {
  .row56__col--medium .title56 {
    font-size: 1.1em;
  }
}
.row56__col--medium .excerpt56 {
  font-size: 1em;
  line-height: 1.3;
}

.row56__col--small .title56 {
  font-size: 1.15em;
}
@media only screen and (max-width: 600px) {
  .row56__col--small .title56 {
    font-size: 1em;
  }
}
.row56__col--small .excerpt56 {
  font-size: 0.94em;
  line-height: 1.3;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: group.css.map */
/*!/wp-content/themes/fox/css56/builder/others.css*/
/* SECTION SIDEBAR
 * @since 4.4
-------------------------------------------------------------------------------------- */
.section-sidebar-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  margin: -40px -20px 0;
}
@media only screen and (max-width: 600px) {
  .section-sidebar-inner {
    margin: 0;
  }
}

.main-section-sidebar {
  overflow: hidden;
}
.main-section-sidebar .widget,
.main-section-sidebar .widget + .widget {
  flex: none;
  padding: 40px 20px 0;
  margin: 0 !important;
  border: 0 !important;
}
@media only screen and (max-width: 600px) {
  .main-section-sidebar .widget,
  .main-section-sidebar .widget + .widget {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
  }
}

.main-section-sidebar-1 .widget {
  width: 100%;
}

.main-section-sidebar-2 .widget {
  width: 50%;
}
@media only screen and (max-width: 420px) {
  .main-section-sidebar-2 .section-sidebar-inner {
    margin: 0;
  }
  .main-section-sidebar-2 .widget {
    width: 100%;
    padding: 0;
  }
  .main-section-sidebar-2 .widget + .widget {
    margin-top: 20px !important;
  }
}

.main-section-sidebar-3 .widget {
  width: 33.33%;
}
@media only screen and (max-width: 600px) {
  .main-section-sidebar-3 .section-sidebar-inner {
    margin: 0;
  }
  .main-section-sidebar-3 .widget {
    width: 100%;
    padding: 0;
  }
  .main-section-sidebar-3 .widget + .widget {
    margin-top: 20px !important;
  }
}

.main-section-sidebar-4 .widget {
  width: 25%;
}
@media only screen and (max-width: 840px) {
  .main-section-sidebar-4 .section-sidebar-inner {
    margin: -20px -10px 0;
  }
  .main-section-sidebar-4 .widget,
  .main-section-sidebar-4 .widget + .widget {
    width: 50%;
    padding: 20px 10px 0;
  }
}
@media only screen and (max-width: 600px) {
  .main-section-sidebar-4 .section-sidebar-inner {
    margin: 0;
  }
  .main-section-sidebar-4 .widget {
    width: 100%;
    padding: 0;
  }
  .main-section-sidebar-4 .widget + .widget {
    margin-top: 20px !important;
  }
}

/* Newsletter - since 6.8.1
-------------------------------------------------------------------------------------- */
.newsletter56--inline .newsletter56__inner .mc4wp-form-fields {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter56--inline .newsletter56__inner .mc4wp-form-fields > * {
  display: block;
  max-width: 300px;
  padding-left: 4px;
  padding-right: 4px;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .newsletter56--inline .newsletter56__inner .mc4wp-form-fields {
    display: block;
  }
  .newsletter56--inline .newsletter56__inner .mc4wp-form-fields > * {
    max-width: 100%;
    padding: 0;
    margin-bottom: 1em;
  }
}

.newsletter56--stack .newsletter56__inner input[type=submit],
.newsletter56--stack .newsletter56__inner button {
  width: 100%;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: others.css.map */
/*!/wp-content/themes/fox/css56/misc.css*/
#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(/wp-content/themes/fox/css56/../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;
}

.widget56:hover > .widget56__edit {
  opacity: 1;
  visibility: visible;
}

[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 .widget56__edit {
  display: block;
}
.customize-partial-edit-shortcuts-shown .widget56 {
  position: relative;
  overflow: visible;
  min-height: 20px;
}
.customize-partial-edit-shortcuts-shown .widget56.heading56 {
  overflow: hidden;
}
.customize-partial-edit-shortcuts-shown .widget56:hover {
  outline: 1px solid #2271b1;
  box-shadow: 2px 3px 10px #2271b1;
}
.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;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: misc.css.map */
/*!/wp-content/themes/fox/css56/tooltipster.css*/
/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}

/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}

/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}

/* rotate */

@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100% {
		transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}

/* scale */

@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 18px;
	padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}

/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #565656;
	left: 0;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0;
	top: -3px;
}

/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}

/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}


.tooltipster-sidetip.tooltipster-borderless .tooltipster-box{border:none;background:#1b1b1b;background:rgba(10,10,10,.9)}.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow{height:8px;margin-left:-8px;width:16px}.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-arrow,.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow{height:16px;margin-left:0;margin-top:-8px;width:8px}.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow-background{display:none}.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow-border{border:8px solid transparent}.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#1b1b1b;border-bottom-color:rgba(10,10,10,.9)}.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-arrow-border{border-left-color:#1b1b1b;border-left-color:rgba(10,10,10,.9)}.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow-border{border-right-color:#1b1b1b;border-right-color:rgba(10,10,10,.9)}.tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-arrow-border{border-top-color:#1b1b1b;border-top-color:rgba(10,10,10,.9)}.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-uncropped{top:-8px}.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow-uncropped{left:-8px}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:none;border-radius:5px;background:#fff;box-shadow:0 0 10px 6px rgba(0,0,0,.1)}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-box{margin-top:6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-box{margin-right:6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-box{margin-left:6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-box{margin-bottom:6px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{color:#8d8d8d}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow{height:6px;margin-left:-6px;width:12px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow,.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow{height:12px;margin-left:0;margin-top:-6px;width:6px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:none}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border:6px solid transparent}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped{top:-6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-uncropped{left:-6px}
/*!/wp-content/themes/fox/css56/lightbox.css*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Magnific Popup
--------------------- */
html.lightbox-open {
  overflow: hidden;
}

.white-popup-block {
  background: #fff;
  z-index: 999999;
  padding: 30px 30px;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.mfp-content {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.5s, opacity 0.3s;
}

.mfp-ready .mfp-content {
  opacity: 1;
  visibility: visible;
}

.mfp-bg {
  z-index: 11042;
}

.mfp-wrap {
  z-index: 11043;
}

/* Loader
------------------------ */
.mfp-preloader {
  display: block;
  z-index: 9999;
  direction: ltr;
  /*
  &:before {
      @extend .feather;
      @extend .feather-loader;
      @extend .fa-spin;
      display: inline-block;

      margin-right: 6px;
  }
  */
  color: white;
  height: 40px;
  text-align: center;
}

.mfp-s-error .mfp-preloader {
  text-indent: 0;
  background: none;
}

.mfp-s-error .mfp-preloader a {
  color: inherit;
  text-decoration: underline;
}

/* Animation
------------------------ */
.mfp-gallery .mfp-figure {
  transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  visibility: hidden;
}
.mfp-gallery.mfp-image-loaded .mfp-figure {
  opacity: 1;
  visibility: visible;
}
.mfp-gallery.mfp-image-loaded.mfp-removing .mfp-figure {
  opacity: 0;
  visibility: hidden;
}

/* Frame
------------------------ */
.mfp-bg {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-figure:after {
  display: none;
}

.mfp-iframe-scaler iframe {
  box-shadow: none;
  background: none;
}

.mfp-wrap {
  color: #fff;
}

.mfp-figure figure {
  position: relative;
}
.mfp-figure figure > img {
  display: block;
  order: 2;
}
.mfp-figure figcaption {
  order: 1;
  position: absolute;
  bottom: 40px;
  top: 40px;
  right: 100%;
  width: 150px;
  margin-right: 1.5em;
  text-align: right;
  display: flex;
  align-items: flex-end;
}

.mfp-title {
  padding: 0;
  font-size: 1em;
  text-align: inherit;
  display: block;
  width: 100%;
  flex: none;
}
.mfp-title p {
  margin: 0;
}

.lightbox-caption-long {
  font-size: 0.8em;
}

.mfp-counter {
  position: absolute;
  bottom: auto;
  top: 5%;
  right: 0;
  left: auto;
}
.mfp-counter .total {
  font-size: 1.5em;
  margin-left: 4px;
  vertical-align: text-top;
}

.mfp-bottom-bar {
  margin: 0;
  position: static !important;
}

@media (max-width: 1100px) {
  .mfp-figure figcaption {
    background: rgba(0, 0, 0, 0.9);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: white;
    left: 0;
    right: auto;
    top: auto;
    padding: 10px 16px;
    text-align: left;
    width: auto;
    width: 100%;
    margin: 0;
  }
  .mfp-title {
    width: 60%;
    max-width: 800px;
    min-width: 100px;
  }
  .lightbox-caption-short {
    font-size: 0.9em;
  }
  .mfp-counter {
    display: none;
  }
}
/* Video
------------------------ */
.mfp-content .wp-video {
  max-height: 80%;
  max-width: 80%;
  margin: auto;
}

.mfp-content .wp-video-shortcode {
  margin: 0;
}

/* Cursor
------------------------ */
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

/* Next / Prev
------------------------ */
button.mfp-arrow,
button.mfp-arrow:hover {
  display: block;
  background: none;
  color: inherit;
  visibility: visible;
  margin: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 24px;
  top: auto;
  left: auto;
  transform: none;
  padding: 0;
  margin: 0;
}
button.mfp-arrow i,
button.mfp-arrow:hover i {
  margin: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%);
}

button.mfp-arrow {
  opacity: 1;
  @incldue transition( color .3s ease-out);
  color: rgba(255, 255, 255, 0.4);
}
button.mfp-arrow:hover {
  color: white;
  opacity: 1;
}

button.mfp-arrow.mfp-arrow-left {
  bottom: 5%;
  right: calc(5% + 40px);
}

button.mfp-arrow.mfp-arrow-right {
  bottom: 5%;
  right: 5%;
}

button.mfp-arrow:before,
button.mfp-arrow:after {
  display: none;
}

button.mfp-arrow {
  opacity: 1;
}
button.mfp-arrow:hover {
  opacity: 1;
}

/* Close
------------------------ */
.mfp-close,
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  position: fixed;
  top: 5%;
  left: auto;
  right: 5%;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 26px;
  color: inherit;
  cursor: pointer;
  transition: color 0.3s ease-out;
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.mfp-close:hover,
.mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:hover {
  opacity: 1;
  color: white;
}

.mfp-close:hover,
.mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:hover {
  background: none;
}

.mfp-close i {
  display: block;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.admin-bar .mfp-close {
  top: 42px;
}

/* Fix MFP click target
------------------------ */
body button.mfp-arrow-left:before,
body button.mfp-arrow-right:before,
body .mfp-close:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 40;
  border: none !important;
  outline: 0;
  background: none !important;
  content: "";
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
}

/* Caption
------------------------ */
.mfp-title,
.mfp-counter {
  color: inherit;
}

/* TEXT
------------------------ */
.mfp-title a {
  color: inherit;
  outline: 0;
  text-decoration: none;
  border-bottom: 1px solid;
  transition: border-color 0.15s;
}
.mfp-title a:hover {
  border-bottom-color: transparent;
  text-decoration: none;
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: lightbox.css.map */
/*!/wp-content/themes/fox/css56/single-below.css*/
/* 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.15s ease;
}
.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);
}/*# Current File Updated by Asset CleanUp Pro - Original Source Map: single-below.css.map */