body.device-mobile-optimized {
  overflow-x: hidden;
  overflow-y: scroll;
}

body.device-mobile-optimized:not(.autozoom) #SITE_CONTAINER,
body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER {
  zoom: var(--zoom-factor, 1);
  margin-left: auto;
  margin-right: auto;
  overflow-x: visible;
  position: relative;
  width: 320px;
}

body.device-mobile-optimized:not(.autozoom):not(.blockSiteScrolling)
  #SITE_CONTAINER,
body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling)
  #SITE_CONTAINER {
  margin-top: 0;
}

body.device-mobile-optimized > * {
  max-width: 100% !important;
}

body.device-mobile-optimized #site-root {
  overflow-x: hidden;
  overflow-y: hidden;
}

@supports (overflow: clip) {
  body.device-mobile-optimized #site-root {
    overflow-x: clip;
    overflow-y: clip;
  }
}

body.device-mobile-non-optimized #SITE_CONTAINER #site-root {
  overflow-x: hidden;
  overflow-y: auto;
}

body.device-mobile-non-optimized.fullScreenMode {
  background-color: #5f6360;
}

body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,
body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,
body.device-mobile-non-optimized.fullScreenMode #site-root,
body.fullScreenMode #WIX_ADS {
  visibility: hidden;
}

body.fullScreenMode {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

body.fullScreenMode.device-mobile-optimized #TINY_MENU {
  opacity: 0;
  pointer-events: none;
}

body.fullScreenMode-scrollable.device-mobile-optimized {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,
body.fullScreenMode-scrollable.device-mobile-optimized #site-root {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND,
body.fullScreenMode-scrollable.device-mobile-optimized #masterPage {
  height: auto !important;
}

body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout {
  height: 0 !important;
}

body.blockSiteScrolling {
  position: fixed;
  width: 100%;
}

body.blockSiteScrolling #SITE_CONTAINER {
  margin-top: calc(var(--blocked-site-scroll-margin-top) * -1);
}

body.blockSiteScrolling:not(.responsive) #WIX_ADS {
  margin-top: var(--blocked-site-scroll-margin-top);
}

body.blockSiteScrollingWithOverflow {
  overflow-y: hidden;
}

@keyframes slide-horizontal-new {
  0% {
    transform: translateX(100%);
  }
}

@keyframes slide-horizontal-old {
  80% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes slide-vertical-new {
  0% {
    transform: translateY(-100%);
  }
}

@keyframes slide-vertical-old {
  80% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes out-in-new {
  0% {
    opacity: 0;
  }
}

@keyframes out-in-old {
  to {
    opacity: 0;
  }
}

html[data-page-transition="SlideHorizontal"]::view-transition-old(page-group) {
  animation: slide-horizontal-old 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  mix-blend-mode: normal;
}

html[data-page-transition="SlideHorizontal"]::view-transition-new(page-group) {
  animation: slide-horizontal-new 0.6s cubic-bezier(0.83, 0, 0.17, 1) backwards;
  mix-blend-mode: normal;
}

html[data-page-transition="SlideVertical"]::view-transition-old(page-group) {
  animation: slide-vertical-old 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  mix-blend-mode: normal;
}

html[data-page-transition="SlideVertical"]::view-transition-new(page-group) {
  animation: slide-vertical-new 0.6s cubic-bezier(0.83, 0, 0.17, 1) backwards;
  mix-blend-mode: normal;
}

html[data-page-transition="OutIn"]::view-transition-old(page-group) {
  animation: out-in-old 0.35s cubic-bezier(0.64, 0, 0.78, 0) forwards;
}

html[data-page-transition="OutIn"]::view-transition-new(page-group) {
  animation: out-in-new 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.35s backwards;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-new(*),
  ::view-transition-old(*) {
    animation: none !important;
  }
}

body,
html {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  --scrollbar-width: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

body,
html {
  height: 100%;
}

body {
  overflow-x: auto;
  overflow-y: scroll;
}

body:not(.responsive) #site-root {
  min-width: var(--site-width);
  width: 100%;
}

body:not([data-js-loaded]) [data-hide-prejs] {
  visibility: hidden;
}

#SITE_CONTAINER {
  position: relative;
}

:root {
  --one-unit: 1vw;
  --section-max-width: 9999px;
}

@supports (container-type: inline-size) {
  :root {
    --one-unit: 1cqw;
  }
}
a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
button,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
nav,
object,
ol,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
title,
tr,
tt,
u,
ul,
var {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

input,
select,
textarea {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.testStyles {
  overflow-y: hidden;
}

.reset-button {
  -webkit-appearance: none;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  outline: 0;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

:focus {
  outline: none;
}

#site-root {
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  top: var(--wix-ads-height);
}

#site-root img:not([src]) {
  visibility: hidden;
}

#site-root svg img:not([src]) {
  visibility: visible;
}

.auto-generated-link {
  color: inherit;
}

#SCROLL_TO_BOTTOM,
#SCROLL_TO_TOP {
  height: 0;
}

.has-click-trigger {
  cursor: pointer;
}

.fullScreenOverlay {
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  overflow-y: hidden;
  position: fixed;
  right: 0;
  top: -60px;
  z-index: 1005;
}

.fullScreenOverlay > .fullScreenOverlayContent {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 60px;
  transform: translateZ(0);
}

[data-mesh-id$="centeredContent"],
[data-mesh-id$="form"],
[data-mesh-id$="inlineContent"] {
  pointer-events: none;
  position: relative;
}

[data-mesh-id$="-gridWrapper"],
[data-mesh-id$="-rotated-wrapper"] {
  pointer-events: none;
}

[data-mesh-id$="-gridContainer"] > *,
[data-mesh-id$="-rotated-wrapper"] > *,
[data-mesh-id$="inlineContent"] > :not([data-mesh-id$="-gridContainer"]) {
  pointer-events: auto;
}

.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID {
  grid-area: 2/1/3/2;
  -ms-grid-row: 2;
  position: relative;
}

#masterPage.mesh-layout {
  -ms-grid-rows: max-content max-content min-content max-content;
  -ms-grid-columns: 100%;
  align-items: start;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content max-content min-content max-content;
  justify-content: stretch;
}

#masterPage.mesh-layout #PAGES_CONTAINER,
#masterPage.mesh-layout #SITE_FOOTER-placeholder,
#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,
#masterPage.mesh-layout #SITE_HEADER-placeholder,
#masterPage.mesh-layout #SITE_HEADER_WRAPPER,
#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~="mobileView"],
#masterPage.mesh-layout #soapAfterPagesContainer,
#masterPage.mesh-layout #soapBeforePagesContainer {
  -ms-grid-row-align: start;
  -ms-grid-column-align: start;
  -ms-grid-column: 1;
}

#masterPage.mesh-layout #SITE_HEADER-placeholder,
#masterPage.mesh-layout #SITE_HEADER_WRAPPER {
  grid-area: 1/1/2/2;
  -ms-grid-row: 1;
}

#masterPage.mesh-layout #PAGES_CONTAINER,
#masterPage.mesh-layout #soapAfterPagesContainer,
#masterPage.mesh-layout #soapBeforePagesContainer {
  grid-area: 3/1/4/2;
  -ms-grid-row: 3;
}

#masterPage.mesh-layout #soapAfterPagesContainer,
#masterPage.mesh-layout #soapBeforePagesContainer {
  width: 100%;
}

#masterPage.mesh-layout #PAGES_CONTAINER {
  align-self: stretch;
}

#masterPage.mesh-layout main#PAGES_CONTAINER {
  display: block;
}

#masterPage.mesh-layout #SITE_FOOTER-placeholder,
#masterPage.mesh-layout #SITE_FOOTER_WRAPPER {
  grid-area: 4/1/5/2;
  -ms-grid-row: 4;
}

#masterPage.mesh-layout #SITE_PAGES,
#masterPage.mesh-layout [data-mesh-id="PAGES_CONTAINERcenteredContent"],
#masterPage.mesh-layout [data-mesh-id="PAGES_CONTAINERinlineContent"] {
  height: 100%;
}

#masterPage.mesh-layout.desktop > * {
  width: 100%;
}

#masterPage.mesh-layout #PAGES_CONTAINER,
#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,
#masterPage.mesh-layout #SITE_HEADER_WRAPPER,
#masterPage.mesh-layout #SITE_PAGES,
#masterPage.mesh-layout #masterPageinlineContent,
#masterPage.mesh-layout:not(.one-doc) #SITE_FOOTER,
#masterPage.mesh-layout:not(.one-doc) #SITE_HEADER {
  position: relative;
}

#masterPage.mesh-layout.remove-wrappers #SITE_HEADER {
  grid-area: 1/1/2/2;
}

#masterPage.mesh-layout.remove-wrappers #SITE_FOOTER {
  grid-area: 4/1/5/2;
}

[data-z-counter] {
  z-index: 0;
}

[data-z-counter="0"] {
  z-index: auto;
}

.wixSiteProperties {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --wst-button-color-fill-primary: rgb(var(--color_48));
  --wst-button-color-border-primary: rgb(var(--color_49));
  --wst-button-color-text-primary: rgb(var(--color_50));
  --wst-button-color-fill-primary-hover: rgb(var(--color_51));
  --wst-button-color-border-primary-hover: rgb(var(--color_52));
  --wst-button-color-text-primary-hover: rgb(var(--color_53));
  --wst-button-color-fill-primary-disabled: rgb(var(--color_54));
  --wst-button-color-border-primary-disabled: rgb(var(--color_55));
  --wst-button-color-text-primary-disabled: rgb(var(--color_56));
  --wst-button-color-fill-secondary: rgb(var(--color_57));
  --wst-button-color-border-secondary: rgb(var(--color_58));
  --wst-button-color-text-secondary: rgb(var(--color_59));
  --wst-button-color-fill-secondary-hover: rgb(var(--color_60));
  --wst-button-color-border-secondary-hover: rgb(var(--color_61));
  --wst-button-color-text-secondary-hover: rgb(var(--color_62));
  --wst-button-color-fill-secondary-disabled: rgb(var(--color_63));
  --wst-button-color-border-secondary-disabled: rgb(var(--color_64));
  --wst-button-color-text-secondary-disabled: rgb(var(--color_65));
  --wst-color-fill-base-1: rgb(var(--color_36));
  --wst-color-fill-base-2: rgb(var(--color_37));
  --wst-color-fill-base-shade-1: rgb(var(--color_38));
  --wst-color-fill-base-shade-2: rgb(var(--color_39));
  --wst-color-fill-base-shade-3: rgb(var(--color_40));
  --wst-color-fill-accent-1: rgb(var(--color_41));
  --wst-color-fill-accent-2: rgb(var(--color_42));
  --wst-color-fill-accent-3: rgb(var(--color_43));
  --wst-color-fill-accent-4: rgb(var(--color_44));
  --wst-color-fill-background-primary: rgb(var(--color_11));
  --wst-color-fill-background-secondary: rgb(var(--color_12));
  --wst-color-text-primary: rgb(var(--color_15));
  --wst-color-text-secondary: rgb(var(--color_14));
  --wst-color-action: rgb(var(--color_18));
  --wst-color-disabled: rgb(var(--color_39));
  --wst-color-title: rgb(var(--color_45));
  --wst-color-subtitle: rgb(var(--color_46));
  --wst-color-line: rgb(var(--color_47));
  --wst-font-style-h2: var(--font_2);
  --wst-font-style-h3: var(--font_3);
  --wst-font-style-h4: var(--font_4);
  --wst-font-style-h5: var(--font_5);
  --wst-font-style-h6: var(--font_6);
  --wst-font-style-body-large: var(--font_7);
  --wst-font-style-body-medium: var(--font_8);
  --wst-font-style-body-small: var(--font_9);
  --wst-font-style-body-x-small: var(--font_10);
}
.PlZyDq {
  touch-action: manipulation;
}

.uDW_Qe {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: var(--label-align);
  min-width: 100%;
  text-align: initial;
  width: -moz-max-content;
  width: max-content;
}

.uDW_Qe:before {
  max-width: var(--margin-start, 0);
}

.uDW_Qe:after,
.uDW_Qe:before {
  align-self: stretch;
  content: "";
  flex-grow: 1;
}

.uDW_Qe:after {
  max-width: var(--margin-end, 0);
}

.FubTgk {
  height: 100%;
}

.FubTgk .uDW_Qe {
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(
    --trans1,
    border-color 0.4s ease 0s,
    background-color 0.4s ease 0s
  );
}

.FubTgk .uDW_Qe:link,
.FubTgk .uDW_Qe:visited {
  border-color: transparent;
}

.FubTgk .l7_2fn {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  font: var(--fnt, var(--font_5));
  margin: 0;
  position: relative;
  transition: var(--trans2, color 0.4s ease 0s);
  white-space: nowrap;
}

.FubTgk[aria-disabled="false"] .uDW_Qe {
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, var(--color_17, color_17)), var(--alpha-bg, 1))
  );
  border: solid
    var(
      --corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    )
    var(--corvid-border-width, var(--brw, 0));
  cursor: pointer !important;
}

:host(.device-mobile-optimized) .FubTgk[aria-disabled="false"]:active .uDW_Qe,
body.device-mobile-optimized .FubTgk[aria-disabled="false"]:active .uDW_Qe {
  background-color: rgba(
    var(--bgh, var(--color_18, color_18)),
    var(--alpha-bgh, 1)
  );
  border-color: rgba(
    var(--brdh, var(--color_15, color_15)),
    var(--alpha-brdh, 1)
  );
}

:host(.device-mobile-optimized) .FubTgk[aria-disabled="false"]:active .l7_2fn,
body.device-mobile-optimized .FubTgk[aria-disabled="false"]:active .l7_2fn {
  color: rgb(var(--txth, var(--color_15, color_15)));
}

:host(:not(.device-mobile-optimized))
  .FubTgk[aria-disabled="false"]:hover
  .uDW_Qe,
body:not(.device-mobile-optimized)
  .FubTgk[aria-disabled="false"]:hover
  .uDW_Qe {
  background-color: rgba(
    var(--bgh, var(--color_18, color_18)),
    var(--alpha-bgh, 1)
  );
  border-color: rgba(
    var(--brdh, var(--color_15, color_15)),
    var(--alpha-brdh, 1)
  );
}

:host(:not(.device-mobile-optimized))
  .FubTgk[aria-disabled="false"]:hover
  .l7_2fn,
body:not(.device-mobile-optimized)
  .FubTgk[aria-disabled="false"]:hover
  .l7_2fn {
  color: rgb(var(--txth, var(--color_15, color_15)));
}

.FubTgk[aria-disabled="true"] .uDW_Qe {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 204, 204, 204), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 0));
}

.FubTgk[aria-disabled="true"] .l7_2fn {
  color: rgb(var(--txtd, 255, 255, 255));
}

.uUxqWY {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: var(--label-align);
  min-width: 100%;
  text-align: initial;
  width: -moz-max-content;
  width: max-content;
}

.uUxqWY:before {
  max-width: var(--margin-start, 0);
}

.uUxqWY:after,
.uUxqWY:before {
  align-self: stretch;
  content: "";
  flex-grow: 1;
}

.uUxqWY:after {
  max-width: var(--margin-end, 0);
}

.Vq4wYb[aria-disabled="false"] .uUxqWY {
  cursor: pointer;
}

:host(.device-mobile-optimized) .Vq4wYb[aria-disabled="false"]:active .wJVzSK,
body.device-mobile-optimized .Vq4wYb[aria-disabled="false"]:active .wJVzSK {
  color: rgb(var(--txth, var(--color_15, color_15)));
  transition: var(--trans, color 0.4s ease 0s);
}

:host(:not(.device-mobile-optimized))
  .Vq4wYb[aria-disabled="false"]:hover
  .wJVzSK,
body:not(.device-mobile-optimized)
  .Vq4wYb[aria-disabled="false"]:hover
  .wJVzSK {
  color: rgb(var(--txth, var(--color_15, color_15)));
  transition: var(--trans, color 0.4s ease 0s);
}

.Vq4wYb .uUxqWY {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.Vq4wYb .wJVzSK {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  font: var(--fnt, var(--font_5));
  transition: var(--trans, color 0.4s ease 0s);
  white-space: nowrap;
}

.Vq4wYb[aria-disabled="true"] .wJVzSK {
  color: rgb(var(--txtd, 255, 255, 255));
}

:host(:not(.device-mobile-optimized)) .CohWsy,
body:not(.device-mobile-optimized) .CohWsy {
  display: flex;
}

:host(:not(.device-mobile-optimized)) .V5AUxf,
body:not(.device-mobile-optimized) .V5AUxf {
  -moz-column-gap: var(--margin);
  column-gap: var(--margin);
  display: flex;
  flex-direction: var(--items-direction);
  margin: 0 auto;
  position: relative;
  width: calc(100% - var(--padding) * 2);
}

:host(:not(.device-mobile-optimized)) .V5AUxf > *,
body:not(.device-mobile-optimized) .V5AUxf > * {
  flex: var(--column-flex) 1 0%;
  left: 0;
  margin-bottom: var(--padding);
  margin-top: var(--padding);
  min-width: 0;
  position: relative;
  top: 0;
}

:host(.device-mobile-optimized) .V5AUxf,
body.device-mobile-optimized .V5AUxf {
  display: block;
  padding: var(--padding) 0;
  position: relative;
}

:host(.device-mobile-optimized) .V5AUxf > *,
body.device-mobile-optimized .V5AUxf > * {
  margin-bottom: var(--margin);
  position: relative;
}

:host(.device-mobile-optimized) .V5AUxf > :first-child,
body.device-mobile-optimized .V5AUxf > :first-child {
  margin-top: var(--firstChildMarginTop, 0);
}

:host(.device-mobile-optimized) .V5AUxf > :last-child,
body.device-mobile-optimized .V5AUxf > :last-child {
  margin-bottom: var(--lastChildMarginBottom);
}

.LIhNy3 {
  backface-visibility: hidden;
}

.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}

.HlRz5e img {
  max-width: var(--wix-img-max-width, 100%);
}

.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}

.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}

.if7Vw2 {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}

.if7Vw2.f0uTJH {
  clip: rect(0, auto, auto, 0);
}

.if7Vw2 .i1tH8h {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.if7Vw2 .DXi4PB {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}

.if7Vw2 .DXi4PB img {
  height: 100%;
  width: 100%;
}

@supports (-webkit-hyphens: none) {
  .if7Vw2.f0uTJH {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}

.wG8dni {
  height: 100%;
}

.tcElKx {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}

.ImALHf,
.Ybjs9b {
  opacity: var(--fill-layer-video-opacity);
}

.UWmm3w {
  bottom: var(--media-padding-bottom);
  height: var(--media-padding-height);
  position: absolute;
  top: var(--media-padding-top);
  width: 100%;
}

.Yjj1af {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}

.ImALHf {
  height: 100%;
  position: relative;
  width: 100%;
}

._uqPqy {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}

._uqPqy,
.eKyYhK {
  position: absolute;
  top: 0;
}

._uqPqy,
.eKyYhK,
.x0mqQS img {
  height: 100%;
  width: 100%;
}

.pnCr6P {
  opacity: 0;
}

.blf7sp,
.pnCr6P {
  position: absolute;
  top: 0;
}

.blf7sp {
  height: 0;
  left: 0;
  overflow: hidden;
  width: 0;
}

.rWP3Gv {
  left: 0;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: var(--fill-layer-background-media-position);
}

.Tr4n3d,
.rWP3Gv,
.wRqk6s {
  height: 100%;
  top: 0;
  width: 100%;
}

.wRqk6s {
  position: absolute;
}

.Tr4n3d {
  background-color: var(--fill-layer-background-overlay-color);
  opacity: var(--fill-layer-background-overlay-blend-opacity-fallback, 1);
  position: var(--fill-layer-background-overlay-position);
  transform: var(--fill-layer-background-overlay-transform);
}

@supports (mix-blend-mode: overlay) {
  .Tr4n3d {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}

.VXAmO2 {
  --divider-pin-height__: min(1, calc(var(--divider-layers-pin-factor__) + 1));
  --divider-pin-layer-height__: var(--divider-layers-pin-factor__);
  --divider-pin-border__: min(
    1,
    calc(var(--divider-layers-pin-factor__) / -1 + 1)
  );
  height: calc(
    var(--divider-height__) + var(--divider-pin-height__) *
      var(--divider-layers-size__) * var(--divider-layers-y__)
  );
}

.VXAmO2,
.VXAmO2 .dy3w_9 {
  left: 0;
  position: absolute;
  width: 100%;
}

.VXAmO2 .dy3w_9 {
  --divider-layer-i__: var(--divider-layer-i, 0);
  background-position: left
    calc(
      50% + var(--divider-offset-x__) + var(--divider-layers-x__) *
        var(--divider-layer-i__)
    )
    bottom;
  background-repeat: repeat-x;
  border-bottom-style: solid;
  border-bottom-width: calc(
    var(--divider-pin-border__) * var(--divider-layer-i__) *
      var(--divider-layers-y__)
  );
  height: calc(
    var(--divider-height__) + var(--divider-pin-layer-height__) *
      var(--divider-layer-i__) * var(--divider-layers-y__)
  );
  opacity: calc(1 - var(--divider-layer-i__) / (var(--divider-layer-i__) + 1));
}

.UORcXs {
  --divider-height__: var(--divider-top-height, auto);
  --divider-offset-x__: var(--divider-top-offset-x, 0px);
  --divider-layers-size__: var(--divider-top-layers-size, 0);
  --divider-layers-y__: var(--divider-top-layers-y, 0px);
  --divider-layers-x__: var(--divider-top-layers-x, 0px);
  --divider-layers-pin-factor__: var(--divider-top-layers-pin-factor, 0);
  border-top: var(--divider-top-padding, 0) solid
    var(--divider-top-color, currentColor);
  opacity: var(--divider-top-opacity, 1);
  top: 0;
  transform: var(--divider-top-flip, scaleY(-1));
}

.UORcXs .dy3w_9 {
  background-image: var(--divider-top-image, none);
  background-size: var(--divider-top-size, contain);
  border-color: var(--divider-top-color, currentColor);
  bottom: 0;
  filter: var(--divider-top-filter, none);
}

.UORcXs .dy3w_9[data-divider-layer="1"] {
  display: var(--divider-top-layer-1-display, block);
}

.UORcXs .dy3w_9[data-divider-layer="2"] {
  display: var(--divider-top-layer-2-display, block);
}

.UORcXs .dy3w_9[data-divider-layer="3"] {
  display: var(--divider-top-layer-3-display, block);
}

.Io4VUz {
  --divider-height__: var(--divider-bottom-height, auto);
  --divider-offset-x__: var(--divider-bottom-offset-x, 0px);
  --divider-layers-size__: var(--divider-bottom-layers-size, 0);
  --divider-layers-y__: var(--divider-bottom-layers-y, 0px);
  --divider-layers-x__: var(--divider-bottom-layers-x, 0px);
  --divider-layers-pin-factor__: var(--divider-bottom-layers-pin-factor, 0);
  border-bottom: var(--divider-bottom-padding, 0) solid
    var(--divider-bottom-color, currentColor);
  bottom: 0;
  opacity: var(--divider-bottom-opacity, 1);
  transform: var(--divider-bottom-flip, none);
}

.Io4VUz .dy3w_9 {
  background-image: var(--divider-bottom-image, none);
  background-size: var(--divider-bottom-size, contain);
  border-color: var(--divider-bottom-color, currentColor);
  bottom: 0;
  filter: var(--divider-bottom-filter, none);
}

.Io4VUz .dy3w_9[data-divider-layer="1"] {
  display: var(--divider-bottom-layer-1-display, block);
}

.Io4VUz .dy3w_9[data-divider-layer="2"] {
  display: var(--divider-bottom-layer-2-display, block);
}

.Io4VUz .dy3w_9[data-divider-layer="3"] {
  display: var(--divider-bottom-layer-3-display, block);
}

.YzqVVZ {
  overflow: visible;
  position: relative;
}

.mwF7X1 {
  backface-visibility: hidden;
}

.YGilLk {
  cursor: pointer;
}

.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}

.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}

.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}

.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}

@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}

.VgO9Yg {
  height: 100%;
}

.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}

.K_YxMd,
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}

.NGjcJN {
  bottom: var(--media-padding-bottom);
  height: var(--media-padding-height);
  position: absolute;
  top: var(--media-padding-top);
  width: 100%;
}

.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}

.K_YxMd {
  height: 100%;
  position: relative;
  width: 100%;
}

.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}

.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}

.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}

.K8MSra {
  opacity: 0;
}

.K8MSra,
.YTb3b4 {
  position: absolute;
  top: 0;
}

.YTb3b4 {
  height: 0;
  left: 0;
  overflow: hidden;
  width: 0;
}

.SUz0WK {
  left: 0;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: var(--fill-layer-background-media-position);
}

.FNxOn5,
.SUz0WK,
.m4khSP {
  height: 100%;
  top: 0;
  width: 100%;
}

.FNxOn5 {
  position: absolute;
}

.m4khSP {
  background-color: var(--fill-layer-background-overlay-color);
  opacity: var(--fill-layer-background-overlay-blend-opacity-fallback, 1);
  position: var(--fill-layer-background-overlay-position);
  transform: var(--fill-layer-background-overlay-transform);
}

@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}

._C0cVf {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.hFwGTD {
  transform: translateY(-100%);
  transition: 0.2s ease-in;
}

.IQgXoP {
  transition: 0.2s;
}

.Nr3Nid {
  opacity: 0;
  transition: 0.2s ease-in;
}

.Nr3Nid.l4oO6c {
  z-index: -1 !important;
}

.iQuoC4 {
  opacity: 1;
  transition: 0.2s;
}

.CJF7A2 {
  height: auto;
}

.CJF7A2,
.U4Bvut {
  position: relative;
  width: 100%;
}

:host(:not(.device-mobile-optimized)) .G5K6X8,
body:not(.device-mobile-optimized) .G5K6X8 {
  margin-left: calc((100% - var(--site-width)) / 2);
  width: var(--site-width);
}

.xU8fqS[data-focuscycled="active"] {
  outline: 1px solid transparent;
}

.xU8fqS[data-focuscycled="active"]:not(:focus-within) {
  outline: 2px solid transparent;
  transition: outline 0.01s ease;
}

.xU8fqS ._4XcTfy {
  background-color: var(
    --screenwidth-corvid-background-color,
    rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1))
  );
  border-bottom: var(--brwb, 0) solid
    var(
      --screenwidth-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  border-top: var(--brwt, 0) solid
    var(
      --screenwidth-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  bottom: 0;
  box-shadow: var(--shd, 0 0 5px rgba(0, 0, 0, 0.7));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.xU8fqS .gUbusX {
  background-color: rgba(
    var(--bgctr, var(--color_11, color_11)),
    var(--alpha-bgctr, 1)
  );
  border-radius: var(--rd, 0);
  bottom: var(--brwb, 0);
  top: var(--brwt, 0);
}

.xU8fqS .G5K6X8,
.xU8fqS .gUbusX {
  left: 0;
  position: absolute;
  right: 0;
}

.xU8fqS .G5K6X8 {
  bottom: 0;
  top: 0;
}

:host(.device-mobile-optimized) .xU8fqS .G5K6X8,
body.device-mobile-optimized .xU8fqS .G5K6X8 {
  left: 10px;
  right: 10px;
}

.SPY_vo {
  pointer-events: none;
}

.BmZ5pC {
  min-height: calc(100vh / var(--zoom-factor, 1) - var(--wix-ads-height));
  min-width: var(--site-width);
  position: var(--bg-position);
  top: var(--wix-ads-height);
}

.BmZ5pC,
.nTOEE9 {
  height: 100%;
  width: 100%;
}

.nTOEE9 {
  overflow: hidden;
}

.nTOEE9.sqUyGm:hover {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODM3MEUzMUU4OTAyMTFFMzk3Q0FCMkFEODdDNzUzMjQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODM3MEUzMUQ4OTAyMTFFMzk3Q0FCMkFEODdDNzUzMjQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk0ZTkyMTRlLThiNDQtNjc0My04MWZiLTZlYjIzYTA2ZjcwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4bqsJgAAACF0lEQVR42mJgQAd8fHz/gdRvRigfxGEACCA4YvwPBMgCbgABBGOAJP6LiooiZBUUFMCC7969Awk6AQQQA1bAxMTUOnXq1P8/f/78j2zdf5BDQDgoKAgiyMgItv0/1AkozlgJlHwPpDWB+AhAACFL1EJVwvBPIGZHd8P/OXPmgI0F2YdmxXQUhX///sVQqK2tDVL4DFkhF8zK2NjY/4aGhshOOMJAJAB5ZjdAADGQCpiB4Cear3uwKQR74vv372BPLFq0CKZ4GnLcdMGiFtnXmzZtQo0Bdnb2r/b29nBFMIwUjkxghby8vHfFxMQwTMQWp0YggZcvX/5HBpqamhgKQdafAQnq6en9j4+P/4/me150nzsCPfYOKrkWKvYCymcjJozPgqIYIMAYcUjKAnEcELsDbVECOpkNiO8B+buAeCEQ3yUqFllYWNYh+4Obm/u/ubn5f0tLy//QPIqM90ATHVagDHTJH5BCfn7+/xcvXvyPC9y7d+8/KHqghv4FYj0M04BxeAOkQEhI6P+vX79QDECOeBj49+/ffzk5OZih91FyP4gAGiIDooH5hIGVlRUsAXQpGMMAMh+Y1xksLCzg5QxGrAFzwAxY2GzYsIGgC48cOYIclsuwBiIbG9sCmCJFRcX/+/fvxwi/EydOwIoDGH6JLQEiA26ga1egxSY2vAUpkcKKEV5iCwVOIObBU8w8RzLYgYHaAAACg5CxaxSLgwAAAABJRU5ErkJggg==),
    auto;
}

.nTOEE9.C_JY0G:hover {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6N0I4QkNGQTI4OTAyMTFFMzg0RDlBRkM5NDA5QjczRTEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6N0I4QkNGQTE4OTAyMTFFMzg0RDlBRkM5NDA5QjczRTEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk0ZTkyMTRlLThiNDQtNjc0My04MWZiLTZlYjIzYTA2ZjcwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7hiSPZAAACGklEQVR42mJgQAd8fHz/gdRvRigfxGEACCA4YvwPBMgCbgABBGOAJP6LiooiZBUUFMCC7969Awk6AQQQA1bAxMTUOnXq1P8/f/78j2zdf5BDQDgoKAgiyMgItv0/1AkozlgJlHwPpDWB+AhAACFL1EJVwvBPIGZHd8P/OXPm/EcHUA3TURT+/fsXQ6G2tjZI4TNkhVwwK2NjY/8bGhoiO+EIA5EA5JndAAHEQCpgBoKfaL7uwaYQHLrfv38He2LRokUwxdOQ46YLFrXIYNOmTagxwM7O/tXe3h4sCYs3EEYKRyawQl5e3rtiYmL/sQH0ODUCCbx8+RJFkaamJoZCkPVnQIJ6enr/4+Pj/6P5nhfd545Aj72DSq6Fir2A8tmICeOzoCgGCDBGHJKyQBwHxO5AW5SATmYD4ntA/i4gXgjEd4mKRRYWlnXI/uDm5v5vbm7+39LS8j80jyLjPdBEhxUoA13yB6SQn5///8WLF//jAvfu3fsPih6ooX+BWA/DNGAc3gApEBIS+v/r16//hMC/f//+y8nJwQy9j2wWC4gAGiIDooH5hIGVlRUsAXQpVq98/PgRVBAwWFhYMDx69AhczkBj7RdyFpgBC5sNGzYQdOGRI0eQw3IZVpvZ2NgWwBQpKir+379/P4ZBJ06cgBUHMPwSWwJEBtxA165Ai01seAtSIoUVI7zEFgqcQMyDp5h5jmSwAwO1AQBU5q033XYWQwAAAABJRU5ErkJggg==),
    auto;
}

.rYiAuL {
  cursor: pointer;
}

.gSXewE {
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 0;
}

.j7pOnl {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

.BI8PVQ {
  min-height: var(--image-min-height);
  min-width: var(--image-min-width);
}

.BI8PVQ img {
  filter: var(--filter-effect-svg-url);
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100% 100%);
  mask-size: var(--mask-size, 100% 100%);
  -o-object-position: var(--object-position);
  object-position: var(--object-position);
}

.MazNVa {
  left: var(--left, auto);
  position: var(--position-fixed, static);
  top: var(--top, auto);
  z-index: var(--z-index, auto);
}

.MazNVa .BI8PVQ img {
  box-shadow: 0 0 0 #000;
  position: static;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.MazNVa .j7pOnl {
  display: block;
  overflow: hidden;
}

.MazNVa .BI8PVQ {
  overflow: hidden;
}

.c7cMWz {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.FVGvCX {
  height: auto;
  position: relative;
  width: 100%;
}

body:not(.responsive) .zK7MhX {
  align-self: start;
  grid-area: 1/1/1/1;
  height: 100%;
  justify-self: stretch;
  left: 0;
  position: relative;
}

:host(:not(.device-mobile-optimized)) .c7cMWz,
body:not(.device-mobile-optimized) .c7cMWz {
  margin-left: calc((100% - var(--site-width)) / 2);
  width: var(--site-width);
}

.fEm0Bo .c7cMWz {
  background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
  overflow: hidden;
}

:host(.device-mobile-optimized) .c7cMWz,
body.device-mobile-optimized .c7cMWz {
  left: 10px;
  right: 10px;
}

.PFkO7r {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.HT5ybB {
  height: auto;
  position: relative;
  width: 100%;
}

body:not(.responsive) .dBAkHi {
  align-self: start;
  grid-area: 1/1/1/1;
  height: 100%;
  justify-self: stretch;
  left: 0;
  position: relative;
}

:host(:not(.device-mobile-optimized)) .PFkO7r,
body:not(.device-mobile-optimized) .PFkO7r {
  margin-left: calc((100% - var(--site-width)) / 2);
  width: var(--site-width);
}

:host(.device-mobile-optimized) .PFkO7r,
body.device-mobile-optimized .PFkO7r {
  left: 10px;
  right: 10px;
}
.J6KGih {
  cursor: pointer;
}

.sNF2R0 {
  opacity: 0;
}

.hLoBV3 {
  transition: opacity var(--transition-duration) cubic-bezier(0.37, 0, 0.63, 1);
}

.Rdf41z,
.hLoBV3 {
  opacity: 1;
}

.ftlZWo {
  transition: opacity var(--transition-duration) cubic-bezier(0.37, 0, 0.63, 1);
}

.ATGlOr,
.ftlZWo {
  opacity: 0;
}

.KQSXD0 {
  transition: opacity var(--transition-duration) cubic-bezier(0.64, 0, 0.78, 0);
}

.KQSXD0,
.pagQKE {
  opacity: 1;
}

._6zG5H {
  opacity: 0;
  transition: opacity var(--transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.BB49uC {
  transform: translateX(100%);
}

.j9xE1V {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.ICs7Rs,
.j9xE1V {
  transform: translateX(0);
}

.DxijZJ {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.B5kjYq,
.DxijZJ {
  transform: translateX(-100%);
}

.cJijIV {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.cJijIV,
.hOxaWM {
  transform: translateX(0);
}

.T9p3fN {
  transform: translateX(100%);
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.qDxYJm {
  transform: translateY(100%);
}

.aA9V0P {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.YPXPAS,
.aA9V0P {
  transform: translateY(0);
}

.Xf2zsA {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.Xf2zsA,
.y7Kt7s {
  transform: translateY(-100%);
}

.EeUgMu {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

.EeUgMu,
.fdHrtm {
  transform: translateY(0);
}

.WIFaG4 {
  transform: translateY(100%);
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}

body:not(.responsive) .JsJXaX {
  overflow-x: clip;
}

[data-view-transition="page-transition"] .JsJXaX {
  view-transition-name: page-group;
}

.AnQkDU {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 100%;
}

.AnQkDU > div {
  align-self: stretch !important;
  grid-area: 1/1/2/2;
  justify-self: stretch !important;
}

.StylableButton2545352419__root {
  -archetype: box;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 100%;
  min-height: 10px;
  min-width: 10px;
  padding: 0;
  touch-action: manipulation;
  width: 100%;
}

.StylableButton2545352419__root[disabled] {
  pointer-events: none;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBackgroundColor {
  background-color: var(--corvid-background-color) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBorderColor {
  border-color: var(--corvid-border-color) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius {
  border-radius: var(--corvid-border-radius) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth {
  border-width: var(--corvid-border-width) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasColor,
.StylableButton2545352419__root.StylableButton2545352419--hasColor
  .StylableButton2545352419__label {
  color: var(--corvid-color) !important;
}

.StylableButton2545352419__link {
  -archetype: box;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
}

.StylableButton2545352419__container {
  align-items: center;
  display: flex;
  flex-basis: auto;
  flex-direction: row;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  transition: all 0.2s ease, visibility 0s;
  width: 100%;
}

.StylableButton2545352419__label {
  -archetype: text;
  -controller-part-type: LayoutChildDisplayDropdown,
    LayoutFlexChildSpacing(first);
  max-width: 100%;
  min-width: 1.8em;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  transition: inherit;
  white-space: nowrap;
}

.StylableButton2545352419__root.StylableButton2545352419--isMaxContent
  .StylableButton2545352419__label {
  text-overflow: unset;
}

.StylableButton2545352419__root.StylableButton2545352419--isWrapText
  .StylableButton2545352419__label {
  min-width: 10px;
  overflow-wrap: break-word;
  white-space: break-spaces;
  word-break: break-word;
}

.StylableButton2545352419__icon {
  -archetype: icon;
  -controller-part-type: LayoutChildDisplayDropdown,
    LayoutFlexChildSpacing(last);
  flex-shrink: 0;
  height: 50px;
  min-width: 1px;
  transition: inherit;
}

.StylableButton2545352419__icon.StylableButton2545352419--override {
  display: block !important;
}

.StylableButton2545352419__icon svg,
.StylableButton2545352419__icon > div {
  display: flex;
  height: inherit;
  width: inherit;
}

.a9YhBi {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.dX12nb {
  cursor: pointer;
}

.AKxYR5 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  fill: var(--fill);
  fill-opacity: var(--fill-opacity);
  stroke: var(--stroke);
  stroke-opacity: var(--stroke-opacity);
  stroke-width: var(--stroke-width);
  filter: var(--drop-shadow, none);
  opacity: var(--opacity);
  transform: var(--flip);
}

.AKxYR5,
.AKxYR5 svg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.AKxYR5 svg {
  height: var(--svg-calculated-height, 100%);
  margin: auto;
  padding: var(--svg-calculated-padding, 0);
  width: var(--svg-calculated-width, 100%);
}

.AKxYR5 svg:not([data-type="ugc"]) {
  overflow: visible;
}

.VZYmYf * {
  vector-effect: non-scaling-stroke;
}

@supports (-webkit-hyphens: none) {
  .AKxYR5.vv0uGt {
    will-change: filter;
  }
}

.HcOXKn {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ol.font_100,
ul.font_100 {
  color: #080808;
  font-family: "Arial, Helvetica, sans-serif", serif;
  font-size: 10px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}

ol.font_100 li,
ul.font_100 li {
  margin-bottom: 12px;
}

ol.wix-list-text-align,
ul.wix-list-text-align {
  list-style-position: inside;
}

ol.wix-list-text-align h1,
ol.wix-list-text-align h2,
ol.wix-list-text-align h3,
ol.wix-list-text-align h4,
ol.wix-list-text-align h5,
ol.wix-list-text-align h6,
ol.wix-list-text-align p,
ul.wix-list-text-align h1,
ul.wix-list-text-align h2,
ul.wix-list-text-align h3,
ul.wix-list-text-align h4,
ul.wix-list-text-align h5,
ul.wix-list-text-align h6,
ul.wix-list-text-align p {
  display: inline;
}

.ONIxfn {
  cursor: pointer;
}

.WUKwEB {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.QxJLC3 [data-attr-richtext-marker="true"] {
  display: block;
}

.QxJLC3 [data-attr-richtext-marker="true"] table {
  border-collapse: collapse;
  margin: 15px 0;
  width: 100%;
}

.QxJLC3 [data-attr-richtext-marker="true"] table td {
  padding: 12px;
  position: relative;
}

.QxJLC3 [data-attr-richtext-marker="true"] table td:after {
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
}

.QxJLC3 [data-attr-richtext-marker="true"] table tr td:last-child:after {
  border-right: 1px solid currentColor;
}

.QxJLC3 [data-attr-richtext-marker="true"] table tr:first-child td:after {
  border-top: 1px solid currentColor;
}

.uGVkMG {
  direction: var(--text-direction);
  min-height: var(--min-height);
  min-width: var(--min-width);
}

.uGVkMG .edKzOf {
  word-wrap: break-word;
  height: 100%;
  overflow-wrap: break-word;
  position: relative;
  width: 100%;
}

.uGVkMG .edKzOf ul {
  list-style: disc inside;
}

.uGVkMG .edKzOf li {
  margin-bottom: 12px;
}

.SxM0TO blockquote,
.SxM0TO h1,
.SxM0TO h2,
.SxM0TO h3,
.SxM0TO h4,
.SxM0TO h5,
.SxM0TO h6,
.SxM0TO p {
  letter-spacing: normal;
  line-height: normal;
}

.nJYhU3 {
  min-height: var(--min-height);
  min-width: var(--min-width);
}

.nJYhU3 .edKzOf {
  word-wrap: break-word;
  height: 100%;
  overflow-wrap: break-word;
  position: relative;
  width: 100%;
}

.nJYhU3 .edKzOf ol,
.nJYhU3 .edKzOf ul {
  letter-spacing: normal;
  line-height: normal;
  margin-inline-start: 0.5em;
  padding-inline-start: 1.3em;
}

.nJYhU3 .edKzOf ul {
  list-style-type: disc;
}

.nJYhU3 .edKzOf ol {
  list-style-type: decimal;
}

.nJYhU3 .edKzOf ol ul,
.nJYhU3 .edKzOf ul ul {
  line-height: normal;
  list-style-type: circle;
}

.nJYhU3 .edKzOf ol ol ul,
.nJYhU3 .edKzOf ol ul ul,
.nJYhU3 .edKzOf ul ol ul,
.nJYhU3 .edKzOf ul ul ul {
  line-height: normal;
  list-style-type: square;
}

.nJYhU3 .edKzOf li {
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
}

.nJYhU3 .edKzOf h1,
.nJYhU3 .edKzOf h2,
.nJYhU3 .edKzOf h3,
.nJYhU3 .edKzOf h4,
.nJYhU3 .edKzOf h5,
.nJYhU3 .edKzOf h6,
.nJYhU3 .edKzOf p {
  letter-spacing: normal;
  line-height: normal;
  margin-block: 0;
  margin: 0;
}

.nJYhU3 .edKzOf a {
  color: inherit;
}

.SxM0TO,
.c9GqVL {
  word-wrap: break-word;
  direction: var(--text-direction);
  min-height: var(--min-height);
  min-width: var(--min-width);
  mix-blend-mode: var(--blendMode, normal);
  overflow-wrap: break-word;
  pointer-events: none;
  text-align: start;
}

.SxM0TO > *,
.c9GqVL > * {
  pointer-events: auto;
}

.SxM0TO li,
.c9GqVL li {
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
}

.SxM0TO ol,
.SxM0TO ul,
.c9GqVL ol,
.c9GqVL ul {
  letter-spacing: normal;
  line-height: normal;
  margin-inline-end: 0;
  margin-inline-start: 0.5em;
  padding-inline-end: 0;
  padding-inline-start: 1.3em;
}

.SxM0TO ul,
.c9GqVL ul {
  list-style-type: disc;
}

.SxM0TO ol,
.c9GqVL ol {
  list-style-type: decimal;
}

.SxM0TO ol ul,
.SxM0TO ul ul,
.c9GqVL ol ul,
.c9GqVL ul ul {
  list-style-type: circle;
}

.SxM0TO ol ol ul,
.SxM0TO ol ul ul,
.SxM0TO ul ol ul,
.SxM0TO ul ul ul,
.c9GqVL ol ol ul,
.c9GqVL ol ul ul,
.c9GqVL ul ol ul,
.c9GqVL ul ul ul {
  list-style-type: square;
}

.SxM0TO blockquote,
.SxM0TO h1,
.SxM0TO h2,
.SxM0TO h3,
.SxM0TO h4,
.SxM0TO h5,
.SxM0TO h6,
.SxM0TO p,
.c9GqVL blockquote,
.c9GqVL h1,
.c9GqVL h2,
.c9GqVL h3,
.c9GqVL h4,
.c9GqVL h5,
.c9GqVL h6,
.c9GqVL p {
  margin-block: 0;
  margin: 0;
}

.SxM0TO a,
.c9GqVL a {
  color: inherit;
}

.Vd6aQZ {
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  white-space: nowrap;
}

.mHZSwn {
  display: none;
}

.lvxhkV {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.QJjwEo {
  transform: translateY(-100%);
  transition: 0.2s ease-in;
}

.kdBXfh {
  transition: 0.2s;
}

.MP52zt {
  opacity: 0;
  transition: 0.2s ease-in;
}

.MP52zt.Bhu9m5 {
  z-index: -1 !important;
}

.LVP8Wf {
  opacity: 1;
  transition: 0.2s;
}

.VrZrC0 {
  height: auto;
}

.VrZrC0,
.cKxVkc {
  position: relative;
  width: 100%;
}

:host(:not(.device-mobile-optimized)) .vlM3HR,
body:not(.device-mobile-optimized) .vlM3HR {
  margin-left: calc((100% - var(--site-width)) / 2);
  width: var(--site-width);
}

.AT7o0U[data-focuscycled="active"] {
  outline: 1px solid transparent;
}

.AT7o0U[data-focuscycled="active"]:not(:focus-within) {
  outline: 2px solid transparent;
  transition: outline 0.01s ease;
}

.AT7o0U .vlM3HR {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}

.HlRz5e img {
  max-width: var(--wix-img-max-width, 100%);
}

.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}

.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}

.WzbAF8 .mpGTIt .O6KwRn {
  display: var(--item-display);
  height: var(--item-size);
  margin: var(--item-margin);
  width: var(--item-size);
}

.WzbAF8 .mpGTIt .O6KwRn:last-child {
  margin: 0;
}

.WzbAF8 .mpGTIt .O6KwRn .oRtuWN {
  display: block;
}

.WzbAF8 .mpGTIt .O6KwRn .oRtuWN .YaS0jR {
  height: var(--item-size);
  width: var(--item-size);
}

.WzbAF8 .mpGTIt {
  height: 100%;
  position: absolute;
  white-space: nowrap;
  width: 100%;
}

:host(.device-mobile-optimized) .WzbAF8 .mpGTIt,
body.device-mobile-optimized .WzbAF8 .mpGTIt {
  white-space: normal;
}

.big2ZD {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: calc(100% - var(--wix-ads-height));
  left: 0;
  margin-top: var(--wix-ads-height);
  position: fixed;
  top: 0;
  width: 100%;
}

.SHHiV9,
.big2ZD {
  pointer-events: none;
  z-index: var(--pinned-layer-in-container, var(--above-all-in-container));
}
.Gs0oXs,
.pr7XQM {
  box-sizing: border-box;
  height: 100%;
  overflow: visible;
  position: relative;
  width: auto;
}

.Gs0oXs[data-state~="header"] a,
.Gs0oXs[data-state~="header"] div,
[data-state~="header"].pr7XQM a,
[data-state~="header"].pr7XQM div {
  cursor: default !important;
}

.Gs0oXs .rcIF9K,
.pr7XQM .rcIF9K {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.pr7XQM {
  --display: inline-block;
  display: var(--display);
}

.pr7XQM .nzVyrk {
  padding: 0 var(--pad, 5px);
}

.pr7XQM .VCJeT5 {
  border-top: 1px solid
    rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
  cursor: pointer;
  font: var(--fnt, var(--font_1));
}

.pr7XQM .xYGmQj {
  color: rgb(var(--txt, var(--color_15, color_15)));
  display: inline-block;
  padding: 8px;
}

.pr7XQM[data-listposition="left"] {
  padding-left: 0;
}

.pr7XQM[data-listposition="right"] {
  padding-right: 0;
}

.pr7XQM[data-state~="drop"] {
  display: block;
  width: 100%;
}

.pr7XQM[data-state~="link"]:hover .VCJeT5,
.pr7XQM[data-state~="over"] .VCJeT5 {
  border-top-color: rgba(
    var(--brdh, var(--color_15, color_15)),
    var(--alpha-brdh, 1)
  );
  border-top-width: 4px;
}

.pr7XQM[data-state~="link"]:hover .xYGmQj,
.pr7XQM[data-state~="over"] .xYGmQj {
  color: rgb(var(--txth, var(--color_15, color_15)));
  display: inline-block;
  padding-top: 5px;
}

.pr7XQM[data-state~="selected"] .VCJeT5 {
  border-top-color: rgba(
    var(--brds, var(--color_15, color_15)),
    var(--alpha-brds, 1)
  );
  border-top-width: 4px;
}

.pr7XQM[data-state~="selected"] .xYGmQj {
  color: rgb(var(--txts, var(--color_15, color_15)));
  display: inline-block;
  padding-top: 5px;
}

.XRwtpn {
  overflow-x: hidden;
}

.XRwtpn .SvGGzE {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.XRwtpn .SvGGzE .ckXV57 {
  flex: 1;
}

.XRwtpn .SvGGzE .CkCpUo {
  height: calc(100% - (var(--menuTotalBordersY, 0px)));
  overflow: visible;
  white-space: nowrap;
  width: calc(100% - (var(--menuTotalBordersX, 0px)));
}

.XRwtpn .SvGGzE .CkCpUo .L3ZIQx {
  display: inline-block;
}

.XRwtpn .SvGGzE .CkCpUo .DTRNn1 {
  display: block;
  width: 100%;
}

.XRwtpn .O1lweY {
  display: block;
  opacity: 1;
  z-index: 99999;
}

.XRwtpn .O1lweY .VtNw6g {
  display: inherit;
  overflow: visible;
  visibility: inherit;
  white-space: nowrap;
  width: auto;
}

.XRwtpn .O1lweY.GkAfhB {
  transition: visibility;
  transition-delay: 0.2s;
  visibility: visible;
}

.XRwtpn .O1lweY .u7d_AM {
  display: inline-block;
}

.XRwtpn .Ursk0e {
  display: none;
}

.YXlfNd > nav {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.YXlfNd .CkCpUo,
.YXlfNd .O1lweY,
.YXlfNd > nav {
  position: absolute;
}

.YXlfNd .O1lweY {
  background-color: rgba(
    var(--bgDrop, var(--color_11, color_11)),
    var(--alpha-bgDrop, 1)
  );
  border-radius: var(--rd, 10px);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  margin-top: 7px;
  padding: 15px 5px 0 5px;
  visibility: hidden;
}

.YXlfNd [data-dropmode="dropUp"] .O1lweY {
  margin-bottom: 7px;
  margin-top: 0;
}
.StylableButton2545352419__root {
  -archetype: box;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 100%;
  min-height: 10px;
  min-width: 10px;
  padding: 0;
  touch-action: manipulation;
  width: 100%;
}

.StylableButton2545352419__root[disabled] {
  pointer-events: none;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBackgroundColor {
  background-color: var(--corvid-background-color) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBorderColor {
  border-color: var(--corvid-border-color) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius {
  border-radius: var(--corvid-border-radius) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth {
  border-width: var(--corvid-border-width) !important;
}

.StylableButton2545352419__root.StylableButton2545352419--hasColor,
.StylableButton2545352419__root.StylableButton2545352419--hasColor
  .StylableButton2545352419__label {
  color: var(--corvid-color) !important;
}

.StylableButton2545352419__link {
  -archetype: box;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
}

.StylableButton2545352419__container {
  align-items: center;
  display: flex;
  flex-basis: auto;
  flex-direction: row;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  transition: all 0.2s ease, visibility 0s;
  width: 100%;
}

.StylableButton2545352419__label {
  -archetype: text;
  -controller-part-type: LayoutChildDisplayDropdown,
    LayoutFlexChildSpacing(first);
  max-width: 100%;
  min-width: 1.8em;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  transition: inherit;
  white-space: nowrap;
}

.StylableButton2545352419__root.StylableButton2545352419--isMaxContent
  .StylableButton2545352419__label {
  text-overflow: unset;
}

.StylableButton2545352419__root.StylableButton2545352419--isWrapText
  .StylableButton2545352419__label {
  min-width: 10px;
  overflow-wrap: break-word;
  white-space: break-spaces;
  word-break: break-word;
}

.StylableButton2545352419__icon {
  -archetype: icon;
  -controller-part-type: LayoutChildDisplayDropdown,
    LayoutFlexChildSpacing(last);
  flex-shrink: 0;
  height: 50px;
  min-width: 1px;
  transition: inherit;
}

.StylableButton2545352419__icon.StylableButton2545352419--override {
  display: block !important;
}

.StylableButton2545352419__icon svg,
.StylableButton2545352419__icon > div {
  display: flex;
  height: inherit;
  width: inherit;
}
.r4OX7l,
.xTjc1A {
  box-sizing: border-box;
  height: 100%;
  overflow: visible;
  position: relative;
  width: auto;
}

.r4OX7l[data-state~="header"] a,
.r4OX7l[data-state~="header"] div,
[data-state~="header"].xTjc1A a,
[data-state~="header"].xTjc1A div {
  cursor: default !important;
}

.r4OX7l .UiHgGh,
.xTjc1A .UiHgGh {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.xTjc1A {
  --display: inline-block;
  cursor: pointer;
  display: var(--display);
  font: var(--fnt, var(--font_1));
}

.xTjc1A .yRj2ms {
  padding: 0 var(--pad, 5px);
}

.xTjc1A .JS76Uv {
  color: rgb(var(--txt, var(--color_15, color_15)));
  display: inline-block;
  padding: 0 10px;
  transition: var(--trans, color 0.4s ease 0s);
}

.xTjc1A[data-state~="drop"] {
  display: block;
  width: 100%;
}

.xTjc1A[data-state~="drop"] .JS76Uv {
  padding: 0 0.5em;
}

.xTjc1A[data-state~="link"]:hover .JS76Uv,
.xTjc1A[data-state~="over"] .JS76Uv {
  color: rgb(var(--txth, var(--color_14, color_14)));
  transition: var(--trans, color 0.4s ease 0s);
}

.xTjc1A[data-state~="selected"] .JS76Uv {
  color: rgb(var(--txts, var(--color_14, color_14)));
  transition: var(--trans, color 0.4s ease 0s);
}

.NHM1d1 {
  overflow-x: hidden;
}

.NHM1d1 .R_TAzU {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.NHM1d1 .R_TAzU .aOF1ks {
  flex: 1;
}

.NHM1d1 .R_TAzU .y7qwii {
  height: calc(100% - (var(--menuTotalBordersY, 0px)));
  overflow: visible;
  white-space: nowrap;
  width: calc(100% - (var(--menuTotalBordersX, 0px)));
}

.NHM1d1 .R_TAzU .y7qwii .Tg1gOB {
  display: inline-block;
}

.NHM1d1 .R_TAzU .y7qwii .mvZ3NH {
  display: block;
  width: 100%;
}

.NHM1d1 .h3jCPd {
  display: block;
  opacity: 1;
  z-index: 99999;
}

.NHM1d1 .h3jCPd .wkJ2fp {
  display: inherit;
  overflow: visible;
  visibility: inherit;
  white-space: nowrap;
  width: auto;
}

.NHM1d1 .h3jCPd.DlGBN0 {
  transition: visibility;
  transition-delay: 0.2s;
  visibility: visible;
}

.NHM1d1 .h3jCPd .p90CkU {
  display: inline-block;
}

.NHM1d1 .vh74Xw {
  display: none;
}

.XwCBRN > nav {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.XwCBRN .h3jCPd,
.XwCBRN .y7qwii,
.XwCBRN > nav {
  position: absolute;
}

.XwCBRN .h3jCPd {
  margin-top: 7px;
  visibility: hidden;
}

.XwCBRN .h3jCPd[data-dropMode="dropUp"] {
  margin-bottom: 7px;
  margin-top: 0;
}

.XwCBRN .wkJ2fp {
  background-color: rgba(
    var(--bgDrop, var(--color_11, color_11)),
    var(--alpha-bgDrop, 1)
  );
  border-radius: var(--rd, 0);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
}

.P0dCOY .PJ4KCX {
  background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.d7EBK2 {
  border-radius: var(--overflow-wrapper-border-radius);
}
.J6KGih {
  cursor: pointer;
}

.KaEeLN {
  --container-corvid-border-color: rgba(
    var(--brd, var(--color_15, color_15)),
    var(--alpha-brd, 1)
  );
  --container-corvid-border-size: var(--brw, 1px);
  --container-corvid-background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
}

.uYj0Sg {
  -webkit-backdrop-filter: var(--backdrop-filter, none);
  backdrop-filter: var(--backdrop-filter, none);
  background-color: var(
    --container-corvid-background-color,
    rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1))
  );
  border: var(--container-corvid-border-width, var(--brw, 1px)) solid
    var(
      --container-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  border-radius: var(--rd, 5px);
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@-moz-document url-prefix() {
  :invalid {
    box-shadow: none;
  }

  :-moz-submit-invalid,
  :-moz-ui-invalid {
    box-shadow: none;
  }
}

@keyframes kYZz2Z {
  0% {
    animation-timing-function: ease-out;
    transform: rotate(180deg);
  }

  45% {
    transform: rotate(198deg);
  }

  55% {
    transform: rotate(234deg);
  }

  to {
    transform: rotate(540deg);
  }
}

@keyframes wlf4P4 {
  to {
    opacity: 1;
    transform: rotate(115deg);
  }
}

.bkIuWA.xXaCpo {
  --display: flex;
  align-items: center;
  display: var(--display);
  justify-content: center;
}

.d1WWt1 {
  animation: kYZz2Z 1s linear infinite;
  height: 72px;
  margin-left: -18px;
  overflow: hidden;
  position: absolute;
  transform-origin: 100% 50%;
  width: 36px;
}

.d1WWt1:after,
.d1WWt1:before {
  animation: wlf4P4 0.5s linear infinite alternate;
  border: 3px solid currentColor;
  border-color: currentColor transparent transparent currentColor;
  border-radius: 50%;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: -100%;
  top: 0;
  transform: rotate(-45deg);
}

.d1WWt1:before {
  color: #7fccf7;
}

.d1WWt1:after {
  color: #3899ec;
  opacity: 0;
}
.LHrbPP {
  background: #fff;
  border-radius: 24px;
  color: #116dff;
  cursor: pointer;
  font-family: Helvetica, Arial, メイリオ, meiryo, ヒラギノ角ゴ pro w3,
    hiragino kaku gothic pro, sans-serif;
  font-size: 14px;
  height: 0;
  left: 50%;
  margin-left: -94px;
  opacity: 0;
  padding: 0 24px 0 24px;
  pointer-events: none;
  position: absolute;
  top: 60px;
  width: 0;
  z-index: 9999;
}

.LHrbPP:focus {
  border: 2px solid;
  height: 40px;
  opacity: 1;
  pointer-events: auto;
  width: auto;
}
.Oqnisf {
  overflow: visible;
}

.cM88eO {
  backface-visibility: hidden;
}

.YtfWHd {
  left: 0;
  position: absolute;
  top: 0;
}

.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}

.HlRz5e img {
  max-width: var(--wix-img-max-width, 100%);
}

.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}

.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}

.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}

.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}

.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}

.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}

@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}

.VgO9Yg {
  height: 100%;
}

.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}

.K_YxMd,
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}

.NGjcJN {
  bottom: var(--media-padding-bottom);
  height: var(--media-padding-height);
  position: absolute;
  top: var(--media-padding-top);
  width: 100%;
}

.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}

.K_YxMd {
  height: 100%;
  position: relative;
  width: 100%;
}

.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}

.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}

.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}

.K8MSra {
  opacity: 0;
}

.K8MSra,
.YTb3b4 {
  position: absolute;
  top: 0;
}

.YTb3b4 {
  height: 0;
  left: 0;
  overflow: hidden;
  width: 0;
}

.SUz0WK {
  left: 0;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: var(--fill-layer-background-media-position);
}

.FNxOn5,
.SUz0WK,
.m4khSP {
  height: 100%;
  top: 0;
  width: 100%;
}

.FNxOn5 {
  position: absolute;
}

.m4khSP {
  background-color: var(--fill-layer-background-overlay-color);
  opacity: var(--fill-layer-background-overlay-blend-opacity-fallback, 1);
  position: var(--fill-layer-background-overlay-position);
  transform: var(--fill-layer-background-overlay-transform);
}

@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}

.dkukWC {
  --divider-pin-height__: min(1, calc(var(--divider-layers-pin-factor__) + 1));
  --divider-pin-layer-height__: var(--divider-layers-pin-factor__);
  --divider-pin-border__: min(
    1,
    calc(var(--divider-layers-pin-factor__) / -1 + 1)
  );
  height: calc(
    var(--divider-height__) + var(--divider-pin-height__) *
      var(--divider-layers-size__) * var(--divider-layers-y__)
  );
}

.dkukWC,
.dkukWC .FRCqDF {
  left: 0;
  position: absolute;
  width: 100%;
}

.dkukWC .FRCqDF {
  --divider-layer-i__: var(--divider-layer-i, 0);
  background-position: left
    calc(
      50% + var(--divider-offset-x__) + var(--divider-layers-x__) *
        var(--divider-layer-i__)
    )
    bottom;
  background-repeat: repeat-x;
  border-bottom-style: solid;
  border-bottom-width: calc(
    var(--divider-pin-border__) * var(--divider-layer-i__) *
      var(--divider-layers-y__)
  );
  height: calc(
    var(--divider-height__) + var(--divider-pin-layer-height__) *
      var(--divider-layer-i__) * var(--divider-layers-y__)
  );
  opacity: calc(1 - var(--divider-layer-i__) / (var(--divider-layer-i__) + 1));
}

.xnZvZH {
  --divider-height__: var(--divider-top-height, auto);
  --divider-offset-x__: var(--divider-top-offset-x, 0px);
  --divider-layers-size__: var(--divider-top-layers-size, 0);
  --divider-layers-y__: var(--divider-top-layers-y, 0px);
  --divider-layers-x__: var(--divider-top-layers-x, 0px);
  --divider-layers-pin-factor__: var(--divider-top-layers-pin-factor, 0);
  border-top: var(--divider-top-padding, 0) solid
    var(--divider-top-color, currentColor);
  opacity: var(--divider-top-opacity, 1);
  top: 0;
  transform: var(--divider-top-flip, scaleY(-1));
}

.xnZvZH .FRCqDF {
  background-image: var(--divider-top-image, none);
  background-size: var(--divider-top-size, contain);
  border-color: var(--divider-top-color, currentColor);
  bottom: 0;
  filter: var(--divider-top-filter, none);
}

.xnZvZH .FRCqDF[data-divider-layer="1"] {
  display: var(--divider-top-layer-1-display, block);
}

.xnZvZH .FRCqDF[data-divider-layer="2"] {
  display: var(--divider-top-layer-2-display, block);
}

.xnZvZH .FRCqDF[data-divider-layer="3"] {
  display: var(--divider-top-layer-3-display, block);
}

.MBOSCN {
  --divider-height__: var(--divider-bottom-height, auto);
  --divider-offset-x__: var(--divider-bottom-offset-x, 0px);
  --divider-layers-size__: var(--divider-bottom-layers-size, 0);
  --divider-layers-y__: var(--divider-bottom-layers-y, 0px);
  --divider-layers-x__: var(--divider-bottom-layers-x, 0px);
  --divider-layers-pin-factor__: var(--divider-bottom-layers-pin-factor, 0);
  border-bottom: var(--divider-bottom-padding, 0) solid
    var(--divider-bottom-color, currentColor);
  bottom: 0;
  opacity: var(--divider-bottom-opacity, 1);
  transform: var(--divider-bottom-flip, none);
}

.MBOSCN .FRCqDF {
  background-image: var(--divider-bottom-image, none);
  background-size: var(--divider-bottom-size, contain);
  border-color: var(--divider-bottom-color, currentColor);
  bottom: 0;
  filter: var(--divider-bottom-filter, none);
}

.MBOSCN .FRCqDF[data-divider-layer="1"] {
  display: var(--divider-bottom-layer-1-display, block);
}

.MBOSCN .FRCqDF[data-divider-layer="2"] {
  display: var(--divider-bottom-layer-2-display, block);
}

.MBOSCN .FRCqDF[data-divider-layer="3"] {
  display: var(--divider-bottom-layer-3-display, block);
}
.OQ8Tzd,
.nKphmK {
  overflow: hidden;
}

.nKphmK {
  height: 100%;
  position: relative;
  width: 100%;
}

.nKphmK:-ms-fullscreen {
  min-height: auto !important;
}

.nKphmK:fullscreen {
  min-height: auto !important;
}

.pvlz2w {
  visibility: hidden;
}
.TWFxr5 {
  height: auto !important;
}

.May50y {
  overflow: hidden !important;
}
@font-face {
  font-family: "Barlow-Medium";
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E1tXRa8TVwTICgirnJhmVJw.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/ZqlneECqpsd9SXlmAsD2Ez8E0i7KZn-EPnyo3HZu7kw.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  font-weight: 700;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/yS165lxqGuDghyUMXeu6xVtXRa8TVwTICgirnJhmVJw.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/yS165lxqGuDghyUMXeu6xT8E0i7KZn-EPnyo3HZu7kw.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ6g5eI2G47JWe0-AuFtD150.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ9Ih4imgI8P11RFo6YPCPC0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  font-weight: 700;
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xqg5eI2G47JWe0-AuFtD150.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xtIh4imgI8P11RFo6YPCPC0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: local("Barlow Italic"), local("Barlow-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs0wH8DnzcjTrA.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: local("Barlow Italic"), local("Barlow-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs1wH8DnzcjTrA.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: local("Barlow Italic"), local("Barlow-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs7wH8Dnzcj.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: local("Barlow Bold Italic"), local("Barlow-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WohvToJdLm8BvE.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: local("Barlow Bold Italic"), local("Barlow-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WogvToJdLm8BvE.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: local("Barlow Bold Italic"), local("Barlow-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WouvToJdLm8.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: local("Barlow Regular"), local("Barlow-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHpv4kjgoGqM7E_A8s5ynghnQci.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: local("Barlow Regular"), local("Barlow-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHpv4kjgoGqM7E_Ass5ynghnQci.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: local("Barlow Regular"), local("Barlow-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: local("Barlow Bold"), local("Barlow-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Fostz0rdom9.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: local("Barlow Bold"), local("Barlow-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Vostz0rdom9.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: local("Barlow Bold"), local("Barlow-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Avenir-LT-W01_35-Light1475496";
  src: url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/0078f486-8e52-42c0-ad81-3c8d3d43f48e.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/908c4810-64db-4b46-bb8e-823eb41f68c0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Avenir-LT-W05_35-Light";
  src: url("http://static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Avenir_Family_Pack/v1/AvenirLTW05-35Light.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Avenir_Family_Pack/v1/AvenirLTW05-35Light.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-ExtraLight";
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/51v0xj5VPw1cLYHNhfd8NFtXRa8TVwTICgirnJhmVJw.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/51v0xj5VPw1cLYHNhfd8ND8E0i7KZn-EPnyo3HZu7kw.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-ExtraLight";
  font-weight: 700;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/2woyxyDnPU0v4IiqYU9D1g.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/-HJgNsTwx9qXGSxqew62RQ.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-ExtraLight";
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/14AxwKgJhKIO-YYUP_KtZag5eI2G47JWe0-AuFtD150.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/14AxwKgJhKIO-YYUP_KtZdIh4imgI8P11RFo6YPCPC0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-ExtraLight";
  font-weight: 700;
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/cdbGxfKO8gdkBd5U5TuXqPesZW2xOQ-xsNqO47m55DA.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/W1XpMGU0WrpbCawEdG1FM_esZW2xOQ-xsNqO47m55DA.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "DINNeuzeitGroteskLTW01-_812426";
  src: url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/5cee8d6e-89ad-4d8c-a0ac-584d316b15ae.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/388ef902-2c31-4818-abb1-a40dcd81f6d6.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Bree-W01-Thin-Oblique";
  src: url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/ceb3b4a3-0083-44ae-95cb-e362f95cc91b.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/4d716cea-5ba0-437a-b5a8-89ad159ea2be.woff")
      format("woff");
  font-display: swap;
}

#masterPage:not(.landingPage) #PAGES_CONTAINER {
  margin-top: 0px;
  margin-bottom: 0px;
}

#masterPage.landingPage #SITE_FOOTER {
  display: none;
}

#masterPage.landingPage #CONTROLLER_COMP_CUSTOM_ID {
  display: none;
}

#masterPage.landingPage #SOSP_CONTAINER_CUSTOM_ID {
  display: none;
}

#masterPage.landingPage #SITE_HEADER {
  display: none;
}

#masterPage.landingPage #SITE_HEADER-placeholder {
  display: none;
}

#masterPage.landingPage #SITE_FOOTER-placeholder {
  display: none;
}

#SITE_CONTAINER.focus-ring-active
  :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus,
#SITE_CONTAINER.focus-ring-active
  :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus
  ~ .wixSdkShowFocusOnSibling {
  --focus-ring-box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #116dff;
  box-shadow: var(--focus-ring-box-shadow) !important;
  z-index: 1;
}

.has-inner-focus-ring {
  --focus-ring-box-shadow: inset 0 0 0 1px #ffffff, inset 0 0 0 3px #116dff !important;
}

#masterPage {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#SITE_FOOTER {
  --pinned-layer-in-container: 50;
  --above-all-in-container: 49;
}

#PAGES_CONTAINER {
  --pinned-layer-in-container: 51;
  --above-all-in-container: 49;
}

#CONTROLLER_COMP_CUSTOM_ID {
  --pinned-layer-in-container: 52;
  --above-all-in-container: 49;
}

#SOSP_CONTAINER_CUSTOM_ID {
  --pinned-layer-in-container: 53;
  --above-all-in-container: 49;
}

#SITE_HEADER {
  z-index: 49;
  --above-all-in-container: 10000;
}

#comp-ln26ungi-pinned-layer {
  z-index: calc(var(--pinned-layers-in-page, 0) + 55);
  --above-all-in-container: 10000;
}

#comp-ln26ungi {
  justify-self: end;
  align-self: end;
  position: absolute;
  grid-area: 1 / 1 / 2 / 2;
  pointer-events: auto;
}

:root,
:host,
.spxThemeOverride,
.max-width-container {
  --color_0: 255, 255, 255;
  --color_1: 24, 24, 24;
  --color_2: 21, 132, 60;
  --color_3: 37, 37, 37;
  --color_4: 236, 236, 236;
  --color_5: 123, 234, 162;
  --color_6: 255, 255, 255;
  --color_7: 197, 197, 197;
  --color_8: 140, 140, 140;
  --color_9: 82, 82, 82;
  --color_10: 24, 24, 24;
  --color_11: 255, 255, 255;
  --color_12: 197, 197, 197;
  --color_13: 140, 140, 140;
  --color_14: 82, 82, 82;
  --color_15: 24, 24, 24;
  --color_16: 196, 212, 184;
  --color_17: 153, 170, 139;
  --color_18: 108, 128, 93;
  --color_19: 59, 85, 39;
  --color_20: 29, 42, 19;
  --color_21: 211, 211, 211;
  --color_22: 168, 168, 168;
  --color_23: 124, 124, 124;
  --color_24: 81, 81, 81;
  --color_25: 37, 37, 37;
  --color_26: 246, 246, 246;
  --color_27: 236, 236, 236;
  --color_28: 177, 177, 177;
  --color_29: 118, 118, 118;
  --color_30: 59, 59, 59;
  --color_31: 225, 217, 202;
  --color_32: 194, 181, 155;
  --color_33: 146, 136, 116;
  --color_34: 97, 91, 78;
  --color_35: 49, 45, 39;
  --color_36: 255, 255, 255;
  --color_37: 47, 46, 46;
  --color_38: 204, 204, 204;
  --color_39: 160, 160, 159;
  --color_40: 96, 94, 94;
  --color_41: 48, 189, 255;
  --color_42: 47, 46, 46;
  --color_43: 160, 160, 159;
  --color_44: 255, 255, 255;
  --color_45: 47, 46, 46;
  --color_46: 47, 46, 46;
  --color_47: 204, 204, 204;
  --color_48: 48, 189, 255;
  --color_49: 48, 189, 255;
  --color_50: 255, 255, 255;
  --color_51: 255, 255, 255;
  --color_52: 48, 189, 255;
  --color_53: 48, 189, 255;
  --color_54: 160, 160, 159;
  --color_55: 160, 160, 159;
  --color_56: 255, 255, 255;
  --color_57: 255, 255, 255;
  --color_58: 48, 189, 255;
  --color_59: 255, 255, 255;
  --color_60: 48, 189, 255;
  --color_61: 48, 189, 255;
  --color_62: 255, 255, 255;
  --color_63: 255, 255, 255;
  --color_64: 160, 160, 159;
  --color_65: 160, 160, 159;
  --font_0: normal normal normal 22px/1.41em barlow-medium, barlow, sans-serif;
  --font_1: normal normal normal 14px/1.79em avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --font_2: normal normal normal 28px/1.375em barlow-medium, barlow, sans-serif;
  --font_3: normal normal normal 88px/1.2em barlow-medium, barlow, sans-serif;
  --font_4: normal normal normal 72px/1.25em barlow-medium, barlow, sans-serif;
  --font_5: normal normal normal 50px/1.34em barlow-medium, barlow, sans-serif;
  --font_6: normal normal normal 40px/1.35em barlow-medium, barlow, sans-serif;
  --font_7: normal normal normal 20px/1.67em barlow-extralight, barlow,
    sans-serif;
  --font_8: normal normal normal 18px/1.75em barlow-extralight, barlow,
    sans-serif;
  --font_9: normal normal normal 15px/1.875em barlow-extralight, barlow,
    sans-serif;
  --font_10: normal normal normal 14px/1.79em avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --wix-ads-height: 0px;
  --sticky-offset: 0px;
  --wix-ads-top-height: 0px;
  --vh-unit: calc((100vh - 0px) / 100);
  --site-width: 980px;
  --above-all-z-index: 100000;
  --portals-z-index: 100001;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --minViewportSize: 320;
  --maxViewportSize: 1920;
  --theme-spx-ratio: 1px;
  --scaling-factor: min((100 * var(--one-unit)), var(--section-max-width));
}

.font_0 {
  font: var(--font_0);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_1 {
  font: var(--font_1);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_2 {
  font: var(--font_2);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_3 {
  font: var(--font_3);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_4 {
  font: var(--font_4);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_5 {
  font: var(--font_5);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_6 {
  font: var(--font_6);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_7 {
  font: var(--font_7);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_8 {
  font: var(--font_8);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_9 {
  font: var(--font_9);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.font_10 {
  font: var(--font_10);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.color_0 {
  color: rgb(var(--color_0));
}

.color_1 {
  color: rgb(var(--color_1));
}

.color_2 {
  color: rgb(var(--color_2));
}

.color_3 {
  color: rgb(var(--color_3));
}

.color_4 {
  color: rgb(var(--color_4));
}

.color_5 {
  color: rgb(var(--color_5));
}

.color_6 {
  color: rgb(var(--color_6));
}

.color_7 {
  color: rgb(var(--color_7));
}

.color_8 {
  color: rgb(var(--color_8));
}

.color_9 {
  color: rgb(var(--color_9));
}

.color_10 {
  color: rgb(var(--color_10));
}

.color_11 {
  color: rgb(var(--color_11));
}

.color_12 {
  color: rgb(var(--color_12));
}

.color_13 {
  color: rgb(var(--color_13));
}

.color_14 {
  color: rgb(var(--color_14));
}

.color_15 {
  color: rgb(var(--color_15));
}

.color_16 {
  color: rgb(var(--color_16));
}

.color_17 {
  color: rgb(var(--color_17));
}

.color_18 {
  color: rgb(var(--color_18));
}

.color_19 {
  color: rgb(var(--color_19));
}

.color_20 {
  color: rgb(var(--color_20));
}

.color_21 {
  color: rgb(var(--color_21));
}

.color_22 {
  color: rgb(var(--color_22));
}

.color_23 {
  color: rgb(var(--color_23));
}

.color_24 {
  color: rgb(var(--color_24));
}

.color_25 {
  color: rgb(var(--color_25));
}

.color_26 {
  color: rgb(var(--color_26));
}

.color_27 {
  color: rgb(var(--color_27));
}

.color_28 {
  color: rgb(var(--color_28));
}

.color_29 {
  color: rgb(var(--color_29));
}

.color_30 {
  color: rgb(var(--color_30));
}

.color_31 {
  color: rgb(var(--color_31));
}

.color_32 {
  color: rgb(var(--color_32));
}

.color_33 {
  color: rgb(var(--color_33));
}

.color_34 {
  color: rgb(var(--color_34));
}

.color_35 {
  color: rgb(var(--color_35));
}

.color_36 {
  color: rgb(var(--color_36));
}

.color_37 {
  color: rgb(var(--color_37));
}

.color_38 {
  color: rgb(var(--color_38));
}

.color_39 {
  color: rgb(var(--color_39));
}

.color_40 {
  color: rgb(var(--color_40));
}

.color_41 {
  color: rgb(var(--color_41));
}

.color_42 {
  color: rgb(var(--color_42));
}

.color_43 {
  color: rgb(var(--color_43));
}

.color_44 {
  color: rgb(var(--color_44));
}

.color_45 {
  color: rgb(var(--color_45));
}

.color_46 {
  color: rgb(var(--color_46));
}

.color_47 {
  color: rgb(var(--color_47));
}

.color_48 {
  color: rgb(var(--color_48));
}

.color_49 {
  color: rgb(var(--color_49));
}

.color_50 {
  color: rgb(var(--color_50));
}

.color_51 {
  color: rgb(var(--color_51));
}

.color_52 {
  color: rgb(var(--color_52));
}

.color_53 {
  color: rgb(var(--color_53));
}

.color_54 {
  color: rgb(var(--color_54));
}

.color_55 {
  color: rgb(var(--color_55));
}

.color_56 {
  color: rgb(var(--color_56));
}

.color_57 {
  color: rgb(var(--color_57));
}

.color_58 {
  color: rgb(var(--color_58));
}

.color_59 {
  color: rgb(var(--color_59));
}

.color_60 {
  color: rgb(var(--color_60));
}

.color_61 {
  color: rgb(var(--color_61));
}

.color_62 {
  color: rgb(var(--color_62));
}

.color_63 {
  color: rgb(var(--color_63));
}

.color_64 {
  color: rgb(var(--color_64));
}

.color_65 {
  color: rgb(var(--color_65));
}

.backcolor_0 {
  background-color: rgb(var(--color_0));
}

.backcolor_1 {
  background-color: rgb(var(--color_1));
}

.backcolor_2 {
  background-color: rgb(var(--color_2));
}

.backcolor_3 {
  background-color: rgb(var(--color_3));
}

.backcolor_4 {
  background-color: rgb(var(--color_4));
}

.backcolor_5 {
  background-color: rgb(var(--color_5));
}

.backcolor_6 {
  background-color: rgb(var(--color_6));
}

.backcolor_7 {
  background-color: rgb(var(--color_7));
}

.backcolor_8 {
  background-color: rgb(var(--color_8));
}

.backcolor_9 {
  background-color: rgb(var(--color_9));
}

.backcolor_10 {
  background-color: rgb(var(--color_10));
}

.backcolor_11 {
  background-color: rgb(var(--color_11));
}

.backcolor_12 {
  background-color: rgb(var(--color_12));
}

.backcolor_13 {
  background-color: rgb(var(--color_13));
}

.backcolor_14 {
  background-color: rgb(var(--color_14));
}

.backcolor_15 {
  background-color: rgb(var(--color_15));
}

.backcolor_16 {
  background-color: rgb(var(--color_16));
}

.backcolor_17 {
  background-color: rgb(var(--color_17));
}

.backcolor_18 {
  background-color: rgb(var(--color_18));
}

.backcolor_19 {
  background-color: rgb(var(--color_19));
}

.backcolor_20 {
  background-color: rgb(var(--color_20));
}

.backcolor_21 {
  background-color: rgb(var(--color_21));
}

.backcolor_22 {
  background-color: rgb(var(--color_22));
}

.backcolor_23 {
  background-color: rgb(var(--color_23));
}

.backcolor_24 {
  background-color: rgb(var(--color_24));
}

.backcolor_25 {
  background-color: rgb(var(--color_25));
}

.backcolor_26 {
  background-color: rgb(var(--color_26));
}

.backcolor_27 {
  background-color: rgb(var(--color_27));
}

.backcolor_28 {
  background-color: rgb(var(--color_28));
}

.backcolor_29 {
  background-color: rgb(var(--color_29));
}

.backcolor_30 {
  background-color: rgb(var(--color_30));
}

.backcolor_31 {
  background-color: rgb(var(--color_31));
}

.backcolor_32 {
  background-color: rgb(var(--color_32));
}

.backcolor_33 {
  background-color: rgb(var(--color_33));
}

.backcolor_34 {
  background-color: rgb(var(--color_34));
}

.backcolor_35 {
  background-color: rgb(var(--color_35));
}

.backcolor_36 {
  background-color: rgb(var(--color_36));
}

.backcolor_37 {
  background-color: rgb(var(--color_37));
}

.backcolor_38 {
  background-color: rgb(var(--color_38));
}

.backcolor_39 {
  background-color: rgb(var(--color_39));
}

.backcolor_40 {
  background-color: rgb(var(--color_40));
}

.backcolor_41 {
  background-color: rgb(var(--color_41));
}

.backcolor_42 {
  background-color: rgb(var(--color_42));
}

.backcolor_43 {
  background-color: rgb(var(--color_43));
}

.backcolor_44 {
  background-color: rgb(var(--color_44));
}

.backcolor_45 {
  background-color: rgb(var(--color_45));
}

.backcolor_46 {
  background-color: rgb(var(--color_46));
}

.backcolor_47 {
  background-color: rgb(var(--color_47));
}

.backcolor_48 {
  background-color: rgb(var(--color_48));
}

.backcolor_49 {
  background-color: rgb(var(--color_49));
}

.backcolor_50 {
  background-color: rgb(var(--color_50));
}

.backcolor_51 {
  background-color: rgb(var(--color_51));
}

.backcolor_52 {
  background-color: rgb(var(--color_52));
}

.backcolor_53 {
  background-color: rgb(var(--color_53));
}

.backcolor_54 {
  background-color: rgb(var(--color_54));
}

.backcolor_55 {
  background-color: rgb(var(--color_55));
}

.backcolor_56 {
  background-color: rgb(var(--color_56));
}

.backcolor_57 {
  background-color: rgb(var(--color_57));
}

.backcolor_58 {
  background-color: rgb(var(--color_58));
}

.backcolor_59 {
  background-color: rgb(var(--color_59));
}

.backcolor_60 {
  background-color: rgb(var(--color_60));
}

.backcolor_61 {
  background-color: rgb(var(--color_61));
}

.backcolor_62 {
  background-color: rgb(var(--color_62));
}

.backcolor_63 {
  background-color: rgb(var(--color_63));
}

.backcolor_64 {
  background-color: rgb(var(--color_64));
}

.backcolor_65 {
  background-color: rgb(var(--color_65));
}

#SITE_FOOTER {
  --bg: var(--color_15);
  --shd: none;
  --brwt: 1px;
  --brd: var(--color_15);
  --brwb: 0px;
  --bgctr: var(--color_15);
  --rd: 0px;
  --alpha-bg: 1;
  --alpha-bgctr: 1;
  --alpha-brd: 0.15;
  --boxShadowToggleOn-shd: none;
}

#SITE_FOOTER {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#comp-lrpd9cig {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lrpd9cig {
  width: 168px;
  height: 145px;
}

#comp-lrpd0jfv {
  --blendMode: normal;
}

#comp-lrpd0jfv {
  width: 196px;
  height: auto;
}

#comp-lsuj7jbu {
  --blendMode: normal;
}

#comp-lsuj7jbu {
  width: 181px;
  height: auto;
}

#comp-lrpd3p8v {
  --blendMode: normal;
}

#comp-lrpd3p8v {
  width: 196px;
  height: auto;
}

#comp-lrpd3cqp {
  --blendMode: normal;
}

#comp-lrpd3cqp {
  width: 166px;
  height: auto;
}

#comp-lrpd6zv2 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}

#comp-lrpd6zvi {
  width: 980px;
}

#comp-lrpefbeh {
  --blendMode: normal;
}

#comp-lrpefbeh {
  width: 861px;
  height: auto;
}

#PAGES_CONTAINER {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#SITE_PAGES {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#CONTROLLER_COMP_CUSTOM_ID {
  --alpha-bg: 1;
  --bg: 61, 155, 233;
  --bgh: 43, 104, 156;
  --brd: 43, 104, 156;
  --brdh: 61, 155, 233;
  --brw: 0px;
  --fnt: normal normal normal 14px/1.4em raleway;
  --rd: 20px;
  --txt: 255, 255, 255;
  --txth: 255, 255, 255;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brdh: 1;
  --alpha-txt: 1;
  --alpha-txth: 1;
  --boxShadowToggleOn-shd: none;
  --shd: 0 1px 4px rgba(0, 0, 0, 0.6);
}

#SOSP_CONTAINER_CUSTOM_ID {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --alpha-bg: 1;
  --alpha-brd: 1;
  --boxShadowToggleOn-shd: none;
}

#SOSP_CONTAINER_CUSTOM_ID {
  width: 980px;
}

[data-mode="hover"] #SOSP_CONTAINER_CUSTOM_ID {
  width: 980px;
}

#comp-loytr4iu {
  width: 980px;
  height: 250px;
}

#comp-loytr6at {
  width: 956px;
}

#comp-loytr6bm {
  --menuTotalBordersX: 0px;
  --menuTotalBordersY: 0px;
  --bgDrop: var(--color_11);
  --rd: 0px;
  --shd: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  --pad: 10px;
  --fnt: var(--font_8);
  --brd: var(--color_15);
  --txt: var(--color_15);
  --alpha-txt: 1;
  --brdh: var(--color_17);
  --txth: var(--color_17);
  --alpha-txth: 1;
  --brds: var(--color_18);
  --txts: var(--color_18);
  --alpha-txts: 1;
  --alpha-bgDrop: 1;
  --alpha-brdh: 1;
  --alpha-brd: 0;
  --alpha-brds: 1;
}

#comp-loytr6bm {
  width: 956px;
  height: 40px;
}

#masterPage:not(.landingPage) {
  --top-offset: 0px;
  --header-height: 153px;
}

#masterPage.landingPage {
  --top-offset: 0px;
}

#SITE_HEADER {
  --bg: var(--color_15);
  --shd: none;
  --brwt: 0px;
  --brd: var(--color_15);
  --brwb: 0px;
  --bgctr: var(--color_15);
  --rd: 0px;
  --alpha-bg: 1;
  --alpha-bgctr: 1;
  --alpha-brd: 0;
  --boxShadowToggleOn-shd: none;
}

#SITE_HEADER {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#comp-lneunsqe {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 60px - 60px);
  min-width: 980px;
}

#comp-lneunsqf {
  width: 196px;
}

#comp-lneunsqf1 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lneunsqf1 {
  width: 140px;
  height: 140px;
}

#comp-lneunsqh {
  width: 784px;
}

/* END STYLABLE DIRECTIVE RULES */

#comp-ls0t10qu .style-ls0t1gqy__root {
  -st-extends: StylableButton;
  transition: all 0.2s ease, visibility 0s;
  background: #6c805d;
  border: 3px solid #ffffff;
  border-radius: 14px;
}

/* START STYLABLE DIRECTIVE RULES */

#comp-ls0t10qu .style-ls0t1gqy__root:hover {
  background: #99aa8b;
}

#comp-ls0t10qu .style-ls0t1gqy__root:disabled {
  background: #e2e2e2;
}

#comp-ls0t10qu .style-ls0t1gqy__root:disabled .StylableButton2545352419__label {
  color: #8f8f8f;
}

#comp-ls0t10qu .style-ls0t1gqy__root:disabled .StylableButton2545352419__icon {
  fill: #8f8f8f;
}

#comp-ls0t10qu .style-ls0t1gqy__root .StylableButton2545352419__container {
  transition: inherit;
}

#comp-ls0t10qu .style-ls0t1gqy__root .StylableButton2545352419__label {
  transition: inherit;
  margin: 0px 4px 0px 0px;
  letter-spacing: 0.1em;
  font-family: bree-w01-thin-oblique, sans-serif;
  font-size: 15px;
  font-style: normal;
  color: #ffffff;
  font-family: barlow-extralight, barlow, sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-weight: 700;
}

#comp-ls0t10qu .style-ls0t1gqy__root .StylableButton2545352419__icon {
  transition: inherit;
  width: 10px;
  height: 10px;
  margin: 0px 0px 0px 4px;
  fill: #ffffff;
  display: none;
}

#comp-ls0t10qu {
  width: 134px;
  height: 30px;
}

#comp-lneunt2q {
  --menuTotalBordersX: 0px;
  --menuTotalBordersY: 0px;
  --bgDrop: var(--color_15);
  --rd: 0px;
  --shd: none;
  --fnt: normal normal normal 16px/1.79em barlow-medium, barlow, sans-serif;
  --pad: 0px;
  --txt: var(--color_11);
  --trans: color 0.4s ease 0s;
  --txth: var(--color_27);
  --txts: var(--color_27);
  --alpha-bgDrop: 1;
  --alpha-txt: 1;
  --alpha-txth: 1;
  --alpha-txts: 1;
  --boxShadowToggleOn-shd: none;
}

#comp-lneunt2q {
  width: 901px;
  height: 30px;
}

#comp-ln26ungi {
  width: 230px;
  height: 86px;
}

[data-mesh-id="SITE_FOOTERinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-lrpd9cig"] {
  position: relative;
  margin: 46px 0px -51px calc((100% - 980px) * 0.5);
  left: 29px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-lrpd0jfv"] {
  position: relative;
  margin: 63px 0px 28px calc((100% - 980px) * 0.5);
  left: 256px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-lsuj7jbu"] {
  position: relative;
  margin: 0px 0px 70px calc((100% - 980px) * 0.5);
  left: 256px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-lrpd3p8v"] {
  position: relative;
  margin: 63px 0px 28px calc((100% - 980px) * 0.5);
  left: 482px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-lrpd3cqp"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 980px) * 0.5);
  left: 482px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-lrpd6zv2"] {
  position: relative;
  margin: 0px 0px 15px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SOSP_CONTAINER_CUSTOM_IDinlineContent"] {
  height: auto;
  width: 980px;
}

[data-mesh-id="SOSP_CONTAINER_CUSTOM_IDinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="SOSP_CONTAINER_CUSTOM_IDinlineContent-gridContainer"]
  > [id="comp-loytr4iu"] {
  position: relative;
  margin: 0px 0px 0 0;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SOSP_CONTAINER_CUSTOM_IDinlineContent-gridContainer"]
  > [id="comp-loytr6at"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 12px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="SITE_HEADERinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="SITE_HEADERinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > [id="comp-lneunsqe"] {
  position: relative;
  margin: 8px 0px 4px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-loytr6atinlineContent"] {
  height: auto;
  width: 956px;
}

[data-mesh-id="comp-loytr6atinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-loytr6atinlineContent-gridContainer"]
  > [id="comp-loytr6bm"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lrpd6zviinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-lrpd6zviinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lrpd6zviinlineContent-gridContainer"]
  > [id="comp-lrpefbeh"] {
  position: relative;
  margin: 18px 0px 19px calc((100% - 980px) * 0.5);
  left: 59px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lneunsqfinlineContent"] {
  height: auto;
  width: 100%;
  display: flex;
}

[data-mesh-id="comp-lneunsqfinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  margin-top: -9px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lneunsqfinlineContent-gridContainer"]
  > [id="comp-lneunsqf1"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 196px) * 0);
  left: 3px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lneunsqhinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-lneunsqhinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lneunsqhinlineContent-gridContainer"]
  > [id="comp-ls0t10qu"] {
  position: relative;
  margin: 30px 0px 17px calc((100% - 784px) * 1);
  left: 593px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lneunsqhinlineContent-gridContainer"]
  > [id="comp-lneunt2q"] {
  position: relative;
  margin: 0px 0px 34px calc((100% - 784px) * 1);
  left: -145px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[id="soapAfterPagesContainer"].page-without-sosp
  [data-mesh-id="soapAfterPagesContainerinlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: auto;
  padding-bottom: 0px;
  box-sizing: border-box;
}

[id="soapAfterPagesContainer"].page-without-sosp
  [data-mesh-id="soapAfterPagesContainerinlineContent-gridContainer"]
  > [id="CONTROLLER_COMP_CUSTOM_ID"] {
  position: absolute;
  top: 15px;
  left: 20px;
  margin-left: calc((100% - 980px) * 0.5);
}

[id="soapAfterPagesContainer"].page-with-sosp
  [data-mesh-id="soapAfterPagesContainerinlineContent"] {
  height: auto;
  width: 100%;
  display: flex;
}

[id="soapAfterPagesContainer"].page-with-sosp
  [data-mesh-id="soapAfterPagesContainerinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  margin-top: -13px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
  padding-bottom: 0px;
  box-sizing: border-box;
}

[id="soapAfterPagesContainer"].page-with-sosp
  [data-mesh-id="soapAfterPagesContainerinlineContent-gridContainer"]
  > [id="CONTROLLER_COMP_CUSTOM_ID"] {
  position: absolute;
  top: -138px;
  left: 20px;
  margin-left: calc((100% - 980px) * 0.5);
}

[id="soapAfterPagesContainer"].page-with-sosp
  [data-mesh-id="soapAfterPagesContainerinlineContent-gridContainer"]
  > [id="SOSP_CONTAINER_CUSTOM_ID"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

#comp-lrpd9cig {
  --height: 145px;
  --width: 168px;
}

#comp-lsuj7jbu {
  --min-height: 109px;
}

#comp-lrpd3cqp {
  --min-height: 38px;
}

#comp-loytr6bm {
  --menuTotalBordersY: 0px;
  --menuTotalBordersX: 0px;
}

#comp-lneunsqf1 {
  --height: 140px;
  --width: 140px;
}

#comp-lneunt2q {
  --menuTotalBordersY: 0px;
  --menuTotalBordersX: 0px;
}

#SITE_FOOTER {
  --shc-mutated-brightness: 12, 12, 12;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
}

#SOSP_CONTAINER_CUSTOM_ID {
  --shc-mutated-brightness: 128, 128, 128;
}

#SITE_HEADER {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --shc-mutated-brightness: 12, 12, 12;
}

#comp-lrpd6zv2 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#SITE_PAGES {
  --transition-duration: 700ms;
}

.comp-loytr4iu {
  --wix-direction: ltr;
  --profileLayout: 1;
  --pictureStyle: 0;
  --profileAlignment: 0;
  --profileImageSize: 110px;
  --badge-layout: 0;
  --badge-size: 0;
  --badge-corner-radius: 10;
  --border-width-1: 1;
  --pw-cover-photo-opacity: 60;
  --pw-cover-photo-opacity-desktop: 60;
  --profileWidgetHeight: 250px;
  --pw-button-border-width: 1;
  --pw-button-responsive-border-width: 1;
  --pw-button-text-font-size-mobile: 16;
  --pw-button-corner-radius: 0;
  --pw-button-responsive-corner-radius: 0;
  --vertical-pw-corner-radius: 0;
  --badge-font: normal normal normal 18px/1.4em barlow-extralight, barlow,
    sans-serif;
  --text-primary-font: normal normal normal 20px/1.4em barlow-extralight, barlow,
    sans-serif;
  --text-secondary-font: normal normal normal 14px/1.4em barlow-extralight,
    barlow, sans-serif;
  --pw-responsive-name-font: normal normal normal 28px/1.4em barlow-extralight,
    barlow, sans-serif;
  --pw-name-font-mobile: normal normal normal 20px/1.4em barlow-extralight,
    barlow, sans-serif;
  --title-font: normal normal normal 14px/1.4em barlow-extralight, barlow,
    sans-serif;
  --title-responsive-font: normal normal normal 20px/1.4em barlow-extralight,
    barlow, sans-serif;
  --title-mobile-font: normal normal normal 16px/1.4em barlow-extralight, barlow,
    sans-serif;
  --pw-responsive-ff-font: normal normal normal 16px/1.4em barlow-extralight,
    barlow, sans-serif;
  --pw-ff-font-mobile: normal normal normal 12px/1.4em barlow-extralight, barlow,
    sans-serif;
  --button-font: normal normal normal 16px/1.4em barlow-extralight, barlow,
    sans-serif;
  --pw-responsive-button-font: normal normal normal 16px/1.4em barlow-extralight,
    barlow, sans-serif;
  --pw-button-font-mobile: normal normal normal 16px/1.4em barlow-extralight,
    barlow, sans-serif;
  --text-color-primary: 24, 24, 24;
  --text-color-primary-rgb: 24, 24, 24;
  --text-color-primary-opacity: 1;
  --text-color-secondary: 24, 24, 24;
  --text-color-secondary-rgb: 24, 24, 24;
  --text-color-secondary-opacity: 1;
  --pw-responsive-name-color: 255, 255, 255;
  --pw-responsive-name-color-rgb: 255, 255, 255;
  --pw-responsive-name-color-opacity: 1;
  --pw-name-color-mobile: 24, 24, 24;
  --pw-name-color-mobile-rgb: 24, 24, 24;
  --pw-name-color-mobile-opacity: 1;
  --title-color: 24, 24, 24;
  --title-color-rgb: 24, 24, 24;
  --title-color-opacity: 1;
  --title-responsive-color: 255, 255, 255;
  --title-responsive-color-rgb: 255, 255, 255;
  --title-responsive-color-opacity: 1;
  --title-mobile-color: 24, 24, 24;
  --title-mobile-color-rgb: 24, 24, 24;
  --title-mobile-color-opacity: 1;
  --pw-responsive-ff-color: 255, 255, 255;
  --pw-responsive-ff-color-rgb: 255, 255, 255;
  --pw-responsive-ff-color-opacity: 1;
  --pw-ff-color-mobile: 24, 24, 24;
  --pw-ff-color-mobile-rgb: 24, 24, 24;
  --pw-ff-color-mobile-opacity: 1;
  --button-opacity-and-color: 108, 128, 93;
  --button-opacity-and-color-rgb: 108, 128, 93;
  --button-opacity-and-color-opacity: 1;
  --pw-responsive-button-color: 255, 255, 255;
  --pw-responsive-button-color-rgb: 255, 255, 255;
  --pw-responsive-button-color-opacity: 1;
  --pw-responsive-button-color-mobile: 255, 255, 255;
  --pw-responsive-button-color-mobile-rgb: 255, 255, 255;
  --pw-responsive-button-color-mobile-opacity: 1;
  --box-color: 255, 255, 255;
  --box-color-rgb: 255, 255, 255;
  --box-color-opacity: 1;
  --border-color: 24, 24, 24, 0.2;
  --border-color-rgb: 24, 24, 24;
  --border-color-opacity: 0.2;
  --pw-cover-color: 108, 128, 93;
  --pw-cover-color-rgb: 108, 128, 93;
  --pw-cover-color-opacity: 1;
  --pw-cover-color-desktop: 108, 128, 93;
  --pw-cover-color-desktop-rgb: 108, 128, 93;
  --pw-cover-color-desktop-opacity: 1;
  --pw-cover-color-mobile: 108, 128, 93;
  --pw-cover-color-mobile-rgb: 108, 128, 93;
  --pw-cover-color-mobile-opacity: 1;
  --pw-button-font-color: 255, 255, 255;
  --pw-button-font-color-rgb: 255, 255, 255;
  --pw-button-font-color-opacity: 1;
  --pw-button-responsive-font-color: 108, 128, 93;
  --pw-button-responsive-font-color-rgb: 108, 128, 93;
  --pw-button-responsive-font-color-opacity: 1;
  --pw-button-border-color: 108, 128, 93;
  --pw-button-border-color-rgb: 108, 128, 93;
  --pw-button-border-color-opacity: 1;
  --pw-button-responsive-border-color: 255, 255, 255;
  --pw-button-responsive-border-color-rgb: 255, 255, 255;
  --pw-button-responsive-border-color-opacity: 1;
  --badge-font-style: normal;
  --badge-font-variant: normal;
  --badge-font-weight: normal;
  --badge-font-size: 18px;
  --badge-font-line-height: 1.4em;
  --badge-font-family: barlow-extralight, barlow, sans-serif;
  --badge-font-text-decoration: none;
  --text-primary-font-style: normal;
  --text-primary-font-variant: normal;
  --text-primary-font-weight: normal;
  --text-primary-font-size: 20px;
  --text-primary-font-line-height: 1.4em;
  --text-primary-font-family: barlow-extralight, barlow, sans-serif;
  --text-primary-font-text-decoration: none;
  --text-secondary-font-style: normal;
  --text-secondary-font-variant: normal;
  --text-secondary-font-weight: normal;
  --text-secondary-font-size: 14px;
  --text-secondary-font-line-height: 1.4em;
  --text-secondary-font-family: barlow-extralight, barlow, sans-serif;
  --text-secondary-font-text-decoration: none;
  --pw-responsive-name-font-style: normal;
  --pw-responsive-name-font-variant: normal;
  --pw-responsive-name-font-weight: normal;
  --pw-responsive-name-font-size: 28px;
  --pw-responsive-name-font-line-height: 1.4em;
  --pw-responsive-name-font-family: barlow-extralight, barlow, sans-serif;
  --pw-responsive-name-font-text-decoration: none;
  --pw-name-font-mobile-style: normal;
  --pw-name-font-mobile-variant: normal;
  --pw-name-font-mobile-weight: normal;
  --pw-name-font-mobile-size: 20px;
  --pw-name-font-mobile-line-height: 1.4em;
  --pw-name-font-mobile-family: barlow-extralight, barlow, sans-serif;
  --pw-name-font-mobile-text-decoration: none;
  --title-font-style: normal;
  --title-font-variant: normal;
  --title-font-weight: normal;
  --title-font-size: 14px;
  --title-font-line-height: 1.4em;
  --title-font-family: barlow-extralight, barlow, sans-serif;
  --title-font-text-decoration: none;
  --title-responsive-font-style: normal;
  --title-responsive-font-variant: normal;
  --title-responsive-font-weight: normal;
  --title-responsive-font-size: 20px;
  --title-responsive-font-line-height: 1.4em;
  --title-responsive-font-family: barlow-extralight, barlow, sans-serif;
  --title-responsive-font-text-decoration: none;
  --title-mobile-font-style: normal;
  --title-mobile-font-variant: normal;
  --title-mobile-font-weight: normal;
  --title-mobile-font-size: 16px;
  --title-mobile-font-line-height: 1.4em;
  --title-mobile-font-family: barlow-extralight, barlow, sans-serif;
  --title-mobile-font-text-decoration: none;
  --pw-responsive-ff-font-style: normal;
  --pw-responsive-ff-font-variant: normal;
  --pw-responsive-ff-font-weight: normal;
  --pw-responsive-ff-font-size: 16px;
  --pw-responsive-ff-font-line-height: 1.4em;
  --pw-responsive-ff-font-family: barlow-extralight, barlow, sans-serif;
  --pw-responsive-ff-font-text-decoration: none;
  --pw-ff-font-mobile-style: normal;
  --pw-ff-font-mobile-variant: normal;
  --pw-ff-font-mobile-weight: normal;
  --pw-ff-font-mobile-size: 12px;
  --pw-ff-font-mobile-line-height: 1.4em;
  --pw-ff-font-mobile-family: barlow-extralight, barlow, sans-serif;
  --pw-ff-font-mobile-text-decoration: none;
  --button-font-style: normal;
  --button-font-variant: normal;
  --button-font-weight: normal;
  --button-font-size: 16px;
  --button-font-line-height: 1.4em;
  --button-font-family: barlow-extralight, barlow, sans-serif;
  --button-font-text-decoration: none;
  --pw-responsive-button-font-style: normal;
  --pw-responsive-button-font-variant: normal;
  --pw-responsive-button-font-weight: normal;
  --pw-responsive-button-font-size: 16px;
  --pw-responsive-button-font-line-height: 1.4em;
  --pw-responsive-button-font-family: barlow-extralight, barlow, sans-serif;
  --pw-responsive-button-font-text-decoration: none;
  --pw-button-font-mobile-style: normal;
  --pw-button-font-mobile-variant: normal;
  --pw-button-font-mobile-weight: normal;
  --pw-button-font-mobile-size: 16px;
  --pw-button-font-mobile-line-height: 1.4em;
  --pw-button-font-mobile-family: barlow-extralight, barlow, sans-serif;
  --pw-button-font-mobile-text-decoration: none;
  --wix-color-1: 255, 255, 255;
  --wix-color-2: 197, 197, 197;
  --wix-color-3: 140, 140, 140;
  --wix-color-4: 82, 82, 82;
  --wix-color-5: 24, 24, 24;
  --wix-color-6: 196, 212, 184;
  --wix-color-7: 153, 170, 139;
  --wix-color-8: 108, 128, 93;
  --wix-color-9: 59, 85, 39;
  --wix-color-10: 29, 42, 19;
  --wix-color-11: 211, 211, 211;
  --wix-color-12: 168, 168, 168;
  --wix-color-13: 124, 124, 124;
  --wix-color-14: 81, 81, 81;
  --wix-color-15: 37, 37, 37;
  --wix-color-16: 246, 246, 246;
  --wix-color-17: 236, 236, 236;
  --wix-color-18: 177, 177, 177;
  --wix-color-19: 118, 118, 118;
  --wix-color-20: 59, 59, 59;
  --wix-color-21: 225, 217, 202;
  --wix-color-22: 194, 181, 155;
  --wix-color-23: 146, 136, 116;
  --wix-color-24: 97, 91, 78;
  --wix-color-25: 49, 45, 39;
  --wix-color-26: 255, 255, 255;
  --wix-color-27: 47, 46, 46;
  --wix-color-28: 204, 204, 204;
  --wix-color-29: 160, 160, 159;
  --wix-color-30: 96, 94, 94;
  --wix-color-31: 48, 189, 255;
  --wix-color-32: 47, 46, 46;
  --wix-color-33: 160, 160, 159;
  --wix-color-34: 255, 255, 255;
  --wix-color-35: 47, 46, 46;
  --wix-color-36: 47, 46, 46;
  --wix-color-37: 204, 204, 204;
  --wix-color-38: 48, 189, 255;
  --wix-color-39: 48, 189, 255;
  --wix-color-40: 255, 255, 255;
  --wix-color-41: 255, 255, 255;
  --wix-color-42: 48, 189, 255;
  --wix-color-43: 48, 189, 255;
  --wix-color-44: 160, 160, 159;
  --wix-color-45: 160, 160, 159;
  --wix-color-46: 255, 255, 255;
  --wix-color-47: 255, 255, 255;
  --wix-color-48: 48, 189, 255;
  --wix-color-49: 255, 255, 255;
  --wix-color-50: 48, 189, 255;
  --wix-color-51: 48, 189, 255;
  --wix-color-52: 255, 255, 255;
  --wix-color-53: 255, 255, 255;
  --wix-color-54: 160, 160, 159;
  --wix-color-55: 160, 160, 159;
  --wix-font-Title: normal normal normal 22px/1.41em barlow-medium, barlow,
    sans-serif;
  --wix-font-Title-style: normal;
  --wix-font-Title-variant: normal;
  --wix-font-Title-weight: normal;
  --wix-font-Title-size: 22px;
  --wix-font-Title-line-height: 1.41em;
  --wix-font-Title-family: barlow-medium, barlow, sans-serif;
  --wix-font-Title-text-decoration: none;
  --wix-font-Menu: normal normal normal 14px/1.79em
      avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --wix-font-Menu-style: normal;
  --wix-font-Menu-variant: normal;
  --wix-font-Menu-weight: normal;
  --wix-font-Menu-size: 14px;
  --wix-font-Menu-line-height: 1.79em;
  --wix-font-Menu-family: avenir-lt-w01_35-light1475496, avenir-lt-w05_35-light,
    sans-serif;
  --wix-font-Menu-text-decoration: none;
  --wix-font-Page-title: normal normal normal 28px/1.375em barlow-medium, barlow,
    sans-serif;
  --wix-font-Page-title-style: normal;
  --wix-font-Page-title-variant: normal;
  --wix-font-Page-title-weight: normal;
  --wix-font-Page-title-size: 28px;
  --wix-font-Page-title-line-height: 1.375em;
  --wix-font-Page-title-family: barlow-medium, barlow, sans-serif;
  --wix-font-Page-title-text-decoration: none;
  --wix-font-Heading-XL: normal normal normal 88px/1.2em barlow-medium, barlow,
    sans-serif;
  --wix-font-Heading-XL-style: normal;
  --wix-font-Heading-XL-variant: normal;
  --wix-font-Heading-XL-weight: normal;
  --wix-font-Heading-XL-size: 88px;
  --wix-font-Heading-XL-line-height: 1.2em;
  --wix-font-Heading-XL-family: barlow-medium, barlow, sans-serif;
  --wix-font-Heading-XL-text-decoration: none;
  --wix-font-Heading-L: normal normal normal 72px/1.25em barlow-medium, barlow,
    sans-serif;
  --wix-font-Heading-L-style: normal;
  --wix-font-Heading-L-variant: normal;
  --wix-font-Heading-L-weight: normal;
  --wix-font-Heading-L-size: 72px;
  --wix-font-Heading-L-line-height: 1.25em;
  --wix-font-Heading-L-family: barlow-medium, barlow, sans-serif;
  --wix-font-Heading-L-text-decoration: none;
  --wix-font-Heading-M: normal normal normal 50px/1.34em barlow-medium, barlow,
    sans-serif;
  --wix-font-Heading-M-style: normal;
  --wix-font-Heading-M-variant: normal;
  --wix-font-Heading-M-weight: normal;
  --wix-font-Heading-M-size: 50px;
  --wix-font-Heading-M-line-height: 1.34em;
  --wix-font-Heading-M-family: barlow-medium, barlow, sans-serif;
  --wix-font-Heading-M-text-decoration: none;
  --wix-font-Heading-S: normal normal normal 40px/1.35em barlow-medium, barlow,
    sans-serif;
  --wix-font-Heading-S-style: normal;
  --wix-font-Heading-S-variant: normal;
  --wix-font-Heading-S-weight: normal;
  --wix-font-Heading-S-size: 40px;
  --wix-font-Heading-S-line-height: 1.35em;
  --wix-font-Heading-S-family: barlow-medium, barlow, sans-serif;
  --wix-font-Heading-S-text-decoration: none;
  --wix-font-Body-L: normal normal normal 20px/1.67em barlow-extralight, barlow,
    sans-serif;
  --wix-font-Body-L-style: normal;
  --wix-font-Body-L-variant: normal;
  --wix-font-Body-L-weight: normal;
  --wix-font-Body-L-size: 20px;
  --wix-font-Body-L-line-height: 1.67em;
  --wix-font-Body-L-family: barlow-extralight, barlow, sans-serif;
  --wix-font-Body-L-text-decoration: none;
  --wix-font-Body-M: normal normal normal 18px/1.75em barlow-extralight, barlow,
    sans-serif;
  --wix-font-Body-M-style: normal;
  --wix-font-Body-M-variant: normal;
  --wix-font-Body-M-weight: normal;
  --wix-font-Body-M-size: 18px;
  --wix-font-Body-M-line-height: 1.75em;
  --wix-font-Body-M-family: barlow-extralight, barlow, sans-serif;
  --wix-font-Body-M-text-decoration: none;
  --wix-font-Body-S: normal normal normal 15px/1.875em barlow-extralight, barlow,
    sans-serif;
  --wix-font-Body-S-style: normal;
  --wix-font-Body-S-variant: normal;
  --wix-font-Body-S-weight: normal;
  --wix-font-Body-S-size: 15px;
  --wix-font-Body-S-line-height: 1.875em;
  --wix-font-Body-S-family: barlow-extralight, barlow, sans-serif;
  --wix-font-Body-S-text-decoration: none;
  --wix-font-Body-XS: normal normal normal 14px/1.79em
      avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --wix-font-Body-XS-style: normal;
  --wix-font-Body-XS-variant: normal;
  --wix-font-Body-XS-weight: normal;
  --wix-font-Body-XS-size: 14px;
  --wix-font-Body-XS-line-height: 1.79em;
  --wix-font-Body-XS-family: avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --wix-font-Body-XS-text-decoration: none;
  --wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh;
  --wix-font-LIGHT-style: normal;
  --wix-font-LIGHT-variant: normal;
  --wix-font-LIGHT-weight: normal;
  --wix-font-LIGHT-size: 12px;
  --wix-font-LIGHT-line-height: 1.4em;
  --wix-font-LIGHT-family: HelveticaNeueW01-45Ligh;
  --wix-font-LIGHT-text-decoration: none;
  --wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma;
  --wix-font-MEDIUM-style: normal;
  --wix-font-MEDIUM-variant: normal;
  --wix-font-MEDIUM-weight: normal;
  --wix-font-MEDIUM-size: 12px;
  --wix-font-MEDIUM-line-height: 1.4em;
  --wix-font-MEDIUM-family: HelveticaNeueW01-55Roma;
  --wix-font-MEDIUM-text-decoration: none;
  --wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi;
  --wix-font-STRONG-style: normal;
  --wix-font-STRONG-variant: normal;
  --wix-font-STRONG-weight: normal;
  --wix-font-STRONG-size: 12px;
  --wix-font-STRONG-line-height: 1.4em;
  --wix-font-STRONG-family: HelveticaNeueW01-65Medi;
  --wix-font-STRONG-text-decoration: none;
}

.sENyJeA {
  --wix-ui-tpa-icon-button-icon-color: 255, 255, 255, 1;
  --wix-ui-tpa-icon-button-icon-color-rgb: 255, 255, 255;
  --wix-ui-tpa-icon-button-icon-color-opacity: 1;
}

.sIo6z6p {
  outline: 0;
}

.srItl1v {
  outline: 0;
}

.sHfP5rG.omIHsLQ--madefor {
  --wbu-font-stack: var(--wix-font-stack);
  --wbu-font-weight-regular: var(--wix-font-weight-regular);
  --wbu-font-weight-medium: var(--wix-font-weight-medium);
  --wbu-font-weight-bold: var(--wix-font-weight-bold);
}

.sPT_5Nz.oAira5l--madefor {
  --wbu-font-stack: var(--wix-font-stack);
  --wbu-font-weight-regular: var(--wix-font-weight-regular);
  --wbu-font-weight-medium: var(--wix-font-weight-medium);
  --wbu-font-weight-bold: var(--wix-font-weight-bold);
}

.snU6ghj > :first-child > :first-child {
  z-index: 100000 !important;
}

.s__61rb6p {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.shrWpnd {
  flex-shrink: 0;
}

.sB8wPaF {
  flex-shrink: 0;
}

.s__61rb6p.oD8N_An--disabled {
  cursor: default;
}

.s__61rb6p[disabled] {
  pointer-events: none;
}

.s__8zw4Lj {
  display: inline-flex;
  color: #fff;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: Madefor, Helvetica Neue, Helvetica, Arial, メイリオ, meiryo,
    ヒラギノ角ゴ pro w3, hiragino kaku gothic pro, sans-serif;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1), 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
}

.s__8zw4Lj.o__2LBwxe--isShown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.s__8zw4Lj.o__2LBwxe--shouldAnimate {
  transition: visibility 0.2s ease, opacity 0.2s ease, transform 0.4s ease;
}

.s__8zw4Lj.o__2LBwxe---skin-7-success {
  background-color: #008250;
}

.s__8zw4Lj.o__2LBwxe---skin-5-error {
  background-color: #df3131;
}

.s__8zw4Lj.o__2LBwxe---skin-6-status {
  background-color: #212121;
}

.s__8zw4Lj.o__2LBwxe---skin-7-preview {
  background-color: rgba(0, 0, 0, 0.6);
}

.s__8zw4Lj.o__2LBwxe---placement-15-bottomFullWidth {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
}

.s__1YilIS,
.sORUZtn {
  display: inline-block;
  min-width: 12px;
}

.sI_8_89 {
  margin: 16px 20px;
  display: inline-block;
  max-height: 40px;
  line-height: 20px;
  overflow: hidden;
}

.sN1oeRT {
  padding: 14px 12px;
  height: 24px;
  margin-left: auto;
}

.s__8zw4Lj.o__2LBwxe--mobile .sI_8_89 {
  margin-left: 0;
  margin-right: 0;
  max-height: 60px;
}

.s__8zw4Lj.o__2LBwxe--mobile .s__1YilIS {
  min-width: 20px;
}

.s__8zw4Lj.o__2LBwxe--rtl .sN1oeRT {
  margin-left: initial;
  margin-right: auto;
}

.sn1zj_S {
  text-decoration: none;
  border: 0;
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.sn1zj_S:hover,
.sn1zj_S.ocIeYU7--focus {
  opacity: 0.7;
}

.sn1zj_S.ozZxjC0--disabled {
  cursor: default;
}

.sn1zj_S.ozZxjC0--disabled:hover {
  opacity: 1;
}

.srjGG0F svg {
  display: block;
}

.sn1zj_S.ozZxjC0--disabled.svKDmRf
  .srjGG0F
  svg:not([fill="currentColor"])
  path {
  stroke: rgb(var(--wix-color-3));
  fill: none;
}

.sn1zj_S.ozZxjC0--disabled.sO_Jn0b
  .srjGG0F
  svg:not([fill="currentColor"])
  path {
  fill: rgb(var(--wix-color-3));
  stroke: rgb(var(--wix-color-3));
}

.svKDmRf .srjGG0F svg:not([fill="currentColor"]) path,
.sn1zj_S.ozZxjC0---skin-4-line .srjGG0F svg:not([fill="currentColor"]) path {
  stroke: rgb(var(--wix-ui-tpa-icon-button-icon-color, var(--wix-color-5)));
  fill: none;
}

.sO_Jn0b .srjGG0F svg:not([fill="currentColor"]) path,
.sn1zj_S.ozZxjC0---skin-4-full .srjGG0F svg:not([fill="currentColor"]) path {
  fill: rgb(var(--wix-ui-tpa-icon-button-icon-color, var(--wix-color-5)));
  stroke: rgb(var(--wix-ui-tpa-icon-button-icon-color, var(--wix-color-5)));
}

.sn1zj_S .srjGG0F svg[fill="currentColor"] {
  color: rgb(var(--wix-ui-tpa-icon-button-icon-color, var(--wix-color-5)));
}

.sn1zj_S.ozZxjC0--disabled .srjGG0F svg[fill="currentColor"] {
  color: rgb(var(--wix-color-3));
}

.sn1zj_S.ozZxjC0---theme-4-none {
  background-color: transparent;
}

.sn1zj_S.ozZxjC0---theme-3-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(
    var(--wix-ui-tpa-icon-button-background-color, var(--wix-color-1))
  );
}

.Sm1ZoK {
  z-index: 999999;
}

.Sm1ZoK.KtZaO1 {
  display: none;
}

.Sm1ZoK:not(.Z1Pd8o) {
  min-width: 320px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  top: 80px;
}

#comp-lneunsqe {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#comp-lrpd6zvi {
  --bg-overlay-color: rgb(var(--color_32));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}

#comp-lneunsqf {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 196px;
  --column-flex: 196;
}

#comp-lneunsqh {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 784px;
  --column-flex: 784;
}

#BACKGROUND_GROUP {
  --transition-duration: 700ms;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: local("Playfair Display Italic"), local("PlayfairDisplay-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk7yRZrPJ-M.woff2")
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: local("Playfair Display Italic"), local("PlayfairDisplay-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk7yRZrPJ-M.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: local("Playfair Display Italic"), local("PlayfairDisplay-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk7yRZrPJ-M.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: local("Playfair Display Italic"), local("PlayfairDisplay-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7yRZrPA.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  src: local("Playfair Display Bold Italic"),
    local("PlayfairDisplay-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwu4DRmFqWF_ljR.woff2")
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  src: local("Playfair Display Bold Italic"),
    local("PlayfairDisplay-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwu6zRmFqWF_ljR.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  src: local("Playfair Display Bold Italic"),
    local("PlayfairDisplay-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwu6jRmFqWF_ljR.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  src: local("Playfair Display Bold Italic"),
    local("PlayfairDisplay-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwu5DRmFqWF_g.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: local("Playfair Display Regular"), local("PlayfairDisplay-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgEM86xRbPQ.woff2")
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: local("Playfair Display Regular"), local("PlayfairDisplay-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgEM86xRbPQ.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: local("Playfair Display Regular"), local("PlayfairDisplay-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgEM86xRbPQ.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: local("Playfair Display Regular"), local("PlayfairDisplay-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgEM86xQ.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: local("Playfair Display Bold"), local("PlayfairDisplay-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9lWoe5j5hNKe1_w.woff2")
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: local("Playfair Display Bold"), local("PlayfairDisplay-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9lWEe5j5hNKe1_w.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: local("Playfair Display Bold"), local("PlayfairDisplay-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9lWAe5j5hNKe1_w.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: local("Playfair Display Bold"), local("PlayfairDisplay-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v18/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9lW4e5j5hNKc.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "PlayfairDisplay-Bold";
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v13/UC3ZEjagJi85gF9qFaBgIIWMvkC5IXg8PD2cMeMDjBI.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/playfairdisplay/v13/UC3ZEjagJi85gF9qFaBgIMITpqSvb0EhPNqvdm-qG4s.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "PlayfairDisplay-Bold";
  font-weight: 700;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v13/UC3ZEjagJi85gF9qFaBgILxv9TIgpWQaRKdG-_MdlP0.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/playfairdisplay/v13/UC3ZEjagJi85gF9qFaBgIIidMZaDCgb76Cj_Fd30HHc.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "PlayfairDisplay-Bold";
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v13/n7G4PqJvFP2Kubl0VBLDEPizZYmr4BUkAcTxjCN2kLE.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/playfairdisplay/v13/n7G4PqJvFP2Kubl0VBLDENxHfcsPlDajrhlFKgOPuYg.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "PlayfairDisplay-Bold";
  font-weight: 700;
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/playfairdisplay/v13/n7G4PqJvFP2Kubl0VBLDEA9QP145tN5qB9RQEnC5ftI.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/playfairdisplay/v13/n7G4PqJvFP2Kubl0VBLDEBMHjY5M6rp_NSn2hjKJhfc.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E1tXRa8TVwTICgirnJhmVJw.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/ZqlneECqpsd9SXlmAsD2Ez8E0i7KZn-EPnyo3HZu7kw.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  font-weight: 700;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/yS165lxqGuDghyUMXeu6xVtXRa8TVwTICgirnJhmVJw.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/yS165lxqGuDghyUMXeu6xT8E0i7KZn-EPnyo3HZu7kw.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ6g5eI2G47JWe0-AuFtD150.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ9Ih4imgI8P11RFo6YPCPC0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  font-weight: 700;
  font-style: italic;
  src: url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xqg5eI2G47JWe0-AuFtD150.woff2")
      format("woff2"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xtIh4imgI8P11RFo6YPCPC0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: local("Barlow Italic"), local("Barlow-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs0wH8DnzcjTrA.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: local("Barlow Italic"), local("Barlow-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs1wH8DnzcjTrA.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: local("Barlow Italic"), local("Barlow-Italic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs7wH8Dnzcj.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: local("Barlow Bold Italic"), local("Barlow-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WohvToJdLm8BvE.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: local("Barlow Bold Italic"), local("Barlow-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WogvToJdLm8BvE.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: local("Barlow Bold Italic"), local("Barlow-BoldItalic"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WouvToJdLm8.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: local("Barlow Regular"), local("Barlow-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHpv4kjgoGqM7E_A8s5ynghnQci.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: local("Barlow Regular"), local("Barlow-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHpv4kjgoGqM7E_Ass5ynghnQci.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: local("Barlow Regular"), local("Barlow-Regular"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: local("Barlow Bold"), local("Barlow-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Fostz0rdom9.woff2")
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: local("Barlow Bold"), local("Barlow-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Vostz0rdom9.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: local("Barlow Bold"), local("Barlow-Bold"),
    url("http://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}

@font-face {
  font-family: "Futura-LT-W01-Light";
  src: url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/26091050-06ef-4fd5-b199-21b27c0ed85e.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/cca525a8-ad89-43ae-aced-bcb49fb271dc.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Futura-LT-W05-Light";
  src: url("http://static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Futura_Complete/v1/FuturaLTW05-LightCondensed.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Futura_Complete/v1/FuturaLTW05-LightCondensed.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Avenir-LT-W01_35-Light1475496";
  src: url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/0078f486-8e52-42c0-ad81-3c8d3d43f48e.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/908c4810-64db-4b46-bb8e-823eb41f68c0.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Avenir-LT-W05_35-Light";
  src: url("http://static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Avenir_Family_Pack/v1/AvenirLTW05-35Light.woff2")
      format("woff2"),
    url("http://static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Avenir_Family_Pack/v1/AvenirLTW05-35Light.woff")
      format("woff");
  font-display: swap;
}

#c1dmp {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#masterPage {
  --pinned-layers-in-page: 0;
}

#comp-lrpbteed {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

#comp-lrpbteg1 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}

#comp-lrpbteg8 {
  width: 980px;
}

#comp-lrpbtegh {
  --blendMode: normal;
}

#comp-lrpbtegh {
  width: 1040px;
  height: auto;
}

#comp-lulbehef {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}

#comp-lulbehhv {
  width: 490px;
}

#comp-luldf4bc {
  --blendMode: normal;
}

#comp-luldf4bc {
  width: 454px;
  height: auto;
}

#comp-luld4uc1 {
  --blendMode: normal;
}

#comp-luld4uc1 {
  width: 447px;
  height: auto;
}

#comp-luld9ii0 {
  width: 490px;
}

#comp-lulddyb4 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lulddyb4 {
  width: 476px;
  height: 412px;
}

/* END STYLABLE DIRECTIVE RULES */

#comp-luld9ikj .style-luld9iko1__root {
  -st-extends: StylableButton;
  transition: all 0.2s ease, visibility 0s;
  padding: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
  background: #181818;
  border-radius: 16px;
  border: 3px solid #ffffff;
}

/* START STYLABLE DIRECTIVE RULES */

#comp-luld9ikj .style-luld9iko1__root:hover {
  background: #ffffff;
  border: 3px solid #6c805d;
}

#comp-luld9ikj .style-luld9iko1__root:hover .StylableButton2545352419__label {
  color: #6c805d;
}

#comp-luld9ikj .style-luld9iko1__root:disabled {
  background: #e2e2e2;
}

#comp-luld9ikj
  .style-luld9iko1__root:disabled
  .StylableButton2545352419__label {
  color: #8f8f8f;
}

#comp-luld9ikj .style-luld9iko1__root:disabled .StylableButton2545352419__icon {
  fill: #8f8f8f;
}

#comp-luld9ikj .style-luld9iko1__root .StylableButton2545352419__container {
  transition: inherit;
}

#comp-luld9ikj .style-luld9iko1__root .StylableButton2545352419__label {
  transition: inherit;
  letter-spacing: 0em;
  margin: 0px 4px 0px 0px;
  display: inherited;
  text-shadow: none;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  font-family: barlow-medium, barlow, sans-serif;
  font-size: 17px;
}

#comp-luld9ikj .style-luld9iko1__root .StylableButton2545352419__icon {
  transition: inherit;
  fill: #ffffff;
  width: 10px;
  height: 10px;
  margin: 0px 0px 0px 4px;
  display: none;
}

#comp-luld9ikj .style-luld9iko1__root:hover .StylableButton2545352419__icon {
  fill: #000000;
}

#comp-luld9ikj {
  width: 162px;
  height: 42px;
}

#comp-luld9ikw {
  --blendMode: normal;
}

#comp-luld9ikw {
  width: 256px;
  height: auto;
}

#comp-luldjhcr {
  --blendMode: normal;
}

#comp-luldjhcr {
  width: 505px;
  height: auto;
}

#comp-ltn52a8t {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}

#comp-ltn52a9v {
  width: 489px;
}

#comp-ltn52a9y {
  width: 491px;
}

#comp-ltn52aa2 {
  --blendMode: normal;
}

#comp-ltn52aa2 {
  width: 446px;
  height: auto;
}

#comp-ltn52aa5 {
  --blendMode: normal;
}

#comp-ltn52aa5 {
  width: 456px;
  height: auto;
}

#comp-ltn52aa8 {
  --rd: 0px;
  --trans1: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
  --shd: none;
  --fnt: normal normal normal 14px/1.4em avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --trans2: color 0.4s ease 0s;
  --txt: var(--color_11);
  --brw: 1px;
  --bg: var(--color_18);
  --brd: var(--color_18);
  --bgh: var(--color_11);
  --brdh: var(--color_18);
  --txth: var(--color_18);
  --bgd: 204, 204, 204;
  --alpha-bgd: 1;
  --brdd: 204, 204, 204;
  --alpha-brdd: 1;
  --txtd: 0, 0, 0;
  --alpha-txtd: 1;
  --boxShadowToggleOn-shd: none;
  --alpha-txt: 1;
  --alpha-brdh: 1;
  --alpha-brd: 1;
  --alpha-txth: 1;
  --alpha-bg: 1;
  --alpha-bgh: 1;
}

#comp-ltn52aa8 {
  width: 302px;
  height: 36px;
}

#comp-lrpdojzh {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}

#comp-lrpdok19 {
  width: 980px;
}

#comp-lsm3xiqg {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}

#comp-lsm3xis2 {
  width: 980px;
}

#comp-lnkfznui {
  --blendMode: normal;
}

#comp-lnkfznui {
  width: 520px;
  height: auto;
}

#comp-lsm3zjc9 {
  --blendMode: normal;
}

#comp-lsm3zjc9 {
  width: 896px;
  height: auto;
}

#comp-loytjxcn1 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}

[data-mesh-id="comp-lrpbteedinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-lrpbteedinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(4, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lrpbteedinlineContent-gridContainer"]
  > [id="comp-lrpbteg1"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lrpbteedinlineContent-gridContainer"]
  > [id="comp-lulbehef"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lrpbteedinlineContent-gridContainer"]
  > [id="comp-ltn52a8t"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lrpbteedinlineContent-gridContainer"]
  > [id="comp-lrpdojzh"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lrpbteedinlineContent-gridContainer"]
  > [id="comp-lsm3xiqg"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 5 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-loytjxcn1inlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: 629px;
}

[data-mesh-id="comp-lrpbteg8inlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-lrpbteg8inlineContent-gridContainer"] {
  position: static;
  display: grid;
  width: 100%;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lrpbteg8inlineContent-gridContainer"]
  > [id="comp-lrpbtegh"] {
  position: relative;
  margin: 82px 0px 10px calc((100% - 980px) * 0.5);
  left: -35px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lulbehhvinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-lulbehhvinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 708px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lulbehhvinlineContent-gridContainer"]
  > [id="comp-luldf4bc"] {
  position: relative;
  margin: 79px 0px 18px calc((100% - 490px) * 0.5);
  left: 29px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lulbehhvinlineContent-gridContainer"]
  > [id="comp-luld4uc1"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 490px) * 0.5);
  left: 29px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-luld9ii0inlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-luld9ii0inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 708px;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-luld9ii0inlineContent-gridContainer"]
  > [id="comp-lulddyb4"] {
  position: relative;
  margin: 44px 0px 18px calc((100% - 490px) * 0.5);
  left: 6px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-luld9ii0inlineContent-gridContainer"]
  > [id="comp-luld9ikj"] {
  position: relative;
  margin: 32px 0px 58px calc((100% - 490px) * 0.5);
  left: 40px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-luld9ii0inlineContent-gridContainer"]
  > [id="comp-luld9ikw"] {
  position: relative;
  margin: 0px 0px 25px calc((100% - 490px) * 0.5);
  left: 241px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-luld9ii0inlineContent-gridContainer"]
  > [id="comp-luldjhcr"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 490px) * 0.5);
  left: -7px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-ltn52a9vinlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: 570px;
}

[data-mesh-id="comp-ltn52a9yinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-ltn52a9yinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 570px;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-ltn52a9yinlineContent-gridContainer"]
  > [id="comp-ltn52aa2"] {
  position: relative;
  margin: 99px 0px 38px calc((100% - 491px) * 0.5);
  left: 18px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-ltn52a9yinlineContent-gridContainer"]
  > [id="comp-ltn52aa5"] {
  position: relative;
  margin: 0px 0px 57px calc((100% - 491px) * 0.5);
  left: 17px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-ltn52a9yinlineContent-gridContainer"]
  > [id="comp-ltn52aa8"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 491px) * 0.5);
  left: 95px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lrpdok19inlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: 305px;
}

[data-mesh-id="comp-lsm3xis2inlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="comp-lsm3xis2inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 861px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id="comp-lsm3xis2inlineContent-gridContainer"]
  > [id="comp-lnkfznui"] {
  position: relative;
  margin: 42px 0px 17px calc((100% - 980px) * 0.5);
  left: 61px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="comp-lsm3xis2inlineContent-gridContainer"]
  > [id="comp-lsm3zjc9"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 980px) * 0.5);
  left: 56px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="Containerc1dmpinlineContent"] {
  height: auto;
  width: 100%;
}

[data-mesh-id="Containerc1dmpinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 40px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
  padding-bottom: 0px;
  box-sizing: border-box;
}

[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lrpbteed"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-loytjxcn1"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

#comp-lrpbtegh {
  --min-height: 123px;
}

#comp-luldf4bc {
  --min-height: 54px;
}

#comp-luld4uc1 {
  --min-height: 451px;
}

#comp-lulddyb4 {
  --height: 412px;
  --width: 476px;
}

#comp-ltn52aa2 {
  --min-height: 54px;
}

#comp-ltn52aa8 {
  --shc-mutated-brightness: 54, 64, 47;
  --margin-start: 0px;
  --margin-end: 0px;
  --fnt: normal normal normal 14px/1.4em avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --label-align: center;
  --label-text-align: center;
}

#pageBackground_c1dmp {
  --bg-position: absolute;
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
}

#c1dmp {
  width: auto;
  min-height: 40px;
}

#comp-lrpbteed {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  min-width: 980px;
}

#comp-loytjxcn1 {
  --fill-layer-image-opacity: 0.34;
  --bg-overlay-color: rgb(var(--color_19));
  --bg-gradient: none;
  min-width: 980px;
}

#comp-lrpbteg1 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#comp-lulbehef {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#comp-ltn52a8t {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#comp-lrpdojzh {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#comp-lsm3xiqg {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}

#comp-lrpbteg8 {
  --fill-layer-image-opacity: 0.06;
  --bg-overlay-color: rgb(var(--color_32));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}

#comp-lulbehhv {
  --fill-layer-image-opacity: 0.24;
  --fill-layer-background-media-position: fixed;
  --fill-layer-background-media-pointer-events: none;
  --bg-overlay-color: rgb(var(--color_19));
  --bg-gradient: none;
  width: 100%;
  --column-width: 490px;
  --column-flex: 490;
}

#comp-luld9ii0 {
  --fill-layer-image-opacity: 0.24;
  --fill-layer-background-media-position: fixed;
  --fill-layer-background-media-pointer-events: none;
  --bg-overlay-color: rgb(var(--color_19));
  --bg-gradient: none;
  width: 100%;
  --column-width: 490px;
  --column-flex: 490;
}

#comp-ltn52a9v {
  --fill-layer-image-opacity: 1;
  --bg-overlay-color: rgb(0, 0, 0);
  --bg-gradient: none;
  width: 100%;
  --column-width: 489px;
  --column-flex: 489;
}

#comp-ltn52a9y {
  --bg-overlay-color: rgb(252, 248, 237);
  --bg-gradient: none;
  width: 100%;
  --column-width: 491px;
  --column-flex: 491;
}

#comp-lrpdok19 {
  --fill-layer-image-opacity: 0.24;
  --fill-layer-background-media-position: fixed;
  --fill-layer-background-media-pointer-events: none;
  --bg-overlay-color: rgb(var(--color_19));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}

#comp-lsm3xis2 {
  --bg-overlay-color: rgba(var(--color_32), 0.65);
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
