@charset "UTF-8";
/* ------------------------------------------------------------------
  Main MonsterPlay Styles

  [Color codes]
  Brand: var(--mpl-color-brand)

  [Table of contents]
  
    - Normalize.
  1. Base.
    - Base.
    - Scroll smooth.
    - Scrollbar.
    - Typography.
  2. layouts.
    - Preloader.
    - Fade Between Pages.
    - Ticker.
    - Page Frame.
    - Page Noise.
    - Navbar.
    - Cursor.
    - Footer.
    - Content.
    - Scroll Progress.
    - Scroll Top Button.
    - Container.
  3. Page.
    - Blog.
    - Author.
    - Search.
    - 404.
    - Single post.
  4. Elements.
    - Button.
    - Touchspin.
    - Logo.
    - Forms.
    - Offcanvas.
    - Accessibility.
    - Media.
    - Page Navigation.
    - Comment.
    - Social Links.
    - Widgets.
    - Admin Bar.
  5. Blocks.
    - Audio.
    - Blockquote.
    - Button.
    - Calendar.
    - Column.
    - Cover.
    - Embed.
    - Gallery.
    - Group.
    - Gutenberg colors.
    - Image.
    - Latest comments.
    - Latest post.
    - List.
    - Navigation.
    - Paragraph.
    - RSS.
    - Search.
    - Separator.
    - Social links.
    - Table.
    - Tags.
    - Video.
  6. Plugins.
    - Fancybox.
    - Main.
    - Element Close.
    - Popup Navbar.
    - Popup Cart.
    - Popup Search.
    - Popup Sign In.
    - Popup Offcanvas.
 ------------------------------------------------------------------- */
/* stylelint-disable scss/comment-no-empty */
body {
  --mpl-color-white: 0deg, 0%, 100%;
  --mpl-color-black: 0deg, 0%, 2%;
  --mpl-color-primary: 194deg, 80%, 50%;
  --mpl-color-primary-light: 193deg, 78%, 93%;
  --mpl-color-success: 119deg, 53%, 51%;
  --mpl-color-info: 176deg, 61%, 48%;
  --mpl-color-warning: 43deg, 100%, 55%;
  --mpl-color-danger: 4deg, 58%, 50%;
  --mpl-color-warning-light: 37deg, 100%, 77%;
  --mpl-color-success-light: 117deg, 54%, 93%;
  --mpl-color-danger-light: 3deg, 60%, 94%;
  --mpl-color-hsl-base: 253deg;
  --mpl-color-hsl-saturation: 7%;
  --mpl-color-title: var(--mpl-color-hsl-base), var(--mpl-color-hsl-saturation), 100%;
  --mpl-color-text: var(--mpl-color-hsl-base), var(--mpl-color-hsl-saturation), 75%;
  --mpl-color-meta: var(--mpl-color-hsl-base), var(--mpl-color-hsl-saturation), 60%;
  --mpl-color-border: 251deg 17% 25%;
  --mpl-color-background-base: 250deg;
  --mpl-color-background-saturation: 17%;
  --mpl-color-background: var(--mpl-color-background-base), var(--mpl-color-background-saturation), 14%;
  --mpl-color-background-100: var(--mpl-color-background-base), var(--mpl-color-background-saturation), 20%;
  --mpl-color-background-200: var(--mpl-color-background-base), var(--mpl-color-background-saturation), 18%;
  --mpl-color-background-300: var(--mpl-color-background-base), var(--mpl-color-background-saturation), 16%;
  --mpl--font-size--extra-small: 0.75rem;
  --mpl--font-size--small: 0.875rem;
  --mpl--font-size--medium: 1rem;
  --mpl--font-size--large: 1.125rem;
  --mpl--font-weight--regular: 400;
  --mpl--font-weight--medium: 500;
  --mpl--font-weight--semi-bold: 600;
  --mpl--font-weight--bold: 700;
  --mpl--line-height--tiny: 1;
  --mpl--line-height--small: 1.2;
  --mpl--line-height--medium: 1.4;
  --mpl--line-height--normal: 1.65;
  --mpl--line-height--large: 1.8;
  --mpl--text-transform--uppercase: uppercase;
  --mpl--form--padding-v: 9.5px;
  --mpl--form--padding-h: 12px;
  --mpl--form--min-height: 48px;
  --mpl--form--border-width: 1.5px;
  --mpl--form--border-radius: var(--mpl-border-radius);
  --mpl--form--color: hsl(var(--mpl-color-text));
  --mpl--form--background-color: transparent;
  --mpl--form--border-color: hsl(251deg 17% 30%);
  --mpl--form-focus--color: hsl(var(--mpl-color-title));
  --mpl--form-focus--background-color: transparent;
  --mpl--form-focus--border-color: hsl(var(--mpl-color-title));
  --mpl--form-select--icon: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 9L12 16L5 9" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" opacity="0.5"/></svg>');
  --mpl--form-select-hover--icon: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 9L12 16L5 9" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--form--font-size: var(--mpl--font-size--medium);
  --mpl--form--font-weight: var(--mpl--font-weight--regular);
  --mpl--form--line-height: var(--mpl--line-height--normal);
  --mpl--filter--round: url("#mplFilterRound");
  --mpl--alert--padding-v: 20px;
  --mpl--alert--padding-h: 30px;
  --mpl--alert--border-radius: var(--mpl-border-radius);
  --mpl--alert--background-color: hsl(var(--mpl-color-background-100));
  --mpl--alert--border-color: var(--mpl-color-brand);
  --mpl--alert-danger--border-color: hsl(var(--mpl-color-danger));
  --mpl--alert-success--border-color: hsl(var(--mpl-color-success));
  --mpl--alert-warning--border-color: hsl(var(--mpl-color-warning));
  --mpl--alert-info--border-color: hsl(var(--mpl-color-info));
  --mpl--badge--padding-v: 1px;
  --mpl--badge--padding-h: 11px;
  --mpl--badge--font-size: var(--mpl--font-size--extra-small);
  --mpl--badge--font-weight: var(--mpl--font-weight--semi-bold);
  --mpl--badge--line-height: var(--mpl--line-height--normal);
  --mpl--badge-small--padding-v: 1px;
  --mpl--badge-small--padding-h: 6px;
  --mpl--badge-small--font-size: 0.625rem;
  --mpl--touchspin--width: 125px;
  --mpl--touchspin--height: var(--mpl--form--min-height);
  --mpl--touchspin--button--offset: 10px;
  --mpl--link-styled--color: hsl(var(--mpl-color-title));
  --mpl--link-styled--border-position: 0%;
  --mpl--link-styled--border-width: 5px;
  --mpl--link-styled--border-color: hsla(var(--mpl-color-title), 0.14);
  --mpl--link-styled-hover--border-color: var(--mpl-color-brand);
  --mpl--text-fill--color: hsl(var(--mpl-color-text));
  --mpl--text-fill-hover--color: hsl(var(--mpl-color-title));
  --mpl--text-underline--color: var(--mpl-color-brand);
  --mpl--text-underline--position: 0%;
  --mpl--text-underline--width: 5px;
  --mpl--button--skew: 4px;
  --mpl--button--padding-v: 12.5px;
  --mpl--button--padding-h: 32px;
  --mpl--button--border-radius: var(--mpl-border-radius);
  --mpl--button--color: hsl(var(--mpl-color-white));
  --mpl--button--background-color: var(--mpl-color-brand);
  --mpl--button-hover--color: hsl(var(--mpl-color-black));
  --mpl--button-hover--background-color: hsl(var(--mpl-color-white));
  --mpl--button--font-size: var(--mpl--font-size--small);
  --mpl--button--font-weight: var(--mpl--font-weight--medium);
  --mpl--button--line-height: var(--mpl--line-height--normal);
  --mpl--button--text-transform: var(--mpl--text-transform--uppercase);
  --mpl--button-xs--padding-v: 6.5px;
  --mpl--button-xs--padding-h: 15px;
  --mpl--button-xs--font-size: var(--mpl--font-size--extra-small);
  --mpl--button-sm--padding-v: 10.25px;
  --mpl--button-sm--padding-h: 25px;
  --mpl--button-sm--font-size: var(--mpl--font-size--extra-small);
  --mpl--button-lg--padding-v: 16px;
  --mpl--button-lg--padding-h: 30px;
  --mpl--button-lg--font-size: 0.9375rem;
  --mpl--button-xl--padding-v: 20px;
  --mpl--button-xl--padding-h: 35px;
  --mpl--button-xl--font-size: var(--mpl--font-size--medium);
  --mpl-vertical-rhythm: 28px;
  --mpl-vertical-rhythm-heading: 44px;
  --mpl-vertical-rhythm-block: 60px;
  --mpl-vertical-rhythm-content: 130px;
  --mpl-vertical-rhythm-content-sm: 100px;
  --mpl--blog-horizontal--gap-h: 50px;
  --mpl--blog-horizontal--gap-v: calc(var(--mpl-vertical-rhythm) * 2);
  --mpl--blog-horizontal--image--width: 420px;
  --mpl--blog-horizontal--image--border-radius: var(--mpl-border-radius-lg);
  --mpl--blog-horizontal--image--gap: 30px;
  --mpl--popup-cart--width: 520px;
  --mpl--popup-cart--padding-v: 45px;
  --mpl--popup-cart--padding-h: 45px;
  --mpl--popup-overlay--background-color: hsla(var(--mpl-color-black), 0.8);
  --mpl--popup-overlay--opacity: 1;
  --mpl--widget-item--vertical-rhythm: 4px;
  --mpl--widget-item--gap: 20px;
  --mpl--widget-item--title--font-size: var(--mpl--font-size--large);
  --mpl--widget-item--image--width: 80px;
  --mpl--widget-item--image--height: 80px;
  --mpl--widget-item--image--border-radius: var(--mpl-border-radius-md);
  --mpl--widget-item--image--gap: 15px;
  --mpl--widget-item--image--area: calc(var(--mpl--widget-item--image--width) + var(--mpl--widget-item--image--gap));
  --mpl--widget-item-hover--image--offset: 2px;
  --mpl--media--gap: calc(var(--mpl-vertical-rhythm) * 2);
  --mpl--media--image--width: 44px;
  --mpl--media--image--height: 44px;
  --mpl--media--image--gap: 12px;
  --mpl--media--image--area: calc(var(--mpl--media--image--width) + var(--mpl--media--image--gap));
  --mpl--media--description--gap: calc(var(--mpl-vertical-rhythm) * 0.5);
  --mpl--media--description--padding: var(--mpl-vertical-rhythm) 30px;
  --mpl--media--description--border-radius: var(--mpl-border-radius-md);
  --mpl--media--description--background-color: hsl(var(--mpl-color-background-200));
  --mpl-border-radius: 3px;
  --mpl-border-radius-sm: 2px;
  --mpl-border-radius-md: 5px;
  --mpl-border-radius-lg: 8px;
  --mpl--aspect-ratio--21-9: 42.86%;
  --mpl--aspect-ratio--16-9: 56.25%;
  --mpl--aspect-ratio--4-3: 75%;
  --mpl--aspect-ratio--3-2: 66.67%;
  --mpl--aspect-ratio--1-1: 100%;
  --mpl--aspect-ratio--3-4: 133.33%;
  --mpl-transition-duration: 0.15s;
  --mpl-transition-easing: ease-in-out;
  --mpl-transition-cubic-duration: 0.6s;
  --mpl-transition-cubic-easing: cubic-bezier(0.2, 1, 0.2, 1);
  --mpl--icon--arrow-left: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12.0005L9.9995 6.00099M4 12.0005L9.9995 18M4 12.0005H20" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--arrow-right: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 12.0005L14.0005 6.00099M20 12.0005L14.0005 18M20 12.0005H4" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--search: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 21L15 15M17 10C17 10.9193 16.8189 11.8295 16.4672 12.6788C16.1154 13.5281 15.5998 14.2997 14.9497 14.9497C14.2997 15.5998 13.5281 16.1154 12.6788 16.4672C11.8295 16.8189 10.9193 17 10 17C9.08075 17 8.1705 16.8189 7.32122 16.4672C6.47194 16.1154 5.70026 15.5998 5.05025 14.9497C4.40024 14.2997 3.88463 13.5281 3.53284 12.6788C3.18106 11.8295 3 10.9193 3 10C3 8.14348 3.7375 6.36301 5.05025 5.05025C6.36301 3.7375 8.14348 3 10 3C11.8565 3 13.637 3.7375 14.9497 5.05025C16.2625 6.36301 17 8.14348 17 10Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--spinner: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 12C20 7.58172 16.4183 4 12 4M12 20C7.58172 20 4 16.4183 4 12" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--plus: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 4V20M4 12H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--minus: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--message: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 12C20 16.4183 16.4183 20 12 20H4.88889C4.08341 20 3.71726 18.9941 4.33429 18.4763L5.89321 17.1681C4.71221 15.774 4 13.9702 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--mail: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 7.5C20 6.675 19.28 6 18.4 6H5.6C4.72 6 4 6.675 4 7.5M20 7.5V16.5C20 17.325 19.28 18 18.4 18H5.6C4.72 18 4 17.325 4 16.5V7.5M20 7.5L12 12.75L4 7.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--phone: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.9995 15.9791V18.3877C20.0004 18.6113 19.9545 18.8327 19.8648 19.0375C19.775 19.2424 19.6434 19.4263 19.4783 19.5775C19.3132 19.7286 19.1183 19.8437 18.906 19.9154C18.6938 19.987 18.4689 20.0136 18.2457 19.9935C15.7702 19.725 13.3923 18.8808 11.3031 17.5286C9.35937 16.2959 7.71141 14.6512 6.47627 12.7113C5.11669 10.6168 4.27059 8.23206 4.00653 5.75036C3.98643 5.52834 4.01286 5.30457 4.08416 5.0933C4.15546 4.88203 4.27005 4.6879 4.42065 4.52325C4.57124 4.35861 4.75454 4.22706 4.95886 4.13699C5.16319 4.04691 5.38407 4.00029 5.60744 4.00008H8.02086C8.41128 3.99624 8.78977 4.13422 9.0858 4.3883C9.38182 4.64237 9.57517 4.99521 9.62981 5.38103C9.73168 6.15185 9.92059 6.9087 10.1929 7.63713C10.3012 7.9245 10.3246 8.23682 10.2604 8.53707C10.1963 8.83732 10.0472 9.11292 9.83093 9.33121L8.80925 10.3509C9.95446 12.3609 11.6221 14.0252 13.6361 15.1682L14.6578 14.1485C14.8765 13.9326 15.1527 13.7839 15.4535 13.7198C15.7544 13.6558 16.0673 13.6792 16.3552 13.7872C17.0851 14.059 17.8435 14.2476 18.6158 14.3492C19.0066 14.4042 19.3635 14.6007 19.6186 14.9012C19.8737 15.2017 20.0093 15.5853 19.9995 15.9791Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--cart: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C10.7876 3 9.62485 3.47411 8.76754 4.31802C7.91024 5.16194 7.42862 6.30654 7.42862 7.50001V8.62501H6.28577C6.00442 8.62499 5.73295 8.72714 5.52334 8.91188C5.31374 9.09663 5.18073 9.35099 5.14978 9.62626L4.00694 19.7512C3.98926 19.9085 4.00546 20.0677 4.05449 20.2182C4.10352 20.3689 4.18427 20.5077 4.29147 20.6256C4.39867 20.7434 4.52991 20.8376 4.67663 20.9021C4.82334 20.9667 4.98223 21 5.14293 21H18.857C19.0178 21 19.1767 20.9667 19.3234 20.9021C19.4701 20.8376 19.6013 20.7434 19.7086 20.6256C19.8157 20.5077 19.8965 20.3689 19.9455 20.2182C19.9946 20.0677 20.0108 19.9085 19.993 19.7512L18.8502 9.62626C18.8192 9.35099 18.6863 9.09663 18.4767 8.91188C18.2671 8.72714 17.9956 8.62499 17.7142 8.62501H16.5714V7.50001C16.5714 6.30654 16.0897 5.16194 15.2324 4.31802C14.3752 3.47411 13.2124 3 12 3ZM14.2857 8.62501V7.50001C14.2857 6.90327 14.0449 6.33098 13.6162 5.90902C13.1876 5.48706 12.6062 5.25 12 5.25C11.3938 5.25 10.8125 5.48706 10.3838 5.90902C9.95512 6.33098 9.71431 6.90327 9.71431 7.50001V8.62501H14.2857ZM7.42862 12C7.42862 11.7017 7.54902 11.4155 7.76335 11.2045C7.97767 10.9936 8.26836 10.875 8.57147 10.875C8.87457 10.875 9.16525 10.9936 9.37957 11.2045C9.5939 11.4155 9.71431 11.7017 9.71431 12C9.71431 12.2984 9.5939 12.5845 9.37957 12.7956C9.16525 13.0065 8.87457 13.125 8.57147 13.125C8.26836 13.125 7.97767 13.0065 7.76335 12.7956C7.54902 12.5845 7.42862 12.2984 7.42862 12ZM15.4285 10.875C15.1255 10.875 14.8348 10.9936 14.6204 11.2045C14.4061 11.4155 14.2857 11.7017 14.2857 12C14.2857 12.2984 14.4061 12.5845 14.6204 12.7956C14.8348 13.0065 15.1255 13.125 15.4285 13.125C15.7316 13.125 16.0223 13.0065 16.2367 12.7956C16.451 12.5845 16.5714 12.2984 16.5714 12C16.5714 11.7017 16.451 11.4155 16.2367 11.2045C16.0223 10.9936 15.7316 10.875 15.4285 10.875Z" fill="currentColor"/></svg>');
  --mpl--icon--check: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 7L8.99998 18L4 13" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--check-circle: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 11.2686V12.0046C19.999 13.7297 19.4404 15.4083 18.4074 16.79C17.3746 18.1718 15.9226 19.1826 14.2683 19.6717C12.6139 20.1608 10.8458 20.1021 9.22757 19.5043C7.60934 18.9064 6.22772 17.8015 5.28877 16.3543C4.34981 14.907 3.90383 13.1951 4.01734 11.4736C4.13085 9.75223 4.79777 8.11363 5.91862 6.80224C7.03948 5.49084 8.55423 4.57689 10.237 4.19669C11.9197 3.81651 13.6802 3.99045 15.256 4.69258M20 5.60458L12 13.6126L9.60001 11.2126" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>');
  --mpl--icon--x: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 5L19 19M5 19L19 5" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--eye: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12C4 12 6.90909 6.25 12 6.25C17.0909 6.25 20 12 20 12C20 12 17.0909 17.75 12 17.75C6.90909 17.75 4 12 4 12ZM12 14.1562C13.205 14.1562 14.1818 13.1909 14.1818 12C14.1818 10.8091 13.205 9.84375 12 9.84375C10.795 9.84375 9.81818 10.8091 9.81818 12C9.81818 13.1909 10.795 14.1562 12 14.1562Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--icon--eye-off: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.32 16.32C15.0768 17.2676 13.563 17.7927 12 17.8182C6.90909 17.8182 4 12 4 12C4.90465 10.3141 6.15937 8.84117 7.68 7.68M16.32 16.32L7.68 7.68M16.32 16.32L13.5418 13.5418M7.68 7.68L10.4582 10.4582M13.5418 13.5418C13.3421 13.7561 13.1012 13.9281 12.8336 14.0473C12.566 14.1666 12.277 14.2308 11.9841 14.2359C11.6911 14.2411 11.4001 14.1872 11.1284 14.0775C10.8568 13.9677 10.61 13.8044 10.4028 13.5972C10.1956 13.39 10.0323 13.1432 9.92255 12.8716C9.81281 12.5999 9.75893 12.3089 9.76409 12.0159C9.76927 11.723 9.83339 11.434 9.95264 11.1664C10.0719 10.8988 10.2438 10.6579 10.4582 10.4582M13.5418 13.5418L10.4582 10.4582M4 4L20 20M10.4727 6.35636C10.9733 6.23919 11.4859 6.18061 12 6.18182C17.0909 6.18182 20 12 20 12C19.5585 12.8259 19.0321 13.6034 18.4291 14.32L10.4727 6.35636Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --mpl--page-scrollbar--size: 0%;
  --mpl--page-frame--size: 0%;
}
@media (max-width: 1081.98px) {
  body {
    --mpl--blog-horizontal--image--width: 100%;
    --mpl--blog-horizontal--gap-h: 0%;
  }
}
@media (max-width: 571.98px) {
  body {
    --mpl--popup-cart--padding-v: 30px;
    --mpl--popup-cart--padding-h: 30px;
    --mpl--popup-cart--width: 100%;
  }
}

/* stylelint-disable scss/comment-no-empty */
.post-categories a {
  padding: var(--mpl--badge--padding-v) var(--mpl--badge--padding-h);
  font-size: var(--mpl--badge--font-size);
  font-weight: var(--mpl--badge--font-weight);
  line-height: var(--mpl--badge--line-height);
  color: hsl(var(--mpl-color-white));
  text-transform: var(--mpl--text-transform--uppercase);
  background-color: transparent;
}
.post-categories a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  content: "";
  background-color: var(--mpl-color-brand);
  border-radius: var(--mpl-border-radius);
  transform: skewX(-4deg);
}

.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button, .comment-form .logged-in-as > a, .button,
input[type=button],
input[type=reset],
input[type=submit], .error-404 .button-404, .mpl-post-list > article .mpl-post-list-button, .page-footer .post-edit-link,
.entry-footer .post-edit-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: var(--mpl--button--padding-v) var(--mpl--button--padding-h);
  font-size: var(--mpl--button--font-size);
  color: var(--mpl--button--color);
  text-align: center;
  text-transform: var(--mpl--text-transform--uppercase);
  cursor: pointer;
  background-color: transparent;
  filter: var(--mpl--filter--round);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button::after,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button::after, .comment-form .logged-in-as > a::after, .button::after,
input[type=button]::after,
input[type=reset]::after,
input[type=submit]::after, .error-404 .button-404::after, .mpl-post-list > article .mpl-post-list-button::after, .page-footer .post-edit-link::after,
.entry-footer .post-edit-link::after {
  clip-path: polygon(var(--mpl--button--skew) 0, 100% 0%, calc(100% - var(--mpl--button--skew)) 100%, 0% 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(to bottom left, var(--mpl--button--background-color) 50%, var(--mpl--button-hover--background-color) 50%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 200% 200%;
  border-radius: var(--mpl--button--border-radius);
  transition: background-position var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button > [class*=-icon],
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button > [class*=-icon], .comment-form .logged-in-as > a > [class*=-icon], .button > [class*=-icon],
input[type=button] > [class*=-icon],
input[type=reset] > [class*=-icon],
input[type=submit] > [class*=-icon], .error-404 .button-404 > [class*=-icon], .mpl-post-list > article .mpl-post-list-button > [class*=-icon], .page-footer .post-edit-link > [class*=-icon],
.entry-footer .post-edit-link > [class*=-icon] {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border-radius: 50%;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: translateX(0);
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:disabled,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:disabled, .comment-form .logged-in-as > a:disabled, .button:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
input[type=submit]:disabled, .error-404 .button-404:disabled, .mpl-post-list > article .mpl-post-list-button:disabled, .page-footer .post-edit-link:disabled,
.entry-footer .post-edit-link:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:focus:not(:focus-visible),
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:focus:not(:focus-visible), .comment-form .logged-in-as > a:focus:not(:focus-visible), .button:focus:not(:focus-visible),
input[type=button]:focus:not(:focus-visible),
input[type=reset]:focus:not(:focus-visible),
input[type=submit]:focus:not(:focus-visible), .error-404 .button-404:focus:not(:focus-visible), .mpl-post-list > article .mpl-post-list-button:focus:not(:focus-visible), .page-footer .post-edit-link:focus:not(:focus-visible),
.entry-footer .post-edit-link:focus:not(:focus-visible) {
  outline: none;
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):hover,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):hover, .comment-form .logged-in-as > a:not([disabled], .disabled):hover, .button:not([disabled], .disabled):hover,
input[type=button]:not([disabled], .disabled):hover,
input[type=reset]:not([disabled], .disabled):hover,
input[type=submit]:not([disabled], .disabled):hover, .error-404 .button-404:not([disabled], .disabled):hover, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):hover, .page-footer .post-edit-link:not([disabled], .disabled):hover,
.entry-footer .post-edit-link:not([disabled], .disabled):hover, .mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):focus,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):focus, .comment-form .logged-in-as > a:not([disabled], .disabled):focus, .button:not([disabled], .disabled):focus,
input[type=button]:not([disabled], .disabled):focus,
input[type=reset]:not([disabled], .disabled):focus,
input[type=submit]:not([disabled], .disabled):focus, .error-404 .button-404:not([disabled], .disabled):focus, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):focus, .page-footer .post-edit-link:not([disabled], .disabled):focus,
.entry-footer .post-edit-link:not([disabled], .disabled):focus {
  color: var(--mpl--button-hover--color);
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):hover::after,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):hover::after, .comment-form .logged-in-as > a:not([disabled], .disabled):hover::after, .button:not([disabled], .disabled):hover::after,
input[type=button]:not([disabled], .disabled):hover::after,
input[type=reset]:not([disabled], .disabled):hover::after,
input[type=submit]:not([disabled], .disabled):hover::after, .error-404 .button-404:not([disabled], .disabled):hover::after, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):hover::after, .page-footer .post-edit-link:not([disabled], .disabled):hover::after,
.entry-footer .post-edit-link:not([disabled], .disabled):hover::after, .mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):focus::after,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not([disabled], .disabled):focus::after, .comment-form .logged-in-as > a:not([disabled], .disabled):focus::after, .button:not([disabled], .disabled):focus::after,
input[type=button]:not([disabled], .disabled):focus::after,
input[type=reset]:not([disabled], .disabled):focus::after,
input[type=submit]:not([disabled], .disabled):focus::after, .error-404 .button-404:not([disabled], .disabled):focus::after, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):focus::after, .page-footer .post-edit-link:not([disabled], .disabled):focus::after,
.entry-footer .post-edit-link:not([disabled], .disabled):focus::after {
  background-color: var(--mpl--button--background-color);
  background-position: bottom left;
}
.comment-form .logged-in-as > a:not([disabled], .disabled):hover > [class*=-icon], .button:not([disabled], .disabled):hover > [class*=-icon],
input[type=button]:not([disabled], .disabled):hover > [class*=-icon],
input[type=reset]:not([disabled], .disabled):hover > [class*=-icon],
input[type=submit]:not([disabled], .disabled):hover > [class*=-icon], .error-404 .button-404:not([disabled], .disabled):hover > [class*=-icon], .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):hover > [class*=-icon], .page-footer .post-edit-link:not([disabled], .disabled):hover > [class*=-icon],
.entry-footer .post-edit-link:not([disabled], .disabled):hover > [class*=-icon], .comment-form .logged-in-as > a:not([disabled], .disabled):focus > [class*=-icon], .button:not([disabled], .disabled):focus > [class*=-icon],
input[type=button]:not([disabled], .disabled):focus > [class*=-icon],
input[type=reset]:not([disabled], .disabled):focus > [class*=-icon],
input[type=submit]:not([disabled], .disabled):focus > [class*=-icon], .error-404 .button-404:not([disabled], .disabled):focus > [class*=-icon], .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):focus > [class*=-icon], .page-footer .post-edit-link:not([disabled], .disabled):focus > [class*=-icon],
.entry-footer .post-edit-link:not([disabled], .disabled):focus > [class*=-icon] {
  transform: translateX(1px);
}

.mpl-button-input > input {
  clip-path: polygon(var(--mpl--button--skew) 0, 100% 0%, calc(100% - var(--mpl--button--skew)) 100%, 0% 100%);
  padding: var(--mpl--button--padding-v) var(--mpl--button--padding-h);
  font-size: var(--mpl--button--font-size);
  color: var(--mpl--button--color);
  background-color: transparent;
  background-image: linear-gradient(to bottom left, var(--mpl--button--background-color) 50%, var(--mpl--button-hover--background-color) 50%);
  filter: none;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 200% 200%;
  border-radius: var(--mpl--button--border-radius);
  transition: background-position var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-button-input > input:not([disabled], .disabled):hover, .mpl-button-input > input:not([disabled], .disabled):focus {
  color: var(--mpl--button-hover--color);
  background-color: transparent;
  background-position: bottom left;
}

.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button, .page-footer .post-edit-link,
.entry-footer .post-edit-link {
  padding: var(--mpl--button-sm--padding-v) var(--mpl--button-sm--padding-h);
  font-size: var(--mpl--button-sm--font-size);
}

.button,
input[type=button],
input[type=reset],
input[type=submit] {
  padding: var(--mpl--button--padding-v) var(--mpl--button--padding-h);
  font-size: var(--mpl--button--font-size);
}

.error-404 .button-404 {
  padding: var(--mpl--button-lg--padding-v) var(--mpl--button-lg--padding-h);
  font-size: var(--mpl--button-lg--font-size);
}

.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button.checkout,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout, .button,
input[type=button],
input[type=reset],
input[type=submit], .error-404 .button-404 {
  --mpl--button--color: hsl(var(--mpl-color-white));
  --mpl--button--background-color: var(--mpl-color-brand);
}

.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:not(.checkout),
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout), .mpl-post-list > article .mpl-post-list-button {
  --mpl--button--color: hsl(var(--mpl-color-black));
  --mpl--button--background-color: hsl(var(--mpl-color-white));
}

.page-footer .post-edit-link,
.entry-footer .post-edit-link {
  --mpl--button--color: hsl(var(--mpl-color-white));
  --mpl--button--background-color: hsl(var(--mpl-color-border));
}

.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button:not(.checkout),
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout), .button,
input[type=button],
input[type=reset],
input[type=submit], .mpl-post-list > article .mpl-post-list-button, .page-footer .post-edit-link,
.entry-footer .post-edit-link {
  --mpl--button-hover--color: hsl(var(--mpl-color-white));
  --mpl--button-hover--background-color: var(--mpl-color-brand);
}

.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons .button.checkout,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout, .comment-form .form-submit .submit, .error-404 .button-404 {
  --mpl--button-hover--color: hsl(var(--mpl-color-black));
  --mpl--button-hover--background-color: hsl(var(--mpl-color-white));
}

.comment-form .logged-in-as > a, .mpl-post-list > article .mpl-post-list-button {
  --mpl--button--color: hsl(var(--mpl-color-title));
  --mpl--button-hover--color: hsl(var(--mpl-color-title));
  --mpl--button-hover--background-color: var(--mpl-color-brand);
  padding: 0;
  clip-path: none;
  color: var(--mpl--button--color);
  background-color: transparent;
  background-image: linear-gradient(to top, transparent 0, var(--mpl--button-hover--background-color) 0.001px, var(--mpl--button-hover--background-color) 5px, transparent 5.001px, transparent 100%);
  filter: none;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0 calc(50% + 3px), 100% calc(50% + 3px);
  border-radius: 0;
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.comment-form .logged-in-as > a::after, .mpl-post-list > article .mpl-post-list-button::after {
  display: none;
}
.comment-form .logged-in-as > a > [class*=-icon], .mpl-post-list > article .mpl-post-list-button > [class*=-icon] {
  position: relative;
  margin-right: -30px;
  overflow: hidden;
  border-radius: 50%;
}
.comment-form .logged-in-as > a > [class*=-icon]::before, .mpl-post-list > article .mpl-post-list-button > [class*=-icon]::before, .comment-form .logged-in-as > a > [class*=-icon]::after, .mpl-post-list > article .mpl-post-list-button > [class*=-icon]::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.comment-form .logged-in-as > a > [class*=-icon]::before, .mpl-post-list > article .mpl-post-list-button > [class*=-icon]::before {
  z-index: -1;
  border: 1.5px solid hsl(var(--mpl-color-border));
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.comment-form .logged-in-as > a > [class*=-icon]::after, .mpl-post-list > article .mpl-post-list-button > [class*=-icon]::after {
  z-index: -1;
  background-image: radial-gradient(50% 50% at 50% 50%, var(--mpl--button-hover--background-color) 99.99%, transparent 100%);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0% 100%;
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.comment-form .logged-in-as > a:not([disabled], .disabled):hover, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):hover, .comment-form .logged-in-as > a:not([disabled], .disabled):focus, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):focus {
  color: var(--mpl--button-hover--color);
  background-color: transparent;
  background-image: linear-gradient(to top, transparent 0, var(--mpl--button-hover--background-color) 0.001px, var(--mpl--button-hover--background-color) 5px, transparent 5.001px, transparent 100%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% calc(50% + 3px), 100% calc(50% + 3px);
}
.comment-form .logged-in-as > a:not([disabled], .disabled):hover > [class*=-icon]::before, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):hover > [class*=-icon]::before, .comment-form .logged-in-as > a:not([disabled], .disabled):focus > [class*=-icon]::before, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):focus > [class*=-icon]::before {
  transform: scale(0.95);
}
.comment-form .logged-in-as > a:not([disabled], .disabled):hover > [class*=-icon]::after, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):hover > [class*=-icon]::after, .comment-form .logged-in-as > a:not([disabled], .disabled):focus > [class*=-icon]::after, .mpl-post-list > article .mpl-post-list-button:not([disabled], .disabled):focus > [class*=-icon]::after {
  background-position: left center;
  background-size: 100% 100%;
  transform: scale(0.95);
}

.mpl-fancybox-search .mpl-search-btn, button.mpl-fancybox-close, .widget_search button, .no-results button, .mpl-navbar-icons .menu-item > a,
.mpl-navbar-icons .menu-item > button,
.mpl-navbar-icons .page_item > a,
.mpl-navbar-icons .page_item > button, .site-header .mpl-navbar-nav-icons .menu-item > a,
.site-header .mpl-navbar-nav-icons .menu-item > button,
.site-header .mpl-navbar-nav-icons .page_item > a,
.site-header .mpl-navbar-nav-icons .page_item > button {
  padding: 0;
  clip-path: none;
  filter: none;
}
.mpl-fancybox-search .mpl-search-btn::after, button.mpl-fancybox-close::after, .widget_search button::after, .no-results button::after, .mpl-navbar-icons .menu-item > a::after,
.mpl-navbar-icons .menu-item > button::after,
.mpl-navbar-icons .page_item > a::after,
.mpl-navbar-icons .page_item > button::after, .site-header .mpl-navbar-nav-icons .menu-item > a::after,
.site-header .mpl-navbar-nav-icons .menu-item > button::after,
.site-header .mpl-navbar-nav-icons .page_item > a::after,
.site-header .mpl-navbar-nav-icons .page_item > button::after {
  display: none;
}

.mpl-container, .alignwide, body.content-with-sidebar:not(.content-size-full) .content-area, body.single:not(.content-with-sidebar) .content-area .post-thumbnail,
body.page:not(.content-with-sidebar) .content-area .post-thumbnail, body.single.content-size-container .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-size-container .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-size-container .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-container .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-container .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-container .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce), body.single.content-size-container .page-footer,
body.single.content-size-container .entry-footer,
body.page.content-size-container .page-footer,
body.page.content-size-container .entry-footer, body.single.content-size-container .page-header,
body.single.content-size-container .entry-header,
body.page.content-size-container .page-header,
body.page.content-size-container .entry-header, .content-size-container body.single .comments-area,
.content-size-container body.single .mpl-page-navigation,
.content-size-container body.page .comments-area,
.content-size-container body.page .mpl-page-navigation, .content-size-container body.single .page-footer,
.content-size-container body.single .entry-footer,
.content-size-container body.page .page-footer,
.content-size-container body.page .entry-footer, .content-size-container body.single .page-header,
.content-size-container body.single .entry-header,
.content-size-container body.page .page-header,
.content-size-container body.page .entry-header, .mpl-footer .mpl-footer-container, .blog .content-area,
.search .content-area,
.archive .content-area,
.woocommerce .content-area,
body.single .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single .comments-area,
body.single .mpl-page-navigation,
body.page .comments-area,
body.page .mpl-page-navigation,
body.single .page-footer,
body.single .entry-footer,
body.page .page-footer,
body.page .entry-footer,
body.single .page-header,
body.single .entry-header,
body.page .page-header,
body.page .entry-header,
.site-content > .entry-header,
.mpl-navbar-mobile .mpl-navbar-container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.mpl-container, .alignwide, body.content-with-sidebar:not(.content-size-full) .content-area, body.single:not(.content-with-sidebar) .content-area .post-thumbnail,
body.page:not(.content-with-sidebar) .content-area .post-thumbnail, body.single.content-size-container .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-size-container .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-size-container .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-container .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-container .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-container .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce), body.single.content-size-container .page-footer,
body.single.content-size-container .entry-footer,
body.page.content-size-container .page-footer,
body.page.content-size-container .entry-footer, body.single.content-size-container .page-header,
body.single.content-size-container .entry-header,
body.page.content-size-container .page-header,
body.page.content-size-container .entry-header, .content-size-container body.single .comments-area,
.content-size-container body.single .mpl-page-navigation,
.content-size-container body.page .comments-area,
.content-size-container body.page .mpl-page-navigation, .content-size-container body.single .page-footer,
.content-size-container body.single .entry-footer,
.content-size-container body.page .page-footer,
.content-size-container body.page .entry-footer, .content-size-container body.single .page-header,
.content-size-container body.single .entry-header,
.content-size-container body.page .page-header,
.content-size-container body.page .entry-header, .mpl-footer .mpl-footer-container, .blog .content-area,
.search .content-area,
.archive .content-area,
.woocommerce .content-area {
  width: var(--mpl--container--width);
}

@media (min-width: 1392px) {
  .alignwide {
    width: var(--mpl--container-xl--width);
  }
}

body.single .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce), body.single .comments-area,
body.single .mpl-page-navigation,
body.page .comments-area,
body.page .mpl-page-navigation, body.single .page-footer,
body.single .entry-footer,
body.page .page-footer,
body.page .entry-footer, body.single .page-header,
body.single .entry-header,
body.page .page-header,
body.page .entry-header, .site-content > .entry-header, .mpl-navbar-mobile .mpl-navbar-container {
  width: var(--mpl--container-small--width);
}

select:not([multiple=multiple]) {
  min-height: var(--mpl--form--min-height);
  padding: var(--mpl--form--padding-v) var(--mpl--form--padding-h);
  font-size: var(--mpl--form--font-size);
  line-height: var(--mpl--form--line-height);
}

.wp-block-search .wp-block-search__input, input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  position: relative;
  display: block;
  width: 100%;
  min-height: var(--mpl--form--min-height);
  padding: var(--mpl--form--padding-v) var(--mpl--form--padding-h);
  font-size: var(--mpl--form--font-size);
  font-weight: var(--mpl--form--font-weight);
  line-height: var(--mpl--form--line-height);
  color: var(--mpl--form--color);
  background-color: var(--mpl--form--background-color);
  border: var(--mpl--form--border-width) solid var(--mpl--form--border-color);
  border-radius: var(--mpl--form--border-radius);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), border-color var(--mpl-transition-duration) var(--mpl-transition-easing), background var(--mpl-transition-duration) var(--mpl-transition-easing);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wp-block-search .wp-block-search__input:not([disabled], :disabled):focus, input[type=text]:not([disabled], :disabled):focus,
input[type=email]:not([disabled], :disabled):focus,
input[type=url]:not([disabled], :disabled):focus,
input[type=password]:not([disabled], :disabled):focus,
input[type=search]:not([disabled], :disabled):focus,
input[type=number]:not([disabled], :disabled):focus,
input[type=tel]:not([disabled], :disabled):focus,
input[type=range]:not([disabled], :disabled):focus,
input[type=date]:not([disabled], :disabled):focus,
input[type=month]:not([disabled], :disabled):focus,
input[type=week]:not([disabled], :disabled):focus,
input[type=time]:not([disabled], :disabled):focus,
input[type=datetime]:not([disabled], :disabled):focus,
input[type=datetime-local]:not([disabled], :disabled):focus,
input[type=color]:not([disabled], :disabled):focus,
textarea:not([disabled], :disabled):focus,
select:not([disabled], :disabled):focus {
  color: var(--mpl--form-focus--color);
  background-color: var(--mpl--form-focus--background-color);
  border-color: var(--mpl--form-focus--border-color);
  outline: none;
}

select:not([multiple=multiple]) {
  padding-right: 35px;
  background-color: var(--mpl--form--background-color);
  background-image: var(--mpl--form-select--icon);
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) 50%;
  background-size: 16px;
}
select:not([multiple=multiple]) option {
  background-color: hsl(var(--mpl-color-background));
}
select:hover:not([multiple=multiple]), select:focus:not([multiple=multiple]) {
  background-image: var(--mpl--form-select-hover--icon);
}
select:not([multiple=multiple])::-ms-expand {
  display: none;
}

textarea {
  height: 140px;
  min-height: var(--mpl--form--min-height);
}
textarea::-moz-placeholder {
  line-height: inherit;
}
textarea::placeholder {
  line-height: inherit;
}

label {
  display: inline-block;
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
  font-size: var(--mpl--font-size--medium);
  font-weight: var(--mpl--font-weight--regular);
  color: hsl(var(--mpl-color-text));
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: hsl(var(--mpl-color-text));
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder,
select::placeholder {
  color: hsl(var(--mpl-color-text));
}

.comment .says, .screen-reader-text, .updated:not(.published) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
  border: 0;
}
.comment .says:focus, .screen-reader-text:focus, .updated:focus:not(.published) {
  top: 5px;
  left: 5px;
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  clip: auto !important;
  clip-path: none;
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--font-weight--bold);
  line-height: normal;
  color: #21759b;
  text-decoration: none;
  background-color: #f1f1f1;
  border-radius: var(--mpl-border-radius);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  /* Above WP toolbar. */
}

.widget > .wp-widget-group__inner-blocks > p > a:not([class]),
.widget > p > a:not([class]), .mpl-ticker-inner a,
.comments-area .comment-content a,
.mpl-footer-copyright p a,
.widget .textwidget p a:not(.button), .page-content blockquote a,
.page-content figcaption > a,
.page-content dt a,
.page-content dd a,
.page-content p:not(.wp-block-tag-cloud, .lost_password) > a:not(.button),
.page-content .ghostkit-twitter-profile-description a,
.page-content .ghostkit-twitter-profile-website a,
.page-content .ghostkit-twitter-item-text a,
.page-content .account-orders-table tbody a:not(.button),
.page-content .woocommerce-Addresses .woocommerce-Address-title .edit,
.page-content > ul:not([class]) li a,
.page-content > ol:not([class]) li a,
.entry-content blockquote a,
.entry-content figcaption > a,
.entry-content dt a,
.entry-content dd a,
.entry-content p:not(.wp-block-tag-cloud, .lost_password) > a:not(.button),
.entry-content .ghostkit-twitter-profile-description a,
.entry-content .ghostkit-twitter-profile-website a,
.entry-content .ghostkit-twitter-item-text a,
.entry-content .account-orders-table tbody a:not(.button),
.entry-content .woocommerce-Addresses .woocommerce-Address-title .edit,
.entry-content > ul:not([class]) li a,
.entry-content > ol:not([class]) li a,
.entry-summary blockquote a,
.entry-summary figcaption > a,
.entry-summary dt a,
.entry-summary dd a,
.entry-summary p:not(.wp-block-tag-cloud, .lost_password) > a:not(.button),
.entry-summary .ghostkit-twitter-profile-description a,
.entry-summary .ghostkit-twitter-profile-website a,
.entry-summary .ghostkit-twitter-item-text a,
.entry-summary .account-orders-table tbody a:not(.button),
.entry-summary .woocommerce-Addresses .woocommerce-Address-title .edit,
.entry-summary > ul:not([class]) li a,
.entry-summary > ol:not([class]) li a {
  color: var(--mpl--link-styled--color);
  background-image: linear-gradient(to top, transparent 0, var(--mpl--link-styled-hover--border-color) 0.001px, var(--mpl--link-styled-hover--border-color) var(--mpl--link-styled--border-width), transparent calc(var(--mpl--link-styled--border-width) + 0.001px), transparent 100%), linear-gradient(to top, transparent 0, var(--mpl--link-styled--border-color) 0.001px, var(--mpl--link-styled--border-color) var(--mpl--link-styled--border-width), transparent calc(var(--mpl--link-styled--border-width) + 0.001px), transparent 100%);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0 calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position)), 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position)), 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position)), 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.widget > .wp-widget-group__inner-blocks > p > a:hover:not([class]),
.widget > p > a:hover:not([class]), .mpl-ticker-inner a:hover,
.comments-area .comment-content a:hover,
.mpl-footer-copyright p a:hover,
.widget .textwidget p a:hover:not(.button), .page-content blockquote a:hover,
.page-content figcaption > a:hover,
.page-content dt a:hover,
.page-content dd a:hover,
.page-content p:not(.wp-block-tag-cloud, .lost_password) > a:hover:not(.button),
.page-content .ghostkit-twitter-profile-description a:hover,
.page-content .ghostkit-twitter-profile-website a:hover,
.page-content .ghostkit-twitter-item-text a:hover,
.page-content .account-orders-table tbody a:hover:not(.button),
.page-content .woocommerce-Addresses .woocommerce-Address-title .edit:hover,
.page-content > ul:not([class]) li a:hover,
.page-content > ol:not([class]) li a:hover,
.entry-content blockquote a:hover,
.entry-content figcaption > a:hover,
.entry-content dt a:hover,
.entry-content dd a:hover,
.entry-content p:not(.wp-block-tag-cloud, .lost_password) > a:hover:not(.button),
.entry-content .ghostkit-twitter-profile-description a:hover,
.entry-content .ghostkit-twitter-profile-website a:hover,
.entry-content .ghostkit-twitter-item-text a:hover,
.entry-content .account-orders-table tbody a:hover:not(.button),
.entry-content .woocommerce-Addresses .woocommerce-Address-title .edit:hover,
.entry-content > ul:not([class]) li a:hover,
.entry-content > ol:not([class]) li a:hover,
.entry-summary blockquote a:hover,
.entry-summary figcaption > a:hover,
.entry-summary dt a:hover,
.entry-summary dd a:hover,
.entry-summary p:not(.wp-block-tag-cloud, .lost_password) > a:hover:not(.button),
.entry-summary .ghostkit-twitter-profile-description a:hover,
.entry-summary .ghostkit-twitter-profile-website a:hover,
.entry-summary .ghostkit-twitter-item-text a:hover,
.entry-summary .account-orders-table tbody a:hover:not(.button),
.entry-summary .woocommerce-Addresses .woocommerce-Address-title .edit:hover,
.entry-summary > ul:not([class]) li a:hover,
.entry-summary > ol:not([class]) li a:hover, .widget > .wp-widget-group__inner-blocks > p > a:focus:not([class]),
.widget > p > a:focus:not([class]), .mpl-ticker-inner a:focus,
.comments-area .comment-content a:focus,
.mpl-footer-copyright p a:focus,
.widget .textwidget p a:focus:not(.button), .page-content blockquote a:focus,
.page-content figcaption > a:focus,
.page-content dt a:focus,
.page-content dd a:focus,
.page-content p:not(.wp-block-tag-cloud, .lost_password) > a:focus:not(.button),
.page-content .ghostkit-twitter-profile-description a:focus,
.page-content .ghostkit-twitter-profile-website a:focus,
.page-content .ghostkit-twitter-item-text a:focus,
.page-content .account-orders-table tbody a:focus:not(.button),
.page-content .woocommerce-Addresses .woocommerce-Address-title .edit:focus,
.page-content > ul:not([class]) li a:focus,
.page-content > ol:not([class]) li a:focus,
.entry-content blockquote a:focus,
.entry-content figcaption > a:focus,
.entry-content dt a:focus,
.entry-content dd a:focus,
.entry-content p:not(.wp-block-tag-cloud, .lost_password) > a:focus:not(.button),
.entry-content .ghostkit-twitter-profile-description a:focus,
.entry-content .ghostkit-twitter-profile-website a:focus,
.entry-content .ghostkit-twitter-item-text a:focus,
.entry-content .account-orders-table tbody a:focus:not(.button),
.entry-content .woocommerce-Addresses .woocommerce-Address-title .edit:focus,
.entry-content > ul:not([class]) li a:focus,
.entry-content > ol:not([class]) li a:focus,
.entry-summary blockquote a:focus,
.entry-summary figcaption > a:focus,
.entry-summary dt a:focus,
.entry-summary dd a:focus,
.entry-summary p:not(.wp-block-tag-cloud, .lost_password) > a:focus:not(.button),
.entry-summary .ghostkit-twitter-profile-description a:focus,
.entry-summary .ghostkit-twitter-profile-website a:focus,
.entry-summary .ghostkit-twitter-item-text a:focus,
.entry-summary .account-orders-table tbody a:focus:not(.button),
.entry-summary .woocommerce-Addresses .woocommerce-Address-title .edit:focus,
.entry-summary > ul:not([class]) li a:focus,
.entry-summary > ol:not([class]) li a:focus, .widget > .wp-widget-group__inner-blocks > p > a:active:not([class]),
.widget > p > a:active:not([class]), .mpl-ticker-inner a:active,
.comments-area .comment-content a:active,
.mpl-footer-copyright p a:active,
.widget .textwidget p a:active:not(.button), .page-content blockquote a:active,
.page-content figcaption > a:active,
.page-content dt a:active,
.page-content dd a:active,
.page-content p:not(.wp-block-tag-cloud, .lost_password) > a:active:not(.button),
.page-content .ghostkit-twitter-profile-description a:active,
.page-content .ghostkit-twitter-profile-website a:active,
.page-content .ghostkit-twitter-item-text a:active,
.page-content .account-orders-table tbody a:active:not(.button),
.page-content .woocommerce-Addresses .woocommerce-Address-title .edit:active,
.page-content > ul:not([class]) li a:active,
.page-content > ol:not([class]) li a:active,
.entry-content blockquote a:active,
.entry-content figcaption > a:active,
.entry-content dt a:active,
.entry-content dd a:active,
.entry-content p:not(.wp-block-tag-cloud, .lost_password) > a:active:not(.button),
.entry-content .ghostkit-twitter-profile-description a:active,
.entry-content .ghostkit-twitter-profile-website a:active,
.entry-content .ghostkit-twitter-item-text a:active,
.entry-content .account-orders-table tbody a:active:not(.button),
.entry-content .woocommerce-Addresses .woocommerce-Address-title .edit:active,
.entry-content > ul:not([class]) li a:active,
.entry-content > ol:not([class]) li a:active,
.entry-summary blockquote a:active,
.entry-summary figcaption > a:active,
.entry-summary dt a:active,
.entry-summary dd a:active,
.entry-summary p:not(.wp-block-tag-cloud, .lost_password) > a:active:not(.button),
.entry-summary .ghostkit-twitter-profile-description a:active,
.entry-summary .ghostkit-twitter-profile-website a:active,
.entry-summary .ghostkit-twitter-item-text a:active,
.entry-summary .account-orders-table tbody a:active:not(.button),
.entry-summary .woocommerce-Addresses .woocommerce-Address-title .edit:active,
.entry-summary > ul:not([class]) li a:active,
.entry-summary > ol:not([class]) li a:active {
  background-position: left center;
  background-size: 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position)), 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position)), 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position)), 100% calc(50% + var(--mpl--link-styled--border-width) + var(--mpl--link-styled--border-position));
}

.comment .comment-metadata > a, .entry-meta a {
  color: var(--mpl--text-fill--color);
  background-color: var(--mpl--text-fill--color);
  background-image: linear-gradient(to top, var(--mpl--text-fill-hover--color) 0, var(--mpl--text-fill-hover--color) 100%);
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 0, 100%;
  -webkit-text-fill-color: transparent;
}

.comment .comment-metadata > a:hover, .comment .comment-metadata > a:focus, .entry-meta a:hover, .entry-meta a:focus {
  color: var(--mpl--text-fill-hover--color);
  background-position: left center;
  background-size: 100%, 100%;
}

.wp-block-rss .wp-block-rss__item-title > a, .wp-block-navigation .wp-block-navigation-item__content > span, ul.wp-block-latest-posts li > a > span,
ul.wp-block-latest-posts .wp-block-latest-posts__post-title > span, .wp-block-latest-comments .wp-block-latest-comments__comment-meta a, .widget_nav_menu .menu > li a, .widget_rss ul > li > .rsswidget, .widget_recent_comments ul > li a, .widget > .wp-block-group > .wp-block-group__inner-container > h2,
.widget h2.widgettitle, .comment .comment-reply-link, .comment .comment-edit-link, .comment .comment-author > b > a, .mpl-post-list > article .entry-title > a,
.mpl-post-list > article .page-title > a, .mpl-navbar-mobile ul.sub-menu > .menu-item > a,
.mpl-navbar-mobile ul.sub-menu > .page_item > a,
.mpl-navbar-mobile .children > .menu-item > a,
.mpl-navbar-mobile .children > .page_item > a, .mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a, .site-header ul.sub-menu .menu-item > a > span,
.site-header ul.sub-menu .page_item > a > span,
.site-header .children .menu-item > a > span,
.site-header .children .page_item > a > span, .site-header ul.menu > .menu-item > a > span,
.site-header ul.menu > .page_item > a > span,
.site-header .menu > ul > .menu-item > a > span,
.site-header .menu > ul > .page_item > a > span, .wp-block-calendar .wp-calendar-nav > span > a, .widget_calendar .calendar_wrap .wp-calendar-nav > span > a, .wp-block-tag-cloud > a, .widget_tag_cloud .tagcloud > a, .mpl-tags > div > a, ul.wp-block-categories li > a > span,
ul.wp-block-archives li > a > span,
ul.wp-block-pages li > a > span,
ul.wp-block-page-list li > a > span,
ul.wp-block-meta li > a > span, .widget_recent_comments > ul li > a > span, .widget_recent_entries > ul li > a > span, .widget_meta > ul li > a > span, .widget_pages > ul li > a > span, .widget_archive > ul li > a > span, .widget_categories > ul li > a > span {
  background-image: linear-gradient(to top, transparent 0, var(--mpl--text-underline--color) 0.001px, var(--mpl--text-underline--color) var(--mpl--text-underline--width), transparent calc(var(--mpl--text-underline--width) + 0.001px), transparent 100%);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0 calc(50% + var(--mpl--text-underline--width) + var(--mpl--text-underline--position)), 100% calc(50% + var(--mpl--text-underline--width) + var(--mpl--text-underline--position));
}

.wp-block-rss .wp-block-rss__item-title > a:hover, .wp-block-rss .wp-block-rss__item-title > a:focus, .wp-block-navigation .wp-block-navigation-item__content:hover > span, .wp-block-navigation .wp-block-navigation-item__content:focus > span, ul.wp-block-latest-posts li > a:hover > span, ul.wp-block-latest-posts li > a:focus > span,
ul.wp-block-latest-posts .wp-block-latest-posts__post-title:hover > span,
ul.wp-block-latest-posts .wp-block-latest-posts__post-title:focus > span, .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover, .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:focus, .widget_nav_menu .menu-item-has-children.show > a, .widget_nav_menu .menu > li a:hover, .widget_nav_menu .menu > li a:focus, .widget_rss ul > li > .rsswidget:hover, .widget_rss ul > li > .rsswidget:focus, .widget_recent_comments ul > li a:hover, .widget_recent_comments ul > li a:focus, .widget > .wp-block-group > .wp-block-group__inner-container > h2,
.widget h2.widgettitle, .comment .comment-reply-link:hover, .comment .comment-reply-link:focus, .comment .comment-edit-link:hover, .comment .comment-edit-link:focus, .comment .comment-author > b > a:hover, .comment .comment-author > b > a:focus, .mpl-post-list > article .entry-title > a:hover, .mpl-post-list > article .entry-title > a:focus,
.mpl-post-list > article .page-title > a:hover,
.mpl-post-list > article .page-title > a:focus, .mpl-navbar-mobile ul.sub-menu .current-menu-item > a,
.mpl-navbar-mobile ul.sub-menu .current-menu-item > a:hover,
.mpl-navbar-mobile ul.sub-menu .current-menu-item > a:focus,
.mpl-navbar-mobile ul.sub-menu .current-menu-parent > a,
.mpl-navbar-mobile ul.sub-menu .current-menu-parent > a:hover,
.mpl-navbar-mobile ul.sub-menu .current-menu-parent > a:focus,
.mpl-navbar-mobile ul.sub-menu .current-menu-ancestor > a,
.mpl-navbar-mobile ul.sub-menu .current-menu-ancestor > a:hover,
.mpl-navbar-mobile ul.sub-menu .current-menu-ancestor > a:focus,
.mpl-navbar-mobile ul.sub-menu .current_page_item > a,
.mpl-navbar-mobile ul.sub-menu .current_page_item > a:hover,
.mpl-navbar-mobile ul.sub-menu .current_page_item > a:focus,
.mpl-navbar-mobile ul.sub-menu .current_page_parent > a,
.mpl-navbar-mobile ul.sub-menu .current_page_parent > a:hover,
.mpl-navbar-mobile ul.sub-menu .current_page_parent > a:focus,
.mpl-navbar-mobile ul.sub-menu .current_page_ancestor > a,
.mpl-navbar-mobile ul.sub-menu .current_page_ancestor > a:hover,
.mpl-navbar-mobile ul.sub-menu .current_page_ancestor > a:focus,
.mpl-navbar-mobile .children .current-menu-item > a,
.mpl-navbar-mobile .children .current-menu-item > a:hover,
.mpl-navbar-mobile .children .current-menu-item > a:focus,
.mpl-navbar-mobile .children .current-menu-parent > a,
.mpl-navbar-mobile .children .current-menu-parent > a:hover,
.mpl-navbar-mobile .children .current-menu-parent > a:focus,
.mpl-navbar-mobile .children .current-menu-ancestor > a,
.mpl-navbar-mobile .children .current-menu-ancestor > a:hover,
.mpl-navbar-mobile .children .current-menu-ancestor > a:focus,
.mpl-navbar-mobile .children .current_page_item > a,
.mpl-navbar-mobile .children .current_page_item > a:hover,
.mpl-navbar-mobile .children .current_page_item > a:focus,
.mpl-navbar-mobile .children .current_page_parent > a,
.mpl-navbar-mobile .children .current_page_parent > a:hover,
.mpl-navbar-mobile .children .current_page_parent > a:focus,
.mpl-navbar-mobile .children .current_page_ancestor > a,
.mpl-navbar-mobile .children .current_page_ancestor > a:hover,
.mpl-navbar-mobile .children .current_page_ancestor > a:focus, .mpl-navbar-mobile ul.sub-menu > .menu-item-has-children.show > a,
.mpl-navbar-mobile ul.sub-menu > .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile ul.sub-menu > .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children.show > a,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children.show > a:hover,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children.show > a:focus,
.mpl-navbar-mobile .children > .menu-item-has-children.show > a,
.mpl-navbar-mobile .children > .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile .children > .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile .children > .page_item_has_children.show > a,
.mpl-navbar-mobile .children > .page_item_has_children.show > a:hover,
.mpl-navbar-mobile .children > .page_item_has_children.show > a:focus, .mpl-navbar-mobile ul.sub-menu > .menu-item > a:hover, .mpl-navbar-mobile ul.sub-menu > .menu-item > a:focus,
.mpl-navbar-mobile ul.sub-menu > .page_item > a:hover,
.mpl-navbar-mobile ul.sub-menu > .page_item > a:focus,
.mpl-navbar-mobile .children > .menu-item > a:hover,
.mpl-navbar-mobile .children > .menu-item > a:focus,
.mpl-navbar-mobile .children > .page_item > a:hover,
.mpl-navbar-mobile .children > .page_item > a:focus, .mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-parent > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-ancestor > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_item > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_parent > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_ancestor > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-parent > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-ancestor > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_parent > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_ancestor > a:focus, .mpl-navbar-mobile .mpl-navbar-body > div > ul .menu-item-has-children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .page_item_has_children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .page_item_has_children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .page_item_has_children.show > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .menu-item-has-children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .page_item_has_children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .page_item_has_children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .page_item_has_children.show > a:focus, .mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a:hover, .mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a:focus, .site-header ul.sub-menu .menu-item-has-children:hover > a > span, .site-header ul.sub-menu .menu-item-has-children.focus > a > span,
.site-header ul.sub-menu .page_item_has_children:hover > a > span,
.site-header ul.sub-menu .page_item_has_children.focus > a > span,
.site-header .children .menu-item-has-children:hover > a > span,
.site-header .children .menu-item-has-children.focus > a > span,
.site-header .children .page_item_has_children:hover > a > span,
.site-header .children .page_item_has_children.focus > a > span, .site-header ul.sub-menu .current-menu-item > a > span,
.site-header ul.sub-menu .current-menu-parent > a > span,
.site-header ul.sub-menu .current-menu-ancestor > a > span,
.site-header ul.sub-menu .current_page_item > a > span,
.site-header ul.sub-menu .current_page_parent > a > span,
.site-header ul.sub-menu .current_page_ancestor > a > span,
.site-header .children .current-menu-item > a > span,
.site-header .children .current-menu-parent > a > span,
.site-header .children .current-menu-ancestor > a > span,
.site-header .children .current_page_item > a > span,
.site-header .children .current_page_parent > a > span,
.site-header .children .current_page_ancestor > a > span, .site-header ul.sub-menu .menu-item > a:hover > span, .site-header ul.sub-menu .menu-item > a:focus > span,
.site-header ul.sub-menu .page_item > a:hover > span,
.site-header ul.sub-menu .page_item > a:focus > span,
.site-header .children .menu-item > a:hover > span,
.site-header .children .menu-item > a:focus > span,
.site-header .children .page_item > a:hover > span,
.site-header .children .page_item > a:focus > span, .site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a > span,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a > span,
.site-header .ghost-mega-menu > .children > .menu-item > a > span,
.site-header .ghost-mega-menu > .children > .page_item > a > span, .site-header ul.menu .current-menu-item > a > span,
.site-header ul.menu .current-menu-parent > a > span,
.site-header ul.menu .current-menu-ancestor > a > span,
.site-header ul.menu .current_page_item > a > span,
.site-header ul.menu .current_page_parent > a > span,
.site-header ul.menu .current_page_ancestor > a > span,
.site-header .menu > ul .current-menu-item > a > span,
.site-header .menu > ul .current-menu-parent > a > span,
.site-header .menu > ul .current-menu-ancestor > a > span,
.site-header .menu > ul .current_page_item > a > span,
.site-header .menu > ul .current_page_parent > a > span,
.site-header .menu > ul .current_page_ancestor > a > span, .site-header ul.menu > .menu-item-has-children.focus > a > span, .site-header ul.menu > .menu-item-has-children:hover > a > span,
.site-header ul.menu > .page_item_has_children.focus > a > span,
.site-header ul.menu > .page_item_has_children:hover > a > span,
.site-header .menu > ul > .menu-item-has-children.focus > a > span,
.site-header .menu > ul > .menu-item-has-children:hover > a > span,
.site-header .menu > ul > .page_item_has_children.focus > a > span,
.site-header .menu > ul > .page_item_has_children:hover > a > span, .site-header ul.menu > .menu-item > a:hover > span, .site-header ul.menu > .menu-item > a:focus > span,
.site-header ul.menu > .page_item > a:hover > span,
.site-header ul.menu > .page_item > a:focus > span,
.site-header .menu > ul > .menu-item > a:hover > span,
.site-header .menu > ul > .menu-item > a:focus > span,
.site-header .menu > ul > .page_item > a:hover > span,
.site-header .menu > ul > .page_item > a:focus > span, .wp-block-calendar .wp-calendar-nav > span > a:hover, .widget_calendar .calendar_wrap .wp-calendar-nav > span > a:hover, .wp-block-calendar .wp-calendar-nav > span > a:focus, .widget_calendar .calendar_wrap .wp-calendar-nav > span > a:focus, .wp-block-tag-cloud > a:hover, .widget_tag_cloud .tagcloud > a:hover, .mpl-tags > div > a:hover, .wp-block-tag-cloud > a:focus, .widget_tag_cloud .tagcloud > a:focus, .mpl-tags > div > a:focus, ul.wp-block-categories li > a:hover > span,
ul.wp-block-archives li > a:hover > span,
ul.wp-block-pages li > a:hover > span,
ul.wp-block-page-list li > a:hover > span,
ul.wp-block-meta li > a:hover > span, .widget_recent_comments > ul li > a:hover > span, .widget_recent_entries > ul li > a:hover > span, .widget_meta > ul li > a:hover > span, .widget_pages > ul li > a:hover > span, .widget_archive > ul li > a:hover > span, .widget_categories > ul li > a:hover > span, ul.wp-block-categories li > a:focus > span,
ul.wp-block-archives li > a:focus > span,
ul.wp-block-pages li > a:focus > span,
ul.wp-block-page-list li > a:focus > span,
ul.wp-block-meta li > a:focus > span, .widget_recent_comments > ul li > a:focus > span, .widget_recent_entries > ul li > a:focus > span, .widget_meta > ul li > a:focus > span, .widget_pages > ul li > a:focus > span, .widget_archive > ul li > a:focus > span, .widget_categories > ul li > a:focus > span {
  background-position: left center;
  background-size: 100% calc(50% + var(--mpl--text-underline--width) + var(--mpl--text-underline--position)), 100% calc(50% + var(--mpl--text-underline--width) + var(--mpl--text-underline--position));
}

ul.wp-block-categories,
ul.wp-block-archives,
ul.wp-block-pages,
ul.wp-block-page-list,
ul.wp-block-meta, .widget_recent_comments > ul, .widget_recent_entries > ul, .widget_meta > ul, .widget_pages > ul, .widget_archive > ul, .widget_categories > ul {
  --mpl--widget-list--gap: calc(var(--mpl-vertical-rhythm) * 0.5);
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}
ul.wp-block-categories ul,
ul.wp-block-archives ul,
ul.wp-block-pages ul,
ul.wp-block-page-list ul,
ul.wp-block-meta ul, .widget_recent_comments > ul ul, .widget_recent_entries > ul ul, .widget_meta > ul ul, .widget_pages > ul ul, .widget_archive > ul ul, .widget_categories > ul ul {
  padding-left: 0;
  margin-top: var(--mpl--widget-list--gap);
  margin-bottom: 0;
}
ul.wp-block-categories li,
ul.wp-block-archives li,
ul.wp-block-pages li,
ul.wp-block-page-list li,
ul.wp-block-meta li, .widget_recent_comments > ul li, .widget_recent_entries > ul li, .widget_meta > ul li, .widget_pages > ul li, .widget_archive > ul li, .widget_categories > ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  color: hsl(var(--mpl-color-meta));
}
ul.wp-block-categories li + li,
ul.wp-block-archives li + li,
ul.wp-block-pages li + li,
ul.wp-block-page-list li + li,
ul.wp-block-meta li + li, .widget_recent_comments > ul li + li, .widget_recent_entries > ul li + li, .widget_meta > ul li + li, .widget_pages > ul li + li, .widget_archive > ul li + li, .widget_categories > ul li + li {
  margin-top: var(--mpl--widget-list--gap);
}
ul.wp-block-categories li > a,
ul.wp-block-archives li > a,
ul.wp-block-pages li > a,
ul.wp-block-page-list li > a,
ul.wp-block-meta li > a, .widget_recent_comments > ul li > a, .widget_recent_entries > ul li > a, .widget_meta > ul li > a, .widget_pages > ul li > a, .widget_archive > ul li > a, .widget_categories > ul li > a {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  display: inline;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-title));
  text-align: left;
}
ul.wp-block-categories li > a > span,
ul.wp-block-archives li > a > span,
ul.wp-block-pages li > a > span,
ul.wp-block-page-list li > a > span,
ul.wp-block-meta li > a > span, .widget_recent_comments > ul li > a > span, .widget_recent_entries > ul li > a > span, .widget_meta > ul li > a > span, .widget_pages > ul li > a > span, .widget_archive > ul li > a > span, .widget_categories > ul li > a > span {
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
ul.wp-block-categories li > a::after,
ul.wp-block-archives li > a::after,
ul.wp-block-pages li > a::after,
ul.wp-block-page-list li > a::after,
ul.wp-block-meta li > a::after, .widget_recent_comments > ul li > a::after, .widget_recent_entries > ul li > a::after, .widget_meta > ul li > a::after, .widget_pages > ul li > a::after, .widget_archive > ul li > a::after, .widget_categories > ul li > a::after {
  position: absolute;
  top: calc(var(--mpl--widget-list--gap) * -0.5);
  right: 0;
  bottom: calc(var(--mpl--widget-list--gap) * -0.5);
  left: 0;
  visibility: visible;
  content: "";
}
ul.wp-block-categories li > a:hover,
ul.wp-block-archives li > a:hover,
ul.wp-block-pages li > a:hover,
ul.wp-block-page-list li > a:hover,
ul.wp-block-meta li > a:hover, .widget_recent_comments > ul li > a:hover, .widget_recent_entries > ul li > a:hover, .widget_meta > ul li > a:hover, .widget_pages > ul li > a:hover, .widget_archive > ul li > a:hover, .widget_categories > ul li > a:hover, ul.wp-block-categories li > a:focus,
ul.wp-block-archives li > a:focus,
ul.wp-block-pages li > a:focus,
ul.wp-block-page-list li > a:focus,
ul.wp-block-meta li > a:focus, .widget_recent_comments > ul li > a:focus, .widget_recent_entries > ul li > a:focus, .widget_meta > ul li > a:focus, .widget_pages > ul li > a:focus, .widget_archive > ul li > a:focus, .widget_categories > ul li > a:focus {
  color: hsl(var(--mpl-color-title));
}
ul.wp-block-categories li > ul,
ul.wp-block-archives li > ul,
ul.wp-block-pages li > ul,
ul.wp-block-page-list li > ul,
ul.wp-block-meta li > ul, .widget_recent_comments > ul li > ul, .widget_recent_entries > ul li > ul, .widget_meta > ul li > ul, .widget_pages > ul li > ul, .widget_archive > ul li > ul, .widget_categories > ul li > ul {
  flex: 0 0 100%;
  max-width: 100%;
}
ul.wp-block-categories .current-cat > a,
ul.wp-block-archives .current-cat > a,
ul.wp-block-pages .current-cat > a,
ul.wp-block-page-list .current-cat > a,
ul.wp-block-meta .current-cat > a, .widget_recent_comments > ul .current-cat > a, .widget_recent_entries > ul .current-cat > a, .widget_meta > ul .current-cat > a, .widget_pages > ul .current-cat > a, .widget_archive > ul .current-cat > a, .widget_categories > ul .current-cat > a,
ul.wp-block-categories .current-cat-parent > a,
ul.wp-block-archives .current-cat-parent > a,
ul.wp-block-pages .current-cat-parent > a,
ul.wp-block-page-list .current-cat-parent > a,
ul.wp-block-meta .current-cat-parent > a,
.widget_recent_comments > ul .current-cat-parent > a,
.widget_recent_entries > ul .current-cat-parent > a,
.widget_meta > ul .current-cat-parent > a,
.widget_pages > ul .current-cat-parent > a,
.widget_archive > ul .current-cat-parent > a,
.widget_categories > ul .current-cat-parent > a {
  color: hsl(var(--mpl-color-title));
  background-position: left center;
  background-size: 100% 1.5em, 100% 1.5em;
}
ul.wp-block-categories .aligncenter,
ul.wp-block-archives .aligncenter,
ul.wp-block-pages .aligncenter,
ul.wp-block-page-list .aligncenter,
ul.wp-block-meta .aligncenter, .widget_recent_comments > ul .aligncenter, .widget_recent_entries > ul .aligncenter, .widget_meta > ul .aligncenter, .widget_pages > ul .aligncenter, .widget_archive > ul .aligncenter, .widget_categories > ul .aligncenter {
  text-align: left;
}

ul.wp-block-categories li,
ul.wp-block-pages li,
ul.wp-block-page-list li,
ul.wp-block-archives-list li, .widget_pages > ul li, .widget_archive > ul > li, .widget_categories > ul li {
  position: relative;
  padding-left: 19px;
}
ul.wp-block-categories li::before,
ul.wp-block-pages li::before,
ul.wp-block-page-list li::before,
ul.wp-block-archives-list li::before, .widget_pages > ul li::before, .widget_archive > ul > li::before, .widget_categories > ul li::before {
  position: absolute;
  top: 0.6875em;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  background-color: hsl(var(--mpl-color-white));
  border-radius: 5px;
}

.wp-block-search form, .widget_search form {
  position: relative;
  display: flex;
  align-items: center;
}
.wp-block-search button, .widget_search button,
.wp-block-search .wp-block-search__button,
.widget_search .wp-block-search__button {
  position: absolute;
  top: 50%;
  right: calc(var(--mpl--form--padding-h) - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--mpl--form--min-height) - 10px);
  height: calc(var(--mpl--form--min-height) - 10px);
  padding: 0;
  clip-path: none;
  font-size: 0;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  transition: background-color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: translateY(-50%);
}
.wp-block-search button::after, .widget_search button::after,
.wp-block-search .wp-block-search__button::after,
.widget_search .wp-block-search__button::after {
  position: static;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background-color: hsl(var(--mpl-color-title));
  -webkit-mask-image: var(--mpl--icon--search);
          mask-image: var(--mpl--icon--search);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.wp-block-search button svg, .widget_search button svg,
.wp-block-search .wp-block-search__button svg,
.widget_search .wp-block-search__button svg {
  display: none;
}
.wp-block-search button:not([disabled], .disabled):hover, .widget_search button:not([disabled], .disabled):hover, .wp-block-search button:not([disabled], .disabled):focus, .widget_search button:not([disabled], .disabled):focus,
.wp-block-search .wp-block-search__button:not([disabled], .disabled):hover,
.widget_search .wp-block-search__button:not([disabled], .disabled):hover,
.wp-block-search .wp-block-search__button:not([disabled], .disabled):focus,
.widget_search .wp-block-search__button:not([disabled], .disabled):focus {
  background-color: hsl(var(--mpl-color-border));
}
.wp-block-search button:not([disabled], .disabled):hover::after, .widget_search button:not([disabled], .disabled):hover::after, .wp-block-search button:not([disabled], .disabled):focus::after, .widget_search button:not([disabled], .disabled):focus::after,
.wp-block-search .wp-block-search__button:not([disabled], .disabled):hover::after,
.widget_search .wp-block-search__button:not([disabled], .disabled):hover::after,
.wp-block-search .wp-block-search__button:not([disabled], .disabled):focus::after,
.widget_search .wp-block-search__button:not([disabled], .disabled):focus::after {
  background-color: hsl(var(--mpl-color-title));
}

.wp-block-tag-cloud, .widget_tag_cloud .tagcloud, .mpl-tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
.wp-block-tag-cloud > a, .widget_tag_cloud .tagcloud > a, .mpl-tags > div > a {
  flex: 0 0 auto;
  max-width: 100%;
  position: relative;
  display: inline;
  padding: 0;
  margin-right: 0;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-title));
  text-transform: uppercase;
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.wp-block-tag-cloud > a::before, .widget_tag_cloud .tagcloud > a::before, .mpl-tags > div > a::before {
  content: "#";
}
.wp-block-tag-cloud > a::after, .widget_tag_cloud .tagcloud > a::after, .mpl-tags > div > a::after {
  position: absolute;
  top: -7.5px;
  right: -12.5px;
  bottom: -7.5px;
  left: -12.5px;
  display: block;
  content: "";
}
.wp-block-tag-cloud > a:hover, .widget_tag_cloud .tagcloud > a:hover, .mpl-tags > div > a:hover, .wp-block-tag-cloud > a:focus, .widget_tag_cloud .tagcloud > a:focus, .mpl-tags > div > a:focus {
  color: hsl(var(--mpl-color-title));
}

.wp-block-calendar table, .widget_calendar .calendar_wrap table {
  padding: 30px;
  margin-bottom: 0;
}
@media (max-width: 571.98px) {
  .wp-block-calendar table, .widget_calendar .calendar_wrap table {
    padding: 20px;
  }
}
.wp-block-calendar table caption, .widget_calendar .calendar_wrap table caption {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
  color: hsl(var(--mpl-color-title));
}
.wp-block-calendar table th, .widget_calendar .calendar_wrap table th,
.wp-block-calendar table td,
.widget_calendar .calendar_wrap table td {
  padding: 15px 5px;
  border: 0;
}
@media (max-width: 571.98px) {
  .wp-block-calendar table th, .widget_calendar .calendar_wrap table th,
  .wp-block-calendar table td,
  .widget_calendar .calendar_wrap table td {
    padding: 10px 5px;
  }
}
.wp-block-calendar table th:first-child, .widget_calendar .calendar_wrap table th:first-child,
.wp-block-calendar table td:first-child,
.widget_calendar .calendar_wrap table td:first-child {
  padding-left: 0;
}
.wp-block-calendar table th:last-child, .widget_calendar .calendar_wrap table th:last-child,
.wp-block-calendar table td:last-child,
.widget_calendar .calendar_wrap table td:last-child {
  padding-right: 0;
}
.wp-block-calendar table tr:not(:last-child) td, .widget_calendar .calendar_wrap table tr:not(:last-child) td {
  padding-bottom: 10px;
  border-bottom: 0;
}
.wp-block-calendar table tr:last-child td, .widget_calendar .calendar_wrap table tr:last-child td {
  padding-bottom: 0;
}
.wp-block-calendar table thead th, .widget_calendar .calendar_wrap table thead th {
  padding-top: 0;
  padding-bottom: 20px;
  color: hsl(var(--mpl-color-text));
  text-align: center;
  border-bottom: 2px solid hsl(var(--mpl-color-background-100));
}
.wp-block-calendar table tbody tr:first-child td, .widget_calendar .calendar_wrap table tbody tr:first-child td {
  padding-top: 20px;
}
.wp-block-calendar table tbody td, .widget_calendar .calendar_wrap table tbody td {
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
  text-align: center;
}
.wp-block-calendar table tbody td > a, .widget_calendar .calendar_wrap table tbody td > a {
  color: var(--mpl-color-brand) !important;
}
.wp-block-calendar table tbody td > a:hover, .widget_calendar .calendar_wrap table tbody td > a:hover, .wp-block-calendar table tbody td > a:focus, .widget_calendar .calendar_wrap table tbody td > a:focus {
  color: hsl(var(--mpl-color-title)) !important;
}
.wp-block-calendar #today, .widget_calendar .calendar_wrap #today {
  color: hsl(var(--mpl-color-title));
}
.wp-block-calendar .wp-calendar-nav, .widget_calendar .calendar_wrap .wp-calendar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev,
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next,
.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev {
  text-align: left;
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
  text-align: right;
}
.wp-block-calendar .wp-calendar-nav .pad, .widget_calendar .calendar_wrap .wp-calendar-nav .pad {
  flex: 0 0 auto;
  max-width: 100%;
}
.wp-block-calendar .wp-calendar-nav > span, .widget_calendar .calendar_wrap .wp-calendar-nav > span {
  display: block;
  padding: 0;
}
.wp-block-calendar .wp-calendar-nav > span > a, .widget_calendar .calendar_wrap .wp-calendar-nav > span > a {
  font-size: var(--mpl--button--font-size);
  font-weight: var(--mpl--button--font-weight);
  line-height: var(--mpl--button--line-height);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--button--text-transform);
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.wp-block-calendar .wp-calendar-nav > span > a:hover, .widget_calendar .calendar_wrap .wp-calendar-nav > span > a:hover, .wp-block-calendar .wp-calendar-nav > span > a:focus, .widget_calendar .calendar_wrap .wp-calendar-nav > span > a:focus {
  color: hsl(var(--mpl-color-title));
}

@keyframes mpl-loading-spinner {
  0% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes navbar-top-hide {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 50% 0);
  }
}
@keyframes navbar-top-show {
  0% {
    clip-path: inset(0 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ------------------------------------------------------------------
  Normalize.
 ------------------------------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%; /* 2 */
}

/* Sections
    ========================================================================== */
/**
* Remove the margin in all browsers.
*/
body:not(.mce-content-body) {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
    ========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
    ========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
  border-bottom: none; /* 1 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 87.5%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
    ========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
  border-style: none;
}

/* Forms
    ========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button:not(.components-button),
input {
  /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type=search] {
  outline-offset: -2px; /* 2 */
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; /* 1 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button;
          appearance: button; /* 1 */
}

/* Interactive
    ========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* Misc
    ========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
  display: none;
}

/* ------------------------------------------------------------------

  Base.

 ------------------------------------------------------------------- */
/* ------------------------------------------------------------------
  Base.
 ------------------------------------------------------------------- */
body {
  overflow-x: hidden;
}

.blog .page-header,
.search .page-header,
.archive .page-header,
.woocommerce .page-header {
  padding-bottom: calc(var(--mpl-vertical-rhythm) * 2);
}
.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.entry-summary::before,
.entry-summary::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-content::before,
.site-content::after {
  display: table;
  table-layout: fixed;
  content: "";
}

.clear::after,
.entry-content::after,
.entry-summary::after,
.comment-content::after,
.site-header::after,
.site-content::after {
  clear: both;
}

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

/* ------------------------------------------------------------------
  Scroll smooth.
 ------------------------------------------------------------------- */
:root {
  scroll-behavior: smooth;
}

/* ------------------------------------------------------------------
  Scrollbar.
 ------------------------------------------------------------------- */
body {
  --mpl--scrollbar--width: 12px;
  --mpl--scrollbar--border-width: 4px;
  --mpl--scrollbar--color: hsl(var(--mpl-color-title));
  --mpl--scrollbar--background-color: hsl(var(--mpl-color-background));
}

html:not(.is-mobile) ::-webkit-scrollbar {
  width: var(--mpl--scrollbar--width);
  height: var(--mpl--scrollbar--width);
}
html:not(.is-mobile) ::-webkit-scrollbar-track {
  background-color: var(--mpl--scrollbar--background-color);
}
html:not(.is-mobile) ::-webkit-scrollbar-thumb {
  background-color: var(--mpl--scrollbar--color);
  border: var(--mpl--scrollbar--border-width) solid var(--mpl--scrollbar--background-color);
  border-radius: 6px;
}

/* ------------------------------------------------------------------
  Typography.
 ------------------------------------------------------------------- */
body {
  line-height: var(--mpl--line-height--large);
  color: hsl(var(--mpl-color-text));
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 29px;
  margin-bottom: 29px;
  clear: both;
  color: hsl(var(--mpl-color-title));
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0;
}

h1,
.h1 {
  margin-top: 39px;
}

h2,
.h2 {
  margin-top: 47px;
}

h3,
.h3 {
  margin-top: 50px;
}

h4,
.h4 {
  margin-top: 55px;
}

h5,
.h5 {
  margin-top: 59px;
}

h6,
.h6 {
  margin-top: 63px;
}

a {
  color: hsl(var(--mpl-color-title));
  text-decoration: none;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: var(--mpl-vertical-rhythm);
}

b,
strong {
  font-weight: var(--mpl--font-weight--bold);
}

img,
iframe {
  display: block;
  border-radius: var(--mpl-border-radius);
}

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

cite {
  color: hsl(var(--mpl-color-meta));
}

kbd {
  color: hsl(var(--mpl-color-meta));
}

dd:last-child {
  margin-bottom: 0;
}

address {
  margin: 0 0 1.5em;
  font-size: 1em;
  color: hsl(var(--mpl-color-meta));
}

pre {
  --mpl--scrollbar--background-color: hsl(var(--mpl-color-background-200));
  max-width: 100%;
  padding: 1.7142857143em 2.1428571429em;
  overflow: auto;
  line-height: var(--mpl--line-height--normal);
  background-color: hsl(var(--mpl-color-background-200));
  border-radius: var(--mpl-border-radius);
}
pre, .wp-block-freeform.block-library-rich-text__tinymce pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-text));
}
pre code,
pre kbd,
pre tt,
pre var {
  font-size: inherit;
}

code, .wp-block-freeform.block-library-rich-text__tinymce code,
kbd,
.wp-block-freeform.block-library-rich-text__tinymce kbd,
tt,
.wp-block-freeform.block-library-rich-text__tinymce tt,
var,
.wp-block-freeform.block-library-rich-text__tinymce var {
  display: inline-block;
  padding: 0 6px;
  font-family: inherit;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-title));
  vertical-align: middle;
  background-color: hsl(var(--mpl-color-border));
  border-radius: var(--mpl-border-radius);
}

abbr,
acronym {
  cursor: help;
  border-bottom: 1px dotted hsl(var(--mpl-color-background-300));
}

ins,
mark {
  position: relative;
  padding-right: 2px;
  padding-left: 2px;
  color: hsla(var(--mpl-color-black), 0.7);
  text-decoration: none;
  background: hsl(var(--mpl-color-warning-light));
  border-radius: var(--mpl-border-radius-sm);
}

big {
  font-size: 125%;
}

/* ------------------------------------------------------------------

  layouts.

 ------------------------------------------------------------------- */
/* ------------------------------------------------------------------
  Preloader.
 ------------------------------------------------------------------- */
.mpl-preloader {
  --mpl--preloader--background: hsl(var(--mpl-color-background-300));
  --mpl--preloader--z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--mpl--preloader--z-index);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.mpl-preloader::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  content: "";
  background-color: var(--mpl--preloader--background);
  transition: transform 0.7s cubic-bezier(0.89, 0.13, 0.33, 0.88), clip-path 0.3s ease-out;
  transform: translateY(0);
}

.mpl-preloader-logo {
  position: relative;
  max-width: 100%;
  padding: 7px 0;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.89, 0.13, 0.33, 0.88), opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transition-delay: 0s, 0.1s;
}

.mpl-preloader-animation {
  position: absolute;
  bottom: 5%;
  transition: opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transition-delay: 0.1s;
}
.mpl-preloader-animation > span {
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: center bottom;
  animation: mpl-preloader-animation 1s infinite ease-in-out;
}
.mpl-preloader-animation > span:nth-child(1) {
  animation-delay: 800ms;
}
.mpl-preloader-animation > span:nth-child(2) {
  animation-delay: 600ms;
}
.mpl-preloader-animation > span:nth-child(3) {
  animation-delay: 400ms;
}
.mpl-preloader-animation > span:nth-child(4) {
  animation-delay: 200ms;
}
.mpl-preloader-animation > span:nth-child(6) {
  animation-delay: 200ms;
}
.mpl-preloader-animation > span:nth-child(7) {
  animation-delay: 400ms;
}
.mpl-preloader-animation > span:nth-child(8) {
  animation-delay: 600ms;
}
.mpl-preloader-animation > span:nth-child(9) {
  animation-delay: 800ms;
}
@keyframes mpl-preloader-animation {
  0% {
    opacity: 1;
    transform: scaleY(1.25);
  }
  50% {
    opacity: 0.2;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}

.mpl-preloader-disabled .mpl-preloader {
  display: none;
}

.mpl-preloader-hide {
  pointer-events: none;
}
.mpl-preloader-hide::before {
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  transform: translateY(100%);
}
.mpl-preloader-hide .mpl-preloader-logo {
  opacity: 0;
  transform: translateY(60px);
}
.mpl-preloader-hide .mpl-preloader-animation {
  opacity: 0;
}

/* ------------------------------------------------------------------
  Fade Between Pages.
 ------------------------------------------------------------------- */
.mpl-fade-between-pages {
  --mpl--fade-between-pages--background: hsl(var(--mpl-color-background));
  --mpl--fade-between-pages--transition-duration: 0.3s;
  --mpl--fade-between-pages--transition-easing: ease-in-out;
  --mpl--fade-between-pages--z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--mpl--fade-between-pages--z-index);
  display: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--mpl--fade-between-pages--background);
  opacity: 0;
  transition: var(--mpl--fade-between-pages--transition-duration) opacity var(--mpl--fade-between-pages--transition-easing);
}

.mpl-fade-between-pages-show {
  pointer-events: initial;
  opacity: 1;
}

/* ------------------------------------------------------------------
  Ticker.
 ------------------------------------------------------------------- */
body {
  --mpl--ticker--height: 40px;
}

@keyframes mpl-ticker-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.mpl-ticker {
  position: absolute;
  top: var(--wp-admin--admin-bar--height);
  right: 0;
  left: 0;
  height: var(--mpl--ticker--height);
  overflow: hidden;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-text));
  background-color: hsl(var(--mpl-color-background-100));
}
.mpl-ticker.mpl-ticker-ready .mpl-ticker-inner {
  visibility: visible;
  opacity: 1;
  animation: mpl-ticker-slide 7s infinite linear;
}

.mpl-ticker-pause-hover:hover .mpl-ticker-inner {
  animation-play-state: paused;
}

.mpl-ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s opacity, 0.5s visibility;
}
.mpl-ticker-inner > div {
  padding-left: 15px;
  white-space: nowrap;
}
.mpl-ticker-inner > div::before {
  margin-right: 15px;
  color: hsl(var(--mpl-color-title));
  content: "//";
}

.mpl-ticker-show {
  padding-top: var(--mpl--ticker--height);
}

/* ------------------------------------------------------------------
  Page Frame.
 ------------------------------------------------------------------- */
.mpl-page-frame {
  border: var(--mpl--page-frame--size) solid var(--mpl-page-frame__color);
}
.mpl-page-frame.mpl-ticker-show .mpl-ticker {
  top: calc(var(--wp-admin--admin-bar--height) + var(--mpl--page-frame--size));
  right: var(--mpl--page-frame--size);
  left: var(--mpl--page-frame--size);
}
.mpl-page-frame .mpl-scroll-progress-bar {
  left: calc(var(--mpl--container--padding) + var(--mpl--page-frame--size));
}
.mpl-page-frame .mpl-navbar-icons {
  right: var(--mpl--page-frame--size);
  left: var(--mpl--page-frame--size);
}

/* ------------------------------------------------------------------
  Page Noise.
 ------------------------------------------------------------------- */
.mpl-page-noise {
  --mpl--page-noise--z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--mpl--page-noise--z-index);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mpl-page-noise::after {
  position: absolute;
  top: -10rem;
  left: -10rem;
  display: block;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  content: "";
  background: transparent url("data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2tpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ4IDc5LjE2NDAzNiwgMjAxOS8wOC8xMy0wMTowNjo1NyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpENjg0QjM3RTBGNjMxMUU4QkFFNzhFMURFMjdEQ0Q4OSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5OThGQTcwODNCMTIxMUVBOUQyNkVCMEI5QjgxNUE1NSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5OThGQTcwNzNCMTIxMUVBOUQyNkVCMEI5QjgxNUE1NSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5ZGE5OTYwZi1lYTRkLTQ3YzAtYTYxOS01MTYwZWUyZDQ1NjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDY4NEIzN0UwRjYzMTFFOEJBRTc4RTFERTI3RENEODkiLz4gPC9yZGY6RGVz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") 0;
  animation: noise 1s steps(3) infinite;
}

@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
/* ------------------------------------------------------------------
  Navbar.
 ------------------------------------------------------------------- */
.admin-bar .site-header {
  top: var(--wp-admin--admin-bar--height);
}
@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}

.mpl-navbar-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.site-header,
.mpl-navbar-mobile {
  display: flex;
}
.site-header .menu,
.site-header .sub-menu,
.site-header .mpl-navbar-socials,
.mpl-navbar-mobile .menu,
.mpl-navbar-mobile .sub-menu,
.mpl-navbar-mobile .mpl-navbar-socials {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}

.mpl-navbar-icons .badge, .site-header .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px;
  margin-top: -20px;
  margin-left: -6px;
  font-size: 0;
  font-weight: var(--mpl--font-weight--bold);
  color: hsl(var(--mpl-color-black));
  background-color: var(--mpl-color-brand);
  border-radius: 10px;
}
.mpl-navbar-icons .d-none.badge, .site-header .d-none.badge {
  display: none;
}

body {
  --mpl--navbar-top--min-height: 90px;
}

.site-header {
  --mpl--navbar-top--position: sticky;
  --mpl--navbar-top--background-color: hsl(var(--mpl-color-background-200));
  --mpl--navbar-top--transform: translateY(0);
  --mpl--navbar-top--gap: 30px;
  --mpl--navbar-top--link--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--link-hover--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--link-focus--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--link-active--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--dropdown--gap: 12px;
  --mpl--navbar-top--dropdown--padding-v: 28px;
  --mpl--navbar-top--dropdown--padding-h: 30px;
  --mpl--navbar-top--dropdown--margin: 10px;
  --mpl--navbar-top--dropdown--background-color: hsl(var(--mpl-color-background-200));
  --mpl--navbar-top--dropdown-link--color: hsl(var(--mpl-color-text));
  --mpl--navbar-top--dropdown-link-hover--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--dropdown-link-focus--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--dropdown-link-active--color: hsl(var(--mpl-color-white));
  --mpl--navbar-top--mega-label--color: hsl(var(--mpl-color-title));
  --mpl--navbar-top--mega-borders--color: hsla(var(--mpl-color-white), 0.03);
  --mpl--navbar-top--toggle--width: 20px;
  --mpl--navbar-top--toggle--height: 100%;
  --mpl--navbar-top--toggle-lines--width: 20px;
  --mpl--navbar-top--toggle-lines-small--width: 12px;
  --mpl--navbar-top--toggle-lines--height: 2px;
  position: var(--mpl--navbar-top--position);
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  min-height: var(--mpl--navbar-top--min-height);
  padding-right: var(--mpl--container--padding);
  padding-left: var(--mpl--container--padding);
  background-color: var(--mpl--navbar-top--background-color);
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), background-color 0.2s var(--mpl-transition-easing);
  transform: var(--mpl--navbar-top--transform);
  animation: navbar-top-show var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
@media (max-width: 571.98px) {
  .site-header {
    --mpl--navbar-top--gap: 20px;
  }
}
.site-header .mpl-navbar-toggle {
  position: relative;
  display: none;
  flex-direction: column;
  order: 12;
  width: var(--mpl--navbar-top--toggle--width);
  height: var(--mpl--navbar-top--toggle--height);
  padding: 0;
  margin-left: calc(var(--mpl--navbar-top--gap) * 1.5);
  color: var(--mpl--navbar-top--link--color);
  background-color: transparent;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.site-header .mpl-navbar-toggle::before, .site-header .mpl-navbar-toggle::after {
  position: absolute;
  top: 50%;
  display: block;
  width: var(--mpl--navbar-top--toggle-lines--width);
  height: var(--mpl--navbar-top--toggle-lines--height);
  content: "";
  background-color: currentcolor;
  border-radius: var(--mpl--navbar-top--toggle--width);
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.site-header .mpl-navbar-toggle::before {
  margin-top: 4px;
  transform: scaleX(0.8);
  transform-origin: left;
}
.site-header .mpl-navbar-toggle::after {
  margin-top: -4px;
  transform: scaleX(0.8);
  transform-origin: right;
}
.site-header .mpl-navbar-toggle:hover {
  color: var(--mpl--navbar-top--link-hover--color);
}
.site-header .mpl-navbar-toggle:hover::before, .site-header .mpl-navbar-toggle:hover::after {
  transform: scaleX(1);
}
.site-header .mpl-navbar-toggle:focus {
  color: var(--mpl--navbar-top--link-focus--color);
}
.site-header .mpl-navbar-toggle:focus::before, .site-header .mpl-navbar-toggle:focus::after {
  transform: scaleX(1);
}
.site-header .mpl-navbar-logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 50px;
  flex: 0 0 auto;
  max-width: 100%;
}
.site-header .mpl-navbar-nav ~ .mpl-navbar-nav {
  margin-left: 50px;
}
.site-header nav.mpl-navbar-nav {
  align-self: stretch;
  width: 100%;
  height: 100%;
}
.site-header nav.mpl-navbar-nav > div {
  height: 100%;
}
.site-header .mpl-navbar-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}
.site-header .mpl-navbar-nav-icons {
  flex: 0 0 auto;
  max-width: 100%;
}
@media (max-width: 571.98px) {
  .site-header .mpl-navbar-nav-icons {
    display: none;
  }
}
.site-header .mpl-navbar-social-links {
  flex: 0 0 auto;
  max-width: 100%;
}
.site-header .mpl-navbar-social-links .mpl-social-links.mpl-social-links-text {
  --mpl--social-links--color: hsl(var(--mpl-color-text));
}
.site-header ul.menu,
.site-header .menu > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  height: 100%;
  margin: 0 calc(var(--mpl--navbar-top--gap) * -0.5);
}
.site-header ul.menu > .menu-item,
.site-header ul.menu > .page_item,
.site-header .menu > ul > .menu-item,
.site-header .menu > ul > .page_item {
  flex: 0 0 auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin-right: calc(var(--mpl--navbar-top--gap) * 0.5);
  margin-left: calc(var(--mpl--navbar-top--gap) * 0.5);
}
.site-header ul.menu > .menu-item:not(.ghost-mega-menu),
.site-header ul.menu > .page_item:not(.ghost-mega-menu),
.site-header .menu > ul > .menu-item:not(.ghost-mega-menu),
.site-header .menu > ul > .page_item:not(.ghost-mega-menu) {
  position: relative;
}
.site-header ul.menu > .menu-item > a,
.site-header ul.menu > .menu-item > button,
.site-header ul.menu > .page_item > a,
.site-header ul.menu > .page_item > button,
.site-header .menu > ul > .menu-item > a,
.site-header .menu > ul > .menu-item > button,
.site-header .menu > ul > .page_item > a,
.site-header .menu > ul > .page_item > button {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--mpl--navbar-top--link--color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.site-header ul.menu > .menu-item > a::before,
.site-header ul.menu > .menu-item > button::before,
.site-header ul.menu > .page_item > a::before,
.site-header ul.menu > .page_item > button::before,
.site-header .menu > ul > .menu-item > a::before,
.site-header .menu > ul > .menu-item > button::before,
.site-header .menu > ul > .page_item > a::before,
.site-header .menu > ul > .page_item > button::before {
  position: absolute;
  top: 0;
  right: calc(var(--mpl--navbar-top--gap) * -0.5);
  bottom: 0;
  left: calc(var(--mpl--navbar-top--gap) * -0.5);
  content: "";
}
.site-header ul.menu > .menu-item > a:hover,
.site-header ul.menu > .menu-item > button:hover,
.site-header ul.menu > .page_item > a:hover,
.site-header ul.menu > .page_item > button:hover,
.site-header .menu > ul > .menu-item > a:hover,
.site-header .menu > ul > .menu-item > button:hover,
.site-header .menu > ul > .page_item > a:hover,
.site-header .menu > ul > .page_item > button:hover {
  color: var(--mpl--navbar-top--link-hover--color);
}
.site-header ul.menu > .menu-item > a:focus,
.site-header ul.menu > .menu-item > button:focus,
.site-header ul.menu > .page_item > a:focus,
.site-header ul.menu > .page_item > button:focus,
.site-header .menu > ul > .menu-item > a:focus,
.site-header .menu > ul > .menu-item > button:focus,
.site-header .menu > ul > .page_item > a:focus,
.site-header .menu > ul > .page_item > button:focus {
  color: var(--mpl--navbar-top--link-focus--color);
}
.site-header ul.menu > .menu-item > a:focus:not(:focus-visible),
.site-header ul.menu > .menu-item > button:focus:not(:focus-visible),
.site-header ul.menu > .page_item > a:focus:not(:focus-visible),
.site-header ul.menu > .page_item > button:focus:not(:focus-visible),
.site-header .menu > ul > .menu-item > a:focus:not(:focus-visible),
.site-header .menu > ul > .menu-item > button:focus:not(:focus-visible),
.site-header .menu > ul > .page_item > a:focus:not(:focus-visible),
.site-header .menu > ul > .page_item > button:focus:not(:focus-visible) {
  outline: none;
}
.site-header ul.menu > .menu-item > a,
.site-header ul.menu > .page_item > a,
.site-header .menu > ul > .menu-item > a,
.site-header .menu > ul > .page_item > a {
  align-self: stretch;
}
.site-header ul.menu > .menu-item > a > span,
.site-header ul.menu > .page_item > a > span,
.site-header .menu > ul > .menu-item > a > span,
.site-header .menu > ul > .page_item > a > span {
  --mpl--text-underline--position: -2px;
  padding: 0 3px;
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.site-header ul.menu > .menu-item > button::after,
.site-header ul.menu > .page_item > button::after,
.site-header .menu > ul > .menu-item > button::after,
.site-header .menu > ul > .page_item > button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  clip-path: none;
  content: "";
  background-color: hsl(var(--mpl-color-border));
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--mpl-transition-duration) var(--mpl-transition-easing), transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: scale(0.9);
}
.site-header ul.menu > .menu-item > button:not([disabled], .disabled):hover::after, .site-header ul.menu > .menu-item > button:not([disabled], .disabled):focus::after,
.site-header ul.menu > .page_item > button:not([disabled], .disabled):hover::after,
.site-header ul.menu > .page_item > button:not([disabled], .disabled):focus::after,
.site-header .menu > ul > .menu-item > button:not([disabled], .disabled):hover::after,
.site-header .menu > ul > .menu-item > button:not([disabled], .disabled):focus::after,
.site-header .menu > ul > .page_item > button:not([disabled], .disabled):hover::after,
.site-header .menu > ul > .page_item > button:not([disabled], .disabled):focus::after {
  opacity: 1;
  transform: scale(1);
}
.site-header ul.menu > .menu-item-has-children.focus > a,
.site-header ul.menu > .menu-item-has-children.focus > button, .site-header ul.menu > .menu-item-has-children:hover > a,
.site-header ul.menu > .menu-item-has-children:hover > button,
.site-header ul.menu > .page_item_has_children.focus > a,
.site-header ul.menu > .page_item_has_children.focus > button,
.site-header ul.menu > .page_item_has_children:hover > a,
.site-header ul.menu > .page_item_has_children:hover > button,
.site-header .menu > ul > .menu-item-has-children.focus > a,
.site-header .menu > ul > .menu-item-has-children.focus > button,
.site-header .menu > ul > .menu-item-has-children:hover > a,
.site-header .menu > ul > .menu-item-has-children:hover > button,
.site-header .menu > ul > .page_item_has_children.focus > a,
.site-header .menu > ul > .page_item_has_children.focus > button,
.site-header .menu > ul > .page_item_has_children:hover > a,
.site-header .menu > ul > .page_item_has_children:hover > button {
  color: var(--mpl--navbar-top--link-focus--color);
}
.site-header ul.menu .current-menu-item > a,
.site-header ul.menu .current-menu-item > button,
.site-header ul.menu .current-menu-parent > a,
.site-header ul.menu .current-menu-parent > button,
.site-header ul.menu .current-menu-ancestor > a,
.site-header ul.menu .current-menu-ancestor > button,
.site-header ul.menu .current_page_item > a,
.site-header ul.menu .current_page_item > button,
.site-header ul.menu .current_page_parent > a,
.site-header ul.menu .current_page_parent > button,
.site-header ul.menu .current_page_ancestor > a,
.site-header ul.menu .current_page_ancestor > button,
.site-header .menu > ul .current-menu-item > a,
.site-header .menu > ul .current-menu-item > button,
.site-header .menu > ul .current-menu-parent > a,
.site-header .menu > ul .current-menu-parent > button,
.site-header .menu > ul .current-menu-ancestor > a,
.site-header .menu > ul .current-menu-ancestor > button,
.site-header .menu > ul .current_page_item > a,
.site-header .menu > ul .current_page_item > button,
.site-header .menu > ul .current_page_parent > a,
.site-header .menu > ul .current_page_parent > button,
.site-header .menu > ul .current_page_ancestor > a,
.site-header .menu > ul .current_page_ancestor > button {
  color: var(--mpl--navbar-top--link-active--color);
}
.site-header ul.menu .current-menu-item > a:hover, .site-header ul.menu .current-menu-item > a:focus,
.site-header ul.menu .current-menu-item > button:hover,
.site-header ul.menu .current-menu-item > button:focus,
.site-header ul.menu .current-menu-parent > a:hover,
.site-header ul.menu .current-menu-parent > a:focus,
.site-header ul.menu .current-menu-parent > button:hover,
.site-header ul.menu .current-menu-parent > button:focus,
.site-header ul.menu .current-menu-ancestor > a:hover,
.site-header ul.menu .current-menu-ancestor > a:focus,
.site-header ul.menu .current-menu-ancestor > button:hover,
.site-header ul.menu .current-menu-ancestor > button:focus,
.site-header ul.menu .current_page_item > a:hover,
.site-header ul.menu .current_page_item > a:focus,
.site-header ul.menu .current_page_item > button:hover,
.site-header ul.menu .current_page_item > button:focus,
.site-header ul.menu .current_page_parent > a:hover,
.site-header ul.menu .current_page_parent > a:focus,
.site-header ul.menu .current_page_parent > button:hover,
.site-header ul.menu .current_page_parent > button:focus,
.site-header ul.menu .current_page_ancestor > a:hover,
.site-header ul.menu .current_page_ancestor > a:focus,
.site-header ul.menu .current_page_ancestor > button:hover,
.site-header ul.menu .current_page_ancestor > button:focus,
.site-header .menu > ul .current-menu-item > a:hover,
.site-header .menu > ul .current-menu-item > a:focus,
.site-header .menu > ul .current-menu-item > button:hover,
.site-header .menu > ul .current-menu-item > button:focus,
.site-header .menu > ul .current-menu-parent > a:hover,
.site-header .menu > ul .current-menu-parent > a:focus,
.site-header .menu > ul .current-menu-parent > button:hover,
.site-header .menu > ul .current-menu-parent > button:focus,
.site-header .menu > ul .current-menu-ancestor > a:hover,
.site-header .menu > ul .current-menu-ancestor > a:focus,
.site-header .menu > ul .current-menu-ancestor > button:hover,
.site-header .menu > ul .current-menu-ancestor > button:focus,
.site-header .menu > ul .current_page_item > a:hover,
.site-header .menu > ul .current_page_item > a:focus,
.site-header .menu > ul .current_page_item > button:hover,
.site-header .menu > ul .current_page_item > button:focus,
.site-header .menu > ul .current_page_parent > a:hover,
.site-header .menu > ul .current_page_parent > a:focus,
.site-header .menu > ul .current_page_parent > button:hover,
.site-header .menu > ul .current_page_parent > button:focus,
.site-header .menu > ul .current_page_ancestor > a:hover,
.site-header .menu > ul .current_page_ancestor > a:focus,
.site-header .menu > ul .current_page_ancestor > button:hover,
.site-header .menu > ul .current_page_ancestor > button:focus {
  color: var(--mpl--navbar-top--link-active--color);
}
.site-header .badge {
  --mpl--navbar-badge--border-color: var(--mpl--navbar-top--background-color);
  transition: border-color 0.1s var(--mpl-transition-easing);
}
.site-header .menu-item,
.site-header .page_item {
  display: block;
}
.site-header .menu-item-has-children,
.site-header .page_item_has_children {
  position: relative;
}
.site-header .menu-item-has-children:hover > ul.sub-menu,
.site-header .menu-item-has-children:hover > .children, .site-header .menu-item-has-children.focus > ul.sub-menu,
.site-header .menu-item-has-children.focus > .children,
.site-header .page_item_has_children:hover > ul.sub-menu,
.site-header .page_item_has_children:hover > .children,
.site-header .page_item_has_children.focus > ul.sub-menu,
.site-header .page_item_has_children.focus > .children {
  visibility: visible;
  opacity: 1;
  transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), visibility var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: perspective(300px) rotate(0);
}
.site-header .menu-item-has-children > a:hover + ul.sub-menu,
.site-header .menu-item-has-children > a:hover + .children, .site-header .menu-item-has-children > a:focus + ul.sub-menu,
.site-header .menu-item-has-children > a:focus + .children,
.site-header .menu-item-has-children > button:hover + ul.sub-menu,
.site-header .menu-item-has-children > button:hover + .children,
.site-header .menu-item-has-children > button:focus + ul.sub-menu,
.site-header .menu-item-has-children > button:focus + .children,
.site-header .page_item_has_children > a:hover + ul.sub-menu,
.site-header .page_item_has_children > a:hover + .children,
.site-header .page_item_has_children > a:focus + ul.sub-menu,
.site-header .page_item_has_children > a:focus + .children,
.site-header .page_item_has_children > button:hover + ul.sub-menu,
.site-header .page_item_has_children > button:hover + .children,
.site-header .page_item_has_children > button:focus + ul.sub-menu,
.site-header .page_item_has_children > button:focus + .children {
  visibility: visible;
  opacity: 1;
  transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), visibility var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: perspective(300px) rotate(0);
}
.site-header ul.menu .ghost-mega-menu > a:hover::after,
.site-header ul.menu .ghost-mega-menu > a:focus::after,
.site-header .menu > ul .ghost-mega-menu > a:hover::after,
.site-header .menu > ul .ghost-mega-menu > a:focus::after {
  top: -100%;
  bottom: -100%;
}
.site-header .ghost-mega-menu.menu-item-has-children > ul.sub-menu,
.site-header .ghost-mega-menu.menu-item-has-children > .children,
.site-header .ghost-mega-menu.page_item_has_children > ul.sub-menu,
.site-header .ghost-mega-menu.page_item_has_children > .children {
  margin-top: 0;
}
.site-header .ghost-mega-menu {
  --mpl--navbar-top--dropdown--background-color: hsl(var(--mpl-color-background-300));
  position: static;
}
.site-header .ghost-mega-menu > a {
  position: relative;
}
.site-header .ghost-mega-menu.focus .menu-item,
.site-header .ghost-mega-menu.focus .page_item, .site-header .ghost-mega-menu:hover .menu-item,
.site-header .ghost-mega-menu:hover .page_item {
  opacity: 1;
}
.site-header .ghost-mega-menu.focus > ul.sub-menu,
.site-header .ghost-mega-menu.focus > .children, .site-header .ghost-mega-menu:hover > ul.sub-menu,
.site-header .ghost-mega-menu:hover > .children {
  clip-path: inset(0 0 1px 0);
  transition: clip-path 0.6s var(--mpl-transition-easing);
  transform: none;
}
.site-header .ghost-mega-menu > ul.sub-menu,
.site-header .ghost-mega-menu > .children {
  --mpl--scrollbar--color: hsl(var(--mpl-color-white));
  --mpl--scrollbar--background-color: var(--mpl--navbar-top--dropdown--background-color);
  right: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-height: calc(100vh - var(--mpl--navbar-top--min-height) - 100px);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  background-color: var(--mpl--navbar-top--dropdown--background-color);
  transition: clip-path 0.2s var(--mpl-transition-easing), visibility var(--mpl-transition-duration) var(--mpl-transition-easing), opacity var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: none;
}
.site-header .ghost-mega-menu > ul.sub-menu::after,
.site-header .ghost-mega-menu > .children::after {
  display: none;
}
.site-header .ghost-mega-menu > ul.sub-menu ul.sub-menu,
.site-header .ghost-mega-menu > ul.sub-menu .children,
.site-header .ghost-mega-menu > .children ul.sub-menu,
.site-header .ghost-mega-menu > .children .children {
  position: static;
  min-width: auto;
  padding: 0;
  margin: 0;
  visibility: inherit;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item,
.site-header .ghost-mega-menu > .children > .menu-item,
.site-header .ghost-mega-menu > .children > .page_item {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 270px;
  padding: var(--mpl--navbar-top--dropdown--padding-v) 0;
  margin-right: -1px;
  margin-left: -1px;
  border-bottom: 1px solid var(--mpl--navbar-top--mega-borders--color);
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item::after,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item::after,
.site-header .ghost-mega-menu > .children > .menu-item::after,
.site-header .ghost-mega-menu > .children > .page_item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: auto;
  height: auto;
  margin-top: 0;
  background-color: var(--mpl--navbar-top--dropdown--background-color);
  border-right: 1px solid var(--mpl--navbar-top--mega-borders--color);
  border-left: 1px solid var(--mpl--navbar-top--mega-borders--color);
  border-radius: 0;
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item + .menu-item,
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item + .page_item,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item + .menu-item,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item + .page_item,
.site-header .ghost-mega-menu > .children > .menu-item + .menu-item,
.site-header .ghost-mega-menu > .children > .menu-item + .page_item,
.site-header .ghost-mega-menu > .children > .page_item + .menu-item,
.site-header .ghost-mega-menu > .children > .page_item + .page_item {
  margin-top: 0;
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a,
.site-header .ghost-mega-menu > .children > .menu-item > a,
.site-header .ghost-mega-menu > .children > .page_item > a {
  display: inline-block;
  padding-right: var(--mpl--navbar-top--dropdown--padding-h);
  padding-left: var(--mpl--navbar-top--dropdown--padding-h);
  margin-bottom: var(--mpl-vertical-rhythm);
  font-size: var(--mpl--font-size--large);
  color: var(--mpl--navbar-top--mega-label--color);
  pointer-events: none;
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a > span,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a > span,
.site-header .ghost-mega-menu > .children > .menu-item > a > span,
.site-header .ghost-mega-menu > .children > .page_item > a > span {
  --mpl--text-underline--color: hsl(var(--mpl-color-border));
  padding: 0 3px;
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a::before, .site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a::after,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a::before,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a::after,
.site-header .ghost-mega-menu > .children > .menu-item > a::before,
.site-header .ghost-mega-menu > .children > .menu-item > a::after,
.site-header .ghost-mega-menu > .children > .page_item > a::before,
.site-header .ghost-mega-menu > .children > .page_item > a::after {
  display: none;
}
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a,
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a:hover,
.site-header .ghost-mega-menu > ul.sub-menu > .menu-item > a:focus, .site-header .ghost-mega-menu > ul.sub-menu > .menu-item:hover > a, .site-header .ghost-mega-menu > ul.sub-menu > .menu-item.focus > a,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a:hover,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item > a:focus,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item:hover > a,
.site-header .ghost-mega-menu > ul.sub-menu > .page_item.focus > a,
.site-header .ghost-mega-menu > .children > .menu-item > a,
.site-header .ghost-mega-menu > .children > .menu-item > a:hover,
.site-header .ghost-mega-menu > .children > .menu-item > a:focus,
.site-header .ghost-mega-menu > .children > .menu-item:hover > a,
.site-header .ghost-mega-menu > .children > .menu-item.focus > a,
.site-header .ghost-mega-menu > .children > .page_item > a,
.site-header .ghost-mega-menu > .children > .page_item > a:hover,
.site-header .ghost-mega-menu > .children > .page_item > a:focus,
.site-header .ghost-mega-menu > .children > .page_item:hover > a,
.site-header .ghost-mega-menu > .children > .page_item.focus > a {
  padding-right: var(--mpl--navbar-top--dropdown--padding-h);
  padding-left: var(--mpl--navbar-top--dropdown--padding-h);
  color: var(--mpl--navbar-top--mega-label--color);
}
.site-header .mpl-navbar-nav > ul > .menu-item > ul.sub-menu,
.site-header .mpl-navbar-nav > ul > .menu-item > .children,
.site-header .mpl-navbar-nav > ul > .page_item > ul.sub-menu,
.site-header .mpl-navbar-nav > ul > .page_item > .children,
.site-header nav > div > ul > .menu-item > ul.sub-menu,
.site-header nav > div > ul > .menu-item > .children,
.site-header nav > div > ul > .page_item > ul.sub-menu,
.site-header nav > div > ul > .page_item > .children,
.site-header nav > ul > .menu-item > ul.sub-menu,
.site-header nav > ul > .menu-item > .children,
.site-header nav > ul > .page_item > ul.sub-menu,
.site-header nav > ul > .page_item > .children {
  top: 100%;
  margin-top: var(--mpl--navbar-top--dropdown--margin);
}
.site-header .mpl-navbar-nav > ul > .menu-item > ul.sub-menu::before,
.site-header .mpl-navbar-nav > ul > .menu-item > .children::before,
.site-header .mpl-navbar-nav > ul > .page_item > ul.sub-menu::before,
.site-header .mpl-navbar-nav > ul > .page_item > .children::before,
.site-header nav > div > ul > .menu-item > ul.sub-menu::before,
.site-header nav > div > ul > .menu-item > .children::before,
.site-header nav > div > ul > .page_item > ul.sub-menu::before,
.site-header nav > div > ul > .page_item > .children::before,
.site-header nav > ul > .menu-item > ul.sub-menu::before,
.site-header nav > ul > .menu-item > .children::before,
.site-header nav > ul > .page_item > ul.sub-menu::before,
.site-header nav > ul > .page_item > .children::before {
  top: calc(var(--mpl--navbar-top--dropdown--margin) * -1);
  right: 0;
  left: 0;
  height: var(--mpl--navbar-top--dropdown--margin);
}
.site-header .mpl-navbar-nav > ul > .menu-item > ul.sub-menu .mpl-menu-drop-left,
.site-header .mpl-navbar-nav > ul > .menu-item > .children .mpl-menu-drop-left,
.site-header .mpl-navbar-nav > ul > .page_item > ul.sub-menu .mpl-menu-drop-left,
.site-header .mpl-navbar-nav > ul > .page_item > .children .mpl-menu-drop-left,
.site-header nav > div > ul > .menu-item > ul.sub-menu .mpl-menu-drop-left,
.site-header nav > div > ul > .menu-item > .children .mpl-menu-drop-left,
.site-header nav > div > ul > .page_item > ul.sub-menu .mpl-menu-drop-left,
.site-header nav > div > ul > .page_item > .children .mpl-menu-drop-left,
.site-header nav > ul > .menu-item > ul.sub-menu .mpl-menu-drop-left,
.site-header nav > ul > .menu-item > .children .mpl-menu-drop-left,
.site-header nav > ul > .page_item > ul.sub-menu .mpl-menu-drop-left,
.site-header nav > ul > .page_item > .children .mpl-menu-drop-left {
  /* rtl:ignore */
  right: 100%;
}
.site-header .mpl-navbar-nav > ul > .menu-item > ul.sub-menu .mpl-menu-drop-right,
.site-header .mpl-navbar-nav > ul > .menu-item > .children .mpl-menu-drop-right,
.site-header .mpl-navbar-nav > ul > .page_item > ul.sub-menu .mpl-menu-drop-right,
.site-header .mpl-navbar-nav > ul > .page_item > .children .mpl-menu-drop-right,
.site-header nav > div > ul > .menu-item > ul.sub-menu .mpl-menu-drop-right,
.site-header nav > div > ul > .menu-item > .children .mpl-menu-drop-right,
.site-header nav > div > ul > .page_item > ul.sub-menu .mpl-menu-drop-right,
.site-header nav > div > ul > .page_item > .children .mpl-menu-drop-right,
.site-header nav > ul > .menu-item > ul.sub-menu .mpl-menu-drop-right,
.site-header nav > ul > .menu-item > .children .mpl-menu-drop-right,
.site-header nav > ul > .page_item > ul.sub-menu .mpl-menu-drop-right,
.site-header nav > ul > .page_item > .children .mpl-menu-drop-right {
  /* rtl:ignore */
  left: 100%;
}
.site-header .mpl-navbar-nav > ul > .menu-item > .mpl-menu-drop-left,
.site-header .mpl-navbar-nav > ul > .page_item > .mpl-menu-drop-left,
.site-header nav > div > ul > .menu-item > .mpl-menu-drop-left,
.site-header nav > div > ul > .page_item > .mpl-menu-drop-left,
.site-header nav > ul > .menu-item > .mpl-menu-drop-left,
.site-header nav > ul > .page_item > .mpl-menu-drop-left {
  /* rtl:ignore */
  right: 0;
}
.site-header .mpl-navbar-nav > ul > .menu-item > .mpl-menu-drop-right,
.site-header .mpl-navbar-nav > ul > .page_item > .mpl-menu-drop-right,
.site-header nav > div > ul > .menu-item > .mpl-menu-drop-right,
.site-header nav > div > ul > .page_item > .mpl-menu-drop-right,
.site-header nav > ul > .menu-item > .mpl-menu-drop-right,
.site-header nav > ul > .page_item > .mpl-menu-drop-right {
  /* rtl:ignore */
  left: 0;
}
.site-header ul.sub-menu,
.site-header .children {
  position: absolute;
  z-index: 1;
  min-width: 230px;
  padding: var(--mpl--navbar-top--dropdown--padding-v) 0;
  text-align: left;
  visibility: hidden;
  background-color: var(--mpl--navbar-top--dropdown--background-color);
  border-radius: var(--mpl-border-radius-md);
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: transform calc(var(--mpl-transition-cubic-duration) - 0.3s) var(--mpl-transition-cubic-easing), visibility calc(var(--mpl-transition-cubic-duration) - 0.3s) var(--mpl-transition-cubic-easing), opacity calc(var(--mpl-transition-cubic-duration) - 0.3s) var(--mpl-transition-cubic-easing);
  transform: perspective(300px) rotateX(-5deg);
  transform-origin: 50% -50px;
}
.site-header ul.sub-menu:hover, .site-header ul.sub-menu.focus, .site-header ul.sub-menu.show,
.site-header .children:hover,
.site-header .children.focus,
.site-header .children.show {
  visibility: visible;
  opacity: 1;
  transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), visibility var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: perspective(300px) rotate(0);
}
.site-header ul.sub-menu::before,
.site-header .children::before {
  position: absolute;
  display: block;
  content: "";
}
.site-header ul.sub-menu .menu-item,
.site-header ul.sub-menu .page_item,
.site-header .children .menu-item,
.site-header .children .page_item {
  position: relative;
  display: block;
  padding: 0 var(--mpl--navbar-top--dropdown--padding-h);
}
.site-header ul.sub-menu .menu-item + .menu-item,
.site-header ul.sub-menu .menu-item + .page_item,
.site-header ul.sub-menu .page_item + .menu-item,
.site-header ul.sub-menu .page_item + .page_item,
.site-header .children .menu-item + .menu-item,
.site-header .children .menu-item + .page_item,
.site-header .children .page_item + .menu-item,
.site-header .children .page_item + .page_item {
  margin-top: var(--mpl--navbar-top--dropdown--gap);
}
.site-header ul.sub-menu .menu-item > a,
.site-header ul.sub-menu .page_item > a,
.site-header .children .menu-item > a,
.site-header .children .page_item > a {
  display: inline;
  color: var(--mpl--navbar-top--dropdown-link--color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.site-header ul.sub-menu .menu-item > a > span,
.site-header ul.sub-menu .page_item > a > span,
.site-header .children .menu-item > a > span,
.site-header .children .page_item > a > span {
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.site-header ul.sub-menu .menu-item > a::before, .site-header ul.sub-menu .menu-item > a::after,
.site-header ul.sub-menu .page_item > a::before,
.site-header ul.sub-menu .page_item > a::after,
.site-header .children .menu-item > a::before,
.site-header .children .menu-item > a::after,
.site-header .children .page_item > a::before,
.site-header .children .page_item > a::after {
  position: absolute;
  content: "";
}
.site-header ul.sub-menu .menu-item > a::after,
.site-header ul.sub-menu .page_item > a::after,
.site-header .children .menu-item > a::after,
.site-header .children .page_item > a::after {
  top: calc(var(--mpl--navbar-top--dropdown--gap) * -0.5);
  right: 0;
  bottom: calc(var(--mpl--navbar-top--dropdown--gap) * -0.5);
  left: 0;
  display: block;
}
.site-header ul.sub-menu .menu-item > a:hover,
.site-header ul.sub-menu .page_item > a:hover,
.site-header .children .menu-item > a:hover,
.site-header .children .page_item > a:hover {
  color: var(--mpl--navbar-top--dropdown-link-hover--color);
}
.site-header ul.sub-menu .menu-item > a:focus,
.site-header ul.sub-menu .page_item > a:focus,
.site-header .children .menu-item > a:focus,
.site-header .children .page_item > a:focus {
  color: var(--mpl--navbar-top--dropdown-link-focus--color);
}
.site-header ul.sub-menu .current-menu-item > a,
.site-header ul.sub-menu .current-menu-item > a:hover,
.site-header ul.sub-menu .current-menu-item > a:focus, .site-header ul.sub-menu .current-menu-item::after,
.site-header ul.sub-menu .current-menu-parent > a,
.site-header ul.sub-menu .current-menu-parent > a:hover,
.site-header ul.sub-menu .current-menu-parent > a:focus,
.site-header ul.sub-menu .current-menu-parent::after,
.site-header ul.sub-menu .current-menu-ancestor > a,
.site-header ul.sub-menu .current-menu-ancestor > a:hover,
.site-header ul.sub-menu .current-menu-ancestor > a:focus,
.site-header ul.sub-menu .current-menu-ancestor::after,
.site-header ul.sub-menu .current_page_item > a,
.site-header ul.sub-menu .current_page_item > a:hover,
.site-header ul.sub-menu .current_page_item > a:focus,
.site-header ul.sub-menu .current_page_item::after,
.site-header ul.sub-menu .current_page_parent > a,
.site-header ul.sub-menu .current_page_parent > a:hover,
.site-header ul.sub-menu .current_page_parent > a:focus,
.site-header ul.sub-menu .current_page_parent::after,
.site-header ul.sub-menu .current_page_ancestor > a,
.site-header ul.sub-menu .current_page_ancestor > a:hover,
.site-header ul.sub-menu .current_page_ancestor > a:focus,
.site-header ul.sub-menu .current_page_ancestor::after,
.site-header .children .current-menu-item > a,
.site-header .children .current-menu-item > a:hover,
.site-header .children .current-menu-item > a:focus,
.site-header .children .current-menu-item::after,
.site-header .children .current-menu-parent > a,
.site-header .children .current-menu-parent > a:hover,
.site-header .children .current-menu-parent > a:focus,
.site-header .children .current-menu-parent::after,
.site-header .children .current-menu-ancestor > a,
.site-header .children .current-menu-ancestor > a:hover,
.site-header .children .current-menu-ancestor > a:focus,
.site-header .children .current-menu-ancestor::after,
.site-header .children .current_page_item > a,
.site-header .children .current_page_item > a:hover,
.site-header .children .current_page_item > a:focus,
.site-header .children .current_page_item::after,
.site-header .children .current_page_parent > a,
.site-header .children .current_page_parent > a:hover,
.site-header .children .current_page_parent > a:focus,
.site-header .children .current_page_parent::after,
.site-header .children .current_page_ancestor > a,
.site-header .children .current_page_ancestor > a:hover,
.site-header .children .current_page_ancestor > a:focus,
.site-header .children .current_page_ancestor::after {
  color: var(--mpl--navbar-top--dropdown-link-active--color);
}
.site-header ul.sub-menu .menu-item-has-children::after,
.site-header ul.sub-menu .page_item_has_children::after,
.site-header .children .menu-item-has-children::after,
.site-header .children .page_item_has_children::after {
  position: absolute;
  top: 50%;
  right: var(--mpl--navbar-top--dropdown--padding-h);
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  color: var(--mpl--navbar-top--dropdown-link--color);
  pointer-events: none;
  content: "";
  background-color: currentcolor;
  border-radius: 100%;
}
.site-header ul.sub-menu .menu-item-has-children:hover > a, .site-header ul.sub-menu .menu-item-has-children:hover::after,
.site-header ul.sub-menu .page_item_has_children:hover > a,
.site-header ul.sub-menu .page_item_has_children:hover::after,
.site-header .children .menu-item-has-children:hover > a,
.site-header .children .menu-item-has-children:hover::after,
.site-header .children .page_item_has_children:hover > a,
.site-header .children .page_item_has_children:hover::after {
  color: var(--mpl--navbar-top--dropdown-link-hover--color);
}
.site-header ul.sub-menu .menu-item-has-children.focus > a, .site-header ul.sub-menu .menu-item-has-children.focus::after,
.site-header ul.sub-menu .page_item_has_children.focus > a,
.site-header ul.sub-menu .page_item_has_children.focus::after,
.site-header .children .menu-item-has-children.focus > a,
.site-header .children .menu-item-has-children.focus::after,
.site-header .children .page_item_has_children.focus > a,
.site-header .children .page_item_has_children.focus::after {
  color: var(--mpl--navbar-top--dropdown-link-focus--color);
}
.site-header ul.sub-menu ul.sub-menu,
.site-header ul.sub-menu .children,
.site-header .children ul.sub-menu,
.site-header .children .children {
  top: calc(var(--mpl--navbar-top--dropdown--padding-v) * -1);
  margin-right: var(--mpl--navbar-top--dropdown--margin);
  margin-left: var(--mpl--navbar-top--dropdown--margin);
}
.site-header ul.sub-menu ul.sub-menu::before,
.site-header ul.sub-menu .children::before,
.site-header .children ul.sub-menu::before,
.site-header .children .children::before {
  top: 0;
  bottom: 0;
  width: var(--mpl--navbar-top--dropdown--margin);
  height: auto;
}
.site-header ul.sub-menu ul.sub-menu:not(.mpl-menu-drop-left)::before,
.site-header ul.sub-menu .children:not(.mpl-menu-drop-left)::before,
.site-header .children ul.sub-menu:not(.mpl-menu-drop-left)::before,
.site-header .children .children:not(.mpl-menu-drop-left)::before {
  /* rtl:ignore */
  left: calc(var(--mpl--navbar-top--dropdown--margin) * -1);
}
.site-header ul.sub-menu ul.sub-menu.mpl-menu-drop-left::before,
.site-header ul.sub-menu .children.mpl-menu-drop-left::before,
.site-header .children ul.sub-menu.mpl-menu-drop-left::before,
.site-header .children .children.mpl-menu-drop-left::before {
  /* rtl:ignore */
  right: calc(var(--mpl--navbar-top--dropdown--margin) * -1);
}
.site-header .mpl-social-links {
  align-self: center;
}
.site-header .mpl-navbar-collapse-xl .mpl-navbar-nav:not(.mpl-navbar-nav-show) {
  display: none;
}
.site-header .mpl-navbar-collapse-xl .mpl-navbar-nav ~ .mpl-navbar-nav-show {
  margin-left: auto;
}
.site-header .mpl-navbar-collapse-xl .mpl-navbar-toggle {
  display: flex;
  margin-left: auto;
}
@media (max-width: 1391.98px) {
  .site-header .mpl-navbar-collapse-lg .mpl-navbar-nav:not(.mpl-navbar-nav-show) {
    display: none;
  }
  .site-header .mpl-navbar-collapse-lg .mpl-navbar-nav ~ .mpl-navbar-nav-show {
    margin-left: auto;
  }
  .site-header .mpl-navbar-collapse-lg .mpl-navbar-toggle {
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 1081.98px) {
  .site-header .mpl-navbar-collapse-md .mpl-navbar-nav:not(.mpl-navbar-nav-show) {
    display: none;
  }
  .site-header .mpl-navbar-collapse-md .mpl-navbar-nav ~ .mpl-navbar-nav-show {
    margin-left: auto;
  }
  .site-header .mpl-navbar-collapse-md .mpl-navbar-toggle {
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 781.98px) {
  .site-header .mpl-navbar-collapse-sm .mpl-navbar-nav:not(.mpl-navbar-nav-show) {
    display: none;
  }
  .site-header .mpl-navbar-collapse-sm .mpl-navbar-nav ~ .mpl-navbar-nav-show {
    margin-left: auto;
  }
  .site-header .mpl-navbar-collapse-sm .mpl-navbar-toggle {
    display: flex;
    margin-left: auto;
  }
}
@media (min-width: 572px) {
  .site-header .mpl-navbar-container .mpl-navbar-nav-show ~ .mpl-navbar-toggle {
    margin-left: calc(var(--mpl--navbar-top--gap) * 1.5);
  }
}
.site-header .mpl-navbar-align-center ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-center .children:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-left ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-left .children:not([class*=mpl-menu-drop-]) {
  /* rtl:ignore */
  left: calc(var(--mpl--navbar-top--dropdown--padding-h) * -1);
}
.site-header .mpl-navbar-align-center ul.sub-menu ul.sub-menu,
.site-header .mpl-navbar-align-center ul.sub-menu .children,
.site-header .mpl-navbar-align-center .children ul.sub-menu,
.site-header .mpl-navbar-align-center .children .children,
.site-header .mpl-navbar-align-left ul.sub-menu ul.sub-menu,
.site-header .mpl-navbar-align-left ul.sub-menu .children,
.site-header .mpl-navbar-align-left .children ul.sub-menu,
.site-header .mpl-navbar-align-left .children .children {
  /* rtl:ignore */
}
.site-header .mpl-navbar-align-center ul.sub-menu ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-center ul.sub-menu .children:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-center .children ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-center .children .children:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-left ul.sub-menu ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-left ul.sub-menu .children:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-left .children ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-left .children .children:not([class*=mpl-menu-drop-]) {
  left: 100%;
}
.site-header .mpl-navbar-align-right .mpl-navbar-nav {
  justify-content: flex-end;
}
.site-header .mpl-navbar-align-right ul.menu,
.site-header .mpl-navbar-align-right .menu > ul {
  justify-content: flex-end;
}
.site-header .mpl-navbar-align-right ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-right .children:not([class*=mpl-menu-drop-]) {
  /* rtl:ignore */
  right: calc(var(--mpl--navbar-top--dropdown--padding-h) * -1);
}
.site-header .mpl-navbar-align-right ul.sub-menu ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-right ul.sub-menu .children:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-right .children ul.sub-menu:not([class*=mpl-menu-drop-]),
.site-header .mpl-navbar-align-right .children .children:not([class*=mpl-menu-drop-]) {
  /* rtl:ignore */
  right: 100%;
}
.site-header .mpl-navbar-align-right ul.sub-menu ul.sub-menu:not([class*=mpl-menu-drop-])::before,
.site-header .mpl-navbar-align-right ul.sub-menu .children:not([class*=mpl-menu-drop-])::before,
.site-header .mpl-navbar-align-right .children ul.sub-menu:not([class*=mpl-menu-drop-])::before,
.site-header .mpl-navbar-align-right .children .children:not([class*=mpl-menu-drop-])::before {
  /* rtl:ignore */
  right: calc(var(--mpl--navbar-top--dropdown--margin) * -1);
  /* rtl:ignore */
  left: auto;
}
.site-header .mpl-navbar-align-center .mpl-navbar-nav {
  justify-content: center;
}
.site-header .mpl-navbar-align-center ul.menu,
.site-header .mpl-navbar-align-center .menu > ul {
  justify-content: center;
  text-align: center;
}
.site-header.mpl-navbar-sticky {
  --mpl--navbar-top--position: sticky;
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.site-header.mpl-navbar-fixed {
  --mpl--navbar-top--position: sticky;
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-bottom: calc(var(--mpl--navbar-top--min-height) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.site-header.mpl-navbar-static {
  --mpl--navbar-top--position: relative;
  top: 0;
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.site-header.mpl-navbar-translucent:not(.mpl-navbar-scroll) {
  --mpl--navbar-top--background-color: hsla(var(--mpl-color-background-200), 0.9);
}
.site-header.mpl-navbar-transparent:not(.mpl-navbar-scroll) {
  --mpl--navbar-top--background-color: transparent;
}

.site-header.mpl-navbar-hide {
  --mpl--navbar-top--transform: translateY(-50%);
  clip-path: inset(0 0 50% 0);
  animation: navbar-top-hide var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}

body {
  --mpl--navbar-icons--min-height: 60px;
}

.mpl-navbar-icons {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  min-height: var(--mpl--navbar-icons--min-height);
  background-color: hsl(var(--mpl-color-background-200));
}
.mpl-navbar-icons ul.menu,
.mpl-navbar-icons .menu > ul {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mpl-navbar-icons .menu-item,
.mpl-navbar-icons .page_item {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
}
.mpl-navbar-icons .menu-item > a,
.mpl-navbar-icons .menu-item > button,
.mpl-navbar-icons .page_item > a,
.mpl-navbar-icons .page_item > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  color: hsl(var(--mpl-color-white));
}
.mpl-navbar-icons .menu-item > a:hover, .mpl-navbar-icons .menu-item > a:focus,
.mpl-navbar-icons .menu-item > button:hover,
.mpl-navbar-icons .menu-item > button:focus,
.mpl-navbar-icons .page_item > a:hover,
.mpl-navbar-icons .page_item > a:focus,
.mpl-navbar-icons .page_item > button:hover,
.mpl-navbar-icons .page_item > button:focus {
  color: var(--mpl-color-brand);
}
@media (min-width: 572px) {
  .mpl-navbar-icons {
    display: none;
  }
}
.mpl-navbar-mobile {
  --mpl--navbar-mobile--padding-v: 30px;
  --mpl--navbar-mobile--padding-h: 0;
  --mpl--navbar-mobile--gap: var(--mpl-vertical-rhythm);
  --mpl--navbar-mobile--link--font-size: 2em;
  --mpl--navbar-mobile--link--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--link-hover--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--link-focus--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--link-active--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--link-show--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--dropdown--gap: calc(var(--mpl-vertical-rhythm) * 0.5);
  --mpl--navbar-mobile--dropdown-link--color: hsl(var(--mpl-color-text));
  --mpl--navbar-mobile--dropdown-link-hover--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--dropdown-link-focus--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--dropdown-link-active--color: hsl(var(--mpl-color-title));
  --mpl--navbar-mobile--dropdown-link-show--color: hsl(var(--mpl-color-title));
  display: none;
  width: 100%;
  min-height: 100vh;
}
.mpl-navbar-mobile .mpl-navbar-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: var(--mpl--navbar-mobile--padding-v) var(--mpl--navbar-mobile--padding-h) calc(var(--mpl--navbar-top--min-height) + var(--mpl--navbar-mobile--padding-v));
}
.mpl-navbar-mobile .mpl-navbar-logo {
  display: flex;
  align-items: center;
  min-height: var(--mpl--navbar-top--min-height);
}
.mpl-navbar-mobile .mpl-navbar-head {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: flex-start;
  width: calc(100% + var(--mpl--container--padding) * 2);
  padding-right: var(--mpl--container--padding);
  padding-left: var(--mpl--container--padding);
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.mpl-navbar-mobile .mpl-navbar-body {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
@media (min-width: 1082px) {
  .mpl-navbar-mobile .mpl-navbar-body {
    position: sticky;
    top: calc(var(--mpl--navbar-top--min-height) + var(--mpl--navbar-mobile--padding-v));
    left: 0;
  }
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul,
.mpl-navbar-mobile .mpl-navbar-body > ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item {
  display: block;
  line-height: var(--mpl--line-height--tiny);
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item + .menu-item,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item + .page_item,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item + .menu-item,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item + .page_item,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item + .menu-item,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item + .page_item,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item + .menu-item,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item + .page_item {
  margin-top: var(--mpl--navbar-mobile--gap);
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a {
  --mpl--text-underline--position: 0.1em;
  position: relative;
  display: inline-block;
  font-size: var(--mpl--navbar-mobile--link--font-size);
  line-height: var(--mpl--line-height--small);
  color: var(--mpl--navbar-mobile--link--color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a::before,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a::before,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a::before,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a::before {
  position: absolute;
  top: calc(var(--mpl--navbar-mobile--gap) * -0.5);
  right: 0;
  bottom: calc(var(--mpl--navbar-mobile--gap) * -0.5);
  left: 0;
  content: "";
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a:hover {
  color: var(--mpl--navbar-mobile--link-hover--color);
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul > .page_item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul > .menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul > .page_item > a:focus {
  color: var(--mpl--navbar-mobile--link-focus--color);
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul .menu-item-has-children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .page_item_has_children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .page_item_has_children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .page_item_has_children.show > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .menu-item-has-children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .page_item_has_children.show > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .page_item_has_children.show > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .page_item_has_children.show > a:focus {
  color: var(--mpl--navbar-mobile--link-show--color);
}
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-parent > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current-menu-ancestor > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_item > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_parent > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > div > ul .current_page_ancestor > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-parent > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current-menu-ancestor > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_item > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_item > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_item > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_parent > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_parent > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_parent > a:focus,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_ancestor > a,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_ancestor > a:hover,
.mpl-navbar-mobile .mpl-navbar-body > ul .current_page_ancestor > a:focus {
  color: var(--mpl--navbar-mobile--link-active--color);
}
.mpl-navbar-mobile .menu-item,
.mpl-navbar-mobile .page_item {
  text-align: left;
}
.mpl-navbar-mobile .menu-item-has-children > a::after,
.mpl-navbar-mobile .page_item_has_children > a::after {
  position: absolute;
  top: 50%;
  display: block;
  align-self: center;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  pointer-events: none;
  content: "";
  background-color: var(--mpl--navbar-mobile--link-hover--color);
  border-radius: 100%;
}
.mpl-navbar-mobile ul.sub-menu,
.mpl-navbar-mobile .children {
  padding-top: var(--mpl--navbar-mobile--gap);
}
.mpl-navbar-mobile ul.sub-menu:not(.show),
.mpl-navbar-mobile .children:not(.show) {
  display: none;
}
.mpl-navbar-mobile ul.sub-menu ul.sub-menu,
.mpl-navbar-mobile ul.sub-menu .children,
.mpl-navbar-mobile .children ul.sub-menu,
.mpl-navbar-mobile .children .children {
  padding-top: var(--mpl--navbar-mobile--dropdown--gap);
}
.mpl-navbar-mobile ul.sub-menu > .menu-item,
.mpl-navbar-mobile ul.sub-menu > .page_item,
.mpl-navbar-mobile .children > .menu-item,
.mpl-navbar-mobile .children > .page_item {
  display: block;
  line-height: var(--mpl--line-height--tiny);
}
.mpl-navbar-mobile ul.sub-menu > .menu-item + .menu-item,
.mpl-navbar-mobile ul.sub-menu > .menu-item + .page_item,
.mpl-navbar-mobile ul.sub-menu > .page_item + .menu-item,
.mpl-navbar-mobile ul.sub-menu > .page_item + .page_item,
.mpl-navbar-mobile .children > .menu-item + .menu-item,
.mpl-navbar-mobile .children > .menu-item + .page_item,
.mpl-navbar-mobile .children > .page_item + .menu-item,
.mpl-navbar-mobile .children > .page_item + .page_item {
  margin-top: var(--mpl--navbar-mobile--dropdown--gap);
}
.mpl-navbar-mobile ul.sub-menu > .menu-item > a,
.mpl-navbar-mobile ul.sub-menu > .page_item > a,
.mpl-navbar-mobile .children > .menu-item > a,
.mpl-navbar-mobile .children > .page_item > a {
  position: relative;
  display: inline-block;
  align-items: center;
  font-weight: var(--mpl--font-weight--medium);
  line-height: var(--mpl--line-height--small);
  color: var(--mpl--navbar-mobile--dropdown-link--color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.mpl-navbar-mobile ul.sub-menu > .menu-item > a::before,
.mpl-navbar-mobile ul.sub-menu > .page_item > a::before,
.mpl-navbar-mobile .children > .menu-item > a::before,
.mpl-navbar-mobile .children > .page_item > a::before {
  position: absolute;
  top: calc(var(--mpl--navbar-mobile--dropdown--gap) * -0.5);
  right: 0;
  bottom: calc(var(--mpl--navbar-mobile--dropdown--gap) * -0.5);
  left: 0;
  content: "";
}
.mpl-navbar-mobile ul.sub-menu > .menu-item > a:hover,
.mpl-navbar-mobile ul.sub-menu > .page_item > a:hover,
.mpl-navbar-mobile .children > .menu-item > a:hover,
.mpl-navbar-mobile .children > .page_item > a:hover {
  color: var(--mpl--navbar-mobile--link-hover--color);
}
.mpl-navbar-mobile ul.sub-menu > .menu-item > a:focus,
.mpl-navbar-mobile ul.sub-menu > .page_item > a:focus,
.mpl-navbar-mobile .children > .menu-item > a:focus,
.mpl-navbar-mobile .children > .page_item > a:focus {
  color: var(--mpl--navbar-mobile--link-focus--color);
}
.mpl-navbar-mobile ul.sub-menu > .menu-item-has-children > a::after,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children > a::after,
.mpl-navbar-mobile .children > .menu-item-has-children > a::after,
.mpl-navbar-mobile .children > .page_item_has_children > a::after {
  width: 4px;
  height: 4px;
  margin-top: -2px;
}
.mpl-navbar-mobile ul.sub-menu > .menu-item-has-children.show > a,
.mpl-navbar-mobile ul.sub-menu > .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile ul.sub-menu > .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children.show > a,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children.show > a:hover,
.mpl-navbar-mobile ul.sub-menu > .page_item_has_children.show > a:focus,
.mpl-navbar-mobile .children > .menu-item-has-children.show > a,
.mpl-navbar-mobile .children > .menu-item-has-children.show > a:hover,
.mpl-navbar-mobile .children > .menu-item-has-children.show > a:focus,
.mpl-navbar-mobile .children > .page_item_has_children.show > a,
.mpl-navbar-mobile .children > .page_item_has_children.show > a:hover,
.mpl-navbar-mobile .children > .page_item_has_children.show > a:focus {
  color: var(--mpl--navbar-mobile--dropdown-link-show--color);
}
.mpl-navbar-mobile ul.sub-menu .current-menu-item > a,
.mpl-navbar-mobile ul.sub-menu .current-menu-item > a:hover,
.mpl-navbar-mobile ul.sub-menu .current-menu-item > a:focus,
.mpl-navbar-mobile ul.sub-menu .current-menu-parent > a,
.mpl-navbar-mobile ul.sub-menu .current-menu-parent > a:hover,
.mpl-navbar-mobile ul.sub-menu .current-menu-parent > a:focus,
.mpl-navbar-mobile ul.sub-menu .current-menu-ancestor > a,
.mpl-navbar-mobile ul.sub-menu .current-menu-ancestor > a:hover,
.mpl-navbar-mobile ul.sub-menu .current-menu-ancestor > a:focus,
.mpl-navbar-mobile ul.sub-menu .current_page_item > a,
.mpl-navbar-mobile ul.sub-menu .current_page_item > a:hover,
.mpl-navbar-mobile ul.sub-menu .current_page_item > a:focus,
.mpl-navbar-mobile ul.sub-menu .current_page_parent > a,
.mpl-navbar-mobile ul.sub-menu .current_page_parent > a:hover,
.mpl-navbar-mobile ul.sub-menu .current_page_parent > a:focus,
.mpl-navbar-mobile ul.sub-menu .current_page_ancestor > a,
.mpl-navbar-mobile ul.sub-menu .current_page_ancestor > a:hover,
.mpl-navbar-mobile ul.sub-menu .current_page_ancestor > a:focus,
.mpl-navbar-mobile .children .current-menu-item > a,
.mpl-navbar-mobile .children .current-menu-item > a:hover,
.mpl-navbar-mobile .children .current-menu-item > a:focus,
.mpl-navbar-mobile .children .current-menu-parent > a,
.mpl-navbar-mobile .children .current-menu-parent > a:hover,
.mpl-navbar-mobile .children .current-menu-parent > a:focus,
.mpl-navbar-mobile .children .current-menu-ancestor > a,
.mpl-navbar-mobile .children .current-menu-ancestor > a:hover,
.mpl-navbar-mobile .children .current-menu-ancestor > a:focus,
.mpl-navbar-mobile .children .current_page_item > a,
.mpl-navbar-mobile .children .current_page_item > a:hover,
.mpl-navbar-mobile .children .current_page_item > a:focus,
.mpl-navbar-mobile .children .current_page_parent > a,
.mpl-navbar-mobile .children .current_page_parent > a:hover,
.mpl-navbar-mobile .children .current_page_parent > a:focus,
.mpl-navbar-mobile .children .current_page_ancestor > a,
.mpl-navbar-mobile .children .current_page_ancestor > a:hover,
.mpl-navbar-mobile .children .current_page_ancestor > a:focus {
  color: var(--mpl--navbar-mobile--link-active--color);
}
.mpl-navbar-mobile ul.sub-menu .mpl-navbar-mobile-parent-links-to-dropdowns svg,
.mpl-navbar-mobile .children .mpl-navbar-mobile-parent-links-to-dropdowns svg {
  width: 14px;
  margin-left: 8px;
  vertical-align: -0.15em;
}
.mpl-navbar-mobile .mpl-navbar-widget-area {
  flex: 0 0 var(--mpl--sidebar--width);
  max-width: var(--mpl--sidebar--width);
}
@media (max-width: 1081.98px) {
  .mpl-navbar-mobile .mpl-navbar-widget-area {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: var(--mpl--sidebar--gap);
  }
}

.mpl-navbar-mobile.mpl-navbar-align-left ul.sub-menu,
.mpl-navbar-mobile.mpl-navbar-align-left .children {
  padding-left: 20px;
}
.mpl-navbar-mobile.mpl-navbar-align-left .menu-item-has-children > a::after,
.mpl-navbar-mobile.mpl-navbar-align-left .page_item_has_children > a::after {
  right: -20px;
}
@media (min-width: 1082px) {
  .mpl-navbar-mobile.mpl-navbar-align-left .mpl-navbar-widget-area {
    margin-left: var(--mpl--sidebar--gap);
  }
}

.mpl-navbar-mobile.mpl-navbar-align-right ul.sub-menu,
.mpl-navbar-mobile.mpl-navbar-align-right .children {
  padding-right: 20px;
}
.mpl-navbar-mobile.mpl-navbar-align-right .menu-item-has-children > a::after,
.mpl-navbar-mobile.mpl-navbar-align-right .page_item_has_children > a::after {
  left: -20px;
}
.mpl-navbar-mobile.mpl-navbar-align-right .mpl-navbar-body {
  text-align: right;
}
@media (min-width: 1082px) {
  .mpl-navbar-mobile.mpl-navbar-align-right .mpl-navbar-widget-area {
    order: -1;
    margin-right: var(--mpl--sidebar--gap);
  }
}

@media (max-width: 571.98px) {
  .mpl-navbar-mobile-open .mpl-navbar-head {
    background-color: hsla(var(--mpl-color-background-300), 0.5);
  }
}

/* ------------------------------------------------------------------
  Cursor.
 ------------------------------------------------------------------- */
.is-mobile .mpl-cursor {
  display: none;
}

.mpl-hide-system-cursor * {
  cursor: none !important;
}

.mpl-cursor {
  --mpl--cursor--width: 5px;
  --mpl--cursor--height: 5px;
  --mpl--cursor--x: -100px;
  --mpl--cursor--y: -100px;
  --mpl--cursor--border-radius: 0;
  --mpl--cursor--color: #808080;
  --mpl--cursor--z-index: 999999;
  --mpl--cursor-hover--color: hsl(var(--mpl-color-title));
  pointer-events: none;
}
.mpl-cursor::before {
  display: block;
  content: "";
}

.mpl-cursor-aim::before {
  position: fixed;
  top: calc(var(--mpl--cursor--height) * -0.5);
  /* rtl:ignore */
  left: calc(var(--mpl--cursor--width) * -0.5);
  z-index: var(--mpl--cursor--z-index);
  width: var(--mpl--cursor--width);
  height: var(--mpl--cursor--height);
  background-color: var(--mpl--cursor--color);
  border-radius: var(--mpl--cursor--border-radius);
  transform: translate(var(--mpl--cursor--x), var(--mpl--cursor--y));
}
.mpl-cursor-aim .mpl-cursor-vertical,
.mpl-cursor-aim .mpl-cursor-horizontal {
  position: fixed;
  z-index: calc(var(--mpl--cursor--z-index) - 1);
}
.mpl-cursor-aim .mpl-cursor-horizontal {
  top: -0.5px;
  /* rtl:ignore */
  right: 0;
  /* rtl:ignore */
  left: 0;
  border-top: 1px solid var(--mpl--cursor--color);
  opacity: 0.1;
  transform: translate(0, var(--mpl--cursor--y));
}
.mpl-cursor-aim .mpl-cursor-vertical {
  position: fixed;
  top: 0;
  bottom: 0;
  /* rtl:ignore */
  left: -0.5px;
  /* rtl:ignore */
  border-left: 1px solid var(--mpl--cursor--color);
  opacity: 0.1;
  transform: translate(var(--mpl--cursor--x), 0);
}
.mpl-cursor-aim.mpl-cursor-hover::before {
  background-color: var(--mpl--cursor-hover--color);
}

.mpl-cursor-circle {
  --mpl--cursor--width: 16px;
  --mpl--cursor--height: 16px;
  --mpl--cursor--border-radius: 8px;
  --mpl--cursor--color: hsl(var(--mpl-color-title));
  --mpl--cursor--wrapper--transition-duration: 0.15s;
  --mpl--cursor--wrapper--transition-easing: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --mpl--cursor--wrapper-hover--transform: scale(3);
  position: fixed;
  top: calc(var(--mpl--cursor--height) * -0.5);
  /* rtl:ignore */
  left: calc(var(--mpl--cursor--width) * -0.5);
  z-index: var(--mpl--cursor--z-index);
  width: var(--mpl--cursor--width);
  height: var(--mpl--cursor--height);
  mix-blend-mode: exclusion;
  transform: translate(var(--mpl--cursor--x), var(--mpl--cursor--y));
}
.mpl-cursor-circle::before {
  width: var(--mpl--cursor--width);
  height: var(--mpl--cursor--height);
  background-color: var(--mpl--cursor--color);
  border-radius: var(--mpl--cursor--border-radius);
  transition: var(--mpl--cursor--wrapper--transition-duration) transform var(--mpl--cursor--wrapper--transition-easing);
}
.mpl-cursor-circle.mpl-cursor-hover::before {
  transform: var(--mpl--cursor--wrapper-hover--transform);
}

.mpl-cursor-bubble {
  --mpl--cursor--width: 4px;
  --mpl--cursor--height: 4px;
  --mpl--cursor--border-radius: 2px;
  --mpl--cursor--color: hsl(var(--mpl-color-title));
  --mpl--cursor--outer--width: 26px;
  --mpl--cursor--outer--height: 26px;
  --mpl--cursor--outer--border-radius: 13px;
  --mpl--cursor--outer--background-color: transparent;
  --mpl--cursor--outer--border-color: hsla(var(--mpl-color-title), 15%);
  --mpl--cursor--wrapper--transition-duration: 0.15s;
  --mpl--cursor--wrapper--transition-easing: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --mpl--cursor--wrapper-hover--transform: scale(3);
}
.mpl-cursor-bubble::before, .mpl-cursor-bubble::after {
  position: fixed;
  top: calc(var(--mpl--cursor--height) * -0.5);
  /* rtl:ignore */
  left: calc(var(--mpl--cursor--width) * -0.5);
  z-index: var(--mpl--cursor--z-index);
  display: block;
  width: var(--mpl--cursor--width);
  height: var(--mpl--cursor--height);
  content: "";
  background-color: var(--mpl--cursor--color);
  border-radius: var(--mpl--cursor--border-radius);
  transform: translate(var(--mpl--cursor--x), var(--mpl--cursor--y));
}
.mpl-cursor-bubble::before {
  transition: 0.15s top, 0.15s left, 0.15s width, 0.15s height, 0.15s background-color, 0.15s border-radius;
}
.mpl-cursor-bubble::after {
  top: calc(var(--mpl--cursor--outer--height) * -0.5);
  /* rtl:ignore */
  left: calc(var(--mpl--cursor--outer--width) * -0.5);
  width: var(--mpl--cursor--outer--width);
  height: var(--mpl--cursor--outer--height);
  background-color: var(--mpl--cursor--outer--background-color);
  border: 2px solid var(--mpl--cursor--outer--border-color);
  border-radius: var(--mpl--cursor--outer--border-radius);
  transition: 0.04s transform, 0.15s top, 0.15s left, 0.15s width, 0.15s height, 0.15s background-color, 0.15s border-color, 0.15s border-radius;
}
.mpl-cursor-bubble.mpl-cursor-hover {
  --mpl--cursor--width: 8px;
  --mpl--cursor--height: 8px;
  --mpl--cursor--border-radius: 4px;
  --mpl--cursor--outer--width: 50px;
  --mpl--cursor--outer--height: 50px;
  --mpl--cursor--outer--border-radius: 25px;
  --mpl--cursor--outer--background-color: hsla(var(--mpl-color-title), 5%);
  --mpl--cursor--outer--border-color: transparent;
}

/* ------------------------------------------------------------------
  Footer.
 ------------------------------------------------------------------- */
.mpl-footer {
  --mpl--footer--padding-y: var(--mpl-vertical-rhythm-content);
  --mpl--footer--padding-x: var(--mpl--container--padding);
  position: relative;
  padding-right: var(--mpl--footer--padding-x);
  padding-left: var(--mpl--footer--padding-x);
  margin: 0 calc(var(--mpl--container--padding) * -1);
  margin-top: auto;
  color: hsl(var(--mpl-color-meta));
  background-color: hsl(var(--mpl-color-background-300));
}
.mpl-footer-widget-area {
  margin-top: 0;
}
.mpl-footer-widget-area + .mpl-footer {
  margin-top: 0;
}
.mpl-footer .mpl-footer-widgets {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: var(--mpl--footer--padding-y);
  padding-bottom: var(--mpl--footer--padding-y);
  margin-top: calc(var(--mpl--footer--gap-v) * -1);
  margin-right: calc(var(--mpl--footer--gap-h) * -0.5);
  margin-left: calc(var(--mpl--footer--gap-h) * -0.5);
  overflow: hidden;
}
@media (min-width: 572px) and (max-width: 1081.98px) {
  .mpl-footer .mpl-footer-widgets {
    --mpl--footer-column-1--width: 50%;
    --mpl--footer-column-2--width: 50%;
    --mpl--footer-column-3--width: 50%;
    --mpl--footer-column-4--width: 50%;
  }
}
@media (max-width: 571.98px) {
  .mpl-footer .mpl-footer-widgets {
    --mpl--footer-column-1--width: 100%;
    --mpl--footer-column-2--width: 100%;
    --mpl--footer-column-3--width: 100%;
    --mpl--footer-column-4--width: 100%;
  }
}
.mpl-footer .mpl-footer-widget-area {
  padding-top: var(--mpl--footer--gap-v);
  padding-right: calc(var(--mpl--footer--gap-h) * 0.5);
  padding-left: calc(var(--mpl--footer--gap-h) * 0.5);
}
.mpl-footer .mpl-footer-widget-area .widget + .widget {
  margin-top: var(--mpl--footer--gap-v);
}
@media (min-width: 572px) {
  .mpl-footer .mpl-footer-widget-area:nth-child(1) {
    flex: 0 0 var(--mpl--footer-column-1--width);
    max-width: var(--mpl--footer-column-1--width);
  }
  .mpl-footer .mpl-footer-widget-area:nth-child(2) {
    flex: 0 0 var(--mpl--footer-column-2--width);
    max-width: var(--mpl--footer-column-2--width);
  }
  .mpl-footer .mpl-footer-widget-area:nth-child(3) {
    flex: 0 0 var(--mpl--footer-column-3--width);
    max-width: var(--mpl--footer-column-3--width);
  }
  .mpl-footer .mpl-footer-widget-area:nth-child(4) {
    flex: 0 0 var(--mpl--footer-column-4--width);
    max-width: var(--mpl--footer-column-4--width);
  }
}
@media (max-width: 571.98px) {
  .mpl-footer .mpl-footer-widget-area {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.mpl-footer-social-links {
  position: relative;
  padding: var(--mpl-vertical-rhythm-content) 0;
  margin-right: calc(var(--mpl--footer--padding-x) * -1);
  margin-left: calc(var(--mpl--footer--padding-x) * -1);
  overflow: hidden;
  background-color: hsl(var(--mpl-color-background-300));
}
.mpl-footer-social-links .mpl-footer-social-links-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}
.mpl-footer-social-links .mpl-footer-social-links-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.mpl-footer-social-links .mpl-footer-social-links-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.mpl-footer-social-links .mpl-social-links {
  --mpl--social-links--svg--width: 32px;
  --mpl--social-links--svg--height: 32px;
  --mpl--social-links--color: hsl(var(--mpl-color-white));
  --mpl--social-links-hover--color: hsl(var(--mpl-color-white));
  --mpl--social-links-focus--color: hsl(var(--mpl-color-white));
  text-align: center;
}
.mpl-footer-social-links .mpl-social-links > ul {
  justify-content: center;
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-item::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-item:hover .mpl-social-links-label, .mpl-footer-social-links .mpl-social-links .mpl-social-links-item:focus .mpl-social-links-label {
  transform: translateY(2px);
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-item:hover .mpl-social-links-icon svg, .mpl-footer-social-links .mpl-social-links .mpl-social-links-item:focus .mpl-social-links-icon svg {
  transform: scale(1.1);
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-item:hover .mpl-social-links-icon::before, .mpl-footer-social-links .mpl-social-links .mpl-social-links-item:focus .mpl-social-links-icon::before {
  clip-path: polygon(4px 0, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  background-position: bottom left;
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-icon {
  position: relative;
  padding: 30px 44px;
  filter: var(--mpl--filter--round);
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-icon::before {
  clip-path: polygon(4px 0, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(to bottom left, hsl(var(--mpl-color-background-100)) 50%, var(--mpl-color-brand) 50%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 200% 200%;
  transition: background-position var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-icon svg {
  display: block;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.mpl-footer-social-links .mpl-social-links .mpl-social-links-label {
  margin-top: 10px;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}

.mpl-footer-copyright {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
  color: hsl(var(--mpl-color-text));
  text-align: center;
}
.mpl-footer-copyright p:first-child {
  margin-top: 0;
}
.mpl-footer-copyright p:last-child,
.mpl-footer-copyright p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 571.98px) {
  .navigation-icons-exist .mpl-footer {
    margin-bottom: var(--mpl--navbar-icons--min-height);
  }
}

/* ------------------------------------------------------------------
  Content.
 ------------------------------------------------------------------- */
.sticky {
  display: block;
}

.site {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 var(--mpl--container--padding);
}
.admin-bar .site {
  min-height: calc(100vh - var(--wp-admin--admin-bar--height));
}

.site-content > .post-thumbnail {
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.site-content > .post-thumbnail img {
  border-radius: 0;
}
.site-content > .post-thumbnail::before {
  min-height: 50vh;
  padding-top: calc(var(--mpl--aspect-ratio--21-9) - 200px);
}
@media (max-width: 571.98px) {
  .site-content > .post-thumbnail::before {
    min-height: 40vh;
  }
}
@media (min-width: 1082px) {
  .site-content > .post-thumbnail + .entry-header {
    margin-top: -92px;
  }
}
@media (min-width: 572px) and (max-width: 1081.98px) {
  .site-content > .post-thumbnail + .entry-header {
    padding: 30px 50px;
    margin-top: -50px;
  }
  .site-content > .post-thumbnail + .entry-header::before {
    right: 30px;
    left: 30px;
  }
}
@media (max-width: 571.98px) {
  .site-content > .post-thumbnail + .entry-header {
    width: auto;
    max-width: none;
    padding: 30px;
    margin-top: 30px;
  }
}
.site-content > .entry-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px;
  margin-top: 100px;
  text-align: center;
  background-color: hsl(var(--mpl-color-background-200));
  border-radius: var(--mpl-border-radius-lg);
}
@media (max-width: 571.98px) {
  .site-content > .entry-header {
    margin-top: var(--mpl-vertical-rhythm-block);
  }
}
.site-content > .entry-header > .entry-title {
  flex: 0 0 100%;
  max-width: 100%;
  color: hsl(var(--mpl-color-title));
}
.site-content > .entry-header > .entry-title:not(:first-child) {
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
}
.site-content > .entry-header > .post-categories {
  --mpl--post-categories-hover--color: hsl(var(--mpl-color-white));
  --mpl--post-categories-focus--color: hsl(var(--mpl-color-white));
  flex: 0 0 auto;
  max-width: 100%;
  margin-top: 0;
}
.site-content > .entry-header > .entry-meta {
  --mpl--entry-meta--color: hsl(var(--mpl-color-meta));
  --mpl--entry-meta-hover--color: hsl(var(--mpl-color-white));
  --mpl--entry-meta-focus--color: hsl(var(--mpl-color-white));
  flex: 0 0 auto;
  max-width: 100%;
  order: 1;
  margin-top: 10px;
}
@media (min-width: 782px) {
  .site-content > .entry-header > .entry-meta {
    --mpl--entry-meta--gap-h: 30px;
  }
}
.site-content > .entry-header > .post-categories,
.site-content > .entry-header > .entry-meta {
  justify-content: center;
}

.post-thumbnail {
  position: relative;
  background-color: hsl(var(--mpl-color-background-200));
  border-radius: var(--mpl-border-radius-lg);
}
.post-thumbnail::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}
.post-thumbnail img,
.post-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: var(--mpl-border-radius-lg);
}

.post-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.site-main > .hentry > .post-thumbnail {
  width: 100%;
  margin-bottom: 40px;
}
.site-main > .hentry > .post-thumbnail:not(:first-child) {
  margin-top: 30px;
}
.site-main > .hentry > .post-thumbnail img {
  width: 100%;
}

body {
  --mpl--content--width: calc(100% - (var(--mpl--sidebar--width) + var(--mpl--sidebar--gap)));
  --mpl--sidebar--width: 360px;
  --mpl--sidebar--gap: 80px;
}
@media (max-width: 1391.98px) {
  body {
    --mpl--sidebar--gap: 60px;
  }
}

.content-area {
  padding-top: var(--mpl-vertical-rhythm-content);
  margin-bottom: var(--mpl-vertical-rhythm-content);
}
body.content-without-top-margin .content-area {
  padding-top: 0;
}
body.content-without-bottom-margin .content-area {
  margin-bottom: 0;
}

.content-size-full body.single .page-header,
.content-size-full body.single .entry-header,
.content-size-full body.page .page-header,
.content-size-full body.page .entry-header {
  width: auto;
}
.content-size-full body.single .page-footer,
.content-size-full body.single .entry-footer,
.content-size-full body.page .page-footer,
.content-size-full body.page .entry-footer {
  width: auto;
}
.content-size-full body.single .comments-area,
.content-size-full body.single .mpl-page-navigation,
.content-size-full body.page .comments-area,
.content-size-full body.page .mpl-page-navigation {
  width: auto;
}
body.single.content-size-full .page-header,
body.single.content-size-full .entry-header,
body.page.content-size-full .page-header,
body.page.content-size-full .entry-header {
  width: auto;
}
body.single.content-size-full .page-footer,
body.single.content-size-full .entry-footer,
body.page.content-size-full .page-footer,
body.page.content-size-full .entry-footer {
  width: auto;
}
body.single.content-size-full .page-content > *:not(.alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-size-full .entry-content > *:not(.alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-size-full .entry-summary > *:not(.alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-full .page-content > *:not(.alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-full .entry-content > *:not(.alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-size-full .entry-summary > *:not(.alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce) {
  width: auto;
}
body.single .page-header + .page-content,
body.single .page-header + .entry-content,
body.single .page-header + .entry-summary,
body.single .entry-header + .page-content,
body.single .entry-header + .entry-content,
body.single .entry-header + .entry-summary,
body.page .page-header + .page-content,
body.page .page-header + .entry-content,
body.page .page-header + .entry-summary,
body.page .entry-header + .page-content,
body.page .entry-header + .entry-content,
body.page .entry-header + .entry-summary {
  margin-top: calc(var(--mpl-vertical-rhythm) * 2);
}
body.single .entry-title,
body.single .page-title,
body.page .entry-title,
body.page .page-title {
  margin-top: 0;
  margin-bottom: 0;
}
body.single .entry-title + .entry-meta,
body.single .page-title + .entry-meta,
body.page .entry-title + .entry-meta,
body.page .page-title + .entry-meta {
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.4);
}
body.single .post-categories + .entry-title,
body.single .post-categories + .page-title,
body.page .post-categories + .entry-title,
body.page .post-categories + .page-title {
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
}
body.single .entry-meta + .post-categories,
body.page .entry-meta + .post-categories {
  margin-top: 5px;
}
body.single.content-with-sidebar .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-with-sidebar .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.single.content-with-sidebar .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-with-sidebar .page-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-with-sidebar .entry-content > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce),
body.page.content-with-sidebar .entry-summary > *:not(.alignwide, .alignfull, .alignleft, .alignright, .is-style-wide, .woocommerce) {
  width: 100%;
}
body.single.content-with-sidebar .content-area .page-header,
body.single.content-with-sidebar .content-area .entry-header,
body.page.content-with-sidebar .content-area .page-header,
body.page.content-with-sidebar .content-area .entry-header {
  width: 100%;
}
body.single.content-with-sidebar .content-area .page-footer,
body.single.content-with-sidebar .content-area .entry-footer,
body.page.content-with-sidebar .content-area .page-footer,
body.page.content-with-sidebar .content-area .entry-footer {
  width: 100%;
}
body.single.content-with-sidebar .comments-area,
body.single.content-with-sidebar .mpl-page-navigation,
body.page.content-with-sidebar .comments-area,
body.page.content-with-sidebar .mpl-page-navigation {
  width: 100%;
}
body.single.content-with-sidebar .page-content > .alignwide:not(.wp-block-gallery),
body.single.content-with-sidebar .entry-content > .alignwide:not(.wp-block-gallery),
body.single.content-with-sidebar .entry-summary > .alignwide:not(.wp-block-gallery),
body.page.content-with-sidebar .page-content > .alignwide:not(.wp-block-gallery),
body.page.content-with-sidebar .entry-content > .alignwide:not(.wp-block-gallery),
body.page.content-with-sidebar .entry-summary > .alignwide:not(.wp-block-gallery) {
  min-width: 100%;
}
body.content-with-sidebar .content-area {
  display: flex;
  flex-wrap: wrap;
}
body.content-with-sidebar .content-area > .site-main {
  flex: 0 0 var(--mpl--content--width);
  max-width: var(--mpl--content--width);
}
@media (max-width: 1081.98px) {
  body.content-with-sidebar .content-area > .site-main {
    --mpl--content--width: 100%;
  }
}
body.content-with-sidebar .content-area > .widget-area {
  flex: 0 0 var(--mpl--sidebar--width);
  max-width: var(--mpl--sidebar--width);
}
@media (min-width: 1082px) and (max-width: 1391.98px) {
  body.content-with-sidebar .content-area > .widget-area {
    --mpl--sidebar--width: 320px;
  }
}
@media (max-width: 1081.98px) {
  body.content-with-sidebar .content-area > .widget-area {
    --mpl--sidebar--width: 100%;
    margin-top: var(--mpl--sidebar--gap);
  }
}

.content-sidebar-left .content-area > .widget-area {
  margin-right: var(--mpl--sidebar--gap);
}
@media (min-width: 1082px) {
  .content-sidebar-left .content-area > .widget-area {
    order: -1;
  }
}
@media (max-width: 1081.98px) {
  .content-sidebar-left .content-area > .widget-area {
    margin-right: 0;
  }
}

.content-sidebar-right .content-area > .widget-area {
  margin-left: var(--mpl--sidebar--gap);
}
@media (max-width: 1081.98px) {
  .content-sidebar-right .content-area > .widget-area {
    margin-left: 0;
  }
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0 auto;
  color: hsl(var(--mpl-color-text));
}
.page-content > *,
.entry-content > *,
.entry-summary > * {
  margin-top: calc(10px + var(--mpl-vertical-rhythm));
  margin-bottom: calc(10px + var(--mpl-vertical-rhythm));
}
.page-content > *:first-child,
.entry-content > *:first-child,
.entry-summary > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child,
.entry-content > *:last-child,
.entry-summary > *:last-child {
  margin-bottom: 0;
}
.page-content > p,
.page-content > ul,
.page-content > ol,
.page-content > blockquote,
.page-content .wp-block-table,
.page-content .wp-block-quote.is-style-large,
.page-content .wp-block-quote.is-large,
.page-content .woocommerce-product-details__short-description,
.entry-content > p,
.entry-content > ul,
.entry-content > ol,
.entry-content > blockquote,
.entry-content .wp-block-table,
.entry-content .wp-block-quote.is-style-large,
.entry-content .wp-block-quote.is-large,
.entry-content .woocommerce-product-details__short-description,
.entry-summary > p,
.entry-summary > ul,
.entry-summary > ol,
.entry-summary > blockquote,
.entry-summary .wp-block-table,
.entry-summary .wp-block-quote.is-style-large,
.entry-summary .wp-block-quote.is-large,
.entry-summary .woocommerce-product-details__short-description {
  margin-top: var(--mpl-vertical-rhythm);
  margin-bottom: var(--mpl-vertical-rhythm);
}
.page-content > p:first-child,
.page-content > ul:first-child,
.page-content > ol:first-child,
.page-content > blockquote:first-child,
.page-content .wp-block-table:first-child,
.page-content .wp-block-quote.is-style-large:first-child,
.page-content .wp-block-quote.is-large:first-child,
.page-content .woocommerce-product-details__short-description:first-child,
.entry-content > p:first-child,
.entry-content > ul:first-child,
.entry-content > ol:first-child,
.entry-content > blockquote:first-child,
.entry-content .wp-block-table:first-child,
.entry-content .wp-block-quote.is-style-large:first-child,
.entry-content .wp-block-quote.is-large:first-child,
.entry-content .woocommerce-product-details__short-description:first-child,
.entry-summary > p:first-child,
.entry-summary > ul:first-child,
.entry-summary > ol:first-child,
.entry-summary > blockquote:first-child,
.entry-summary .wp-block-table:first-child,
.entry-summary .wp-block-quote.is-style-large:first-child,
.entry-summary .wp-block-quote.is-large:first-child,
.entry-summary .woocommerce-product-details__short-description:first-child {
  margin-top: 0;
}
.page-content > p:last-child,
.page-content > ul:last-child,
.page-content > ol:last-child,
.page-content > blockquote:last-child,
.page-content .wp-block-table:last-child,
.page-content .wp-block-quote.is-style-large:last-child,
.page-content .wp-block-quote.is-large:last-child,
.page-content .woocommerce-product-details__short-description:last-child,
.entry-content > p:last-child,
.entry-content > ul:last-child,
.entry-content > ol:last-child,
.entry-content > blockquote:last-child,
.entry-content .wp-block-table:last-child,
.entry-content .wp-block-quote.is-style-large:last-child,
.entry-content .wp-block-quote.is-large:last-child,
.entry-content .woocommerce-product-details__short-description:last-child,
.entry-summary > p:last-child,
.entry-summary > ul:last-child,
.entry-summary > ol:last-child,
.entry-summary > blockquote:last-child,
.entry-summary .wp-block-table:last-child,
.entry-summary .wp-block-quote.is-style-large:last-child,
.entry-summary .wp-block-quote.is-large:last-child,
.entry-summary .woocommerce-product-details__short-description:last-child {
  margin-bottom: 0;
}
.page-content h1,
.entry-content h1,
.entry-summary h1 {
  margin-bottom: var(--mpl-vertical-rhythm);
}
.page-content h1:last-child,
.entry-content h1:last-child,
.entry-summary h1:last-child {
  margin-bottom: 0;
}
.page-content h2,
.entry-content h2,
.entry-summary h2 {
  margin-bottom: var(--mpl-vertical-rhythm);
}
.page-content h2:last-child,
.entry-content h2:last-child,
.entry-summary h2:last-child {
  margin-bottom: 0;
}
.page-content h3,
.entry-content h3,
.entry-summary h3 {
  margin-bottom: calc(1px + var(--mpl-vertical-rhythm));
}
.page-content h3:last-child,
.entry-content h3:last-child,
.entry-summary h3:last-child {
  margin-bottom: 0;
}
.page-content h4,
.entry-content h4,
.entry-summary h4 {
  margin-bottom: calc(2px + var(--mpl-vertical-rhythm));
}
.page-content h4:last-child,
.entry-content h4:last-child,
.entry-summary h4:last-child {
  margin-bottom: 0;
}
.page-content h5,
.entry-content h5,
.entry-summary h5 {
  margin-bottom: calc(3px + var(--mpl-vertical-rhythm));
}
.page-content h5:last-child,
.entry-content h5:last-child,
.entry-summary h5:last-child {
  margin-bottom: 0;
}
.page-content h6,
.entry-content h6,
.entry-summary h6 {
  margin-bottom: calc(5px + var(--mpl-vertical-rhythm));
}
.page-content h6:last-child,
.entry-content h6:last-child,
.entry-summary h6:last-child {
  margin-bottom: 0;
}
.page-content h1,
.entry-content h1,
.entry-summary h1 {
  margin-top: calc(9px + var(--mpl-vertical-rhythm));
}
.page-content h1:first-child,
.entry-content h1:first-child,
.entry-summary h1:first-child {
  margin-top: 0;
}
.page-content h2,
.entry-content h2,
.entry-summary h2 {
  margin-top: calc(15px + var(--mpl-vertical-rhythm));
}
.page-content h2:first-child,
.entry-content h2:first-child,
.entry-summary h2:first-child {
  margin-top: 0;
}
.page-content h3,
.entry-content h3,
.entry-summary h3 {
  margin-top: calc(19px + var(--mpl-vertical-rhythm));
}
.page-content h3:first-child,
.entry-content h3:first-child,
.entry-summary h3:first-child {
  margin-top: 0;
}
.page-content h4,
.entry-content h4,
.entry-summary h4 {
  margin-top: calc(23px + var(--mpl-vertical-rhythm));
}
.page-content h4:first-child,
.entry-content h4:first-child,
.entry-summary h4:first-child {
  margin-top: 0;
}
.page-content h5,
.entry-content h5,
.entry-summary h5 {
  margin-top: calc(27px + var(--mpl-vertical-rhythm));
}
.page-content h5:first-child,
.entry-content h5:first-child,
.entry-summary h5:first-child {
  margin-top: 0;
}
.page-content h6,
.entry-content h6,
.entry-summary h6 {
  margin-top: calc(32px + var(--mpl-vertical-rhythm));
}
.page-content h6:first-child,
.entry-content h6:first-child,
.entry-summary h6:first-child {
  margin-top: 0;
}
.page-content > *:first-child,
.page-content > p:first-child,
.page-content > ul:first-child,
.page-content > ol:first-child,
.page-content > blockquote:first-child,
.page-content .wp-block-table:first-child,
.page-content .wp-block-quote.is-style-large:first-child,
.page-content .wp-block-quote.is-large:first-child,
.entry-content > *:first-child,
.entry-content > p:first-child,
.entry-content > ul:first-child,
.entry-content > ol:first-child,
.entry-content > blockquote:first-child,
.entry-content .wp-block-table:first-child,
.entry-content .wp-block-quote.is-style-large:first-child,
.entry-content .wp-block-quote.is-large:first-child,
.entry-summary > *:first-child,
.entry-summary > p:first-child,
.entry-summary > ul:first-child,
.entry-summary > ol:first-child,
.entry-summary > blockquote:first-child,
.entry-summary .wp-block-table:first-child,
.entry-summary .wp-block-quote.is-style-large:first-child,
.entry-summary .wp-block-quote.is-large:first-child {
  margin-top: 0;
}
.page-content > *:last-child,
.page-content > p:last-child,
.page-content > ul:last-child,
.page-content > ol:last-child,
.page-content > blockquote:last-child,
.page-content .wp-block-table:last-child,
.page-content .wp-block-quote.is-style-large:last-child,
.page-content .wp-block-quote.is-large:last-child,
.entry-content > *:last-child,
.entry-content > p:last-child,
.entry-content > ul:last-child,
.entry-content > ol:last-child,
.entry-content > blockquote:last-child,
.entry-content .wp-block-table:last-child,
.entry-content .wp-block-quote.is-style-large:last-child,
.entry-content .wp-block-quote.is-large:last-child,
.entry-summary > *:last-child,
.entry-summary > p:last-child,
.entry-summary > ul:last-child,
.entry-summary > ol:last-child,
.entry-summary > blockquote:last-child,
.entry-summary .wp-block-table:last-child,
.entry-summary .wp-block-quote.is-style-large:last-child,
.entry-summary .wp-block-quote.is-large:last-child {
  margin-bottom: 0;
}

.responsive-embed {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  clear: both;
}
.responsive-embed.responsive-embed-16x9 {
  padding-bottom: 56.25%;
}
.responsive-embed.responsive-embed-4x3 {
  padding-bottom: 75%;
}
.responsive-embed > .embed-item,
.responsive-embed > iframe,
.responsive-embed > embed,
.responsive-embed > object {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
  margin-right: auto;
  margin-left: auto;
}

.content-with-sidebar .alignfull {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.alignfull {
  position: relative;
  width: calc(100% + var(--mpl--container--padding) + var(--mpl--container--padding));
  max-width: calc(100% + var(--mpl--container--padding) + var(--mpl--container--padding));
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.ghostkit-grid > .alignfull.nk-awb {
  left: calc(var(--mpl--page-frame--size) + var(--mpl--page-scrollbar--size) * 0.5);
  width: calc(100vw - 2 * var(--mpl--page-frame--size) - var(--mpl--page-scrollbar--size));
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.ghostkit-col > .nk-awb.alignfull {
  width: unset;
  margin-right: 0;
  margin-left: 0;
}
.ghostkit-col > .nk-awb.alignfull-left > .nk-awb-wrap {
  margin-left: calc(50% - 50vw);
}
.ghostkit-col > .nk-awb.alignfull-right > .nk-awb-wrap {
  margin-right: calc(50% - 50vw);
}

.alignwide {
  position: relative;
}

.aligncenter,
.aligncenter img {
  margin-right: auto;
  margin-left: auto;
}

.aligncenter {
  text-align: center;
}
.aligncenter .wp-caption-text {
  text-align: center;
}

.alignleft,
.alignright {
  max-width: 50%;
}

.alignleft {
  margin-top: 0;
  margin-right: 42px;
  margin-bottom: 35px;
  margin-left: 0;
  text-align: left;
}
@media (min-width: 572px) {
  .alignleft {
    float: left;
  }
}
.alignleft .wp-caption-text {
  text-align: left;
}

.alignright {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 35px;
  margin-left: 42px;
  text-align: right;
}
@media (min-width: 572px) {
  .alignright {
    float: right;
  }
}
@media (max-width: 571.98px) {
  .alignright {
    margin-left: auto;
  }
}
.alignright .wp-caption-text {
  text-align: right;
}

[class*=wp-block].alignfull:not(.has-background) [class*=__inner-container] > .alignleft,
[class*=wp-block].alignfull:not(.has-background) [class*=__inner-container] > p .alignleft,
[class*=wp-block].alignfull:not(.has-background) [class*=__inner-container] > .wp-block-image .alignleft {
  margin-left: 2rem;
}

[class*=wp-block].alignfull:not(.has-background) [class*=__inner-container] > .alignright,
[class*=wp-block].alignfull:not(.has-background) [class*=__inner-container] > p .alignright,
[class*=wp-block].alignfull:not(.has-background) [class*=__inner-container] > .wp-block-image .alignright {
  margin-right: 2rem;
}

.alignfull > figcaption,
.alignfull > .wp-caption-text {
  width: calc(100% - 4rem);
  max-width: 58rem;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption-text {
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-meta));
}
.wp-caption-text a {
  color: hsl(var(--mpl-color-title));
}

.wp-caption .wp-caption-text {
  margin: 18px 0;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  clear: both;
  font-size: var(--mpl--button--font-size);
  font-weight: var(--mpl--button--font-weight);
  line-height: var(--mpl--button--line-height);
  color: hsl(var(--mpl-color-text));
  text-transform: var(--mpl--button--text-transform);
}
.page-links .post-page-numbers {
  flex: 0 0 auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
}
.page-links .post-page-numbers:not(:last-child) {
  margin-right: 5px;
}
.page-links .post-page-numbers:not(:first-child) {
  margin-left: 5px;
}
.page-links .post-page-numbers:first-child {
  margin-left: 20px;
}
.page-links .post-page-numbers.current {
  color: hsl(var(--mpl-color-white));
  background-color: var(--mpl-color-brand);
}
.page-links .post-page-numbers[href] {
  position: relative;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.page-links .post-page-numbers[href]:hover, .page-links .post-page-numbers[href]:focus {
  color: hsl(var(--mpl-color-title));
  background-color: hsl(var(--mpl-color-border));
}

.post-categories {
  --mpl-post-categories__color: hsl(var(--mpl-color-meta));
  --mpl--post-categories-hover--color: hsl(var(--mpl-color-title));
  --mpl--post-categories-focus--color: var(--mpl-color-brand);
  --mpl--post-categories--gap-h: 10px;
  --mpl--post-categories--gap-v: 6px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 calc(var(--mpl--post-categories--gap-h) * -1) calc(var(--mpl--post-categories--gap-v) * -1) 0;
  list-style: none;
}
.post-categories > li {
  display: block;
  margin-right: var(--mpl--post-categories--gap-h);
  margin-bottom: var(--mpl--post-categories--gap-v);
  font-weight: var(--mpl--font-weight--medium);
}
.post-categories a {
  position: relative;
  z-index: 1;
  display: block;
  background-color: transparent;
}
.post-categories a::before {
  background-color: hsl(var(--mpl-color-border));
  transition: background-color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.post-categories a:hover::before, .post-categories a:focus::before {
  background-color: var(--mpl-color-brand);
}

.mpl-tags {
  display: block;
  margin-bottom: 10px;
}
.mpl-tags > span {
  display: inline;
  margin-right: 15px;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-text));
  text-transform: var(--mpl--text-transform--uppercase);
}
.mpl-tags > div {
  display: inline-flex;
}

.entry-meta {
  --mpl--entry-meta--color: hsl(var(--mpl-color-meta));
  --mpl--entry-meta-hover--color: hsl(var(--mpl-color-title));
  --mpl--entry-meta-focus--color: var(--mpl-color-brand);
  --mpl--entry-meta--gap-h: 20px;
  --mpl--entry-meta--gap-v: 7px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--mpl--entry-meta--gap-h) * -1) calc(var(--mpl--entry-meta--gap-v) * -1) 0;
  color: var(--mpl--entry-meta--color);
}
.entry-meta > span {
  flex: 0 0 auto;
  max-width: 100%;
  margin: 0 var(--mpl--entry-meta--gap-h) var(--mpl--entry-meta--gap-v) 0;
}
.entry-meta > .posted-on,
.entry-meta > .posted-by {
  display: block;
}
.entry-meta > .posted-comments {
  display: flex;
}
.entry-meta > .posted-comments svg {
  margin-right: 10px;
  vertical-align: -0.15em;
}
.entry-meta a {
  --mpl--text-fill--color: var(--mpl--entry-meta--color);
  --mpl--text-fill-hover--color: var(--mpl--entry-meta-hover--color);
  display: block;
  font-weight: var(--mpl--font-weight--medium);
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.entry-meta a > span {
  display: inline-block;
  vertical-align: -0.15em;
}
.entry-meta a > .entry-date {
  display: block;
}
.entry-meta a svg {
  display: block;
  margin-right: 7px;
}
.entry-meta svg {
  width: 14px;
  height: 14px;
}

.page-footer,
.entry-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--mpl-vertical-rhythm) * 2);
}
.page-footer:empty,
.entry-footer:empty {
  display: none;
}
.page-footer > div + div,
.entry-footer > div + div {
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
}
.page-footer > .post-categories:not(:last-child),
.entry-footer > .post-categories:not(:last-child) {
  margin-right: 0;
}
.page-footer > .mpl-tags,
.entry-footer > .mpl-tags {
  flex: 0 0 100%;
  max-width: 100%;
}
.page-footer > .mpl-tags + .sociality-share,
.entry-footer > .mpl-tags + .sociality-share {
  margin-left: auto;
}
.page-footer > .sociality-share,
.entry-footer > .sociality-share {
  flex: 0 0 100%;
  max-width: 100%;
}
.page-footer > .comments-link,
.entry-footer > .comments-link {
  margin-top: 30px;
}
.page-footer > .comments-link > a,
.entry-footer > .comments-link > a {
  font-size: var(--mpl--font-size--extra-small);
  font-weight: var(--mpl--font-weight--semi-bold);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--text-transform--uppercase);
}
.page-footer > .comments-link > a:hover, .page-footer > .comments-link > a:focus,
.entry-footer > .comments-link > a:hover,
.entry-footer > .comments-link > a:focus {
  color: var(--mpl-color-brand);
}
.page-footer > .edit-link,
.entry-footer > .edit-link {
  flex: 0 0 100%;
  max-width: 100%;
  padding-top: calc(var(--mpl-vertical-rhythm) * 2);
  border-top: 2px solid hsl(var(--mpl-color-border));
}
body.content-without-bottom-margin .page-footer > .edit-link,
body.content-without-bottom-margin .entry-footer > .edit-link {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 2);
}
.page-footer > .edit-link:not(:first-child),
.entry-footer > .edit-link:not(:first-child) {
  margin-top: calc(var(--mpl-vertical-rhythm) * 2);
}
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* ------------------------------------------------------------------
  Scroll Progress.
 ------------------------------------------------------------------- */
.single-post .mpl-scroll-progress-bar {
  --mpl--scroll-progress-bar--width: 0%;
  --mpl--scroll-progress-bar--height: 120px;
  --mpl--scroll-progress-bar--background-color: transparent;
  top: auto;
  bottom: var(--mpl--container--padding);
}

.mpl-scroll-progress-bar {
  --mpl--scroll-progress-bar--background-color: hsl(var(--mpl-color-background));
  --mpl--scroll-progress-bar--width: 34px;
  --mpl--scroll-progress-bar--height: 140px;
  --mpl--scroll-progress-bar--line--width: 3px;
  --mpl--scroll-progress-bar--line--height: 120px;
  position: fixed;
  top: calc(50% - var(--mpl--scroll-progress-bar--height) * 0.5);
  left: var(--mpl--container--padding);
  z-index: 5;
  width: var(--mpl--scroll-progress-bar--width);
  height: var(--mpl--scroll-progress-bar--height);
  margin-left: calc(var(--mpl--scroll-progress-bar--width) * -0.5);
  visibility: hidden;
  background-color: var(--mpl--scroll-progress-bar--background-color);
  border-radius: var(--mpl-border-radius);
  opacity: 0;
  transition: opacity 0.2s var(--mpl-transition-easing), visibility 0.2s var(--mpl-transition-easing);
}
.mpl-scroll-progress-bar::before, .mpl-scroll-progress-bar::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  width: var(--mpl--scroll-progress-bar--line--width);
  height: var(--mpl--scroll-progress-bar--line--height);
  content: "";
  border-radius: var(--mpl-border-radius-sm);
  transform: translate(-50%, -50%);
}
.mpl-scroll-progress-bar::before {
  background-color: hsl(var(--mpl-color-border));
}
.mpl-scroll-progress-bar::after {
  clip-path: inset(0 0 calc(100% - var(--mpl-scroll-progress)) 0 round var(--mpl-border-radius-sm));
  background-color: hsl(var(--mpl-color-white));
}

@media (max-width: 781.98px) {
  .mpl-scroll-progress-bar {
    display: none;
  }
}
.mpl-scroll-progress-show {
  visibility: visible;
  opacity: 1;
}

/* ------------------------------------------------------------------
  Scroll Top Button.
 ------------------------------------------------------------------- */
.mpl-scroll-top-wrapper {
  position: fixed;
  right: var(--mpl--container--padding);
  bottom: var(--mpl--container--padding);
  z-index: 5;
  width: 46px;
  height: 46px;
  clip-path: circle(50% at 50% 150%);
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: translateY(5px);
}

.mpl-scroll-top-button {
  --mpl--scroll-top-button--background-color: hsl(var(--mpl-color-background));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--mpl-color-title));
  border-radius: 100%;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: rotate(-90deg);
}
.mpl-scroll-top-button > svg {
  display: block;
  width: 16px;
  height: 16px;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.mpl-scroll-top-button > svg path:nth-child(2) {
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform-origin: right;
}
.mpl-scroll-top-button::before {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  content: "";
  border: 2px solid hsl(var(--mpl-color-border));
  border-radius: 50%;
  transition: border-color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-scroll-top-button:hover, .mpl-scroll-top-button:focus {
  color: hsl(var(--mpl-color-white));
  background-color: var(--mpl-color-brand);
}
.mpl-scroll-top-button:hover svg, .mpl-scroll-top-button:focus svg {
  transform: translateX(2px);
}
.mpl-scroll-top-button:hover svg path:nth-child(2), .mpl-scroll-top-button:focus svg path:nth-child(2) {
  transform: scaleX(1.2);
}
.mpl-scroll-top-button:hover::before, .mpl-scroll-top-button:focus::before {
  border-color: var(--mpl-color-brand);
}
.mpl-scroll-top-button:hover ~ .mpl-scroll-progress-circle, .mpl-scroll-top-button:focus ~ .mpl-scroll-progress-circle {
  opacity: 0;
}

.mpl-scroll-progress-circle {
  --mpl--scroll-progress-circle--size: 46px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: hsl(var(--mpl-color-white));
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-scroll-progress-circle svg {
  display: block;
  width: var(--mpl--scroll-progress-circle--size);
  height: var(--mpl--scroll-progress-circle--size);
  transform: scaleX(-1);
}
.mpl-scroll-progress-circle svg circle {
  stroke-dasharray: 290%;
  stroke-dashoffset: calc(290% + var(--mpl-scroll-progress) * 2.9);
  stroke-width: 2.5px;
  transform: rotate(-90deg) translateX(-50%) translateY(50%);
  r: calc(var(--mpl--scroll-progress-circle--size) * 0.5 - 2px);
}

.mpl-scroll-top-button-show {
  clip-path: circle(50% at 50% 50%);
  transform: translateY(0);
}

@media (max-width: 571.98px) {
  .navigation-icons-exist .mpl-scroll-top-wrapper {
    transform: translateY(calc((var(--mpl--navbar-icons--min-height) - 5px) * -1));
  }
  .navigation-icons-exist .mpl-scroll-top-button-show {
    transform: translateY(calc((var(--mpl--navbar-icons--min-height)) * -1));
  }
}

/* ------------------------------------------------------------------
  Container.
 ------------------------------------------------------------------- */
body {
  --mpl--container--padding: 30px;
  --mpl--container-xs--width: 100%;
  --mpl--container-sm--width: 500px;
  --mpl--container-md--width: 710px;
  --mpl--container-lg--width: 1010px;
  --mpl--container-fluid--width: calc(100% - (var(--mpl--container--padding) * 2));
  --mpl--container--width: var(--mpl--container-xl--width);
  --mpl--container-small--width: calc(var(--mpl--container-xl--width) - (var(--mpl--sidebar--width) + var(--mpl--sidebar--gap)));
}
@media (min-width: 1082px) and (max-width: 1391.98px) {
  body {
    --mpl--container--width: var(--mpl--container-lg--width);
  }
}
@media (min-width: 782px) and (max-width: 1081.98px) {
  body {
    --mpl--container--width: var(--mpl--container-md--width);
  }
}
@media (min-width: 572px) and (max-width: 781.98px) {
  body {
    --mpl--container--width: var(--mpl--container-sm--width);
  }
}
@media (max-width: 571.98px) {
  body {
    --mpl--container--width: var(--mpl--container-xs--width);
  }
}
@media (min-width: 782px) and (max-width: 1081.98px) {
  body {
    --mpl--container-small--width: var(--mpl--container-md--width);
  }
}
@media (min-width: 572px) and (max-width: 781.98px) {
  body {
    --mpl--container-small--width: var(--mpl--container-sm--width);
  }
}
@media (max-width: 571.98px) {
  body {
    --mpl--container-small--width: var(--mpl--container-xs--width);
  }
}

/* ------------------------------------------------------------------

  Page.

 ------------------------------------------------------------------- */
/* ------------------------------------------------------------------
  Blog.
 ------------------------------------------------------------------- */
.mpl-post-list {
  margin-top: calc(var(--mpl--blog-horizontal--gap-v) * -1);
  margin-left: calc(var(--mpl--blog-horizontal--gap-h) * -1);
}
.mpl-post-list > .post {
  position: relative;
}
.mpl-post-list > .type-product .entry-footer,
.mpl-post-list > .type-product .mpl-post-list-button,
.mpl-post-list > .type-page .entry-footer,
.mpl-post-list > .type-page .mpl-post-list-button {
  display: none;
}
.mpl-post-list .has-post-thumbnail .post-categories {
  position: absolute;
  top: 15px;
  left: 15px;
}
.mpl-post-list > .post:not(.has-post-thumbnail) {
  display: flex;
  flex-direction: column;
}
.mpl-post-list > .post:not(.has-post-thumbnail) .post-categories {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.3);
}
.mpl-post-list.mpl-style-masonry {
  --mpl--blog-horizontal--thumbnail--gap: 33px;
}
@media (min-width: 782px) and (max-width: 1391.98px) {
  .mpl-post-list.mpl-style-masonry {
    --mpl--masonry--columns: 2;
  }
}
@media (max-width: 781.98px) {
  .mpl-post-list.mpl-style-masonry {
    --mpl--masonry--columns: 1;
    --mpl--blog-horizontal--gap-h: 0%;
  }
}
.mpl-post-list.mpl-style-masonry .mpl-post-list-wrapper {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.mpl-post-list.mpl-style-masonry > article {
  flex: 0 0 calc(100% / var(--mpl--masonry--columns) - var(--mpl--blog-horizontal--gap-h));
  max-width: calc(100% / var(--mpl--masonry--columns) - var(--mpl--blog-horizontal--gap-h));
}
.mpl-post-list.mpl-style-masonry .post-thumbnail {
  margin-bottom: var(--mpl--blog-horizontal--thumbnail--gap);
}
.mpl-post-list.mpl-style-masonry .page-content,
.mpl-post-list.mpl-style-masonry .entry-content,
.mpl-post-list.mpl-style-masonry .entry-summary {
  width: 100%;
  margin-top: var(--mpl-vertical-rhythm);
}
.mpl-post-list.mpl-style-masonry .mpl-post-list-button {
  align-self: flex-start;
  margin-top: var(--mpl-vertical-rhythm);
}
.mpl-post-list.mpl-style-list > article {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 1081.98px) {
  .mpl-post-list.mpl-style-list > article {
    flex-direction: column;
  }
}
.mpl-post-list.mpl-style-list .post-thumbnail {
  width: var(--mpl--blog-horizontal--image--width);
}
@media (min-width: 1082px) {
  .mpl-post-list.mpl-style-list .post-thumbnail ~ .mpl-post-list-wrapper {
    padding-left: var(--mpl--blog-horizontal--image--gap);
  }
}
@media (max-width: 1081.98px) {
  .mpl-post-list.mpl-style-list .post-thumbnail ~ .mpl-post-list-wrapper {
    padding-top: var(--mpl--blog-horizontal--image--gap);
  }
}
.mpl-post-list.mpl-style-list .mpl-post-list-wrapper {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
.mpl-post-list.mpl-style-list .page-header,
.mpl-post-list.mpl-style-list .entry-header {
  margin-bottom: 6px;
}
.mpl-post-list.mpl-style-list .page-content,
.mpl-post-list.mpl-style-list .entry-content,
.mpl-post-list.mpl-style-list .entry-summary {
  margin-top: var(--mpl-vertical-rhythm);
}
.mpl-post-list.mpl-style-list .mpl-post-list-button {
  margin-top: var(--mpl-vertical-rhythm);
}
.mpl-post-list > article {
  width: 100%;
  margin-top: var(--mpl--blog-horizontal--gap-v);
  margin-left: var(--mpl--blog-horizontal--gap-h);
}
.mpl-post-list > article .post-thumbnail {
  display: block;
  width: 100%;
  color: hsl(var(--mpl-color-white));
}
.mpl-post-list > article .post-thumbnail::before {
  position: relative;
  z-index: 1;
  background-color: hsl(var(--mpl-color-background));
  border-radius: var(--mpl-border-radius-lg);
  opacity: 0;
  transition: opacity 0.2s var(--mpl-transition-easing);
}
.mpl-post-list > article .post-thumbnail > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  margin-left: -17px;
  opacity: 0;
  transition: opacity 0.2s var(--mpl-transition-easing);
}
.mpl-post-list > article .post-thumbnail:hover::before, .mpl-post-list > article .post-thumbnail:focus::before {
  opacity: 0.25;
}
.mpl-post-list > article .post-thumbnail:hover > svg, .mpl-post-list > article .post-thumbnail:focus > svg {
  opacity: 1;
}
.mpl-post-list > article .entry-title:not(:last-child),
.mpl-post-list > article .page-title:not(:last-child) {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.4);
}
.mpl-post-list > article .entry-title > a,
.mpl-post-list > article .page-title > a {
  display: inline;
  max-width: 100%;
  color: hsl(var(--mpl-color-title));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-post-list > article .entry-title > a:hover, .mpl-post-list > article .entry-title > a:focus,
.mpl-post-list > article .page-title > a:hover,
.mpl-post-list > article .page-title > a:focus {
  color: hsl(var(--mpl-color-title));
}
.mpl-post-list > article .page-content::before, .mpl-post-list > article .page-content::after,
.mpl-post-list > article .entry-content::before,
.mpl-post-list > article .entry-content::after,
.mpl-post-list > article .entry-summary::before,
.mpl-post-list > article .entry-summary::after {
  display: none;
}
.mpl-post-list > article .page-content p:last-child,
.mpl-post-list > article .entry-content p:last-child,
.mpl-post-list > article .entry-summary p:last-child {
  margin-bottom: 0;
}
.mpl-post-list > article .page-footer,
.mpl-post-list > article .entry-footer {
  margin-top: 0;
}
.mpl-post-list > article .page-footer > div,
.mpl-post-list > article .entry-footer > div {
  margin-top: 0;
}
.mpl-post-list > article .page-footer .page-links,
.mpl-post-list > article .entry-footer .page-links {
  margin-top: 6px;
  margin-bottom: 0;
}
.mpl-post-list > article:hover .post-thumbnail::before {
  opacity: 0.25;
}
.mpl-post-list > article:hover .post-thumbnail > svg {
  opacity: 1;
}
.mpl-post-list > .sticky .entry-title > a svg {
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.3em;
  vertical-align: -0.1em;
}

.pagination {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers {
  flex: 0 0 auto;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  overflow: hidden;
  font-size: var(--mpl--button--font-size);
  font-weight: var(--mpl--button--font-weight);
  line-height: var(--mpl--button--line-height);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--button--text-transform);
  border-radius: 50%;
}
.pagination .page-numbers:not(:first-child) {
  margin-left: 5px;
}
.pagination .page-numbers:not(:last-child) {
  margin-right: 5px;
}
.pagination .page-numbers[href] {
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.pagination .page-numbers[href]::after {
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  left: -5px;
  content: "";
}
.pagination .page-numbers[href]:hover, .pagination .page-numbers[href]:focus {
  background-color: hsl(var(--mpl-color-border));
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  min-width: none;
  text-transform: var(--mpl--text-transform--uppercase);
  background-color: transparent;
  border-radius: 0;
}
.pagination .page-numbers.next:hover, .pagination .page-numbers.next:focus, .pagination .page-numbers.prev:hover, .pagination .page-numbers.prev:focus {
  color: var(--mpl-color-brand);
  background-color: transparent;
}
.pagination .current {
  color: hsl(var(--mpl-color-white));
  background-color: var(--mpl-color-brand);
  border-radius: 100%;
}
.pagination .dots {
  color: hsl(var(--mpl-color-title));
  background-color: transparent;
}

/* ------------------------------------------------------------------
  Author.
 ------------------------------------------------------------------- */
.search .author-info,
.blog .author-info,
.archive .author-info {
  padding-bottom: var(--mpl--author-info--padding);
}

.author-info {
  --mpl--author-info--padding: 30px;
  --mpl--author-info--min-height: 80px;
  --mpl--author-info--avatar--width: 80px;
  position: relative;
  min-height: var(--mpl--author-info--min-height);
  padding: var(--mpl--author-info--padding) var(--mpl--author-info--padding) var(--mpl--author-info--padding) calc(var(--mpl--widget-item--image--area) + var(--mpl--author-info--padding));
  background-color: hsl(var(--mpl-color-background-100));
  border-radius: var(--mpl-border-radius-lg);
}
.author-info + .mpl-post-list {
  padding-top: calc(var(--mpl-vertical-rhythm) * 2);
}
@media (max-width: 781.98px) {
  .author-info {
    padding-left: var(--mpl--author-info--padding);
  }
}

.author-info-avatar {
  position: absolute;
  top: var(--mpl--author-info--padding);
  left: var(--mpl--author-info--padding);
  width: var(--mpl--widget-item--image--width);
  height: var(--mpl--widget-item--image--height);
  overflow: hidden;
  border-radius: var(--mpl--widget-item--image--border-radius);
}
@media (max-width: 781.98px) {
  .author-info-avatar {
    position: relative;
    top: 0;
    left: 0;
  }
  .author-info-avatar + * {
    margin-top: var(--mpl-vertical-rhythm);
  }
}
.author-info-avatar > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.author-info-subtitle {
  font-size: var(--mpl--font-size--medium);
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
}

.author-info-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: var(--mpl--font-size--large);
}

.author-info-description {
  margin-top: 22px;
  margin-left: calc(var(--mpl--widget-item--image--area) * -1);
}
@media (max-width: 781.98px) {
  .author-info-description {
    margin-left: 0;
  }
}

.author-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center;
  font-size: var(--mpl--font-size--medium);
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
}

.author-info-meta-links {
  position: absolute;
  top: var(--mpl--author-info--padding);
  right: var(--mpl--author-info--padding);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: var(--mpl--font-size--large);
}
.author-info-meta-links > span {
  display: none;
}
.author-info-meta-links > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  color: hsl(var(--mpl-color-title));
}
.author-info-meta-links > a::before {
  position: absolute;
  top: -5px;
  right: -10px;
  bottom: -5px;
  left: -10px;
  display: block;
  content: "";
}
.author-info-meta-links > a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  content: "";
  background-color: hsl(var(--mpl-color-border));
  border-radius: 50%;
  opacity: 0;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), opacity var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: scale(0.9);
}
.author-info-meta-links > a:hover, .author-info-meta-links > a:focus {
  color: hsl(var(--mpl-color-title));
}
.author-info-meta-links > a:hover::after, .author-info-meta-links > a:focus::after {
  opacity: 1;
  transform: scale(1);
}

/* ------------------------------------------------------------------
  Search.
 ------------------------------------------------------------------- */
.no-results {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}
.no-results .page-header {
  margin-bottom: 1.875em;
}
.no-results .page-title {
  margin-top: 0;
  margin-bottom: 0;
}
.no-results .page-content {
  width: 480px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.no-results .page-content form {
  position: relative;
  margin-top: 2.5em;
  margin-bottom: 0;
}
.no-results button {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  z-index: 1;
  color: hsl(var(--mpl-color-title));
  background-color: transparent;
}
.no-results button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  clip-path: circle(44% at 50% 50%);
  content: "";
  background-color: hsl(var(--mpl-color-border));
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--mpl-transition-duration) var(--mpl-transition-easing), clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.no-results button svg {
  width: 18px;
  height: 18px;
}
.no-results button:hover, .no-results button:focus {
  color: hsl(var(--mpl-color-title));
  background-color: transparent;
  box-shadow: none;
  transform: translateY(0);
}
.no-results button:hover::before, .no-results button:focus::before {
  clip-path: circle(50% at 50% 50%);
  opacity: 1;
}
.no-results button:active:not(.disabled, :disabled) {
  transform: translateY(0);
}

.search .mpl-navbar-fixed ~ .site-content {
  padding-top: var(--mpl--navbar-top--min-height);
}
.search .content-area {
  padding-top: calc(var(--mpl-vertical-rhythm-content) * 0.5);
}
.search .page-header {
  width: 100%;
  text-align: center;
}

/* ------------------------------------------------------------------
  404.
 ------------------------------------------------------------------- */
.error-404 {
  padding-bottom: 80px;
}
@media (max-width: 571.98px) {
  .error-404 {
    padding-bottom: 0;
  }
}
.error-404 .page-header {
  text-align: center;
}
.error-404 .title-404 {
  position: relative;
  margin-top: 60px;
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
  font-size: 10.625rem;
  font-weight: var(--mpl--font-weight--bold);
  line-height: var(--mpl--line-height--tiny);
  color: var(--mpl-color-brand);
  pointer-events: none;
}
@media (max-width: 571.98px) {
  .error-404 .title-404 {
    margin-top: 0;
    font-size: 5.625rem;
  }
}
.error-404 .title-404 > span {
  display: block;
}
.error-404 .page-title {
  margin-bottom: 26px;
  font-size: 2.125rem;
}
.error-404 .page-content {
  width: 480px;
  max-width: 100%;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.error-404 .page-content p {
  margin-bottom: 30px;
}

/* ------------------------------------------------------------------
  Single post.
 ------------------------------------------------------------------- */
.single-post .content-area {
  padding-top: calc(var(--mpl-vertical-rhythm-content) * 0.5);
}

/* ------------------------------------------------------------------

  Elements.

 ------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: hsl(var(--mpl-color-background));
}

hr {
  height: 3px;
  margin-bottom: 1.5em;
  background-color: hsl(var(--mpl-color-background-300));
  border: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

dt {
  margin-bottom: 0.25em;
  font-weight: var(--mpl--font-weight--bold);
}

dd {
  margin: 0 1.25em 0.875em;
}

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

figure {
  margin: 1em 0;
}

table {
  width: 100%;
  margin: 0 0 1.5em;
}

/* ------------------------------------------------------------------
  Button.
 ------------------------------------------------------------------- */
button {
  font-weight: var(--mpl--button--font-weight);
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.mpl-button-input {
  position: relative;
  display: inline-flex;
  filter: var(--mpl--filter--round);
}
/* ------------------------------------------------------------------
  Touchspin.
 ------------------------------------------------------------------- */
.mpl-touchspin {
  --mpl--form--border-width: 2px;
  position: relative;
  display: inline-block;
}
.mpl-touchspin input {
  width: var(--mpl--touchspin--width);
  height: var(--mpl--touchspin--height);
  min-height: var(--mpl--touchspin--height);
  padding: 0;
  font-size: var(--mpl--button--font-size);
  font-weight: var(--mpl--button--font-weight);
  line-height: var(--mpl--button--line-height);
  color: hsl(var(--mpl-color-title));
  text-align: center;
  border-radius: var(--mpl--touchspin--height);
}
.mpl-touchspin input::-webkit-outer-spin-button, .mpl-touchspin input::-webkit-inner-spin-button {
  display: none;
}
.mpl-touchspin .mpl-touchspin-button-plus,
.mpl-touchspin .mpl-touchspin-button-minus {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--mpl--touchspin--height) - var(--mpl--touchspin--button--offset) - var(--mpl--form--border-width) - var(--mpl--form--border-width));
  height: calc(var(--mpl--touchspin--height) - var(--mpl--touchspin--button--offset) - var(--mpl--form--border-width) - var(--mpl--form--border-width));
  padding: 0;
  clip-path: none;
  color: hsl(var(--mpl-color-text));
  background-color: hsl(var(--mpl-color-border));
  border-radius: 50%;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: translateY(-50%);
}
.mpl-touchspin .mpl-touchspin-button-plus::after,
.mpl-touchspin .mpl-touchspin-button-minus::after {
  display: none;
}
.mpl-touchspin .mpl-touchspin-button-plus svg,
.mpl-touchspin .mpl-touchspin-button-minus svg {
  align-self: initial;
}
.mpl-touchspin .mpl-touchspin-button-plus:hover, .mpl-touchspin .mpl-touchspin-button-plus:focus,
.mpl-touchspin .mpl-touchspin-button-minus:hover,
.mpl-touchspin .mpl-touchspin-button-minus:focus {
  color: hsl(var(--mpl-color-title));
  background-color: var(--mpl-color-brand);
}
.mpl-touchspin .mpl-touchspin-button-plus {
  right: calc(var(--mpl--touchspin--button--offset) - var(--mpl--form--border-width));
}
.mpl-touchspin .mpl-touchspin-button-minus {
  left: calc(var(--mpl--touchspin--button--offset) - var(--mpl--form--border-width));
}

/* ------------------------------------------------------------------
  Logo.
 ------------------------------------------------------------------- */
.mpl-logo {
  width: auto;
  border-radius: 0;
}

/* ------------------------------------------------------------------
  Forms.
 ------------------------------------------------------------------- */
.button > svg,
input[type=button] > svg,
input[type=reset] > svg,
input[type=submit] > svg {
  display: block;
  align-self: center;
}

.mpl-input-group {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 572px) {
  .mpl-input-group input {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .mpl-input-group button {
    flex: 0 0 auto;
    max-width: 100%;
    margin-left: 10px;
  }
}
@media (max-width: 571.98px) {
  .mpl-input-group input,
  .mpl-input-group button {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mpl-input-group button {
    margin-top: 10px;
  }
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  position: relative;
}
input[type=text]:focus::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=url]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=search]:focus::-moz-placeholder, input[type=number]:focus::-moz-placeholder, input[type=tel]:focus::-moz-placeholder, input[type=range]:focus::-moz-placeholder, input[type=date]:focus::-moz-placeholder, input[type=month]:focus::-moz-placeholder, input[type=week]:focus::-moz-placeholder, input[type=time]:focus::-moz-placeholder, input[type=datetime]:focus::-moz-placeholder, input[type=datetime-local]:focus::-moz-placeholder, input[type=color]:focus::-moz-placeholder, textarea:focus::-moz-placeholder, select:focus::-moz-placeholder {
  opacity: 1 !important;
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=search]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=range]:focus::placeholder,
input[type=date]:focus::placeholder,
input[type=month]:focus::placeholder,
input[type=week]:focus::placeholder,
input[type=time]:focus::placeholder,
input[type=datetime]:focus::placeholder,
input[type=datetime-local]:focus::placeholder,
input[type=color]:focus::placeholder,
textarea:focus::placeholder,
select:focus::placeholder {
  opacity: 1 !important;
}
.is-ios input[type=text],
.is-ios input[type=email],
.is-ios input[type=url],
.is-ios input[type=password],
.is-ios input[type=search],
.is-ios input[type=number],
.is-ios input[type=tel],
.is-ios input[type=range],
.is-ios input[type=date],
.is-ios input[type=month],
.is-ios input[type=week],
.is-ios input[type=time],
.is-ios input[type=datetime],
.is-ios input[type=datetime-local],
.is-ios input[type=color],
.is-ios textarea,
.is-ios select {
  font-size: var(--mpl--font-size--medium) !important;
}

.adminbar-input[type=text] {
  min-height: auto;
}

textarea {
  max-width: 100%;
  line-height: inherit;
}

select:not([multiple=multiple]) {
  --mpl--scrollbar--color: hsl(var(--mpl-color-title));
  --mpl--scrollbar--background-color: hsl(var(--mpl-color-title));
  position: relative;
}

[type=checkbox],
[type=radio] {
  position: relative;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 8px;
  font-size: var(--mpl--font-size--medium);
  color: transparent;
  text-align: center;
  vertical-align: -0.25em;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type=checkbox] ~ label,
[type=radio] ~ label {
  display: inline;
  margin-bottom: 0;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
}
[type=checkbox]:focus:not(:focus-visible),
[type=radio]:focus:not(:focus-visible) {
  outline: none;
}

[type=checkbox] {
  --mpl-checkbox__color: transparent;
  --mpl-checkbox__background-color: transparent;
  --mpl-checkbox__border-width: 1.5px;
  --mpl-checkbox__border-color: hsl(var(--mpl-color-border));
  --mpl-checkbox-focus__color: transparent;
  --mpl-checkbox-focus__background-color: var(--mpl-color-brand);
  --mpl-checkbox-checked__color: hsl(var(--mpl-color-white));
  --mpl-checkbox-checked__background-color: var(--mpl-color-brand);
  color: var(--mpl-checkbox__color);
  background-color: var(--mpl-checkbox__background-color);
  border: var(--mpl-checkbox__border-width) solid var(--mpl-checkbox__border-color);
  border-radius: var(--mpl-border-radius);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: skewX(-4deg);
}
[type=checkbox]::before, [type=checkbox]::after {
  position: absolute;
  content: "";
}
[type=checkbox]::after {
  -webkit-mask-image: var(--mpl--icon--check);
          mask-image: var(--mpl--icon--check);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  background-color: currentcolor;
  transform: skewX(4deg);
}
[type=checkbox]::before {
  top: calc(var(--mpl-checkbox__border-width) * -1);
  right: calc(var(--mpl-checkbox__border-width) * -1);
  bottom: calc(var(--mpl-checkbox__border-width) * -1);
  left: calc(var(--mpl-checkbox__border-width) * -1);
  background-image: linear-gradient(to bottom left, transparent 50%, var(--mpl-checkbox-checked__background-color) 50%), linear-gradient(to bottom left, transparent 50%, var(--mpl-checkbox-focus__background-color) 50%);
  background-repeat: no-repeat;
  background-position: top right, top right;
  background-size: 200% 200%, 200% 200%;
  border-radius: var(--mpl-border-radius);
  transition: background-position var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
[type=checkbox]:focus {
  color: var(--mpl-checkbox-focus__color);
}
[type=checkbox]:checked {
  color: var(--mpl-checkbox-checked__color);
}
[type=checkbox]:checked::before {
  background-position: bottom left, bottom left;
}

[type=radio] {
  --mpl-radio__background-color: transparent;
  --mpl-radio__border-width: 1.5px;
  --mpl-radio__border-color: hsl(var(--mpl-color-border));
  --mpl-radio-focus__background-color: var(--mpl-color-brand);
  --mpl-radio-checked__background-color: var(--mpl-color-brand);
  overflow: hidden;
  color: hsl(var(--mpl-color-white));
  background-color: var(--mpl-radio__background-color);
  border-radius: 50%;
  box-shadow: inset 0 0 0 var(--mpl-radio__border-width) var(--mpl-radio__border-color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing), background-color var(--mpl-transition-duration) var(--mpl-transition-easing), border-color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
[type=radio]::before, [type=radio]::after {
  position: absolute;
  content: "";
}
[type=radio]::after {
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  background-color: currentcolor;
  border-radius: 100%;
  opacity: 0;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), opacity var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: scale(0.5) translateX(0);
}
[type=radio]::before {
  top: calc(var(--mpl-radio__border-width) * -1);
  right: calc(var(--mpl-radio__border-width) * -1);
  bottom: calc(var(--mpl-radio__border-width) * -1);
  left: calc(var(--mpl-radio__border-width) * -1);
  clip-path: circle(50% at -50% 50%);
  background-color: var(--mpl-radio-focus__background-color);
  transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
[type=radio]:focus::before {
  clip-path: circle(50% at 50% 50%);
}
[type=radio]:checked::after {
  opacity: 1;
  transform: scale(1) translateX(0);
}
[type=radio]:checked::before {
  clip-path: circle(50% at 50% 50%);
}

/* ------------------------------------------------------------------
  Offcanvas.
 ------------------------------------------------------------------- */
.mpl-offcanvas-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: var(--mpl--container--padding);
  color: var(--mpl--navbar-top--link--color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-offcanvas-toggle::before {
  position: absolute;
  top: -10px;
  right: -20px;
  bottom: -10px;
  left: -20px;
  content: "";
}
.mpl-offcanvas-toggle:hover, .mpl-offcanvas-toggle:focus {
  color: var(--mpl-color-brand);
}

/* ------------------------------------------------------------------
  Accessibility.
 ------------------------------------------------------------------- */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.post-thumbnail[tabindex="-1"]:focus {
  outline: 0;
}

/* ------------------------------------------------------------------
  Media.
 ------------------------------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.entry-summary .wp-smiley,
.comment-content .wp-smiley {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: block;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: left;
}

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  text-align: center;
  vertical-align: top;
}

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

/* ------------------------------------------------------------------
  Page Navigation.
 ------------------------------------------------------------------- */
.mpl-page-navigation {
  margin-top: calc(var(--mpl-vertical-rhythm) * 2);
}

.mpl-page-navigation,
.mpl-page-navigation-container {
  display: flex;
}

.mpl-page-navigation-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
}
.mpl-page-navigation-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  opacity: 0.4;
  transition: opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), transform calc(var(--mpl-transition-cubic-duration) + 0.4s) var(--mpl-transition-cubic-easing);
}

.mpl-page-navigation-subtitle {
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--font-weight--semi-bold);
  line-height: var(--mpl--line-height--large);
  text-transform: var(--mpl--text-transform--uppercase);
}

.mpl-page-navigation-button {
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
  font-size: var(--mpl--button--font-size);
  font-weight: var(--mpl--button--font-weight);
  line-height: var(--mpl--button--line-height);
  text-transform: var(--mpl--button--text-transform);
  background-image: linear-gradient(to top, transparent 4px, hsl(var(--mpl-color-title) 0.2) 4.001px, hsl(var(--mpl-color-title) 0.2) 9px, transparent 9.001px, transparent 100%);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 1.6em, 100% 1.6em;
}

.mpl-page-navigation-title {
  margin: 0;
}

.mpl-page-navigation-prev:hover img, .mpl-page-navigation-prev:focus img,
.mpl-page-navigation-next:hover img,
.mpl-page-navigation-next:focus img {
  transform: scale(1.05);
}

@media (min-width: 1392px) {
  .mpl-page-navigation {
    position: fixed;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 3;
    flex-direction: column;
    align-items: stretch;
    min-width: 100%;
    margin-top: 0;
    pointer-events: none;
  }
  .mpl-page-navigation-container {
    position: relative;
    margin-right: var(--mpl--container--padding);
    margin-left: var(--mpl--container--padding);
    pointer-events: none;
  }
  .mpl-page-navigation-content {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    padding: 30px;
    visibility: hidden;
    background-color: hsl(var(--mpl-color-background-100));
    opacity: 0;
    transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), visibility 0.15s var(--mpl-transition-easing), opacity 0.15s var(--mpl-transition-easing);
  }
  .mpl-page-navigation-content:hover .mpl-page-navigation-image img {
    opacity: 0.5;
    transform: scale(1.03);
  }
  .mpl-page-navigation-subtitle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inset(30px 0 round var(--mpl-border-radius));
    white-space: nowrap;
    background-color: hsl(var(--mpl-color-border));
    transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  }
  .mpl-page-navigation-subtitle > span,
  .mpl-page-navigation-subtitle > svg {
    transition: opacity 0.15s var(--mpl-transition-easing), transform 0.15s var(--mpl-transition-easing);
  }
  .mpl-page-navigation-subtitle > svg {
    position: absolute;
  }
  .mpl-page-navigation-prev,
  .mpl-page-navigation-next {
    position: absolute;
    top: 0;
    display: block;
    width: 50px;
    height: 260px;
    margin-top: -130px;
    pointer-events: visible;
  }
  .mpl-page-navigation-prev::before,
  .mpl-page-navigation-next::before {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    content: "";
  }
  .mpl-page-navigation-prev:hover .mpl-page-navigation-content, .mpl-page-navigation-prev:focus .mpl-page-navigation-content,
  .mpl-page-navigation-next:hover .mpl-page-navigation-content,
  .mpl-page-navigation-next:focus .mpl-page-navigation-content {
    clip-path: inset(0 round var(--mpl-border-radius-md));
    visibility: visible;
    opacity: 1;
  }
  .mpl-page-navigation-prev:hover .mpl-page-navigation-subtitle, .mpl-page-navigation-prev:focus .mpl-page-navigation-subtitle,
  .mpl-page-navigation-next:hover .mpl-page-navigation-subtitle,
  .mpl-page-navigation-next:focus .mpl-page-navigation-subtitle {
    clip-path: inset(0 round var(--mpl-border-radius-md));
  }
  .mpl-page-navigation-prev {
    left: 0;
  }
  .mpl-page-navigation-prev .mpl-page-navigation-content {
    left: calc(100% + 10px);
    align-items: flex-start;
    clip-path: inset(30px 0 round var(--mpl-border-radius));
  }
  .mpl-page-navigation-prev .mpl-page-navigation-subtitle > span {
    opacity: 0;
    transform: rotate(-90deg) translateY(50%);
  }
  .mpl-page-navigation-prev:hover::before, .mpl-page-navigation-prev:focus::before {
    right: -10px;
    left: 0;
  }
  .mpl-page-navigation-prev:hover .mpl-page-navigation-subtitle > span, .mpl-page-navigation-prev:focus .mpl-page-navigation-subtitle > span {
    opacity: 1;
    transform: rotate(-90deg) translateY(0);
  }
  .mpl-page-navigation-prev:hover .mpl-page-navigation-subtitle > svg, .mpl-page-navigation-prev:focus .mpl-page-navigation-subtitle > svg {
    opacity: 0;
    transform: translateX(-50%);
  }
  .mpl-page-navigation-next {
    right: 0;
  }
  .mpl-page-navigation-next .mpl-page-navigation-content {
    right: calc(100% + 10px);
    align-items: flex-end;
    clip-path: inset(30px 0 round var(--mpl-border-radius));
    text-align: right;
  }
  .mpl-page-navigation-next .mpl-page-navigation-subtitle > span {
    opacity: 0;
    transform: rotate(90deg) translateY(50%);
  }
  .mpl-page-navigation-next:hover::before, .mpl-page-navigation-next:focus::before {
    right: 0;
    left: -10px;
  }
  .mpl-page-navigation-next:hover .mpl-page-navigation-subtitle > span, .mpl-page-navigation-next:focus .mpl-page-navigation-subtitle > span {
    opacity: 1;
    transform: rotate(90deg) translateY(0);
  }
  .mpl-page-navigation-next:hover .mpl-page-navigation-subtitle > svg, .mpl-page-navigation-next:focus .mpl-page-navigation-subtitle > svg {
    opacity: 0;
    transform: translateX(50%);
  }
}
@media (max-width: 1391.98px) {
  .mpl-page-navigation {
    width: var(--mpl-container-width);
    margin-right: auto;
    margin-left: auto;
  }
  .mpl-page-navigation-container {
    flex-wrap: wrap;
    gap: 30px 20px;
    width: 100%;
  }
  .mpl-page-navigation-content {
    display: flex;
    flex-direction: column;
  }
  .mpl-page-navigation-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
  }
  .mpl-page-navigation-subtitle svg + span,
  .mpl-page-navigation-subtitle span + svg {
    margin-left: 6px;
  }
  .mpl-page-navigation-subtitle svg {
    width: 20px;
    height: 20px;
  }
  .mpl-page-navigation-subtitle path {
    stroke-width: 2.5;
  }
  .mpl-page-navigation-image {
    border-radius: var(--mpl-border-radius-md);
  }
  .mpl-page-navigation-prev,
  .mpl-page-navigation-next {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    padding: 30px;
    overflow: hidden;
    border-radius: var(--mpl-border-radius-md);
  }
  .mpl-page-navigation-prev::before,
  .mpl-page-navigation-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background-color: hsl(var(--mpl-color-background-100));
  }
  .mpl-page-navigation-prev:hover img, .mpl-page-navigation-prev:focus img,
  .mpl-page-navigation-next:hover img,
  .mpl-page-navigation-next:focus img {
    opacity: 0.5;
  }
  .mpl-page-navigation-prev,
  .mpl-page-navigation-prev .mpl-page-navigation-content {
    align-items: flex-end;
    text-align: right;
  }
  .mpl-page-navigation-prev:last-child, .mpl-page-navigation-prev:last-child .mpl-page-navigation-content {
    align-items: flex-start;
    text-align: left;
  }
  .mpl-page-navigation-next,
  .mpl-page-navigation-next .mpl-page-navigation-content {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 781.98px) {
  .mpl-page-navigation-prev,
  .mpl-page-navigation-next {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mpl-page-navigation-prev,
  .mpl-page-navigation-prev .mpl-page-navigation-content {
    align-items: flex-start;
    text-align: left;
  }
}
/* ------------------------------------------------------------------
  Comment.
 ------------------------------------------------------------------- */
.comments-title {
  margin-bottom: 1.2em;
}

.comment-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}
.comment-list .comment-reply-title {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 571.98px) {
  .comment-list .comment-reply-title {
    flex-direction: column;
  }
}
.comment-list ~ .comment-respond,
.comment-list .comment-body ~ .comment-respond {
  margin-top: var(--mpl--media--gap);
  margin-bottom: var(--mpl--media--gap);
}
.comment-list > li + li {
  margin-top: var(--mpl--media--gap);
}
.comment-list .children {
  padding-left: 0;
  margin-top: var(--mpl--media--gap);
  margin-left: var(--mpl--media--image--area);
  list-style: none;
}
.comment-list .children > li + li {
  margin-top: var(--mpl--media--gap);
}

.comments-area {
  margin-top: 60px;
}
.comments-area .no-comments {
  padding: 22px 30px;
  margin-top: 30px;
  background-color: hsl(var(--mpl-color-background-100));
  border-radius: var(--mpl-border-radius);
}
.comments-area .no-comments:last-child {
  margin-bottom: 0;
}

.comment {
  --mpl--comment--img--width: 40px;
  --mpl--comment--img--height: 40px;
  --mpl--comment--img--gap: 12px;
  --mpl--comment--img--area: calc(var(--mpl--comment--img--width) + var(--mpl--comment--img--gap));
  --mpl--comment--meta--gap: 0%;
  --mpl--comment--children--margin-left: var(--mpl--comment--img--area);
  position: relative;
  min-height: var(--mpl--media--image--height);
}
.comment img:not(.avatar) {
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: var(--mpl-border-radius);
}
.comment .comment-body {
  padding-left: var(--mpl--media--image--area);
}
.comment .comment-meta {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  font-weight: var(--mpl--font-weight--medium);
}
.comment .comment-author {
  display: flex;
  margin-top: 0.1875rem;
}
.comment .comment-author > b {
  display: block;
  padding-top: 0;
  font-size: var(--mpl--font-size--large);
  line-height: var(--mpl--line-height--tiny);
}
.comment .comment-author > b > a {
  display: inline;
  color: hsl(var(--mpl-color-title));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.comment .comment-author > b > a:hover, .comment .comment-author > b > a:focus {
  color: hsl(var(--mpl-color-title));
}
.comment .comment-author img.avatar {
  position: absolute;
  top: 0.1875em;
  left: 0;
  width: var(--mpl--media--image--width);
  height: var(--mpl--media--image--height);
  background-color: hsl(var(--mpl-color-background-200));
  border-radius: 50%;
}
.comment .comment-metadata {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.comment .comment-metadata > a {
  --mpl--text-fill--color: hsl(var(--mpl-color-meta));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.comment .comment-awaiting-moderation {
  margin-top: var(--mpl--media--description--gap);
  margin-left: calc(var(--mpl--media--image--area) * -1);
}
.comment .comment-content {
  padding: var(--mpl--media--description--padding);
  margin-top: var(--mpl--media--description--gap);
  margin-left: calc(var(--mpl--media--image--area) * -1);
  background-color: var(--mpl--media--description--background-color);
  border-radius: var(--mpl--media--description--border-radius);
}
.comment .comment-content > p:last-child {
  margin-bottom: 0;
}
.comment .edit-link {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 0;
}
.comment .comment-edit-link {
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--font-weight--semi-bold);
  line-height: var(--mpl--line-height--large);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--text-transform--uppercase);
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.comment .comment-edit-link:hover, .comment .comment-edit-link:focus {
  color: hsl(var(--mpl-color-title));
}
.comment .reply {
  display: flex;
  flex-wrap: wrap;
  margin-top: var(--mpl--media--description--gap);
  margin-left: calc(var(--mpl--media--image--area) * -1);
}
.comment .comment-reply-link {
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--font-weight--medium);
  line-height: var(--mpl--line-height--large);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--text-transform--uppercase);
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.comment .comment-reply-link:hover, .comment .comment-reply-link:focus {
  color: hsl(var(--mpl-color-title));
}
.comment #cancel-comment-reply-link {
  margin-left: 10px;
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--text-transform--uppercase);
}
@media (max-width: 571.98px) {
  .comment #cancel-comment-reply-link {
    display: inline-block;
    margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
    margin-left: 0;
  }
}
.comment #cancel-comment-reply-link:hover, .comment #cancel-comment-reply-link:focus {
  color: var(--mpl-color-brand);
}

.bypostauthor .comment-author .fn a {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.bypostauthor .comment-author .fn a::before {
  -webkit-mask-image: var(--mpl--icon--check-circle);
          mask-image: var(--mpl--icon--check-circle);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  margin-left: -26px;
  content: "";
  background-color: hsl(var(--mpl-color-meta));
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
}
.comment-form .logged-in-as {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 24px 30px;
  font-size: 0;
}
.comment-form .logged-in-as > a {
  display: inline-block;
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--button--font-weight);
  line-height: var(--mpl--button--line-height);
  color: hsl(var(--mpl-color-title));
  text-transform: var(--mpl--button--text-transform);
}
.comment-form .logged-in-as > a:not(:last-child) {
  margin-right: 30px;
}
.comment-form textarea {
  margin-left: 30px;
}
.comment-form .comment-form-email,
.comment-form .comment-form-name,
.comment-form .comment-form-author {
  padding: 0 0 0 30px;
  margin: 30px 0 0;
}
@media (min-width: 572px) {
  .comment-form .comment-form-email,
  .comment-form .comment-form-name,
  .comment-form .comment-form-author {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 571.98px) {
  .comment-form .comment-form-email,
  .comment-form .comment-form-name,
  .comment-form .comment-form-author {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.comment-form .comment-form-cookies-consent {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 0 0 30px;
  margin: 30px 0 0;
  line-height: var(--mpl--line-height--tiny);
}
.comment-form .form-submit {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 30px 0 0 30px;
}
/* ------------------------------------------------------------------
  Social Links.
 ------------------------------------------------------------------- */
.mpl-social-links {
  --mpl--social-links--gap-h: 20px;
  --mpl--social-links--gap-v: 8px;
  --mpl--social-links--font-size: var(--mpl--font-size--small);
  --mpl--social-links--color: hsl(var(--mpl-color-title));
  --mpl--social-links-hover--color: hsl(var(--mpl-color-title));
  --mpl--social-links-focus--color: var(--mpl-color-brand);
  --mpl--social-links--svg--width: 18px;
  --mpl--social-links--svg--height: 18px;
}
.mpl-social-links ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: calc(var(--mpl--social-links--gap-v) * -1);
  margin-right: calc(var(--mpl--social-links--gap-h) * -0.5);
  margin-bottom: 0;
  margin-left: calc(var(--mpl--social-links--gap-h) * -0.5);
  font-size: var(--mpl--social-links--font-size);
  font-weight: var(--mpl--font-weight--semi-bold);
  line-height: var(--mpl--line-height--large);
  text-transform: var(--mpl--text-transform--uppercase);
  list-style: none;
}
.mpl-social-links a {
  display: flex;
  align-items: center;
  margin-top: var(--mpl--social-links--gap-v);
  margin-right: calc(var(--mpl--social-links--gap-h) * 0.5);
  margin-left: calc(var(--mpl--social-links--gap-h) * 0.5);
  font-size: 0;
  color: var(--mpl--social-links--color);
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-social-links a svg {
  width: var(--mpl--social-links--svg--width);
  height: var(--mpl--social-links--svg--height);
  fill: currentcolor;
}
.mpl-social-links a:hover {
  color: var(--mpl--social-links-hover--color);
}
.mpl-social-links a:focus {
  color: var(--mpl--social-links-focus--color);
}
.mpl-social-links a:hover .mpl-social-links-icon::before, .mpl-social-links a:focus .mpl-social-links-icon::before {
  clip-path: circle(50% at 50% 50%);
  opacity: 1;
}
.mpl-social-links li {
  flex: 0 0 auto;
  max-width: 100%;
  display: block;
}

.mpl-social-links.mpl-social-links-icon .mpl-social-links-icon {
  position: relative;
  z-index: 1;
}
.mpl-social-links.mpl-social-links-icon .mpl-social-links-icon::before, .mpl-social-links.mpl-social-links-icon .mpl-social-links-icon::after {
  position: absolute;
  display: block;
  content: "";
}
.mpl-social-links.mpl-social-links-icon .mpl-social-links-icon::before {
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  clip-path: circle(44% at 50% 50%);
  background-color: hsl(var(--mpl-color-border));
  border-radius: 50%;
  opacity: 0;
  transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), opacity var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.mpl-social-links.mpl-social-links-icon .mpl-social-links-icon::after {
  top: calc(var(--mpl--social-links--gap-v) * -0.5);
  right: calc(var(--mpl--social-links--gap-h) * -0.5);
  bottom: calc(var(--mpl--social-links--gap-v) * -0.5);
  left: calc(var(--mpl--social-links--gap-h) * -0.5);
}

.mpl-social-links.mpl-social-links-text a {
  position: relative;
}
.mpl-social-links.mpl-social-links-text a::after {
  position: absolute;
  top: calc(var(--mpl--social-links--gap-v) * -0.5);
  right: calc(var(--mpl--social-links--gap-h) * -0.5);
  bottom: calc(var(--mpl--social-links--gap-v) * -0.5);
  left: calc(var(--mpl--social-links--gap-h) * -0.5);
  display: block;
  content: "";
}
@media (min-width: 572px) {
  .mpl-social-links.mpl-social-links-text a {
    font-size: inherit;
  }
  .mpl-social-links.mpl-social-links-text a svg {
    display: none;
  }
}

/* ------------------------------------------------------------------
  Widgets.
 ------------------------------------------------------------------- */
.widget {
  --mpl--widget--gap: 60px;
  --mpl--widget--title--gap: 26px;
  --mpl--widget--title-compensate-block--gap: 10px;
  --mpl--widget--title-compensate-heading--gap: 4px;
  position: relative;
  display: block;
  margin-bottom: 0;
  text-align: left;
}
.widget + .widget {
  margin-top: var(--mpl--widget--gap);
}
.widget .widgettitle + .wp-block-latest-posts__list {
  margin-top: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-block--gap));
}

.widget > .wp-block-group > .wp-block-group__inner-container > h2,
.widget h2.widgettitle {
  --mpl--text-underline--color: hsl(var(--mpl-color-border));
  position: relative;
  display: inline-block;
  padding-right: 2px;
  padding-left: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  text-align: left;
}
.widget > .wp-block-group > .wp-block-group__inner-container > h2 + div,
.widget > .wp-block-group > .wp-block-group__inner-container > h2 + form,
.widget > .wp-block-group > .wp-block-group__inner-container > h2 + ul,
.widget > .wp-block-group > .wp-block-group__inner-container > h2 + ul.woocommerce-widget-layered-nav-list,
.widget h2.widgettitle + div,
.widget h2.widgettitle + form,
.widget h2.widgettitle + ul,
.widget h2.widgettitle + ul.woocommerce-widget-layered-nav-list {
  padding-top: var(--mpl--widget--title--gap);
}

.widget_calendar .widgettitle {
  margin-bottom: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-heading--gap));
}
.widget_categories .widgettitle ~ select {
  margin-top: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-block--gap));
}
.widget_archive .widgettitle ~ select {
  margin-top: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-block--gap));
}
.widget_pages > ul li > a {
  font-weight: var(--mpl--font-weight--medium);
}

.widget_meta .widgettitle {
  margin-bottom: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-heading--gap));
}
.widget_meta > ul {
  --mpl--widget-list--gap: calc(var(--mpl-vertical-rhythm) * 0.5);
}

.widget_recent_entries .widgettitle {
  margin-bottom: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-heading--gap));
}
.widget_recent_entries > ul {
  --mpl--widget-list--gap: calc(var(--mpl-vertical-rhythm) * 0.5);
}

.widget .wp-block-latest-posts__list {
  --mpl--widget-list--gap: 30px;
}

.widget_recent_comments ul > li {
  display: block;
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
}
.widget_recent_comments ul > li a {
  display: inline;
  color: hsl(var(--mpl-color-title));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.widget_recent_comments ul > li a:hover, .widget_recent_comments ul > li a:focus {
  color: hsl(var(--mpl-color-title));
}
.widget_recent_comments li.recentcomments::before {
  -webkit-mask-image: var(--mpl--icon--message);
          mask-image: var(--mpl--icon--message);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 8px;
  vertical-align: -0.15em;
  content: "";
  background-color: currentcolor;
  opacity: 0.5;
}
.widget_recent_comments .post-date {
  display: block;
}

.widget_rss .widgettitle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-heading--gap));
}
.widget_rss .widgettitle > .rsswidget {
  display: inline;
  color: var(--mpl-color-brand);
}
.widget_rss .widgettitle > .rsswidget:not(:last-child) {
  margin-right: 4px;
}
.widget_rss .widgettitle > .rsswidget > img {
  display: inline-block;
}
.widget_rss .widgettitle > .rsswidget .rss-widget-icon {
  vertical-align: -0.05em;
}
.widget_rss .widgettitle > .rsswidget:hover, .widget_rss .widgettitle > .rsswidget:focus {
  color: hsl(var(--mpl-color-title));
}
.widget_rss ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.widget_rss ul > li {
  display: flex;
  flex-wrap: wrap;
}
.widget_rss ul > li > .rsswidget {
  display: inline;
  margin-bottom: 14px;
  font-size: var(--mpl--font-size--medium);
  color: hsl(var(--mpl-color-title));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.widget_rss ul > li > .rsswidget:hover, .widget_rss ul > li > .rsswidget:focus {
  color: hsl(var(--mpl-color-title));
}
.widget_rss ul > li + li {
  margin-top: 28px;
}
.widget_rss .rssSummary {
  flex: 0 0 100%;
  max-width: 100%;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-text));
}
.widget_rss .rss-date,
.widget_rss cite {
  display: inline-block;
  flex: 0 0 auto;
  max-width: 100%;
  margin-top: 10px;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-meta));
}
.widget_rss .rss-date {
  order: 12;
  margin-right: 20px;
}
.widget_rss cite {
  order: 13;
}

.widget_search .widgettitle ~ form {
  margin-top: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-block--gap));
}
.widget_text img {
  color: hsl(var(--mpl-color-title));
  border-radius: var(--mpl-border-radius);
}

.textwidget p:last-child {
  margin-bottom: 0;
}

.widget_tag_cloud .widgettitle {
  margin-bottom: calc(var(--mpl--widget--title--gap) + var(--mpl--widget--title-compensate-heading--gap));
}
.widget_nav_menu .menu,
.widget_nav_menu .sub-menu {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
.widget_nav_menu .menu > li,
.widget_nav_menu .sub-menu > li {
  display: block;
}
.widget_nav_menu .menu li {
  position: relative;
}
.widget_nav_menu .menu > li + li {
  margin-top: 10px;
}
.widget_nav_menu .menu > li a {
  position: static;
  display: inline;
  padding: 0;
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-title));
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.widget_nav_menu .menu > li a::before {
  position: absolute;
  top: -5px;
  right: 0;
  bottom: -5px;
  left: 0;
  display: block;
  content: "";
}
.widget_nav_menu .menu > li a:hover, .widget_nav_menu .menu > li a:focus {
  color: hsl(var(--mpl-color-title));
}
.widget_nav_menu .sub-menu {
  padding: 10px 0 10px 20px;
}
.widget_nav_menu .sub-menu > li + li {
  margin-top: 10px;
}
.widget_nav_menu .sub-menu > li > a {
  color: hsl(var(--mpl-color-text));
}
.widget_nav_menu .sub-menu > li > a:hover, .widget_nav_menu .sub-menu > li > a:focus {
  color: hsl(var(--mpl-color-title));
}
.widget_nav_menu .sub-menu:not(.show) {
  display: none;
}
.widget_nav_menu .menu-item > a {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
}
.widget_nav_menu .menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.widget_nav_menu .menu-item-has-children > a::after {
  -webkit-mask-image: var(--mpl--icon--plus);
          mask-image: var(--mpl--icon--plus);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 0.375em;
  right: 10px;
  display: block;
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: hsl(var(--mpl-color-meta));
  content: "";
  background-color: currentcolor;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1), color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transform: rotate(0);
}
.widget_nav_menu .menu-item-has-children > a:hover::after, .widget_nav_menu .menu-item-has-children > a:focus::after {
  color: hsl(var(--mpl-color-title));
}
.widget_nav_menu .menu-item-has-children.show > a {
  color: hsl(var(--mpl-color-title));
}
.widget_nav_menu .menu-item-has-children.show > a::after {
  color: hsl(var(--mpl-color-title));
  transform: rotate(45deg);
}

.mpl-footer .mpl-footer-widget-area,
.mpl-navbar-mobile .mpl-navbar-widget-area {
  color: hsl(var(--mpl-color-text));
}
.mpl-footer .mpl-footer-widget-area .widget,
.mpl-navbar-mobile .mpl-navbar-widget-area .widget {
  padding: 0;
}
.mpl-footer .mpl-footer-widget-area .widget::before, .mpl-footer .mpl-footer-widget-area .widget::after,
.mpl-navbar-mobile .mpl-navbar-widget-area .widget::before,
.mpl-navbar-mobile .mpl-navbar-widget-area .widget::after {
  display: none;
}
.mpl-footer .mpl-footer-widget-area .widget .widgettitle,
.mpl-navbar-mobile .mpl-navbar-widget-area .widget .widgettitle {
  font-size: var(--mpl--font-size--large);
  color: hsl(var(--mpl-color-title));
}
.mpl-footer .mpl-footer-widget-area .widget_text .textwidget,
.mpl-navbar-mobile .mpl-navbar-widget-area .widget_text .textwidget {
  font-size: var(--mpl--font-size--medium);
}
.mpl-footer .mpl-footer-widget-area .widget_search form,
.mpl-navbar-mobile .mpl-navbar-widget-area .widget_search form {
  margin-top: 26px;
}

/* ------------------------------------------------------------------
  Admin Bar.
 ------------------------------------------------------------------- */
body:not(.admin-bar) {
  --wp-admin--admin-bar--height: 0px;
}

/* ------------------------------------------------------------------

  Blocks.

------------------------------------------------------------------- */
/* ------------------------------------------------------------------
  Audio.
 ------------------------------------------------------------------- */
.wp-block-audio figcaption {
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-meta));
}

.wp-audio-shortcode button {
  clip-path: none;
}

/* ------------------------------------------------------------------
  Blockquote.
 ------------------------------------------------------------------- */
blockquote,
.wp-block-quote {
  position: relative;
  padding: 20px 0;
  color: hsl(var(--mpl-color-title));
  text-align: left;
  border: 0;
}
blockquote p,
.wp-block-quote p {
  position: relative;
  font-size: var(--mpl--font-size--large);
  font-weight: var(--mpl--font-weight--bold);
  color: inherit;
}
blockquote p:not(:last-child),
.wp-block-quote p:not(:last-child) {
  margin-bottom: 13px;
}
blockquote::before,
.wp-block-quote::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 3px;
  content: "";
  background-color: var(--mpl-color-brand);
  border-radius: var(--mpl-border-radius);
}
blockquote > :first-child,
.wp-block-quote > :first-child {
  margin-top: 0;
}
blockquote > :last-child,
.wp-block-quote > :last-child {
  margin-bottom: 0;
}
blockquote cite,
blockquote .wp-block-quote__citation,
blockquote .wp-block-pullquote__citation,
.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote .wp-block-pullquote__citation {
  position: relative;
  display: block;
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
  font-size: var(--mpl--font-size--small);
  font-weight: var(--mpl--font-weight--semi-bold);
  line-height: var(--mpl--line-height--large);
  color: inherit;
  text-transform: var(--mpl--text-transform--uppercase);
  opacity: 1;
}
blockquote cite br:first-child,
blockquote .wp-block-quote__citation br:first-child,
blockquote .wp-block-pullquote__citation br:first-child,
.wp-block-quote cite br:first-child,
.wp-block-quote .wp-block-quote__citation br:first-child,
.wp-block-quote .wp-block-pullquote__citation br:first-child {
  display: none;
}
blockquote cite > a:not([class]),
blockquote .wp-block-quote__citation > a:not([class]),
blockquote .wp-block-pullquote__citation > a:not([class]),
.wp-block-quote cite > a:not([class]),
.wp-block-quote .wp-block-quote__citation > a:not([class]),
.wp-block-quote .wp-block-pullquote__citation > a:not([class]) {
  --mpl--link-styled--border-position: 1.6em;
  color: hsl(var(--mpl-color-title));
  text-decoration: none;
}
blockquote cite > a:not([class]):hover, blockquote cite > a:not([class]):focus,
blockquote .wp-block-quote__citation > a:not([class]):hover,
blockquote .wp-block-quote__citation > a:not([class]):focus,
blockquote .wp-block-pullquote__citation > a:not([class]):hover,
blockquote .wp-block-pullquote__citation > a:not([class]):focus,
.wp-block-quote cite > a:not([class]):hover,
.wp-block-quote cite > a:not([class]):focus,
.wp-block-quote .wp-block-quote__citation > a:not([class]):hover,
.wp-block-quote .wp-block-quote__citation > a:not([class]):focus,
.wp-block-quote .wp-block-pullquote__citation > a:not([class]):hover,
.wp-block-quote .wp-block-pullquote__citation > a:not([class]):focus {
  color: hsl(var(--mpl-color-title));
}
blockquote cite::before,
blockquote .wp-block-quote__citation::before,
blockquote .wp-block-pullquote__citation::before,
.wp-block-quote cite::before,
.wp-block-quote .wp-block-quote__citation::before,
.wp-block-quote .wp-block-pullquote__citation::before {
  margin-right: 0.75em;
  content: "—";
}

.wp-block-quote.is-style-large,
.wp-block-quote.is-large {
  padding: var(--mpl-vertical-rhythm) 0;
}
.wp-block-quote.is-style-large p,
.wp-block-quote.is-large p {
  font-size: var(--mpl--font-size--large);
  font-style: inherit;
  font-weight: var(--mpl--font-weight--bold);
}
.wp-block-quote.is-style-large p:not(:last-child),
.wp-block-quote.is-large p:not(:last-child) {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
}
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large .wp-block-pullquote__citation,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large .wp-block-quote__citation,
.wp-block-quote.is-large .wp-block-pullquote__citation {
  font-size: var(--mpl--font-size--medium);
  font-style: italic;
  text-align: left;
}

.content-with-sidebar figure.wp-block-pullquote.alignfull {
  margin-right: 0;
  margin-left: 0;
}

figure.wp-block-pullquote {
  padding: 0;
  margin-right: 0;
  margin-left: 0;
}
figure.wp-block-pullquote.is-style-solid-color blockquote {
  background-color: transparent;
}
figure.wp-block-pullquote.alignfull {
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
figure.wp-block-pullquote.alignwide {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 572px) {
  figure.wp-block-pullquote.alignleft blockquote {
    margin-right: 60px;
  }
  figure.wp-block-pullquote.alignright blockquote {
    margin-left: 60px;
  }
}
@media (max-width: 571.98px) {
  figure.wp-block-pullquote.alignleft, figure.wp-block-pullquote.alignright {
    max-width: 100%;
  }
}

.wp-block-pullquote__citation {
  font-style: italic;
  text-transform: none;
}

blockquote.wp-block-pullquote,
.wp-block-pullquote blockquote {
  padding: 34px 30px;
  margin: 0;
  color: hsl(var(--mpl-color-white));
  text-align: center;
  background-color: var(--mpl-color-brand);
  border-top: 0;
  border-bottom: 0;
  border-radius: var(--mpl-border-radius);
}
blockquote.wp-block-pullquote::before,
.wp-block-pullquote blockquote::before {
  display: none;
}
blockquote.wp-block-pullquote p,
.wp-block-pullquote blockquote p {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
  font-size: var(--mpl--font-size--large);
  color: inherit;
}
blockquote.wp-block-pullquote cite,
blockquote.wp-block-pullquote .wp-block-quote__citation,
blockquote.wp-block-pullquote .wp-block-pullquote__citation,
.wp-block-pullquote blockquote cite,
.wp-block-pullquote blockquote .wp-block-quote__citation,
.wp-block-pullquote blockquote .wp-block-pullquote__citation {
  font-size: var(--mpl--font-size--medium);
  opacity: 0.6;
}

.wp-block-pullquote.is-style-solid-color blockquote {
  text-align: center;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
  font-size: 22px;
}

/* ------------------------------------------------------------------
  Button.
 ------------------------------------------------------------------- */
.wp-block-button:not(.is-style-outline) {
  filter: var(--mpl--filter--round);
}

.wp-block-button__link {
  clip-path: polygon(var(--mpl--button--skew) 0, 100% 0%, calc(100% - var(--mpl--button--skew)) 100%, 0% 100%);
  position: relative;
  z-index: 1;
  padding: var(--mpl--button--padding-v) var(--mpl--button--padding-h);
  font-size: var(--mpl--button--font-size);
  text-align: center;
  text-transform: var(--mpl--text-transform--uppercase);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 200% 200%;
  border-radius: var(--mpl--button--border-radius);
  transition: background-position var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.wp-block-button__link:not(.has-background) {
  background-color: transparent;
  background-image: linear-gradient(to bottom left, var(--mpl--button--background-color) 50%, var(--mpl--button-hover--background-color) 50%);
}
.wp-block-button__link.has-background {
  background-image: linear-gradient(to bottom left, transparent 50%, var(--mpl--button-hover--background-color) 50%);
}
.wp-block-button__link:not([disabled], .disabled):hover, .wp-block-button__link:not([disabled], .disabled):focus {
  color: var(--mpl--button-hover--color);
  background-color: transparent;
  background-position: bottom left;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  padding: calc(var(--mpl--button--padding-v) - 2px) calc(var(--mpl--button--padding-h) - 2px);
  clip-path: none;
  color: hsl(var(--mpl-color-title));
  background-image: linear-gradient(to bottom left, transparent 50%, var(--mpl--button-hover--background-color) 50%);
  border: 2px solid var(--mpl-color-brand);
}

/* ------------------------------------------------------------------
  Calendar.
 ------------------------------------------------------------------- */
.wp-block-calendar table {
  border-collapse: separate;
}
.wp-block-calendar table th {
  background-color: transparent;
}
.wp-block-calendar .wp-calendar-nav a {
  text-decoration: none;
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev {
  text-align: left;
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
  text-align: right;
}

/* ------------------------------------------------------------------
  Column.
 ------------------------------------------------------------------- */
body.single .wp-block-columns.alignwide > .wp-block-column,
body.page .wp-block-columns.alignwide > .wp-block-column {
  min-width: auto;
}

/* ------------------------------------------------------------------
  Cover.
 ------------------------------------------------------------------- */
.wp-block-cover {
  color: hsl(var(--mpl-color-white));
}
.wp-block-cover p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------------
  Embed.
 ------------------------------------------------------------------- */
.wp-block-embed .responsive-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.wp-block-embed figcaption {
  display: block;
  margin-top: 6px;
  font-size: var(--mpl--font-size--small);
  color: hsl(var(--mpl-color-meta));
  text-align: center;
}

/* ------------------------------------------------------------------
  Gallery.
 ------------------------------------------------------------------- */
ul.wp-block-gallery {
  padding-left: 0;
}

.wp-block-gallery .blocks-gallery-grid {
  padding-left: 0;
  margin-bottom: -1em;
}
.wp-block-gallery img {
  border-radius: var(--mpl-border-radius);
}
.wp-block-gallery figcaption {
  margin-top: 3px;
  font-size: var(--mpl--font-size--small);
  font-style: italic;
  border-bottom-right-radius: var(--mpl-border-radius);
  border-bottom-left-radius: var(--mpl-border-radius);
}

/* ------------------------------------------------------------------
  Group.
 ------------------------------------------------------------------- */
.wp-block-group.has-background {
  padding: 30px;
}

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

.wp-block-group.is-style-mpl-frame {
  padding: 30px;
  border: 2px solid hsl(var(--mpl-color-background-100));
  border-radius: var(--mpl-border-radius-lg);
}

/* ------------------------------------------------------------------
  Gutenberg colors.
 ------------------------------------------------------------------- */
.has-mpl-brand-color {
  color: var(--mpl-color-brand) !important;
}

.has-mpl-brand-background-color {
  background-color: var(--mpl-color-brand) !important;
}

.has-mpl-dark-color {
  color: hsl(var(--mpl-color-title)) !important;
}

.has-mpl-dark-background-color {
  background-color: hsl(var(--mpl-color-title)) !important;
}

.has-mpl-black-color {
  color: hsl(var(--mpl-color-black)) !important;
}

.has-mpl-black-background-color {
  background-color: hsl(var(--mpl-color-black)) !important;
}

.has-mpl-white-color {
  color: hsl(var(--mpl-color-white)) !important;
}

.has-mpl-white-background-color {
  background-color: hsl(var(--mpl-color-white)) !important;
}

/* ------------------------------------------------------------------
  Image.
 ------------------------------------------------------------------- */
.wp-block-image {
  --mpl--wp-block-image--border-radius: var(--mpl-border-radius-md);
  --mpl--wp-block-image--skew: 10px;
}
.wp-block-image.is-style-mpl-bordered {
  --mpl--wp-block-image--border-radius: calc(var(--mpl-border-radius-md) + 4px);
}
.wp-block-image.is-style-mpl-bordered img {
  border: 4px solid hsl(var(--mpl-color-background-100));
}
.wp-block-image.alignfull {
  --mpl--wp-block-image--border-radius: 0;
}
.wp-block-image:not(.is-style-rounded) img,
.wp-block-image img {
  border-radius: var(--mpl--wp-block-image--border-radius);
}
.wp-block-image figure {
  margin: 0;
}
.wp-block-image figcaption {
  margin-top: 9px;
  margin-bottom: 0;
  font-size: var(--mpl--font-size--small);
  font-style: italic;
  color: hsl(var(--mpl-color-meta));
  text-align: center;
}

/* ------------------------------------------------------------------
  Latest comments.
 ------------------------------------------------------------------- */
ol.wp-block-latest-comments {
  padding-left: 0;
}

.has-avatars .wp-block-latest-comments__comment-meta {
  min-height: var(--mpl--media--image--height);
}
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: calc(var(--mpl--media--image--width) + var(--mpl--media--image--gap));
}
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
  margin-left: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  font-size: var(--mpl--font-size--large);
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
  display: inline;
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover, .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:focus {
  color: hsl(var(--mpl-color-title));
}
.wp-block-latest-comments .wp-block-latest-comments__comment {
  margin-bottom: 0;
}
.wp-block-latest-comments .wp-block-latest-comments__comment + .wp-block-latest-comments__comment {
  margin-top: var(--mpl-vertical-rhythm);
}
.wp-block-latest-comments .wp-block-latest-comments__comment-date {
  font-size: var(--mpl--font-size--medium);
  color: hsl(var(--mpl-color-meta));
}
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt {
  padding: var(--mpl--media--description--padding);
  margin-top: var(--mpl--media--description--gap);
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
  background-color: var(--mpl--media--description--background-color);
  border-radius: var(--mpl--media--description--border-radius);
}
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  margin-top: 0;
  font-size: inherit;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p:last-child {
  margin-bottom: 0;
}
.wp-block-latest-comments .avatar {
  width: var(--mpl--media--image--width);
  height: var(--mpl--media--image--height);
  margin-top: 0.3125em;
  margin-right: 0;
  background-color: hsl(var(--mpl-color-background-200));
  border-radius: 50%;
}

.widget .wp-block-latest-comments {
  --mpl--media--description--padding: 18px 25px;
  margin-top: 0;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------
  Latest post.
 ------------------------------------------------------------------- */
ul.wp-block-latest-posts {
  --mpl--latest-post-hover--image--offset: 4px;
  padding-left: 0;
  font-size: var(--mpl--font-size--medium);
}
ul.wp-block-latest-posts .wp-block-latest-posts__featured-image::before {
  display: block;
  padding-top: var(--mpl--aspect-ratio--3-2);
  content: "";
}
ul.wp-block-latest-posts .wp-block-latest-posts__featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  clip-path: inset(0 round var(--mpl-border-radius-lg));
  transition: clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
ul.wp-block-latest-posts .wp-block-latest-posts__featured-image > a {
  display: block;
}
ul.wp-block-latest-posts .wp-block-latest-posts__featured-image > a:hover img, ul.wp-block-latest-posts .wp-block-latest-posts__featured-image > a:focus img {
  clip-path: inset(var(--mpl--latest-post-hover--image--offset) round var(--mpl-border-radius-lg));
}
ul.wp-block-latest-posts li > a,
ul.wp-block-latest-posts .wp-block-latest-posts__post-title {
  font-size: 1.5rem;
  color: hsl(var(--mpl-color-title));
}
ul.wp-block-latest-posts li > a > span,
ul.wp-block-latest-posts .wp-block-latest-posts__post-title > span {
  display: inline;
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
ul.wp-block-latest-posts .wp-block-latest-posts__post-author,
ul.wp-block-latest-posts .wp-block-latest-posts__post-date {
  margin-top: 0;
  font-size: var(--mpl--font-weight--medium);
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
}
ul.wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
  margin-bottom: auto;
  color: hsl(var(--mpl-color-text));
}

ul.wp-block-latest-posts:not(.is-grid) li {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto auto 1fr;
  grid-template-columns: auto auto auto 1fr;
  grid-gap: 0 20px;
}
ul.wp-block-latest-posts:not(.is-grid) li + li {
  margin-top: var(--mpl--blog-horizontal--gap-v);
}
ul.wp-block-latest-posts:not(.is-grid) li:hover .wp-block-latest-posts__featured-image img {
  clip-path: inset(var(--mpl--latest-post-hover--image--offset) round var(--mpl-border-radius-lg));
}
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image {
  position: relative;
  grid-row: 1/span 5;
  grid-column: 1/2;
  width: var(--mpl--blog-horizontal--image--width);
  margin-right: 10px;
}
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ a,
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ .wp-block-latest-posts__post-title {
  grid-row-start: 2;
  grid-column: 2/span 3;
}
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ .wp-block-latest-posts__post-author,
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ .wp-block-latest-posts__post-date {
  grid-row-start: 3;
  grid-column-start: 2;
}
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ .wp-block-latest-posts__post-author + .wp-block-latest-posts__post-date {
  grid-column-start: 3;
}
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ .wp-block-latest-posts__post-excerpt {
  grid-row-start: 4;
  grid-column-start: 2;
}
ul.wp-block-latest-posts:not(.is-grid) li > a,
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-title {
  display: block;
  grid-column: 1/span 4;
}
ul.wp-block-latest-posts:not(.is-grid) li > a + .wp-block-latest-posts__post-excerpt,
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-title + .wp-block-latest-posts__post-excerpt {
  grid-row-start: 3;
  margin-top: 0;
}
ul.wp-block-latest-posts:not(.is-grid) li > a:not(:last-child),
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-title:not(:last-child) {
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.4);
}
ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-excerpt {
  grid-column: 1/span 4;
  margin-top: var(--mpl-vertical-rhythm);
}

ul.wp-block-latest-posts.is-grid {
  --mpl--widget-item--image--area: 0;
  display: grid;
  grid-gap: calc(var(--mpl-vertical-rhythm) * 2) 30px;
  align-items: start;
}
ul.wp-block-latest-posts.is-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
ul.wp-block-latest-posts.is-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
ul.wp-block-latest-posts.is-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
ul.wp-block-latest-posts.is-grid.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
ul.wp-block-latest-posts.is-grid.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 572px) and (max-width: 781.98px) {
  ul.wp-block-latest-posts.is-grid[class*=columns-]:not(.columns-1) {
    grid-template-columns: 2fr;
  }
}
@media (max-width: 571.98px) {
  ul.wp-block-latest-posts.is-grid[class*=columns-] {
    grid-template-columns: 1fr;
  }
}
ul.wp-block-latest-posts.is-grid li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
}
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image + a,
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image + .wp-block-latest-posts__post-title {
  margin-top: 6px;
}
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image::before {
  display: block;
  padding-top: var(--mpl--aspect-ratio--3-2);
  content: "";
}
ul.wp-block-latest-posts.is-grid > li > a,
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__post-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__post-author,
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__post-date {
  flex: 0 0 auto;
  max-width: 100%;
}
ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__post-excerpt {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: calc((var(--mpl-vertical-rhythm) - 4px) * 0.5);
}

.widget .wp-block-latest-posts__list {
  margin-top: 0;
  margin-bottom: 0;
}
.widget ul.wp-block-latest-posts {
  --mpl--latest-post-hover--image--offset: var(--mpl--widget-item-hover--image--offset);
}
.widget ul.wp-block-latest-posts:not(.is-grid) {
  --mpl--blog-horizontal--gap-v: var(--mpl--widget-item--gap);
}
.widget ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image {
  grid-row: 1/5;
  width: var(--mpl--widget-item--image--width);
  height: var(--mpl--widget-item--image--height);
  margin-right: -5px;
}
.widget ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__featured-image ~ .wp-block-latest-posts__post-excerpt {
  grid-row-start: 5;
  grid-column: 1/span 4;
}
.widget ul.wp-block-latest-posts:not(.is-grid) li {
  grid-template-rows: 1fr auto auto 1fr auto;
}
.widget ul.wp-block-latest-posts:not(.is-grid) li > a,
.widget ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-title {
  font-size: var(--mpl--font-size--large);
}
.widget ul.wp-block-latest-posts:not(.is-grid) li > a:not(:last-child),
.widget ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-title:not(:last-child) {
  margin-bottom: var(--mpl--widget-item--vertical-rhythm);
}
.widget ul.wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-excerpt {
  margin-top: calc(var(--mpl-vertical-rhythm) * 0.5);
}
.widget ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__post-title {
  min-height: auto;
}
.widget ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__post-meta {
  min-height: auto;
}
.widget ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image {
  margin-right: 0;
  margin-bottom: calc(var(--mpl-vertical-rhythm) * 0.8);
}
.widget ul.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image::before {
  padding-top: var(--mpl--aspect-ratio--3-2);
}

/* ------------------------------------------------------------------
  List.
 ------------------------------------------------------------------- */
ul.wp-block,
ol.wp-block {
  font-size: var(--mpl--font-size--medium);
}

ul.wp-block-pages li > a,
ul.wp-block-meta li > a {
  display: inline;
  font-weight: var(--mpl--font-weight--medium);
}

ul.wp-block-categories.wp-block-categories-list,
ul.wp-block-archives.wp-block-archives-list {
  padding-left: 0;
}

/* ------------------------------------------------------------------
  Navigation.
 ------------------------------------------------------------------- */
.wp-block-navigation__container {
  gap: 10px 30px;
  font-weight: var(--mpl--font-weight--medium);
}

.wp-block-navigation .wp-block-navigation-item__content {
  color: hsl(var(--mpl-color-title));
}
.wp-block-navigation .wp-block-navigation-item__content > span {
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
/* ------------------------------------------------------------------
  Paragraph.
 ------------------------------------------------------------------- */
p.is-style-mpl-lead {
  font-size: calc(var(--mpl--font-size--large) + 2px);
  line-height: var(--mpl--line-height--normal);
}

/* ------------------------------------------------------------------
  RSS.
 ------------------------------------------------------------------- */
ul.wp-block-rss {
  padding-left: 0;
}

.wp-block-rss {
  list-style: none;
}
.wp-block-rss .wp-block-rss__item {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--mpl-vertical-rhythm) * 0.5) 30px;
  align-content: flex-start;
}
.wp-block-rss .wp-block-rss__item-title,
.wp-block-rss .wp-block-rss__item-excerpt {
  flex: 0 0 100%;
  max-width: 100%;
  order: -1;
}
.wp-block-rss .wp-block-rss__item-title {
  font-size: var(--mpl--font-size--large);
}
.wp-block-rss .wp-block-rss__item-title > a {
  transition: background-size var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.wp-block-rss .wp-block-rss__item-publish-date,
.wp-block-rss .wp-block-rss__item-author {
  flex: 0 0 auto;
  max-width: 100%;
  font-size: var(--mpl--font-size--medium);
  font-weight: var(--mpl--font-weight--medium);
  color: hsl(var(--mpl-color-meta));
}

ul.wp-block-rss:not(.is-grid) .wp-block-rss__item + .wp-block-rss__item {
  margin-top: var(--mpl-vertical-rhythm);
}

ul.wp-block-rss.is-grid {
  display: grid;
  grid-gap: calc(var(--mpl-vertical-rhythm) * 2) 30px;
  align-items: start;
}
ul.wp-block-rss.is-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
ul.wp-block-rss.is-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
ul.wp-block-rss.is-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
ul.wp-block-rss.is-grid.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
ul.wp-block-rss.is-grid.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
ul.wp-block-rss.is-grid .wp-block-rss__item {
  width: 100%;
  margin: 0;
}

.widget .wp-block-rss {
  margin-top: 0;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------
  Search.
 ------------------------------------------------------------------- */
.wp-block-search {
  flex-wrap: wrap;
}
.wp-block-search .wp-block-search__inside-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}
/* ------------------------------------------------------------------
  Separator.
 ------------------------------------------------------------------- */
.wp-block-separator.is-style-wide {
  margin-right: calc(var(--mpl--container--padding) * -1);
  margin-left: calc(var(--mpl--container--padding) * -1);
}
.wp-block-separator.is-style-dots {
  color: var(--mpl-color-brand);
}

/* ------------------------------------------------------------------
  Social links.
 ------------------------------------------------------------------- */
ul.wp-block-social-links {
  --wp--social-links--gap-v: 15px;
  --wp--social-links--gap-h: 15px;
  gap: var(--wp--social-links--gap-v) var(--wp--social-links--gap-h);
}
ul.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
  font-size: var(--mpl--font-size--medium);
}
ul.wp-block-social-links .wp-block-social-link.wp-block-social-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: scale(1);
}
ul.wp-block-social-links .wp-block-social-link.wp-block-social-link:hover {
  transform: scale(0.96);
}
ul.wp-block-social-links .wp-block-social-link-anchor {
  position: static;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 auto;
  line-height: var(--mpl--line-height--normal);
  background-color: var(--wp--social-link--background-color);
  border-radius: 50%;
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
ul.wp-block-social-links .wp-block-social-link-anchor::before {
  position: absolute;
  top: calc(var(--wp--social-links--gap-v) * -0.5);
  right: calc(var(--wp--social-links--gap-h) * -0.5);
  bottom: calc(var(--wp--social-links--gap-v) * -0.5);
  left: calc(var(--wp--social-links--gap-h) * -0.5);
  z-index: 1;
  display: block;
  content: "";
}
ul.wp-block-social-links .wp-block-social-link-anchor::after {
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: -1;
  display: block;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  content: "";
  background-color: inherit;
  border-radius: 50%;
  opacity: 0.3;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: scale(0.8);
}
ul.wp-block-social-links .wp-block-social-link-anchor svg {
  flex: 0 0 auto;
  max-width: 100%;
  width: 18px;
  height: 18px;
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
ul.wp-block-social-links .wp-block-social-link-anchor:hover::after, ul.wp-block-social-links .wp-block-social-link-anchor:focus::after {
  transform: scale(1);
}
ul.wp-block-social-links .wp-block-social-link-anchor:hover svg, ul.wp-block-social-links .wp-block-social-link-anchor:focus svg {
  transform: scale(1.15);
}
ul.wp-block-social-links .wp-block-social-link-label:not(.screen-reader-text) {
  margin: 0;
}
ul.wp-block-social-links.has-visible-labels {
  --wp--social-links--gap-v: 15px;
  --wp--social-links--gap-h: 20px;
}
ul.wp-block-social-links.has-visible-labels .wp-block-social-link {
  width: auto;
  height: auto;
  margin: 0;
}

ul.wp-block-social-links.is-style-pill-shape {
  --wp--social-links--gap-v: 10px;
  --wp--social-links--gap-h: 10px;
}
ul.wp-block-social-links.is-style-pill-shape .wp-block-social-link-anchor {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
ul.wp-block-social-links.is-style-pill-shape.has-visible-labels .wp-block-social-link-anchor {
  flex-direction: row;
  gap: 10px;
  width: auto;
  height: auto;
  padding: 4px 10px;
  border-radius: 100px;
}
ul.wp-block-social-links.is-style-pill-shape.has-visible-labels .wp-block-social-link-anchor::after {
  right: -5px;
  bottom: -5px;
  left: -5px;
  width: auto;
  height: auto;
  margin-left: 0;
  border-radius: 100px;
}

ul.wp-block-social-links.is-style-logos-only {
  --wp--social-links--gap-v: 10px;
  --wp--social-links--gap-h: 20px;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link:hover {
  transform: none;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor {
  position: relative;
  flex-direction: row;
  gap: 10px;
  width: auto;
  height: auto;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor:hover, ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor:focus {
  transform: none;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor:hover svg, ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor:focus svg {
  transform: none;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor::after {
  display: none;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor:not(:hover, :focus) {
  color: hsl(var(--mpl-color-white));
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-anchor svg {
  width: 24px;
  height: 24px;
}
ul.wp-block-social-links.is-style-logos-only .wp-block-social-link-label {
  color: hsl(var(--mpl-color-title));
}

.widget .wp-block-social-links {
  margin: 0;
}

/* ------------------------------------------------------------------
  Table.
 ------------------------------------------------------------------- */
table {
  padding: 30px;
  border-spacing: 0;
  border-collapse: separate;
  border: 2px solid hsl(var(--mpl-color-border));
  border-radius: var(--mpl-border-radius-lg);
}
table thead {
  border-bottom: 0;
}
table tr,
table td {
  border: none;
}
table th {
  border: 0;
}
table tr:first-child td {
  border-top: none;
}

.wp-block-table > table {
  padding: 30px;
  table-layout: auto;
  border-spacing: 0;
  border-collapse: separate;
  border: 2px solid hsl(var(--mpl-color-border));
  border-radius: var(--mpl-border-radius-lg);
}
.wp-block-table > table:last-child {
  margin-bottom: 0;
}
.wp-block-table > table tbody:first-child tr:first-child td {
  padding-top: 0;
}

.wp-block-table.is-style-stripes {
  border-bottom: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: hsl(var(--mpl-color-background-200));
}
.wp-block-table.is-style-stripes table th:first-child,
.wp-block-table.is-style-stripes table td:first-child {
  padding-left: 20px;
}
.wp-block-table.is-style-stripes table th:last-child,
.wp-block-table.is-style-stripes table td:last-child {
  padding-right: 20px;
}
.wp-block-table.is-style-stripes table tbody tr:last-child th,
.wp-block-table.is-style-stripes table tbody tr:last-child td {
  padding-bottom: calc(var(--mpl-vertical-rhythm) * 0.5);
}
.wp-block-table.is-style-stripes table tbody:first-child tr:first-child td {
  padding-top: calc(var(--mpl-vertical-rhythm) * 0.5);
}

/* ------------------------------------------------------------------
  Tags.
 ------------------------------------------------------------------- */
.wp-block-tag-cloud .tag-link-count {
  display: inline-flex;
  margin-left: 6px;
  color: hsl(var(--mpl-color-meta));
  transition: color var(--mpl-transition-duration) var(--mpl-transition-easing);
}
.wp-block-tag-cloud a:hover .tag-link-count, .wp-block-tag-cloud a:focus .tag-link-count {
  color: hsl(var(--mpl-color-title));
}

.wp-block-tag-cloud.is-style-outline {
  gap: 10px;
}
.wp-block-tag-cloud.is-style-outline a {
  padding: 4px 10px;
  font-size: var(--mpl--font-size--small) !important;
  background-color: transparent;
  background-image: linear-gradient(to bottom left, transparent 50%, hsl(var(--mpl-color-border)) 50%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 200% 200%;
  border: 1px solid hsl(var(--mpl-color-border));
  border-radius: var(--mpl-border-radius-md);
  transition: background-position var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
}
.wp-block-tag-cloud.is-style-outline a .tag-link-count {
  margin-left: 8px;
}
.wp-block-tag-cloud.is-style-outline a::after {
  top: -6px;
  right: -5px;
  bottom: -6px;
  left: -5px;
}
.wp-block-tag-cloud.is-style-outline a:hover, .wp-block-tag-cloud.is-style-outline a:focus {
  background-position: bottom left;
}

/* ------------------------------------------------------------------
  Video.
 ------------------------------------------------------------------- */
.wp-block-video video {
  border-radius: var(--mpl-border-radius);
}

/* ------------------------------------------------------------------

  Plugins.

------------------------------------------------------------------- */
/* ------------------------------------------------------------------
  Fancybox.
 ------------------------------------------------------------------- */
/* ------------------------------------------------------------------
  Main.
 ------------------------------------------------------------------- */
body.compensate-for-scrollbar {
  margin-right: 0;
  overflow: initial;
}

.fancybox-caption__body {
  padding-bottom: 1px;
}

.fancybox-container {
  z-index: 99999;
}

.fancybox-slide {
  overflow: initial;
  opacity: 1;
}

.fancybox-slide--html {
  padding: 0;
}

.mpl-fancybox-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.mpl-fancybox-background .mpl-fancybox-background-image, .mpl-fancybox-background::before {
  position: absolute;
  top: 0;
  right: calc(var(--mpl--container--padding) * -1);
  left: calc(var(--mpl--container--padding) * -1);
  height: 100vh;
}
.mpl-fancybox-background .mpl-fancybox-background-image {
  overflow: hidden;
}
.mpl-fancybox-background::before {
  z-index: 1;
  content: "";
  background-color: var(--mpl-fancybox__background-overlay);
}
.mpl-fancybox-background .mpl-fancybox-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.mpl-fancybox-background ~ .mpl-fancybox-wrap .widgettitle {
  --mpl--text-underline--color: hsl(var(--mpl-color-title), 0.2);
}

.mpl-fancybox-search,
.mpl-fancybox-navbar,
.mpl-fancybox-cart,
.mpl-fancybox-offcanvas {
  height: 100%;
}
.mpl-fancybox-search .fancybox-content,
.mpl-fancybox-navbar .fancybox-content,
.mpl-fancybox-cart .fancybox-content,
.mpl-fancybox-offcanvas .fancybox-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.mpl-fancybox-search .mpl-fancybox-wrap,
.mpl-fancybox-navbar .mpl-fancybox-wrap,
.mpl-fancybox-cart .mpl-fancybox-wrap,
.mpl-fancybox-offcanvas .mpl-fancybox-wrap {
  min-height: 100vh;
  padding: 0 var(--mpl--container--padding);
}

.mpl-fancybox-navbar,
.mpl-fancybox-search,
.mpl-fancybox-signin {
  opacity: 1;
}
.mpl-fancybox-navbar .mpl-fancybox-background::before,
.mpl-fancybox-navbar .mpl-fancybox-background .mpl-fancybox-background-image, .mpl-fancybox-navbar::before,
.mpl-fancybox-search .mpl-fancybox-background::before,
.mpl-fancybox-search .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-search::before,
.mpl-fancybox-signin .mpl-fancybox-background::before,
.mpl-fancybox-signin .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-signin::before {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 85%);
  transition: transform 0.9s var(--mpl-transition-cubic-easing), clip-path 0.3s ease-out;
  transition-delay: 0s, 0.2s;
  transform: translateY(calc(-100% - 40px));
}
@media (max-width: 571.98px) {
  .mpl-fancybox-navbar .mpl-fancybox-background::before,
  .mpl-fancybox-navbar .mpl-fancybox-background .mpl-fancybox-background-image, .mpl-fancybox-navbar::before,
  .mpl-fancybox-search .mpl-fancybox-background::before,
  .mpl-fancybox-search .mpl-fancybox-background .mpl-fancybox-background-image,
  .mpl-fancybox-search::before,
  .mpl-fancybox-signin .mpl-fancybox-background::before,
  .mpl-fancybox-signin .mpl-fancybox-background .mpl-fancybox-background-image,
  .mpl-fancybox-signin::before {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 95%);
  }
}
.mpl-fancybox-navbar::before,
.mpl-fancybox-search::before,
.mpl-fancybox-signin::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  content: "";
  background-color: hsl(var(--mpl-color-background-300));
}
.mpl-fancybox-navbar .mpl-fancybox-close,
.mpl-fancybox-search .mpl-fancybox-close,
.mpl-fancybox-signin .mpl-fancybox-close {
  margin-left: auto;
}
.mpl-fancybox-navbar .fancybox-bg,
.mpl-fancybox-search .fancybox-bg,
.mpl-fancybox-signin .fancybox-bg {
  background-color: transparent;
}
.mpl-fancybox-navbar .fancybox-content,
.mpl-fancybox-search .fancybox-content,
.mpl-fancybox-signin .fancybox-content {
  --mpl--scrollbar--background-color: hsl(var(--mpl-color-background));
  background-color: transparent;
  transition: opacity 0.25s var(--mpl-transition-easing);
  transition-delay: 0.1s;
}
.mpl-fancybox-navbar .mpl-logo,
.mpl-fancybox-search .mpl-logo,
.mpl-fancybox-signin .mpl-logo {
  opacity: 0;
  transition: opacity 0.25s var(--mpl-transition-easing);
  transition-delay: 0.2s;
}
.mpl-fancybox-navbar.mpl-fancybox-open::before,
.mpl-fancybox-navbar.mpl-fancybox-open .mpl-fancybox-background::before,
.mpl-fancybox-navbar.mpl-fancybox-open .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-search.mpl-fancybox-open::before,
.mpl-fancybox-search.mpl-fancybox-open .mpl-fancybox-background::before,
.mpl-fancybox-search.mpl-fancybox-open .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-signin.mpl-fancybox-open::before,
.mpl-fancybox-signin.mpl-fancybox-open .mpl-fancybox-background::before,
.mpl-fancybox-signin.mpl-fancybox-open .mpl-fancybox-background .mpl-fancybox-background-image {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  transition-delay: 0s, 0.2s;
  transform: translateY(0);
}
.mpl-fancybox-navbar.mpl-fancybox-open .mpl-logo,
.mpl-fancybox-search.mpl-fancybox-open .mpl-logo,
.mpl-fancybox-signin.mpl-fancybox-open .mpl-logo {
  opacity: 1;
}
.mpl-fancybox-navbar.fancybox-is-closing::before,
.mpl-fancybox-navbar.fancybox-is-closing .mpl-fancybox-background::before,
.mpl-fancybox-navbar.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-search.fancybox-is-closing::before,
.mpl-fancybox-search.fancybox-is-closing .mpl-fancybox-background::before,
.mpl-fancybox-search.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-signin.fancybox-is-closing::before,
.mpl-fancybox-signin.fancybox-is-closing .mpl-fancybox-background::before,
.mpl-fancybox-signin.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image {
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  transition-delay: 0s;
}
@media (max-width: 571.98px) {
  .mpl-fancybox-navbar.fancybox-is-closing::before,
  .mpl-fancybox-navbar.fancybox-is-closing .mpl-fancybox-background::before,
  .mpl-fancybox-navbar.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image,
  .mpl-fancybox-search.fancybox-is-closing::before,
  .mpl-fancybox-search.fancybox-is-closing .mpl-fancybox-background::before,
  .mpl-fancybox-search.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image,
  .mpl-fancybox-signin.fancybox-is-closing::before,
  .mpl-fancybox-signin.fancybox-is-closing .mpl-fancybox-background::before,
  .mpl-fancybox-signin.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  }
}
.mpl-fancybox-navbar.fancybox-is-closing::before,
.mpl-fancybox-search.fancybox-is-closing::before,
.mpl-fancybox-signin.fancybox-is-closing::before {
  transform: translateY(100%);
}
.mpl-fancybox-navbar.fancybox-is-closing .mpl-fancybox-background::before,
.mpl-fancybox-navbar.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-search.fancybox-is-closing .mpl-fancybox-background::before,
.mpl-fancybox-search.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image,
.mpl-fancybox-signin.fancybox-is-closing .mpl-fancybox-background::before,
.mpl-fancybox-signin.fancybox-is-closing .mpl-fancybox-background .mpl-fancybox-background-image {
  transform: translateY(50%);
}
.mpl-fancybox-navbar.fancybox-is-closing .fancybox-content,
.mpl-fancybox-search.fancybox-is-closing .fancybox-content,
.mpl-fancybox-signin.fancybox-is-closing .fancybox-content {
  opacity: 0;
}

/* ------------------------------------------------------------------
  Element Close.
 ------------------------------------------------------------------- */
button.mpl-fancybox-close {
  --mpl--fancybox-close--transition-delay: 0.2s;
  --mpl--fancybox-close--span--position-y: 16px;
  --mpl--fancybox-close--span--position-x: 13px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: hsl(var(--mpl-color-title));
  background-color: transparent;
  transition: transform 0.3s var(--mpl-transition-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transition-delay: calc(var(--mpl--fancybox-close--transition-delay) + 0.4s), 0s;
  transform: rotate(45deg);
}
button.mpl-fancybox-close > span {
  position: absolute;
  display: block;
  width: 8px;
  height: 2px;
  background-color: currentcolor;
  border-radius: 2px;
  opacity: 0;
  transition: transform 0.2s var(--mpl-transition-easing), opacity 0.2s;
}
button.mpl-fancybox-close > span:nth-child(1) {
  top: var(--mpl--fancybox-close--span--position-y);
  left: var(--mpl--fancybox-close--span--position-x);
  transition-delay: var(--mpl--fancybox-close--transition-delay);
  transform: rotate(45deg) translateX(-100%);
}
button.mpl-fancybox-close > span:nth-child(2) {
  top: var(--mpl--fancybox-close--span--position-y);
  right: var(--mpl--fancybox-close--span--position-x);
  transition-delay: calc(var(--mpl--fancybox-close--transition-delay) + 0.45s);
  transform: rotate(-45deg) translateX(100%);
}
button.mpl-fancybox-close > span:nth-child(3) {
  bottom: var(--mpl--fancybox-close--span--position-y);
  left: var(--mpl--fancybox-close--span--position-x);
  transition-delay: calc(var(--mpl--fancybox-close--transition-delay) + 0.15s);
  transform: rotate(-45deg) translateX(-100%);
}
button.mpl-fancybox-close > span:nth-child(4) {
  right: var(--mpl--fancybox-close--span--position-x);
  bottom: var(--mpl--fancybox-close--span--position-y);
  transition-delay: calc(var(--mpl--fancybox-close--transition-delay) + 0.3s);
  transform: rotate(45deg) translateX(100%);
}
button.mpl-fancybox-close:hover, button.mpl-fancybox-close:focus {
  color: var(--mpl-color-brand);
  background-color: transparent;
  box-shadow: none;
  transform: none;
}

.mpl-fancybox-open .mpl-fancybox-close {
  transform: rotate(0);
}
.mpl-fancybox-open .mpl-fancybox-close > span:nth-child(1) {
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}
.mpl-fancybox-open .mpl-fancybox-close > span:nth-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translateX(0);
}
.mpl-fancybox-open .mpl-fancybox-close > span:nth-child(3) {
  opacity: 1;
  transform: rotate(-45deg) translateX(0);
}
.mpl-fancybox-open .mpl-fancybox-close > span:nth-child(4) {
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}

/* ------------------------------------------------------------------
  Popup Navbar.
 ------------------------------------------------------------------- */
.mpl-fancybox-navbar .mpl-fancybox-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
}

/* ------------------------------------------------------------------
  Popup Cart.
 ------------------------------------------------------------------- */
.mpl-fancybox-cart {
  opacity: 1;
}
.mpl-fancybox-cart.mpl-fancybox-open .fancybox-content {
  clip-path: inset(0);
  transform: translateX(0);
}
.mpl-fancybox-cart.mpl-fancybox-open .fancybox-bg {
  opacity: var(--mpl--popup-overlay--opacity);
}
.mpl-fancybox-cart .mpl-fancybox-close {
  --mpl--fancybox-close--transition-delay: 0.05s;
  position: absolute;
  right: var(--mpl--popup-cart--padding-h);
}
.mpl-fancybox-cart .mpl-fancybox-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}
.mpl-fancybox-cart .fancybox-bg {
  background-color: var(--mpl--popup-overlay--background-color);
  opacity: 0;
  transition: opacity 0.4s var(--mpl-transition-easing);
}
.mpl-fancybox-cart .fancybox-content {
  left: auto;
  width: var(--mpl--popup-cart--width);
  max-width: 100%;
  overflow: initial;
  background-color: hsl(var(--mpl-color-background));
  transition: transform 0.7s var(--mpl-transition-cubic-easing), clip-path 0.7s var(--mpl-transition-cubic-easing);
  transform: translateX(calc(50% + var(--mpl--scrollbar--width)));
  clip-path: inset(0 0 0 50%);
}
.mpl-fancybox-cart .mpl-cart-head {
  flex: 0 0 auto;
  max-width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: flex-start;
  width: 100%;
  min-height: var(--mpl--navbar-top--min-height);
  padding: 0 var(--mpl--popup-cart--padding-h);
  background-color: hsl(var(--mpl-color-background-200));
}
.mpl-fancybox-cart .mpl-cart-body {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  z-index: 1;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  height: calc(100% - var(--mpl--navbar-top--min-height));
}
.mpl-fancybox-cart .mpl-cart-title {
  margin-top: 0;
  margin-bottom: 0;
}
.mpl-fancybox-cart .woocommerce-mini-cart__wrap {
  padding: calc(var(--mpl--popup-cart--padding-v) * 0.5) var(--mpl--popup-cart--padding-h);
  background-color: hsl(var(--mpl-color-background-200));
}
.mpl-fancybox-cart .woocommerce-mini-cart.cart_list {
  --mpl--scrollbar--background-color: hsl(var(--mpl-color-background));
  height: 100%;
  padding: var(--mpl--popup-cart--padding-v) var(--mpl--popup-cart--padding-h);
  margin-bottom: auto;
  overflow-x: initial;
  overflow-y: auto;
}
.mpl-fancybox-cart .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__total,
.mpl-fancybox-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  font-weight: var(--mpl--font-weight--semi-bold);
  color: hsl(var(--mpl-color-title));
}
.mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons,
.mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
@media (max-width: 571.98px) {
  .mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons,
  .mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    flex-direction: column;
  }
}
@media (min-width: 572px) {
  .mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons a,
  .mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 571.98px) {
  .mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons a,
  .mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mpl-fancybox-cart .woocommerce .woocommerce-mini-cart__buttons a + a,
  .mpl-fancybox-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a + a {
    margin-top: 10px;
  }
}
.mpl-fancybox-cart.fancybox-is-closing .fancybox-slide {
  opacity: 1;
}

/* ------------------------------------------------------------------
  Popup Search.
 ------------------------------------------------------------------- */
.mpl-fancybox-search .mpl-fancybox-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mpl-fancybox-search .mpl-search-logo {
  display: flex;
  align-items: center;
  min-height: var(--mpl--navbar-top--min-height);
}
.mpl-fancybox-search .mpl-search-head {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  order: 1;
  width: 100%;
  flex: 0 0 auto;
  max-width: 100%;
}
.mpl-fancybox-search .mpl-search-body {
  position: relative;
  display: flex;
  align-items: center;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  order: 2;
  width: 1000px;
}
.mpl-fancybox-search .mpl-search-input {
  flex: 0 0 100%;
  max-width: 100%;
  min-height: 72px;
  padding: 15.5px 30px;
  clip-path: inset(0 100% 0 0);
  font-size: 3.125rem;
  color: hsl(var(--mpl-color-title));
  border: 0;
  border-bottom: 2px solid hsl(var(--mpl-color-border));
  border-radius: 0;
  transition: clip-path 0.9s var(--mpl-transition-cubic-easing), border-color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transition-delay: 0.3s, 0s;
}
@media (max-width: 571.98px) {
  .mpl-fancybox-search .mpl-search-input {
    font-size: var(--mpl--font-size--large);
  }
}
.mpl-fancybox-search .mpl-search-input::-moz-placeholder {
  color: hsl(var(--mpl-color-title));
}
.mpl-fancybox-search .mpl-search-input::placeholder {
  color: hsl(var(--mpl-color-title));
}
.mpl-fancybox-search .mpl-search-input:focus {
  color: hsl(var(--mpl-color-title));
  border-color: hsl(var(--mpl-color-title));
}
.mpl-fancybox-search .mpl-search-btn {
  position: absolute;
  right: 0;
  padding: 18px 25px;
  color: hsl(var(--mpl-color-title));
  background-color: transparent;
  opacity: 0;
  transition: opacity 0.6s var(--mpl-transition-easing), color var(--mpl-transition-duration) var(--mpl-transition-easing);
  transition-delay: 0.6s, 0s;
}
.mpl-fancybox-search .mpl-search-btn svg {
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 571.98px) {
  .mpl-fancybox-search .mpl-search-btn svg {
    width: 22px;
    height: 22px;
  }
}
.mpl-fancybox-search .mpl-search-btn:hover, .mpl-fancybox-search .mpl-search-btn:focus {
  color: var(--mpl-color-brand);
  box-shadow: none;
  transform: none;
}
.mpl-fancybox-search .mpl-search-btn:focus:not(:focus-visible) {
  outline: none;
}
.mpl-fancybox-search .mpl-search-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  order: 3;
  margin-bottom: 30px;
  text-align: center;
  flex: 0 0 auto;
  max-width: 100%;
}
.mpl-fancybox-search .mpl-search-footer .mpl-social-links {
  --mpl--social-links--color: hsl(var(--mpl-color-meta));
  --mpl--social-links-hover--color: hsl(var(--mpl-color-title));
}
.mpl-fancybox-search.mpl-fancybox-open .mpl-search-input {
  clip-path: inset(0);
}
.mpl-fancybox-search.mpl-fancybox-open .mpl-search-btn {
  opacity: 1;
}

/* ------------------------------------------------------------------
  Popup Sign In.
 ------------------------------------------------------------------- */
.mpl-fancybox-signin .mpl-signin {
  width: 100%;
  height: 100%;
  padding: 0 var(--mpl--container--padding);
}
.mpl-fancybox-signin .fancybox-content {
  background-color: transparent;
  opacity: 1;
}
.mpl-fancybox-signin .mpl-login-head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  order: 1;
  width: 100%;
  min-height: var(--mpl--navbar-top--min-height);
  padding-right: var(--mpl--container--padding);
  padding-left: var(--mpl--container--padding);
}
.mpl-fancybox-signin .mpl-fancybox-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto;
}
.mpl-fancybox-signin .lwa {
  clip-path: inset(0 0 100% 0);
  transition: opacity var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), transform 0.9s var(--mpl-transition-cubic-easing), clip-path 0.9s var(--mpl-transition-cubic-easing);
  transform: translateY(-50px);
}
.mpl-fancybox-signin.mpl-fancybox-open .fancybox-content {
  opacity: 1;
}
.mpl-fancybox-signin.mpl-fancybox-open .lwa {
  clip-path: inset(0);
  transition-delay: 0.3s;
  transform: translateY(0);
}
.mpl-fancybox-signin.fancybox-is-closing .lwa {
  clip-path: inset(100% 0 0 0);
  transition-delay: 0s;
  transform: translateY(50px);
}

/* ------------------------------------------------------------------
  Popup Offcanvas.
 ------------------------------------------------------------------- */
.mpl-fancybox-offcanvas {
  --mpl--fancybox-offcanvas--padding-v: 45px;
  --mpl--fancybox-offcanvas--padding-h: 45px;
  opacity: 1;
}
@media (max-width: 571.98px) {
  .mpl-fancybox-offcanvas {
    --mpl--fancybox-offcanvas--padding-v: 30px;
    --mpl--fancybox-offcanvas--padding-h: 30px;
  }
}
.mpl-fancybox-offcanvas .mpl-fancybox-close {
  --mpl--fancybox-close--transition-delay: 0.05s;
  position: absolute;
  right: var(--mpl--fancybox-offcanvas--padding-h);
}
.mpl-fancybox-offcanvas .mpl-fancybox-background .mpl-fancybox-background-image, .mpl-fancybox-offcanvas .mpl-fancybox-background::before {
  right: 0;
  left: 0;
}
.mpl-fancybox-offcanvas .mpl-fancybox-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}
.mpl-fancybox-offcanvas .fancybox-bg {
  background-color: var(--mpl--popup-overlay--background-color);
  opacity: 0;
  transition: opacity 0.4s var(--mpl-transition-easing);
}
.mpl-fancybox-offcanvas .fancybox-content {
  right: auto;
  width: auto;
  max-width: 100%;
  overflow: initial;
  background-color: hsl(var(--mpl-color-background));
  transition: transform var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing), clip-path var(--mpl-transition-cubic-duration) var(--mpl-transition-cubic-easing);
  transform: translateX(-50%);
  clip-path: inset(0 50% 0 0);
}
.mpl-fancybox-offcanvas .mpl-offcanvas-head {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: var(--mpl--navbar-top--min-height);
  padding: 0 var(--mpl--fancybox-offcanvas--padding-h);
  background-color: hsl(var(--mpl-color-background-200));
}
.mpl-fancybox-offcanvas .mpl-offcanvas-body {
  width: calc(var(--mpl--sidebar--width) + var(--mpl--scrollbar--width) + var(--mpl--fancybox-offcanvas--padding-h) * 2);
  max-width: 100%;
  height: 100%;
  padding: var(--mpl--fancybox-offcanvas--padding-v) var(--mpl--fancybox-offcanvas--padding-h);
  overflow-x: initial;
  overflow-y: auto;
}
.mpl-fancybox-offcanvas.mpl-fancybox-open .fancybox-content {
  clip-path: inset(0);
  transform: translateX(0);
}
.mpl-fancybox-offcanvas.mpl-fancybox-open .fancybox-bg {
  opacity: var(--mpl--popup-overlay--opacity);
}
.mpl-fancybox-offcanvas.fancybox-is-closing .fancybox-slide {
  opacity: 1;
}