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);
}

.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));
}

.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;
}

.I2NxvL,
.ULfND1 {
  box-sizing: border-box;
  height: 100%;
  overflow: visible;
  position: relative;
  width: auto;
}

.I2NxvL[data-state~="header"] a,
.I2NxvL[data-state~="header"] div,
[data-state~="header"].ULfND1 a,
[data-state~="header"].ULfND1 div {
  cursor: default !important;
}

.I2NxvL .piclkP,
.ULfND1 .piclkP {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.ULfND1 {
  --display: inline-block;
  background-color: transparent;
  cursor: pointer;
  display: var(--display);
  transition: var(--trans, background-color 0.4s ease 0s);
}

.ULfND1 .ktxcLB {
  border-left: 1px solid
    rgba(var(--sep, var(--color_15, color_15)), var(--alpha-sep, 1));
  padding: 0 var(--pad, 5px);
}

.ULfND1 .JghqhY {
  color: rgb(var(--txt, var(--color_15, color_15)));
  display: inline-block;
  font: var(--fnt, var(--font_1));
  padding: 0 10px;
  transition: var(--trans2, color 0.4s ease 0s);
}

.ULfND1[data-listposition="left"] {
  border-radius: var(--rd, 10px);
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.ULfND1[data-listposition="left"] .ktxcLB {
  border: 0;
  border-left: none;
}

.ULfND1[data-listposition="right"] {
  border-radius: var(--rd, 10px);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.ULfND1[data-listposition="lonely"] {
  border-radius: var(--rd, 10px);
}

.ULfND1[data-listposition="lonely"] .ktxcLB {
  border: 0;
}

.ULfND1[data-state~="drop"] {
  background-color: transparent;
  display: block;
  transition: var(--trans, background-color 0.4s ease 0s);
  width: 100%;
}

.ULfND1[data-state~="drop"] .ktxcLB {
  border: 0;
  border-top: 1px solid
    rgba(var(--sep, var(--color_15, color_15)), var(--alpha-sep, 1));
  padding: 0;
  width: auto;
}

.ULfND1[data-state~="drop"] .JghqhY {
  padding: 0 0.5em;
}

.ULfND1[data-listposition="top"] {
  border-radius: var(--rdDrop, 10px);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ULfND1[data-listposition="top"] .ktxcLB {
  border: 0;
}

.ULfND1[data-listposition="bottom"] {
  border-radius: var(--rdDrop, 10px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ULfND1[data-listposition="dropLonely"] {
  border-radius: var(--rdDrop, 10px);
}

.ULfND1[data-listposition="dropLonely"] .ktxcLB {
  border: 0;
}

.ULfND1[data-state~="link"]:hover,
.ULfND1[data-state~="over"] {
  background-color: rgba(
    var(--bgh, var(--color_17, color_17)),
    var(--alpha-bgh, 1)
  );
  transition: var(--trans, background-color 0.4s ease 0s);
}

.ULfND1[data-state~="link"]:hover .JghqhY,
.ULfND1[data-state~="over"] .JghqhY {
  color: rgb(var(--txth, var(--color_15, color_15)));
  transition: var(--trans2, color 0.4s ease 0s);
}

.ULfND1[data-state~="selected"] {
  background-color: rgba(
    var(--bgs, var(--color_18, color_18)),
    var(--alpha-bgs, 1)
  );
  transition: var(--trans, background-color 0.4s ease 0s);
}

.ULfND1[data-state~="selected"] .JghqhY {
  color: rgb(var(--txts, var(--color_15, color_15)));
  transition: var(--trans2, color 0.4s ease 0s);
}

.eK3b7p {
  overflow-x: hidden;
}

.eK3b7p .dX73bf {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.eK3b7p .dX73bf .ShB2o6 {
  flex: 1;
}

.eK3b7p .dX73bf .LtxuwL {
  height: calc(100% - (var(--menuTotalBordersY, 0px)));
  overflow: visible;
  white-space: nowrap;
  width: calc(100% - (var(--menuTotalBordersX, 0px)));
}

.eK3b7p .dX73bf .LtxuwL .SUHLli {
  display: inline-block;
}

.eK3b7p .dX73bf .LtxuwL .bNFXK4 {
  display: block;
  width: 100%;
}

.eK3b7p .QQFha4 {
  display: block;
  opacity: 1;
  z-index: 99999;
}

.eK3b7p .QQFha4 .vZwEg5 {
  display: inherit;
  overflow: visible;
  visibility: inherit;
  white-space: nowrap;
  width: auto;
}

.eK3b7p .QQFha4._0uaYC {
  transition: visibility;
  transition-delay: 0.2s;
  visibility: visible;
}

.eK3b7p .QQFha4 .xu0rO4 {
  display: inline-block;
}

.eK3b7p .V4qocw {
  display: none;
}

.HYblus > nav {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.HYblus .LtxuwL {
  background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
  border: solid var(--brw, 0)
    rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
  border-radius: var(--rd, 10px);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  position: absolute;
  width: calc(100% - var(--menuTotalBordersX, 0px));
}

.HYblus .QQFha4 {
  box-sizing: border-box;
  margin-top: 7px;
  position: absolute;
  visibility: hidden;
}

.HYblus [data-dropmode="dropUp"] .QQFha4 {
  margin-bottom: 7px;
  margin-top: 0;
}

.HYblus .vZwEg5 {
  background-color: rgba(
    var(--bgDrop, var(--color_11, color_11)),
    var(--alpha-bgDrop, 1)
  );
  border: solid var(--brw, 0)
    rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
  border-radius: var(--rdDrop, 10px);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
}

.LoinW8 .wxjDyf .AgcguT,
.LoinW8 .wxjDyf .SLABZ6,
.wxjDyf .LoinW8 .AgcguT,
.wxjDyf .LoinW8 .SLABZ6,
.wxjDyf .WfZwmg > button {
  justify-content: flex-start;
}

.LoinW8 ._ap_Ez .AgcguT,
.LoinW8 ._ap_Ez .SLABZ6,
._ap_Ez .LoinW8 .AgcguT,
._ap_Ez .LoinW8 .SLABZ6,
._ap_Ez .WfZwmg > button {
  justify-content: center;
}

.LoinW8 .yaSWtc .AgcguT,
.LoinW8 .yaSWtc .SLABZ6,
.yaSWtc .LoinW8 .AgcguT,
.yaSWtc .LoinW8 .SLABZ6,
.yaSWtc .WfZwmg > button {
  direction: rtl;
}

.LoinW8 .SLABZ6 .P1lgnS img,
.LoinW8 ._YBogd .P1lgnS img,
.WfZwmg .LEHGju img {
  display: block;
  height: var(--iconSize);
}

.LoinW8 .AgcguT.s9mhXz,
.LoinW8 .AgcguT:hover,
.LoinW8 .SLABZ6:hover,
.WfZwmg > button:hover {
  background-color: rgba(
    var(--backgroundColorHover, var(--color_4, color_4)),
    var(--alpha-backgroundColorHover, 1)
  );
  color: rgb(var(--itemTextColorHover, var(--color_1, color_1)));
}

.LoinW8 .AgcguT.s9mhXz path,
.LoinW8 .AgcguT:hover path,
.LoinW8 .SLABZ6:hover path,
.WfZwmg > button:hover path {
  fill: rgb(var(--itemTextColorHover, var(--color_1, color_1)));
}

.LoinW8 .AgcguT:active,
.LoinW8 .SLABZ6:active,
.LoinW8 .wbgQXa.AgcguT,
.LoinW8 .wbgQXa.SLABZ6,
.WfZwmg > button.wbgQXa,
.WfZwmg > button:active {
  background-color: rgba(
    var(--backgroundColorActive, var(--color_4, color_4)),
    var(--alpha-backgroundColorActive, 1)
  );
  color: rgb(var(--itemTextColorActive, var(--color_1, color_1)));
}

.LoinW8 .AgcguT:active path,
.LoinW8 .SLABZ6:active path,
.LoinW8 .wbgQXa.AgcguT path,
.LoinW8 .wbgQXa.SLABZ6 path,
.WfZwmg > button.wbgQXa path,
.WfZwmg > button:active path {
  fill: rgb(var(--itemTextColorActive, var(--color_1, color_1)));
}

.q6zugB {
  width: var(--width);
}

:host(.device-mobile-optimized) .q6zugB,
body.device-mobile-optimized .q6zugB {
  --display: table;
  display: var(--display);
}

.q6zugB.L1JKAI {
  opacity: 0.38;
}

.q6zugB.L1JKAI *,
.q6zugB.L1JKAI:active {
  pointer-events: none;
}

.LoinW8 .AgcguT,
.LoinW8 .SLABZ6 {
  align-items: center;
  display: flex;
  height: calc(var(--height) - var(--borderWidth, 1px) * 2);
}

.LoinW8 .AgcguT .FeuKbY,
.LoinW8 .SLABZ6 .FeuKbY {
  line-height: 0;
}

.LoinW8 ._ap_Ez .AgcguT .FeuKbY,
.LoinW8 ._ap_Ez .SLABZ6 .FeuKbY,
._ap_Ez .LoinW8 .AgcguT .FeuKbY,
._ap_Ez .LoinW8 .SLABZ6 .FeuKbY {
  position: absolute;
  right: 0;
}

.LoinW8 ._ap_Ez .AgcguT .FeuKbY,
.LoinW8 ._ap_Ez .SLABZ6 .FeuKbY,
.LoinW8 .yaSWtc .AgcguT .FeuKbY,
.LoinW8 .yaSWtc .SLABZ6 .FeuKbY,
._ap_Ez .LoinW8 .AgcguT .FeuKbY,
._ap_Ez .LoinW8 .SLABZ6 .FeuKbY,
.yaSWtc .LoinW8 .AgcguT .FeuKbY,
.yaSWtc .LoinW8 .SLABZ6 .FeuKbY {
  margin: 0 20px 0 14px;
}

.LoinW8 ._ap_Ez .AgcguT .FeuKbY,
.LoinW8 ._ap_Ez .SLABZ6 .FeuKbY,
.LoinW8 .wxjDyf .AgcguT .FeuKbY,
.LoinW8 .wxjDyf .SLABZ6 .FeuKbY,
._ap_Ez .LoinW8 .AgcguT .FeuKbY,
._ap_Ez .LoinW8 .SLABZ6 .FeuKbY,
.wxjDyf .LoinW8 .AgcguT .FeuKbY,
.wxjDyf .LoinW8 .SLABZ6 .FeuKbY {
  margin: 0 14px 0 20px;
}

.LoinW8 .wxjDyf .AgcguT .Z9uI84,
.LoinW8 .wxjDyf .SLABZ6 .Z9uI84,
.LoinW8 .yaSWtc .AgcguT .Z9uI84,
.LoinW8 .yaSWtc .SLABZ6 .Z9uI84,
.wxjDyf .LoinW8 .AgcguT .Z9uI84,
.wxjDyf .LoinW8 .SLABZ6 .Z9uI84,
.yaSWtc .LoinW8 .AgcguT .Z9uI84,
.yaSWtc .LoinW8 .SLABZ6 .Z9uI84 {
  flex-grow: 1;
}

.LoinW8 .AgcguT svg,
.LoinW8 .SLABZ6 svg {
  height: auto;
  width: 12px;
}

.LoinW8 .AgcguT path,
.LoinW8 .SLABZ6 path {
  fill: rgb(var(--itemTextColor, var(--color_9, color_9)));
}

.LoinW8 .SLABZ6,
.LoinW8 ._YBogd {
  background-color: rgba(
    var(--backgroundColor, var(--color_4, color_4)),
    var(--alpha-backgroundColor, 1)
  );
  border-color: rgba(
    var(--borderColor, 32, 32, 32),
    var(--alpha-borderColor, 1)
  );
  border-radius: var(--borderRadius, 5px);
  border-style: solid;
  border-width: var(--borderWidth, 1px);
  box-shadow: var(--boxShadow, 0 1px 3px rgba(0, 0, 0, 0.5));
  overflow: hidden;
}

.LoinW8 .SLABZ6 .P1lgnS,
.LoinW8 ._YBogd .P1lgnS {
  margin: 0 -6px 0 14px;
}

.LoinW8 ._ap_Ez .SLABZ6 .P1lgnS,
.LoinW8 ._ap_Ez ._YBogd .P1lgnS,
._ap_Ez .LoinW8 .SLABZ6 .P1lgnS,
._ap_Ez .LoinW8 ._YBogd .P1lgnS {
  margin: 0 4px;
}

.LoinW8 .yaSWtc .SLABZ6 .P1lgnS,
.LoinW8 .yaSWtc ._YBogd .P1lgnS,
.yaSWtc .LoinW8 .SLABZ6 .P1lgnS,
.yaSWtc .LoinW8 ._YBogd .P1lgnS {
  margin: 0 14px 0 -6px;
}

.LoinW8,
.q6zugB {
  height: 100%;
}

.LoinW8 {
  color: rgb(var(--itemTextColor, var(--color_9, color_9)));
  cursor: pointer;
  font: var(--itemFont, var(--font_0));
  position: relative;
  width: var(--width);
}

.LoinW8 * {
  box-sizing: border-box;
}

.LoinW8 .SLABZ6 {
  height: 100%;
  position: relative;
  z-index: 1;
}

.s5_f9m.LoinW8 .SLABZ6 {
  display: none !important;
}

.LoinW8 .sJ9lQ9 {
  margin: 0 0 0 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._ap_Ez .LoinW8 .sJ9lQ9 {
  margin: 0 4px;
}

.yaSWtc .LoinW8 .sJ9lQ9 {
  margin: 0 14px 0 0;
}

.LoinW8 ._YBogd {
  display: flex;
  flex-direction: column;
  max-height: calc(var(--height) * 5.5);
  min-width: 100%;
  overflow-y: auto;
  position: absolute;
  z-index: 1;
}

.LoinW8 ._YBogd:not(.qUhEZJ) {
  --itemBorder: 1px 0 0;
  top: 0;
}

.LoinW8 ._YBogd.qUhEZJ {
  --itemBorder: 0 0 1px;
  bottom: 0;
  flex-direction: column-reverse;
}

.s5_f9m.LoinW8 ._YBogd svg {
  transform: rotate(180deg);
}

.LoinW8.s5_f9m {
  z-index: 47;
}

.LoinW8:not(.s5_f9m) ._YBogd {
  display: none;
}

.LoinW8 .AgcguT {
  flex-shrink: 0;
}

.LoinW8 .AgcguT:not(:first-child) {
  --force-state-metadata: false;
  border-color: rgba(
    var(--separatorColor, 254, 254, 254),
    var(--alpha-separatorColor, 1)
  );
  border-style: solid;
  border-width: var(--itemBorder);
}

.s0VQNf {
  height: 100%;
}

:host(.device-mobile-optimized) .s0VQNf,
body.device-mobile-optimized .s0VQNf {
  display: table;
  width: 100%;
}

.WfZwmg {
  background-color: rgba(
    var(--backgroundColor, var(--color_4, color_4)),
    var(--alpha-backgroundColor, 1)
  );
  border-color: rgba(
    var(--borderColor, 32, 32, 32),
    var(--alpha-borderColor, 1)
  );
  border-radius: var(--borderRadius, 5px);
  border-style: solid;
  border-width: var(--borderWidth, 1px);
  box-shadow: var(--boxShadow, 0 1px 3px rgba(0, 0, 0, 0.5));
  color: rgb(var(--itemTextColor, var(--color_9, color_9)));
  display: flex;
  font: var(--itemFont, var(--font_0));
  height: 100%;
  overflow: hidden;
}

.WfZwmg,
.WfZwmg * {
  box-sizing: border-box;
}

.WfZwmg > button {
  align-items: center;
  background-color: rgba(
    var(--backgroundColor, var(--color_4, color_4)),
    var(--alpha-backgroundColor, 1)
  );
  color: inherit;
  cursor: pointer;
  display: flex;
  flex: auto;
  font: inherit;
  height: 100%;
}

.WfZwmg > button:not(:first-child) {
  --force-state-metadata: false;
  border-left-color: rgba(
    var(--separatorColor, 254, 254, 254),
    var(--alpha-separatorColor, 1)
  );
  border-left-style: solid;
  border-left-width: 1px;
}

.WfZwmg > button:first-child,
.WfZwmg > button:last-child {
  border-radius: var(--borderRadius, 5px);
}

.WfZwmg > button:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.WfZwmg > button:last-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.yaSWtc .WfZwmg .LEHGju {
  margin: 0 14px 0 -6px;
}

._ap_Ez .WfZwmg .LEHGju {
  margin: 0 4px;
}

.wxjDyf .WfZwmg .LEHGju {
  margin: 0 -6px 0 14px;
}

.WfZwmg .J6PIw1 {
  margin: 0 14px;
}

._ap_Ez .WfZwmg .J6PIw1 {
  margin: 0 4px;
}

.PSsm68 select {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.PSsm68 .ZP_gER {
  display: none;
}

.KvoMHf.ErucfC[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

.MpKiNN {
  --display: flex;
  direction: var(--direction);
  display: var(--display);
  flex-direction: column;
  min-height: 25px;
  position: relative;
  text-align: var(--align, start);
}

.MpKiNN .pUnTVX {
  height: var(--inputHeight);
  position: relative;
}

.MpKiNN .eXvLsN {
  align-items: center;
  display: flex;
  font: var(--fntprefix, normal normal normal 16px/1.4em helvetica-w01-roman);
  justify-content: center;
  left: 0;
  max-height: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  width: 50px;
}

.MpKiNN .KvoMHf,
.MpKiNN .eXvLsN {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
}

.MpKiNN .KvoMHf {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 255, 255, 255), var(--alpha-bg, 1))
  );
  border-color: var(
    --corvid-border-color,
    rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
  );
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 1px));
  box-shadow: var(--shd, 0 0 0 transparent);
  box-sizing: border-box !important;
  direction: var(--inputDirection, "inherit");
  font: var(--fnt, var(--font_8));
  margin: 0;
  max-width: 100%;
  min-height: var(--inputHeight);
  padding: var(--textPadding);
  padding-inline-end: var(--textPadding_end);
  padding-inline-start: var(--textPadding_start);
  text-align: var(--inputAlign, "inherit");
  text-overflow: ellipsis;
  width: 100%;
}

.MpKiNN .KvoMHf[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  width: 100%;
}

.MpKiNN .KvoMHf::-moz-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.MpKiNN .KvoMHf:-ms-input-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.MpKiNN .KvoMHf::placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.MpKiNN .KvoMHf:hover {
  background-color: rgba(var(--bgh, 255, 255, 255), var(--alpha-bgh, 1));
  border-color: rgba(var(--brdh, 163, 217, 246), var(--alpha-brdh, 1));
  border-style: solid;
  border-width: var(--brwh, 1px);
}

.MpKiNN .KvoMHf:disabled {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 163, 217, 246), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--brwd, 1px);
  color: rgb(var(--txtd, 255, 255, 255));
}

.MpKiNN:not(.LyB02C) .KvoMHf:focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.MpKiNN.LyB02C .KvoMHf:invalid {
  background-color: rgba(var(--bge, 255, 255, 255), var(--alpha-bge, 1));
  border-color: rgba(var(--brde, 163, 217, 246), var(--alpha-brde, 1));
  border-style: solid;
  border-width: var(--brwe, 1px);
}

.MpKiNN.LyB02C .KvoMHf:not(:invalid):focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.MpKiNN .wPeA6j {
  display: none;
}

.MpKiNN.qzvPmW .wPeA6j {
  color: rgb(var(--txtlbl, var(--color_15, color_15)));
  direction: var(--labelDirection, inherit);
  display: inline-block;
  font: var(--fntlbl, var(--font_8));
  line-height: 1;
  margin-bottom: var(--labelMarginBottom);
  padding-inline-end: var(--labelPadding_end);
  padding-inline-start: var(--labelPadding_start);
  text-align: var(--labelAlign, inherit);
  word-break: break-word;
}

.MpKiNN.qzvPmW.lPl_oN .wPeA6j:after {
  color: rgba(var(--txtlblrq, 0, 0, 0), var(--alpha-txtlblrq, 0));
  content: " *";
  display: var(--requiredIndicationDisplay, none);
}

.ZXdXNL {
  --display: flex;
  direction: var(--direction);
  display: var(--display);
  flex-direction: column;
  justify-content: var(--align, start);
  text-align: var(--align, start);
}

.ZXdXNL.Bedjyp {
  height: inherit;
  min-height: inherit;
}

.ZXdXNL .pUnTVX {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.ZXdXNL .eXvLsN {
  align-items: center;
  display: flex;
  font: var(--fntprefix, normal normal normal 16px/1.4em helvetica-w01-roman);
  justify-content: center;
  left: 0;
  max-height: 100%;
  position: absolute;
  top: 0;
  width: 50px;
}

.ZXdXNL .KvoMHf,
.ZXdXNL .eXvLsN {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  min-height: 100%;
}

.ZXdXNL .KvoMHf {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 255, 255, 255), var(--alpha-bg, 1))
  );
  border-color: var(
    --corvid-border-color,
    rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
  );
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 1px));
  box-shadow: var(--shd, 0 0 0 transparent);
  box-sizing: border-box !important;
  direction: var(--inputDirection, "inherit");
  flex: 1;
  font: var(--fnt, var(--font_8));
  margin: 0;
  padding: var(--textPadding);
  padding-inline-end: var(--textPadding_end);
  padding-inline-start: var(--textPadding_start);
  text-align: var(--inputAlign, "inherit");
  text-overflow: ellipsis;
  width: 100%;
}

.ZXdXNL .KvoMHf[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

.ZXdXNL .KvoMHf::-moz-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.ZXdXNL .KvoMHf:-ms-input-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.ZXdXNL .KvoMHf::placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.ZXdXNL .KvoMHf:hover {
  background-color: rgba(var(--bgh, 255, 255, 255), var(--alpha-bgh, 1));
  border-color: rgba(var(--brdh, 163, 217, 246), var(--alpha-brdh, 1));
  border-style: solid;
  border-width: var(--brwh, 1px);
}

.ZXdXNL .KvoMHf:disabled {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 163, 217, 246), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--brwd, 1px);
  color: rgb(var(--txtd, 255, 255, 255));
}

.ZXdXNL:not(.LyB02C) .KvoMHf:focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.ZXdXNL.LyB02C .KvoMHf:invalid {
  background-color: rgba(var(--bge, 255, 255, 255), var(--alpha-bge, 1));
  border-color: rgba(var(--brde, 163, 217, 246), var(--alpha-brde, 1));
  border-style: solid;
  border-width: var(--brwe, 1px);
}

.ZXdXNL.LyB02C .KvoMHf:not(:invalid):focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.ZXdXNL .wPeA6j {
  display: none;
}

.ZXdXNL.qzvPmW .wPeA6j {
  color: rgb(var(--txtlbl, var(--color_15, color_15)));
  direction: var(--labelDirection, inherit);
  display: inline-block;
  font: var(--fntlbl, var(--font_8));
  line-height: 1;
  margin-bottom: var(--labelMarginBottom);
  padding-inline-end: var(--labelPadding_end);
  padding-inline-start: var(--labelPadding_start);
  text-align: var(--labelAlign, inherit);
  word-break: break-word;
}

.ZXdXNL.qzvPmW.lPl_oN .wPeA6j:after {
  color: rgba(var(--txtlblrq, 0, 0, 0), var(--alpha-txtlblrq, 0));
  content: " *";
  display: var(--requiredIndicationDisplay, none);
}

.TLWrjM {
  align-items: center;
  color: rgb(var(--errorTextColor, #ff4040));
  direction: var(--errorDirection);
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: var(--errorAlign, inherit);
  padding: 8px 0 0;
}

.TLWrjM .GIPQqH {
  flex: none;
  flex-grow: 0;
  order: 0;
}

.TLWrjM .JNgJbf {
  display: inline-block;
  flex-grow: 0;
  font: var(--errorTextFont, var(--font_8));
  line-height: 1;
  order: 1;
  word-break: break-word;
}

@-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;
}

.JVi7i2,
.hrbzfT {
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 0, 0, 0), var(--alpha-bg, 0))
  );
  border: solid
    var(
      --corvid-border-color,
      rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
    )
    var(--corvid-border-width, var(--brw, 0));
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  box-shadow: var(--shd, 0 0 0 transparent);
}

.d3n4V3 {
  height: 100%;
  left: -var(--corvid-border-width, var(--brw, 0));
  position: absolute;
  top: -var(--corvid-border-width, var(--brw, 0));
  width: 100%;
}

.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;
}

.VideoPlayer2054936319__facebookContainer,
.VideoPlayer2054936319__playerContainer {
  border: var(--borderSize) solid
    rgba(var(--borderColor, 0, 0, 0), var(--alpha-borderColor, 1));
  box-shadow: var(--boxShadow);
  display: block;
  margin-left: calc(-1 * var(--borderSize));
  margin-top: calc(-1 * var(--borderSize));
  position: absolute;
  top: 0;
}

.focus-ring-active
  .VideoPlayer2054936319__root
  .VideoPlayer2054936319__cover.VideoPlayer2054936319--playerFocused {
  z-index: 1000;
}

.VideoPlayer2054936319__cover .PlayableCover847694237__title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: rgba(var(--fontColor, 255, 255, 255), var(--alpha-fontColor, 1));
  display: -webkit-box;
  font: var(--font);
  margin: 0 0 15px;
  max-height: 2.8em;
  overflow: hidden;
  padding: 0 10%;
}

.VideoPlayer2054936319__cover.VideoPlayer2054936319--isMobileView
  .PlayableCover847694237__title {
  font-size: calc(18 * 1px);
  margin: 0 0 10px;
}

.VideoPlayer2054936319__cover .PlayableCover847694237__overlay {
  background-color: rgba(
    var(--backgroundColor, 0, 0, 0),
    var(--alpha-backgroundColor, 1)
  );
  transition: background-color 0.2s ease;
}

.VideoPlayer2054936319__cover .PlayableCover847694237__overlay:hover {
  background-color: rgba(
    var(--backgroundColor, 0, 0, 0),
    calc(var(--alpha-backgroundColor, 1) + 0.1)
  );
}

.VideoPlayer2054936319__cover .PlayableCover847694237__playButton {
  height: var(--playButtonSize);
  width: var(--playButtonSize);
}

.VideoPlayer2054936319__cover .PlayableCover847694237__playButton:hover {
  opacity: 0.8;
}

.VideoPlayer2054936319__cover.VideoPlayer2054936319--isMobileView
  .PlayableCover847694237__playButton {
  height: var(--playButtonMobileSize);
  width: var(--playButtonMobileSize);
}

.VideoPlayer2054936319__cover .PlayableCover847694237__playButton circle {
  stroke: rgba(var(--fontColor, 255, 255, 255), var(--alpha-fontColor, 1));
}

.VideoPlayer2054936319__cover .PlayableCover847694237__playButton path {
  fill: rgba(var(--fontColor, 255, 255, 255), var(--alpha-fontColor, 1));
}

.VideoPlayer2054936319__playerContainer {
  height: 100%;
  width: 100%;
}

.VideoPlayer2054936319__playerContainer iframe {
  height: 100%;
  visibility: inherit;
  width: 100%;
}

.VideoPlayer2054936319__facebookContainer {
  height: 100%;
  width: 100%;
}

.VideoPlayer2054936319__vimeoContainer {
  background-color: #000;
}

.VideoPlayer2054936319__fadeEnter {
  opacity: 1;
}

.VideoPlayer2054936319__fadeEnterActive {
  opacity: 0;
  transition: opacity 1.6s ease-out 0ms;
}

.VideoPlayer2054936319__secondPoster {
  height: 100%;
  position: "relative";
  width: 100%;
}

.MH58Yn {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.MH58Yn:hover {
  opacity: 0.7;
}

.sMWGVV {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.T7h78h {
  display: block;
  font-family:
    HelveticaNeueW01-45Ligh,
    HelveticaNeueW02-45Ligh,
    HelveticaNeueW10-45Ligh,
    Helvetica Neue,
    Helvetica,
    Arial,
    \\30e1イリオ,
    meiryo,
    \\30d2ラギノ角ゴpro w3,
    hiragino kaku gothic pro;
  height: inherit;
  outline: none;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.T7h78h button {
  -webkit-appearance: button;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
}

.T7h78h button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

.T7h78h button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[data-playable-hook="player-container"].T7h78h [data-playable-component],
[data-playable-hook="player-container"].T7h78h [data-playable-component] *,
[data-playable-hook="player-container"].T7h78h [data-playable-component] :after,
[data-playable-hook="player-container"].T7h78h
  [data-playable-component]
  :before {
  box-sizing: content-box !important;
  outline: none !important;
}

.aBdaFm,
.reHOyF {
  height: 100% !important;
  min-height: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
}

[data-playable-focus-source="key"]
  [data-playable-hook="player-container"]
  button.focus-within,
[data-playable-focus-source="key"]
  [data-playable-hook="player-container"]
  img.focus-within,
[data-playable-focus-source="key"]
  [data-playable-hook="player-container"]
  input.focus-within,
[data-playable-focus-source="script"]
  [data-playable-hook="player-container"]
  button.focus-within,
[data-playable-focus-source="script"]
  [data-playable-hook="player-container"]
  img.focus-within,
[data-playable-focus-source="script"]
  [data-playable-hook="player-container"]
  input.focus-within {
  box-shadow: 0 0 0 2px rgba(56, 153, 236, 0.8);
}

.fZPS1d {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.fZPS1d:hover {
  opacity: 0.7;
}

.TcENkh {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.MwgZWA {
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 3px;
  height: 250px;
  left: 10px;
  overflow: scroll;
  width: 400px;
  z-index: 10000;
}

.MwgZWA,
.MwgZWA .rkTLUy {
  position: absolute;
  top: 10px;
}

.MwgZWA .rkTLUy {
  color: #fff;
  cursor: pointer;
  right: 5px;
}

.MwgZWA .rkTLUy:hover {
  opacity: 0.8;
}

.MwgZWA .LOpx5W {
  color: #fff;
  font-size: 8px;
  line-height: 8px;
  margin: 5px;
  padding: 5px;
}

.MwgZWA .LOpx5W .ht0VVX {
  color: green;
}

.MwgZWA .LOpx5W .wYTBxb {
  color: #ff8c00;
}

.MwgZWA .LOpx5W .VStJby {
  color: blue;
}

.MwgZWA .LOpx5W .LsIqAP {
  color: #f0f;
}

.MwgZWA .LOpx5W .zUQfxq {
  color: #fff;
}

.IiHgII {
  align-items: center;
  background-color: #000;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}

.IiHgII,
.IiHgII._s9dGo video,
.IiHgII.vzxs2y video {
  height: 100%;
  width: 100%;
}

.IiHgII.hLoSEv video {
  position: absolute;
}

.IiHgII.TtdQPO.hLoSEv video {
  height: auto !important;
  width: 100%;
}

.IiHgII.cb9E5t.hLoSEv video {
  height: 100%;
}

.IiHgII video {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.IiHgII.dj2W_J {
  cursor: none;
}

.l9fM0h {
  bottom: 0;
  filter: blur(14px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.CIzMoh {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.CIzMoh:hover {
  opacity: 0.7;
}

.NJGB6P {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.aMw4Jp {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}

.aMw4Jp,
.aMw4Jp .RH3G4u {
  align-items: center;
  display: flex;
  justify-content: center;
}

.aMw4Jp .RH3G4u {
  animation-duration: 0.5s;
  animation-name: rAxA2y;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  font-size: 9px;
  line-height: 9px;
  opacity: 0;
  position: relative;
}

.aMw4Jp .s8q1KX {
  animation-duration: 0.5s;
  animation-name: ryfJyM;
}

.aMw4Jp .O3jNyY {
  left: 3px;
  position: relative;
}

.aMw4Jp .sLkljv {
  margin: 5px 0;
}

.aMw4Jp .XsP_Mg {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  left: 0;
  min-height: 8px;
  min-width: 5px;
  position: absolute;
  right: 0;
  top: 0;
}

.aMw4Jp .XsP_Mg span {
  display: block;
}

@keyframes ryfJyM {
  0% {
    height: 22px;
    width: 22px;
  }

  to {
    height: 30px;
    width: 30px;
  }
}

@keyframes rAxA2y {
  0% {
    height: 22px;
    opacity: 0.9;
    padding: 19px;
    width: 22px;
  }

  to {
    font-size: 14px;
    height: 30px;
    line-height: 14px;
    opacity: 0;
    padding: 25px;
    width: 30px;
  }
}

.UuvzuH {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.UuvzuH:hover {
  opacity: 0.7;
}

.SWiF19 {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.P9q5GM {
  bottom: 0;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}

.P9q5GM.L8SYSN {
  align-items: center;
  display: flex;
  justify-content: center;
}

.jyZxBT {
  align-items: center;
  background: #000 no-repeat 50%;
  background-size: cover;
  bottom: 0;
  justify-content: center;
  right: 0;
}

.jyZxBT,
.jyZxBT:before {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.jyZxBT:before {
  background-color: rgba(0, 0, 0, 0.35);
  content: "";
}

.oVB0VT {
  cursor: pointer;
  height: 71px;
  opacity: 1;
  position: relative;
  width: 71px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .oVB0VT {
  height: 54px;
  width: 54px;
}

[data-playable-hook="player-container"][data-playable-max-width~="400px"]
  .oVB0VT {
  height: 36px;
  width: 36px;
}

.oVB0VT:hover {
  opacity: 0.8;
}

.DUKkm6 {
  background: transparent;
}

.CAErYx {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.CAErYx:hover {
  opacity: 0.7;
}

.qipy26 {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.HFEl1G {
  clip: rect(0, 48px, 48px, 24px);
  animation: bNfw61 1s linear infinite;
  color: #fff;
  display: none;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  width: 42px;
  z-index: 90;
}

.HFEl1G.KRw0M5 {
  display: block;
}

.HFEl1G:after {
  clip: rect(4px, 48px, 48px, 24px);
  animation: i0S9__ 1s linear infinite;
}

.HFEl1G:after,
.HFEl1G:before {
  border: 3px solid currentColor;
  border-radius: 50%;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.HFEl1G:before {
  clip: rect(0, 48px, 48px, 24px);
  animation: m1Fg4V 1s linear infinite;
}

@keyframes i0S9__ {
  50% {
    clip: rect(42px, 48px, 48px, 24px);
    animation-timing-function: ease-in-out;
  }
}

@keyframes m1Fg4V {
  50% {
    clip: rect(0, 48px, 9px, 24px);
    animation-timing-function: ease-in-out;
    transform: rotate(135deg);
  }
}

@keyframes bNfw61 {
  0% {
    animation-timing-function: ease-out;
    transform: rotate(0);
  }

  45% {
    color: #fff;
    transform: rotate(18deg);
  }

  55% {
    transform: rotate(54deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.YNsbh9 {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.YNsbh9 .O1vZ1d {
  flex-grow: 2;
  position: relative;
}

.RKqOM4 {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.RKqOM4:hover {
  opacity: 0.7;
}

.FmiuH4 {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.W0t_ic {
  position: relative;
  z-index: 60;
}

.W0t_ic::-moz-focus-inner {
  border: 0;
}

.W0t_ic.N2CfeM .BYXbSU,
.W0t_ic.N2CfeM .QAfchT {
  opacity: 1;
}

.jw9Kj9 {
  flex-grow: 0;
}

.jQne1L {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  position: relative;
}

[data-playable-hook="player-container"][data-playable-dir="ltr"] .jQne1L {
  margin-left: 20px;
}

[data-playable-hook="player-container"][data-playable-dir="rtl"] .jQne1L {
  direction: rtl;
  margin-right: 20px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .jQne1L {
  margin-top: 30px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"][data-playable-dir="ltr"]
  .jQne1L {
  margin-left: 30px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"][data-playable-dir="rtl"]
  .jQne1L {
  direction: rtl;
  margin-right: 30px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .jQne1L {
  margin-top: 15px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"][data-playable-dir="ltr"]
  .jQne1L {
  margin-left: 15px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"][data-playable-dir="rtl"]
  .jQne1L {
  direction: rtl;
  margin-right: 15px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"]
  .jQne1L {
  margin-top: 12px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"][data-playable-dir="ltr"]
  .jQne1L {
  margin-left: 12px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"][data-playable-dir="rtl"]
  .jQne1L {
  direction: rtl;
  margin-right: 12px;
}

.QAfchT {
  flex-grow: 1;
  max-width: calc(100% - 200px);
}

.BYXbSU,
.QAfchT {
  opacity: 0;
  transition: opacity 0.2s;
}

.BYXbSU {
  background-image: linear-gradient(
    0deg,
    transparent,
    rgba(0, 0, 0, 0.03) 24%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.4)
  );
  background-size: 100% 182px;
  height: 181px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.Oz1ffs {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.Oz1ffs:hover {
  opacity: 0.7;
}

.nhI_ow {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.ZDJjun {
  font-size: 16px;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .ZDJjun {
  font-size: 14px;
  line-height: 15px;
}

[data-playable-hook="player-container"][data-playable-max-width~="300px"]
  .ZDJjun {
  font-size: 12px;
  line-height: 13px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ZDJjun {
  font-size: 20px;
  line-height: 20px;
}

.ZDJjun.Jd96zq,
.w5jdg2 {
  cursor: pointer;
}

.w5jdg2 {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.w5jdg2:hover {
  opacity: 0.7;
}

.A2xlHS {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.BHUFEt {
  background-color: #959595;
  position: relative;
  transition: background-color 0.2s;
}

[data-playable-hook="player-container"][data-playable-dir="ltr"] .BHUFEt {
  direction: ltr;
  margin-right: 15px;
}

[data-playable-hook="player-container"][data-playable-dir="rtl"] .BHUFEt {
  direction: rtl;
  margin-left: 15px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"][data-playable-dir="ltr"]
  .BHUFEt {
  margin-right: 20px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"][data-playable-dir="rtl"]
  .BHUFEt {
  margin-left: 20px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"][data-playable-dir="ltr"]
  .BHUFEt {
  margin-right: 10px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"][data-playable-dir="rtl"]
  .BHUFEt {
  margin-left: 10px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"]
  .BHUFEt {
  padding: 2px 3px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"][data-playable-dir="ltr"]
  .BHUFEt {
  margin-right: 10px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"][data-playable-dir="rtl"]
  .BHUFEt {
  margin-left: 10px;
}

.BHUFEt.caCSqC {
  cursor: default;
}

.BHUFEt.Pcf9Cx,
.BHUFEt:hover:not(.caCSqC) {
  background-color: #ea492e;
}

.OebeZw {
  cursor: pointer;
}

button.Gn8Gdq {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  outline: none;
  padding: 5px 6px;
  text-transform: uppercase !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"]
  button.Gn8Gdq {
  font-size: 10px;
  line-height: 12px;
}

.cA1asi {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.cA1asi:hover {
  opacity: 0.7;
}

.eIyVpE {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.QV8pil {
  display: flex;
  flex-direction: column;
  z-index: 60;
}

.QV8pil::-moz-focus-inner {
  border: 0;
}

.QV8pil.B8EVKv .etMMn5,
.QV8pil.YhkBZr .FUpTp7,
.QV8pil.YhkBZr .IT9grE,
.QV8pil.YhkBZr .V93u41,
.QV8pil.YhkBZr .etMMn5,
.QV8pil.YhkBZr .llN1CZ {
  opacity: 1;
}

.QV8pil.Chkuci .NuiShs {
  margin-right: 14px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .QV8pil.Chkuci
  .NuiShs {
  margin-right: 7px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .QV8pil.Chkuci
  .NuiShs {
  margin-right: 25px;
}

.QV8pil.Chkuci .etMMn5,
.QV8pil.RJmkWq .yO0EFf,
.QV8pil.UALT0d .wkFNGC,
.QV8pil.bAjCHK .V93u41,
.QV8pil.l48Rm1 .QpVBT9,
.QV8pil.ojCqay .Y5bsSu,
.QV8pil.uWCPbp .lgDwRF,
.QV8pil.vG61jJ .NuiShs {
  display: none;
}

.c2j4zU {
  display: flex;
  flex-grow: 2;
  width: 100%;
}

.V93u41,
.c2j4zU {
  position: relative;
}

.V93u41 {
  padding: 0 20px;
  top: 2px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .V93u41 {
  padding: 0 30px;
  top: 3px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .V93u41 {
  padding: 0 15px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"]
  .V93u41 {
  padding: 0 12px;
}

.FUpTp7,
.V93u41,
.etMMn5,
.llN1CZ {
  opacity: 0;
  transition: opacity 0.2s;
}

.FUpTp7,
.llN1CZ {
  align-items: center;
  display: flex;
  flex: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.llN1CZ {
  justify-content: flex-end;
}

.FUpTp7,
.etMMn5,
.llN1CZ {
  height: 54px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .FUpTp7,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .etMMn5,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .llN1CZ {
  height: 80px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .FUpTp7,
[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .etMMn5,
[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .llN1CZ {
  height: 42px;
}

[data-playable-hook="player-container"][data-playable-max-width~="350px"]
  .FUpTp7,
[data-playable-hook="player-container"][data-playable-max-width~="350px"]
  .etMMn5,
[data-playable-hook="player-container"][data-playable-max-width~="350px"]
  .llN1CZ {
  height: 36px;
}

.QpVBT9 {
  margin-left: 13px;
  margin-right: 8px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .QpVBT9 {
  margin-left: 20px;
  margin-right: 20px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .QpVBT9 {
  margin-left: 7px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"]
  .QpVBT9 {
  margin-left: 4px;
}

.yO0EFf {
  margin-right: 13px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .yO0EFf {
  margin-right: 20px;
}

.lgDwRF {
  margin-right: 18px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .lgDwRF {
  margin-right: 30px;
}

[data-playable-hook="player-container"][data-playable-max-width~="400px"]
  .lgDwRF {
  display: none;
}

.Y5bsSu {
  margin-right: 8px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .Y5bsSu {
  margin-right: 18px;
}

.NuiShs {
  margin-right: 8px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .NuiShs {
  margin-right: 18px;
}

.wkFNGC {
  margin-right: 8px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .wkFNGC {
  margin-right: 18px;
}

.etMMn5 {
  display: flex;
  margin-right: 14px;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .etMMn5 {
  margin-right: 9px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .etMMn5 {
  margin-right: 23px;
}

[data-playable-hook="player-container"][data-playable-max-width~="280px"]
  .etMMn5 {
  margin-right: 12px;
}

.zumaah {
  margin-right: 8px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .zumaah {
  margin-right: 18px;
}

.IT9grE {
  background-image: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.03) 24%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.4)
  );
  background-size: 100% 182px;
  bottom: 0;
  height: 181px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity 0.2s;
}

.k8BjRZ {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.k8BjRZ:hover {
  opacity: 0.7;
}

.oc5p_Q {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.zllqXq {
  opacity: 0;
  position: absolute;
  transition:
    opacity 0.2s,
    visibility 0.2s;
  visibility: hidden;
  z-index: 100;
}

.zllqXq.L_hw7T {
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 5px;
}

.zllqXq.xi74N4 {
  opacity: 1;
  visibility: visible;
}

.L_hw7T .w1jcvC {
  color: #fff;
  font-size: 11px;
  line-height: 12px;
  white-space: nowrap;
}

.y_umMm {
  bottom: 0;
  display: flex;
  left: 0;
  margin: 10px 10px 6px;
  position: absolute;
  right: 0;
  top: 0;
}

.sJELUr {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.sJELUr:hover {
  opacity: 0.7;
}

.QOZHQ8 {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.ctBuTJ {
  display: block;
  height: 6px;
  position: relative;
  touch-action: none;
  transition:
    opacity 0.2s,
    visibility 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ctBuTJ {
  height: 8px;
}

.ctBuTJ.fnKqRA .acEE1I {
  background-color: #ea492e;
}

.ctBuTJ.fnKqRA .w5RHza {
  background-color: rgba(234, 73, 46, 0.5);
}

.ctBuTJ.fnKqRA .RTqtKv {
  display: initial;
}

.ctBuTJ.cdLzMy .gwBw85,
.ctBuTJ:hover .gwBw85,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ctBuTJ.cdLzMy
  .gwBw85,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ctBuTJ:hover
  .gwBw85 {
  transform: scaleY(1);
}

.ctBuTJ.cdLzMy .gwBw85 .w5RHza,
.ctBuTJ:hover .gwBw85 .w5RHza {
  opacity: 1;
}

.ctBuTJ.cdLzMy .ctzVus,
.ctBuTJ.cdLzMy .gwBw85 .gPPH0B:after,
.ctBuTJ:hover .ctzVus,
.ctBuTJ:hover .gwBw85 .gPPH0B:after {
  transform: scale(1);
}

.ctBuTJ.cdLzMy .ctzVus.U89TWW,
.ctBuTJ:hover .ctzVus.U89TWW {
  left: 100%;
}

.ctBuTJ.cdLzMy .RTqtKv,
.ctBuTJ:hover .RTqtKv {
  transform: scale(1.4);
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ctBuTJ.cdLzMy
  .RTqtKv,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ctBuTJ:hover
  .RTqtKv {
  transform: scale(1.33);
}

.ctBuTJ.cdLzMy .RTqtKv.U89TWW,
.ctBuTJ:hover .RTqtKv.U89TWW {
  background-color: #fff;
}

.mYR6uE {
  left: -6px;
  position: absolute;
  top: -3px;
  z-index: 7;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .mYR6uE {
  height: 16px;
  left: -8px;
  top: -4px;
  width: 16px;
}

.ctzVus {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: block;
  height: 12px;
  transform: scale(0);
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
  width: 12px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .ctzVus {
  height: 16px;
  width: 16px;
}

.RTqtKv {
  background-color: #ea492e;
  border: 2px solid #bababa;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  height: 6px;
  position: absolute;
  right: -5px;
  top: -2px;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
  width: 6px;
  z-index: 6;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .RTqtKv {
  height: 8px;
  right: -6px;
  top: -2px;
  width: 8px;
}

.RTqtKv:hover {
  background-color: #fff;
}

.RTqtKv.QOZHQ8 {
  display: none;
}

.gwBw85 {
  height: 6px;
  transform: scaleY(0.34);
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .gwBw85 {
  height: 8px;
  transform: scaleY(0.25);
}

.u1j2LK {
  height: 6px;
  padding: 0;
  position: absolute;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .u1j2LK {
  height: 8px;
}

.acEE1I {
  background-color: #fff;
  transform-origin: 0 0;
  width: 100%;
}

.aJcGTx {
  transition: width 0.2s ease;
}

.WdW6QO,
.aJcGTx {
  background-color: hsla(0, 0%, 100%, 0.25);
}

.WdW6QO {
  width: 100%;
}

.w5RHza {
  background-color: hsla(0, 0%, 100%, 0.5);
  transition: opacity 0.2s;
}

.mKA4v0 {
  background-color: transparent;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

.gPPH0B,
.gPPH0B:after,
.mKA4v0 {
  position: absolute;
}

.gPPH0B:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 6px;
  opacity: 0.6;
  right: -3px;
  transform: scale(0);
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
  width: 6px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .gPPH0B:after {
  height: 8px;
  right: -4px;
  width: 8px;
}

.gPPH0B:after:hover {
  opacity: 1;
}

.O7e4CU {
  cursor: pointer;
  display: block;
  height: 16px;
  opacity: 0;
  position: relative;
  top: -11px;
  width: 100%;
  z-index: 5;
}

[data-playable-focus-source="key"]
  [data-playable-hook="progress-control"].focus-within,
[data-playable-focus-source="script"]
  [data-playable-hook="progress-control"].focus-within {
  box-shadow: 0 0 0 2px rgba(56, 153, 236, 0.8);
  opacity: 1;
}

.oSuh0p {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.oSuh0p:hover {
  opacity: 0.7;
}

.oNQb99 {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

._90z7w {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.W2aIUN {
  height: 26px;
  min-height: 26px;
  min-width: 26px;
  width: 26px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .W2aIUN {
  height: 35px;
  min-height: 35px;
  min-width: 35px;
  width: 35px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .W2aIUN
  ._fnLlj {
  display: none;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .W2aIUN
  .NNvLPR {
  display: block;
}

.W2aIUN .KgK6KM {
  display: none;
}

.W2aIUN .gek6yh,
.W2aIUN.FBQO6r .KgK6KM {
  display: block;
}

.W2aIUN.FBQO6r .gek6yh {
  display: none;
}

.W2aIUN ._fnLlj {
  display: block;
}

.W2aIUN .NNvLPR {
  display: none;
}

.WiTPiC {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.WiTPiC:hover {
  opacity: 0.7;
}

.sE31hn {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.KpdQrc {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 25px;
}

.gkGtxN {
  font-size: 12px;
  line-height: 12px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .gkGtxN {
  font-size: 14px;
  line-height: 14px;
}

.pkI6sF {
  margin-left: 5px;
}

.pkI6sF:before {
  content: "/";
  margin-right: 4px;
}

.LyvFhE .Nidhcc,
.LyvFhE .pkI6sF {
  display: none;
}

.rnG1K6 {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.rnG1K6:hover {
  opacity: 0.7;
}

.oI7XOE {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.dqR62d {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  position: relative;
  transition: width 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .dqR62d {
  height: 35px;
}

.dqR62d.C7Gq5G .Z8Ru_i,
.dqR62d:hover .Z8Ru_i {
  margin-right: 5px;
  opacity: 1;
  width: 50px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .dqR62d.C7Gq5G
  .Z8Ru_i,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .dqR62d:hover
  .Z8Ru_i {
  margin-right: 10px;
  width: 90px;
}

.ToIAK9,
.VTppQd,
._7tzdU,
.ztCxq7 {
  display: none;
}

.zuqkBx {
  height: 26px;
  min-height: 26px;
  min-width: 26px;
  padding: 0;
  width: 26px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .zuqkBx {
  height: 35px;
  min-height: 35px;
  min-width: 35px;
  width: 35px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .zuqkBx
  .aEw8y1 {
  display: none;
}

.zuqkBx .aEw8y1,
.zuqkBx.KzpsnN ._7tzdU,
.zuqkBx.XubB8i .ztCxq7,
.zuqkBx.qJrrld .ztCxq7,
.zuqkBx.yLMtC2 .ToIAK9,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .zuqkBx
  .f6CCWN {
  display: block;
}

.zuqkBx .f6CCWN {
  display: none;
}

.Z8Ru_i {
  display: block;
  height: 25px;
  margin-left: 2px;
  opacity: 0;
  position: relative;
  transition:
    opacity 0.2s,
    width 0.2s;
  width: 0;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .Z8Ru_i {
  margin-left: 5px;
}

.MRjoHU {
  height: 2px;
  padding: 0;
  position: absolute;
  top: 11.5px;
}

.MP5ZfL:after {
  border-radius: 50%;
  content: "";
  height: 8px;
  position: absolute;
  right: -4px;
  top: -3px;
  transition: opacity 0.2s;
  width: 8px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .MP5ZfL:after {
  height: 10px;
  right: -5px;
  top: -4px;
  width: 10px;
}

.XbJXgH,
.ylsu_r {
  width: 100%;
}

.ylsu_r {
  cursor: pointer;
  display: block;
  height: 25px;
  opacity: 0;
  position: relative;
  z-index: 5;
}

[data-playable-focus-source="key"]
  [data-playable-hook="volume-control"]
  .focus-within.Z8Ru_i,
[data-playable-focus-source="script"]
  [data-playable-hook="volume-control"]
  .focus-within.Z8Ru_i {
  box-shadow: 0 0 0 2px rgba(56, 153, 236, 0.8);
  margin-right: 5px;
  opacity: 1;
  width: 50px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  [data-playable-focus-source="key"]
  [data-playable-hook="volume-control"]
  .focus-within.Z8Ru_i,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  [data-playable-focus-source="script"]
  [data-playable-hook="volume-control"]
  .focus-within.Z8Ru_i {
  margin-right: 10px;
  width: 90px;
}

.SikRew {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.SikRew:hover {
  opacity: 0.7;
}

.SDCtMN {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.hKOrCk {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.Cn9dEu {
  height: 26px;
  min-height: 26px;
  min-width: 26px;
  transition: transform 0.2s;
  width: 26px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .Cn9dEu {
  height: 35px;
  width: 35px;
}

.Cn9dEu:hover {
  transform: scale(1.18);
}

.Cn9dEu .B_N5WW {
  display: block;
}

.Cn9dEu .D7xTDF {
  display: none;
}

.Cn9dEu.UZeOX4:hover {
  transform: scale(0.8);
}

.Cn9dEu.UZeOX4 .B_N5WW {
  display: none;
}

.Cn9dEu.UZeOX4 .D7xTDF {
  display: block;
}

.nKEFMs {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.nKEFMs:hover {
  opacity: 0.7;
}

.SxDloc {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.pAPwip {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.Fl7sUm {
  height: 26px;
  min-height: 26px;
  min-width: 26px;
  transition: transform 0.2s;
  width: 26px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .Fl7sUm {
  height: 35px;
  min-height: 21px;
  min-width: 35px;
  width: 35px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .Fl7sUm
  .cwmXNz {
  display: none;
}

.Fl7sUm .Ukb5XC,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .Fl7sUm
  .yVltgc {
  display: block;
}

.Fl7sUm .ViNbIi {
  display: none;
}

.Fl7sUm .cwmXNz {
  display: block;
}

.Fl7sUm .yVltgc {
  display: none;
}

.Fl7sUm:hover {
  transform: scale(1.18);
}

.Fl7sUm.ShbU38:hover {
  transform: scale(0.8);
}

.Fl7sUm.ShbU38 .Ukb5XC {
  display: none;
}

.Fl7sUm.ShbU38 .ViNbIi {
  display: block;
}

.NspOOT {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.NspOOT:hover {
  opacity: 0.7;
}

.XWBvFW {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.A6A8Dz {
  align-items: center;
  display: flex;
  justify-content: center;
  opacity: 1;
  position: relative;
  transition: opacity 0.2s;
  transition-duration: 0.2s;
  z-index: 3;
}

.A6A8Dz:hover .V5xX43 {
  opacity: 0.7;
}

.F87Un8 {
  max-height: 26px;
  max-width: 125px;
  transition: opacity 0.2s;
}

[data-playable-hook="player-container"][data-playable-max-width~="550px"]
  .F87Un8 {
  max-height: 20px;
  max-width: 90px;
}

[data-playable-hook="player-container"][data-playable-max-width~="350px"]
  .F87Un8 {
  max-height: 18px;
  max-width: 70px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .F87Un8 {
  max-height: 36px;
  max-width: 450px;
}

.F87Un8.XWBvFW {
  display: none;
}

.enmd7C {
  height: 26px;
  min-height: 26px;
  min-width: 26px;
  transition: transform 0.2s;
  width: 26px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .enmd7C {
  height: 35px;
  min-height: 35px;
  min-width: 35px;
  width: 35px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .enmd7C
  .vRtcOZ {
  display: none;
}

.enmd7C .vRtcOZ,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .enmd7C
  .RBEUr7 {
  display: block;
}

.enmd7C .RBEUr7 {
  display: none;
}

.enmd7C:hover {
  transform: scale(1.2);
}

.h4iEJm {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.h4iEJm:hover {
  opacity: 0.7;
}

.Xm5eRr {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.k85XnN {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.urzrNl {
  height: 26px;
  min-height: 26px;
  min-width: 26px;
  transition: transform 0.2s;
  width: 26px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .urzrNl {
  height: 35px;
  min-height: 21px;
  min-width: 35px;
  width: 35px;
}

[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .urzrNl
  .VAQcIh {
  display: none;
}

.urzrNl .VAQcIh,
[data-playable-hook="player-container"][data-playable-in-full-screen="true"]
  .urzrNl
  .R4TBlN {
  display: block;
}

.urzrNl .R4TBlN {
  display: none;
}

.urzrNl:hover {
  transform: scale(1.18);
}

.cete1q {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  display: flex;
  flex-direction: column-reverse;
  height: 90px;
  width: 180px;
}

.cete1q.ex4YgN {
  border: none;
  border-radius: 0;
  height: auto;
  width: auto;
}

.Epa8Ug,
.hHw66W {
  bottom: 2px;
  height: 90px;
  left: 2px;
  position: absolute;
  right: 2px;
  top: 2px;
  width: 180px;
}

.Epa8Ug {
  z-index: 2;
}

.hHw66W {
  z-index: 1;
}

.ex4YgN .nIb7Tl {
  background: none;
}

.ex4YgN .Epa8Ug,
.ex4YgN .hHw66W {
  height: 0;
  width: 0;
}

.nIb7Tl {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  line-height: 12px;
  padding: 4px 5px;
  position: relative;
  white-space: nowrap;
  z-index: 3;
}

.pVM1ey {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  outline: none;
  padding: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.pVM1ey:hover {
  opacity: 0.7;
}

.pE6VGN {
  height: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

.VH7UEc {
  align-items: center;
  background-color: #000;
  display: flex;
  flex-direction: column-reverse;
  pointer-events: none;
  z-index: 55;
}

.P_YO_v,
.VH7UEc {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.P_YO_v {
  opacity: 0.5;
  z-index: 2;
}

.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;
}

.PlayableCover847694237__root {
  background: #000 50% 50% no-repeat;
  background-size: cover;
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.PlayableCover847694237__responsiveMode {
  align-items: center;
  display: flex;
  overflow: hidden;
}

.PlayableCover847694237__overlay {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.PlayableCover847694237__root.PlayableCover847694237--transparentOverlay {
  background: transparent;
}

.PlayableCover847694237__title {
  color: #fff;
  font-family: proxima-n-w01-reg, sans-serif;
  font-size: 40px;
  line-height: 1.4em;
  margin: 0 0 15px;
  padding: 0 10%;
  text-align: center;
}

.PlayableCover847694237__poster {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.PlayableCover847694237__playButton {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 50px;
  padding: 0;
  transition: opacity 0.2s ease;
  width: 50px;
}

.snt4Te {
  direction: var(--direction);
  text-align: var(--align);
}

.snt4Te .rEindN {
  -webkit-appearance: none;
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 255, 255, 255), var(--alpha-bg, 1))
  );
  border-color: var(
    --corvid-border-color,
    rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
  );
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 1px));
  box-shadow: var(--shd, 0 0 0 transparent);
  box-sizing: border-box !important;
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  direction: var(--inputDirection);
  display: block;
  font: var(--fnt, var(--font_8));
  height: var(--inputHeight);
  margin: 0;
  max-width: 100%;
  min-width: 100%;
  overflow-y: auto;
  padding-bottom: 3px;
  padding-inline-end: var(--textPaddingEnd);
  padding-top: var(--textPaddingTop);
  padding-inline-start: var(--textPaddingStart);
  padding-top: 0.75em;
  resize: none;
  text-align: var(--inputAlign, "inherit");
}

.snt4Te .rEindN::-moz-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.snt4Te .rEindN:-ms-input-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.snt4Te .rEindN::placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.snt4Te .rEindN:hover {
  background-color: rgba(var(--bgh, 255, 255, 255), var(--alpha-bgh, 1));
  border-color: rgba(var(--brdh, 163, 217, 246), var(--alpha-brdh, 1));
  border-style: solid;
  border-width: var(--brwh, 1px);
}

.snt4Te .rEindN:disabled {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 163, 217, 246), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--brwd, 1px);
  color: rgb(var(--txtd, 255, 255, 255));
}

.snt4Te:not(.pOExcs) .rEindN:focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.snt4Te.pOExcs .rEindN:invalid {
  background-color: rgba(var(--bge, 255, 255, 255), var(--alpha-bge, 1));
  border-color: rgba(var(--brde, 163, 217, 246), var(--alpha-brde, 1));
  border-style: solid;
  border-width: var(--brwe, 1px);
}

.snt4Te.pOExcs .rEindN:not(:invalid):focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.snt4Te .PSkPrR {
  display: none;
}

.snt4Te.oKe0Po .PSkPrR {
  box-sizing: border-box;
  color: rgb(var(--txtlbl, var(--color_15, color_15)));
  direction: var(--labelDirection);
  display: inline-block;
  font: var(--fntlbl, var(--font_8));
  line-height: 1;
  margin-bottom: var(--labelMarginBottom, 14px);
  padding-inline-end: var(--labelPadding_end, 0);
  padding-inline-start: var(--labelPadding_start, 0);
  text-align: var(--labelAlign, inherit);
  width: 100%;
  word-break: break-word;
}

.snt4Te.oKe0Po.NyPO4H .PSkPrR:after {
  color: rgba(var(--txtlblrq, 0, 0, 0), var(--alpha-txtlblrq, 0));
  content: " *";
  display: var(--requiredIndicationDisplay, none);
}

.lk9PkF {
  --display: flex;
  direction: var(--direction);
  display: var(--display);
  flex-direction: column;
  text-align: var(--align);
}

.lk9PkF.q2xQkn {
  height: inherit;
  min-height: inherit;
}

.lk9PkF .rEindN {
  -webkit-appearance: none;
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 255, 255, 255), var(--alpha-bg, 1))
  );
  border-color: var(
    --corvid-border-color,
    rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
  );
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 1px));
  box-shadow: var(--shd, 0 0 0 transparent);
  box-sizing: border-box !important;
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  direction: var(--inputDirection);
  flex: 1;
  font: var(--fnt, var(--font_8));
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding-bottom: 3px;
  padding-inline-end: var(--textPaddingEnd);
  padding-top: var(--textPaddingTop);
  padding-inline-start: var(--textPaddingStart);
  resize: none;
  text-align: var(--inputAlign, "inherit");
  width: 100%;
}

.lk9PkF .rEindN::-moz-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.lk9PkF .rEindN:-ms-input-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.lk9PkF .rEindN::placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}

.lk9PkF .rEindN:hover {
  background-color: rgba(var(--bgh, 255, 255, 255), var(--alpha-bgh, 1));
  border-color: rgba(var(--brdh, 163, 217, 246), var(--alpha-brdh, 1));
  border-style: solid;
  border-width: var(--brwh, 1px);
}

.lk9PkF .rEindN:disabled {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 163, 217, 246), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--brwd, 1px);
  color: rgb(var(--txtd, 255, 255, 255));
}

.lk9PkF:not(.pOExcs) .rEindN:focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.lk9PkF.pOExcs .rEindN:invalid {
  background-color: rgba(var(--bge, 255, 255, 255), var(--alpha-bge, 1));
  border-color: rgba(var(--brde, 163, 217, 246), var(--alpha-brde, 1));
  border-style: solid;
  border-width: var(--brwe, 1px);
}

.lk9PkF.pOExcs .rEindN:not(:invalid):focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}

.lk9PkF .PSkPrR {
  display: none;
}

.lk9PkF.oKe0Po .PSkPrR {
  box-sizing: border-box;
  color: rgb(var(--txtlbl, var(--color_15, color_15)));
  direction: var(--labelDirection);
  display: inline-block;
  font: var(--fntlbl, var(--font_8));
  line-height: 1;
  margin-bottom: var(--labelMarginBottom, 14px);
  padding-inline-end: var(--labelPadding_end, 0);
  padding-inline-start: var(--labelPadding_start, 0);
  text-align: var(--labelAlign, inherit);
  width: 100%;
  word-break: break-word;
}

.lk9PkF.oKe0Po.NyPO4H .PSkPrR:after {
  color: rgba(var(--txtlblrq, 0, 0, 0), var(--alpha-txtlblrq, 0));
  content: " *";
  display: var(--requiredIndicationDisplay, none);
}

.TLWrjM {
  align-items: center;
  color: rgb(var(--errorTextColor, #ff4040));
  direction: var(--errorDirection);
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: var(--errorAlign, inherit);
  padding: 8px 0 0;
}

.TLWrjM .GIPQqH {
  flex: none;
  flex-grow: 0;
  order: 0;
}

.TLWrjM .JNgJbf {
  display: inline-block;
  flex-grow: 0;
  font: var(--errorTextFont, var(--font_8));
  line-height: 1;
  order: 1;
  word-break: break-word;
}

.OJNx9x {
  --force-state-metadata: disabled;
}

.wSrZTo {
  --display: flex;
  align-items: center;
  direction: var(--direction);
  display: var(--display);
}

.wSrZTo .LPwNQx {
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, var(--color_11, color_11)), 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));
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  box-sizing: border-box;
  display: block;
  height: 100%;
  height: var(--checkboxSize);
  min-width: var(--checkboxSize);
  pointer-events: none;
  position: relative;
}

.wSrZTo .WY4uqX {
  display: none;
}

.wSrZTo .WY4uqX svg {
  fill: rgba(var(--bgc, var(--color_1, color_1)), var(--alpha-bgc, 1));
  left: 50%;
  overflow: visible;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}

.wSrZTo .cCdhN7 {
  cursor: pointer;
  margin: 0;
  opacity: 0;
  position: absolute;
}

.wSrZTo .cCdhN7:checked ~ .WY4uqX {
  cursor: pointer;
  display: block;
  height: var(--checkboxSize);
  margin-inline-start: var(--checkmarkMargin_start);
  min-width: var(--checkboxSize);
  pointer-events: none;
  position: relative;
}

.wSrZTo .cCdhN7:focus + .LPwNQx {
  background-color: rgba(
    var(--bgf, var(--color_11, color_11)),
    var(--alpha-bgf, 1)
  );
  border: solid var(--brwf, 0)
    rgba(var(--brdf, var(--color_15, color_15)), var(--alpha-brdf, 1));
}

.wSrZTo .cCdhN7:focus + .LPwNQx + .WY4uqX svg {
  fill: rgba(var(--bgc, var(--color_1, color_1)), var(--alpha-bgc, 1));
}

.wSrZTo:hover:not(.OJNx9x) .cCdhN7 + .LPwNQx {
  background-color: rgba(
    var(--bgh, var(--color_11, color_11)),
    var(--alpha-bgh, 1)
  );
  border: solid var(--brwh, 0)
    rgba(var(--brdh, var(--color_15, color_15)), var(--alpha-brdh, 1));
}

.wSrZTo:hover:not(.OJNx9x) .cCdhN7 + .LPwNQx + .WY4uqX svg {
  fill: rgba(var(--bgch, var(--color_1, color_1)), var(--alpha-bgch, 1));
}

.wSrZTo._Xi14a .cCdhN7:invalid ~ .LPwNQx {
  background-color: rgba(
    var(--bge, var(--color_11, color_11)),
    var(--alpha-bge, 1)
  );
  border: solid
    rgba(var(--brde, var(--color_15, color_15)), var(--alpha-brde, 1))
    var(--brwe, 0);
}

.wSrZTo.OJNx9x .cCdhN7 {
  cursor: auto;
}

.wSrZTo.OJNx9x .LPwNQx {
  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-width: var(--brwd, 0);
}

.wSrZTo.OJNx9x .WY4uqX svg {
  fill: rgba(var(--bgcd, var(--color_1, color_1)), var(--alpha-bgcd, 1));
}

.wSrZTo .EBYClk {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  display: inline-block;
  flex: 1;
  font: var(--fnt, var(--font_8));
  line-height: 1;
  margin-inline-start: var(--labelMargin_start);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  word-break: break-word;
}

.wSrZTo .aoYkzT {
  text-decoration: underline;
}

.wSrZTo .eW1tpy {
  cursor: pointer;
}

.wSrZTo .H38Q8v {
  color: rgb(var(--txt, var(--color_15, color_15)));
  display: inline;
}

.wSrZTo .H38Q8v:before {
  content: " ";
}

.wSrZTo .H38Q8v a {
  cursor: pointer;
}

.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;
}

.J6KGih {
  cursor: pointer;
}

.jbrj02 {
  --container-corvid-background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
}

.IvR70V {
  background-color: var(
    --container-corvid-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;
}

.TWFxr5 {
  height: auto !important;
}

.May50y {
  overflow: hidden !important;
}

.comp-kpnnd4hc {
  --wix-color-1: 0, 6, 15;
  --wix-color-2: 36, 40, 52;
  --wix-color-3: 199, 199, 199;
  --wix-color-4: 232, 230, 230;
  --wix-color-5: 255, 255, 255;
  --wix-color-6: 17, 34, 85;
  --wix-color-7: 35, 69, 169;
  --wix-color-8: 58, 106, 253;
  --wix-color-9: 153, 179, 254;
  --wix-color-10: 187, 204, 255;
  --wix-color-11: 72, 24, 13;
  --wix-color-12: 144, 47, 26;
  --wix-color-13: 216, 71, 39;
  --wix-color-14: 229, 152, 135;
  --wix-color-15: 242, 188, 176;
  --wix-color-16: 43, 7, 77;
  --wix-color-17: 85, 14, 155;
  --wix-color-18: 128, 21, 232;
  --wix-color-19: 186, 131, 240;
  --wix-color-20: 210, 172, 247;
  --wix-color-21: 21, 41, 27;
  --wix-color-22: 43, 83, 54;
  --wix-color-23: 64, 124, 81;
  --wix-color-24: 127, 168, 139;
  --wix-color-25: 177, 211, 187;
  --wix-font-Title: normal normal normal 80px/1.4em montserrat, sans-serif;
  --wix-font-Title-style: normal;
  --wix-font-Title-variant: normal;
  --wix-font-Title-weight: normal;
  --wix-font-Title-size: 80px;
  --wix-font-Title-line-height: 1.4em;
  --wix-font-Title-family: montserrat, sans-serif;
  --wix-font-Title-text-decoration: none;
  --wix-font-Menu:
    normal normal normal 16px/1.4em din-next-w01-light, din-next-w02-light,
    din-next-w10-light, sans-serif;
  --wix-font-Menu-style: normal;
  --wix-font-Menu-variant: normal;
  --wix-font-Menu-weight: normal;
  --wix-font-Menu-size: 16px;
  --wix-font-Menu-line-height: 1.4em;
  --wix-font-Menu-family:
    din-next-w01-light, din-next-w02-light, din-next-w10-light, sans-serif;
  --wix-font-Menu-text-decoration: none;
  --wix-font-Page-title: normal normal normal 40px/1.4em montserrat, 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: 40px;
  --wix-font-Page-title-line-height: 1.4em;
  --wix-font-Page-title-family: montserrat, sans-serif;
  --wix-font-Page-title-text-decoration: none;
  --wix-font-Heading-XL: normal normal normal 26px/1.4em montserrat, 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: 26px;
  --wix-font-Heading-XL-line-height: 1.4em;
  --wix-font-Heading-XL-family: montserrat, sans-serif;
  --wix-font-Heading-XL-text-decoration: none;
  --wix-font-Heading-L:
    normal normal normal 24px/1.4em "jockey one", 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: 24px;
  --wix-font-Heading-L-line-height: 1.4em;
  --wix-font-Heading-L-family: "jockey one", sans-serif;
  --wix-font-Heading-L-text-decoration: none;
  --wix-font-Heading-M: normal normal normal 18px/1.4em montserrat, 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: 18px;
  --wix-font-Heading-M-line-height: 1.4em;
  --wix-font-Heading-M-family: montserrat, sans-serif;
  --wix-font-Heading-M-text-decoration: none;
  --wix-font-Heading-S: normal normal bold 14px/1.4em montserrat, sans-serif;
  --wix-font-Heading-S-style: normal;
  --wix-font-Heading-S-variant: normal;
  --wix-font-Heading-S-weight: bold;
  --wix-font-Heading-S-size: 14px;
  --wix-font-Heading-S-line-height: 1.4em;
  --wix-font-Heading-S-family: montserrat, sans-serif;
  --wix-font-Heading-S-text-decoration: none;
  --wix-font-Body-L:
    normal normal normal 24px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    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: 24px;
  --wix-font-Body-L-line-height: 1.4em;
  --wix-font-Body-L-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --wix-font-Body-L-text-decoration: none;
  --wix-font-Body-M:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    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.4em;
  --wix-font-Body-M-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --wix-font-Body-M-text-decoration: none;
  --wix-font-Body-S:
    normal normal normal 16px/2em proxima-n-w01-reg, proxima-n-w05-reg,
    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: 16px;
  --wix-font-Body-S-line-height: 2em;
  --wix-font-Body-S-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --wix-font-Body-S-text-decoration: none;
  --wix-font-Body-XS:
    normal normal normal 12px/1.4em din-next-w01-light, din-next-w02-light,
    din-next-w10-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: 12px;
  --wix-font-Body-XS-line-height: 1.4em;
  --wix-font-Body-XS-family:
    din-next-w01-light, din-next-w02-light, din-next-w10-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;
  --wix-direction: ltr;
  --newItemsDetails: 1;
  --gridStyle: 1;
  --gallerySize: 48;
  --te-padding-slider: 50;
  --newItemsLocation: 0;
  --scrollDirection: 0;
  --collageDensity: 80;
  --loveCounter: 1;
  --galleryLayout: 4;
  --numberOfImagesPerRow: 3;
  --galleryVerticalAlign: 2;
  --galleryHorizontalAlign: 0;
  --designedPresetId: -1;
  --gallerySliderImageRatio: 1;
  --imageRatioType: 1;
  --numberOfDisplayedItems: 4;
  --imageMargin: 30;
  --itemClick: 2;
  --arrowsPosition: 1;
  --arrowsSize: 20;
  --itemBorderRadius: 10;
  --imageHoverAnimation: 0;
  --scrollAnimation: 3;
  --slideshowLoop: 1;
  --titlePlacement: 0;
  --overlayGradientDegrees: 180;
  --overlayAnimation: 1;
  --imageInfoType: 0;
  --itemBorderWidth: 0;
  --textBoxBorderWidth: 0;
  --textBoxBorderRadius: 6;
  --hoveringBehaviour: 0;
  --m_designedPresetId: -1;
  --m_numberOfDisplayedItems: 2;
  --m_galleryLayout: 4;
  --m_galleryImageRatio: 1;
  --m_numberOfImagesPerRow: 2;
  --m_imageRatioType: 1;
  --m_imageResize: 0;
  --m_arrowsPosition: 0;
  --m_galleryHorizontalAlign: 1;
  --arrowsVerticalPosition: 0;
  --m_isAutoSlideshow: 1;
  --m_autoSlideshowType: 1;
  --m_imageMargin: 15;
  --m_autoSlideshowInterval: 2;
  --textFont:
    normal normal normal 20px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemIconColor: 255, 255, 255;
  --itemIconColor-rgb: 255, 255, 255;
  --itemIconColor-opacity: 1;
  --titleColorExpand: 255, 255, 255;
  --titleColorExpand-rgb: 255, 255, 255;
  --titleColorExpand-opacity: 1;
  --loadMoreButtonFontColor: 255, 255, 255;
  --loadMoreButtonFontColor-rgb: 255, 255, 255;
  --loadMoreButtonFontColor-opacity: 1;
  --itemDescriptionFontColor: 255, 255, 255;
  --itemDescriptionFontColor-rgb: 255, 255, 255;
  --itemDescriptionFontColor-opacity: 1;
  --itemOpacity: 36, 40, 52, 0;
  --itemOpacity-rgb: 36, 40, 52;
  --itemOpacity-opacity: 0;
  --loadMoreButtonColor: 0, 6, 15;
  --loadMoreButtonColor-rgb: 0, 6, 15;
  --loadMoreButtonColor-opacity: 1;
  --loadMoreButtonBorderColor: 255, 255, 255;
  --loadMoreButtonBorderColor-rgb: 255, 255, 255;
  --loadMoreButtonBorderColor-opacity: 1;
  --itemFontColorSlideshow: 199, 199, 199;
  --itemFontColorSlideshow-rgb: 199, 199, 199;
  --itemFontColorSlideshow-opacity: 1;
  --itemFontColor: 255, 255, 255;
  --itemFontColor-rgb: 255, 255, 255;
  --itemFontColor-opacity: 1;
  --itemIconColorSlideshow: 255, 255, 255;
  --itemIconColorSlideshow-rgb: 255, 255, 255;
  --itemIconColorSlideshow-opacity: 1;
  --foreColor: 36, 40, 52;
  --foreColor-rgb: 36, 40, 52;
  --foreColor-opacity: 1;
  --bgColorExpand: 0, 6, 15;
  --bgColorExpand-rgb: 0, 6, 15;
  --bgColorExpand-opacity: 1;
  --descriptionColorExpand: 255, 255, 255;
  --descriptionColorExpand-rgb: 255, 255, 255;
  --descriptionColorExpand-opacity: 1;
  --actionsColorExpand: 255, 255, 255;
  --actionsColorExpand-rgb: 255, 255, 255;
  --actionsColorExpand-opacity: 1;
  --backColor: 36, 40, 52;
  --backColor-rgb: 36, 40, 52;
  --backColor-opacity: 1;
  --itemDescriptionFontColorSlideshow: 199, 199, 199;
  --itemDescriptionFontColorSlideshow-rgb: 199, 199, 199;
  --itemDescriptionFontColorSlideshow-opacity: 1;
  --te-background-color-picker: 35, 69, 169;
  --te-background-color-picker-rgb: 35, 69, 169;
  --te-background-color-picker-opacity: 1;
  --overlayGradientColor1: 58, 106, 253, 0;
  --overlayGradientColor1-rgb: 58, 106, 253;
  --overlayGradientColor1-opacity: 0;
  --overlayGradientColor2: 58, 106, 253, 0.5;
  --overlayGradientColor2-rgb: 58, 106, 253;
  --overlayGradientColor2-opacity: 0.5;
  --arrowsColor: 255, 255, 255;
  --arrowsColor-rgb: 255, 255, 255;
  --arrowsColor-opacity: 1;
  --textBoxFillColor: 36, 40, 52;
  --textBoxFillColor-rgb: 36, 40, 52;
  --textBoxFillColor-opacity: 1;
  --customButtonFontColorForHover: 255, 255, 255;
  --customButtonFontColorForHover-rgb: 255, 255, 255;
  --customButtonFontColorForHover-opacity: 1;
  --externalCustomButtonColor: 58, 106, 253, 0;
  --externalCustomButtonColor-rgb: 58, 106, 253;
  --externalCustomButtonColor-opacity: 0;
  --externalCustomButtonBorderColor: 255, 255, 255;
  --externalCustomButtonBorderColor-rgb: 255, 255, 255;
  --externalCustomButtonBorderColor-opacity: 1;
  --customButtonFontColor: 0, 6, 15;
  --customButtonFontColor-rgb: 0, 6, 15;
  --customButtonFontColor-opacity: 1;
  --customButtonColor: 0, 6, 15, 0;
  --customButtonColor-rgb: 0, 6, 15;
  --customButtonColor-opacity: 0;
  --customButtonBorderColor: 0, 6, 15;
  --customButtonBorderColor-rgb: 0, 6, 15;
  --customButtonBorderColor-opacity: 1;
  --itemBorderColor: 255, 255, 255;
  --itemBorderColor-rgb: 255, 255, 255;
  --itemBorderColor-opacity: 1;
  --textBoxBorderColor: 255, 255, 255;
  --textBoxBorderColor-rgb: 255, 255, 255;
  --textBoxBorderColor-opacity: 1;
  --itemShadowOpacityAndColor: 255, 255, 255, 0.2;
  --itemShadowOpacityAndColor-rgb: 255, 255, 255;
  --itemShadowOpacityAndColor-opacity: 0.2;
  --imageLoadingColor: 199, 199, 199;
  --imageLoadingColor-rgb: 199, 199, 199;
  --imageLoadingColor-opacity: 1;
  --oneColorAnimationColor: 0, 6, 15;
  --oneColorAnimationColor-rgb: 0, 6, 15;
  --oneColorAnimationColor-opacity: 1;
  --m_overlayGradientColor1: 255, 255, 255, 0;
  --m_overlayGradientColor1-rgb: 255, 255, 255;
  --m_overlayGradientColor1-opacity: 0;
  --m_overlayGradientColor2: 58, 106, 253, 0.5;
  --m_overlayGradientColor2-rgb: 58, 106, 253;
  --m_overlayGradientColor2-opacity: 0.5;
  --m_itemOpacity: 36, 40, 52, 0;
  --m_itemOpacity-rgb: 36, 40, 52;
  --m_itemOpacity-opacity: 0;
  --m_itemIconColorSlideshow: 255, 255, 255;
  --m_itemIconColorSlideshow-rgb: 255, 255, 255;
  --m_itemIconColorSlideshow-opacity: 1;
  --m_itemIconColor: 255, 255, 255;
  --m_itemIconColor-rgb: 255, 255, 255;
  --m_itemIconColor-opacity: 1;
  --m_arrowsColor: 255, 255, 255;
  --m_arrowsColor-rgb: 255, 255, 255;
  --m_arrowsColor-opacity: 1;
  --m_itemFontColor: 255, 255, 255;
  --m_itemFontColor-rgb: 255, 255, 255;
  --m_itemFontColor-opacity: 1;
  --m_itemFontColorSlideshow: 199, 199, 199;
  --m_itemFontColorSlideshow-rgb: 199, 199, 199;
  --m_itemFontColorSlideshow-opacity: 1;
  --m_itemDescriptionFontColor: 255, 255, 255;
  --m_itemDescriptionFontColor-rgb: 255, 255, 255;
  --m_itemDescriptionFontColor-opacity: 1;
  --m_itemDescriptionFontColorSlideshow: 199, 199, 199;
  --m_itemDescriptionFontColorSlideshow-rgb: 199, 199, 199;
  --m_itemDescriptionFontColorSlideshow-opacity: 1;
  --m_customButtonFontColorForHover: 255, 255, 255;
  --m_customButtonFontColorForHover-rgb: 255, 255, 255;
  --m_customButtonFontColorForHover-opacity: 1;
  --m_externalCustomButtonColor: 58, 106, 253, 0;
  --m_externalCustomButtonColor-rgb: 58, 106, 253;
  --m_externalCustomButtonColor-opacity: 0;
  --m_externalCustomButtonBorderColor: 255, 255, 255;
  --m_externalCustomButtonBorderColor-rgb: 255, 255, 255;
  --m_externalCustomButtonBorderColor-opacity: 1;
  --m_customButtonFontColor: 0, 6, 15;
  --m_customButtonFontColor-rgb: 0, 6, 15;
  --m_customButtonFontColor-opacity: 1;
  --m_customButtonColor: 0, 6, 15, 0;
  --m_customButtonColor-rgb: 0, 6, 15;
  --m_customButtonColor-opacity: 0;
  --m_customButtonBorderColor: 0, 6, 15;
  --m_customButtonBorderColor-rgb: 0, 6, 15;
  --m_customButtonBorderColor-opacity: 1;
  --m_loadMoreButtonFontColor: 255, 255, 255;
  --m_loadMoreButtonFontColor-rgb: 255, 255, 255;
  --m_loadMoreButtonFontColor-opacity: 1;
  --m_loadMoreButtonColor: 0, 6, 15;
  --m_loadMoreButtonColor-rgb: 0, 6, 15;
  --m_loadMoreButtonColor-opacity: 1;
  --m_loadMoreButtonBorderColor: 255, 255, 255;
  --m_loadMoreButtonBorderColor-rgb: 255, 255, 255;
  --m_loadMoreButtonBorderColor-opacity: 1;
  --m_itemBorderColor: 255, 255, 255;
  --m_itemBorderColor-rgb: 255, 255, 255;
  --m_itemBorderColor-opacity: 1;
  --m_itemShadowOpacityAndColor: 255, 255, 255, 0.2;
  --m_itemShadowOpacityAndColor-rgb: 255, 255, 255;
  --m_itemShadowOpacityAndColor-opacity: 0.2;
  --m_oneColorAnimationColor: 0, 6, 15;
  --m_oneColorAnimationColor-rgb: 0, 6, 15;
  --m_oneColorAnimationColor-opacity: 1;
  --backgroundColor: 199, 199, 199;
  --backgroundColor-rgb: 199, 199, 199;
  --backgroundColor-opacity: 1;
  --textColor: 255, 255, 255;
  --textColor-rgb: 255, 255, 255;
  --textColor-opacity: 1;
  --text-editor-font:
    normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544,
    avenir-lt-w05_85-heavy, sans-serif;
  --text-editor-font-style: normal;
  --text-editor-font-variant: normal;
  --text-editor-font-weight: normal;
  --text-editor-font-size: 40px;
  --text-editor-font-line-height: 50px;
  --text-editor-font-family:
    avenir-lt-w01_85-heavy1475544, avenir-lt-w05_85-heavy, sans-serif;
  --text-editor-font-text-decoration: none;
  --itemDescriptionFont:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFont-style: normal;
  --itemDescriptionFont-variant: normal;
  --itemDescriptionFont-weight: normal;
  --itemDescriptionFont-size: 18px;
  --itemDescriptionFont-line-height: 1.4em;
  --itemDescriptionFont-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --itemDescriptionFont-text-decoration: none;
  --text-editor-font-1499774301866:
    normal normal normal 40px/50px avenir-lt-w01_35-light1475496,
    avenir-lt-w05_35-light, sans-serif;
  --text-editor-font-1499774301866-style: normal;
  --text-editor-font-1499774301866-variant: normal;
  --text-editor-font-1499774301866-weight: normal;
  --text-editor-font-1499774301866-size: 40px;
  --text-editor-font-1499774301866-line-height: 50px;
  --text-editor-font-1499774301866-family:
    avenir-lt-w01_35-light1475496, avenir-lt-w05_35-light, sans-serif;
  --text-editor-font-1499774301866-text-decoration: none;
  --loadMoreButtonFont:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --loadMoreButtonFont-style: normal;
  --loadMoreButtonFont-variant: normal;
  --loadMoreButtonFont-weight: normal;
  --loadMoreButtonFont-size: 18px;
  --loadMoreButtonFont-line-height: 1.4em;
  --loadMoreButtonFont-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --loadMoreButtonFont-text-decoration: none;
  --itemFontSlideshow: normal normal bold 14px/1.4em montserrat, sans-serif;
  --itemFontSlideshow-style: normal;
  --itemFontSlideshow-variant: normal;
  --itemFontSlideshow-weight: bold;
  --itemFontSlideshow-size: 14px;
  --itemFontSlideshow-line-height: 1.4em;
  --itemFontSlideshow-family: montserrat, sans-serif;
  --itemFontSlideshow-text-decoration: none;
  --titleFontExpand: normal normal normal 40px/1.4em montserrat, sans-serif;
  --titleFontExpand-style: normal;
  --titleFontExpand-variant: normal;
  --titleFontExpand-weight: normal;
  --titleFontExpand-size: 40px;
  --titleFontExpand-line-height: 1.4em;
  --titleFontExpand-family: montserrat, sans-serif;
  --titleFontExpand-text-decoration: none;
  --itemDescriptionFontSlideshow:
    normal normal normal 16px/2em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFontSlideshow-style: normal;
  --itemDescriptionFontSlideshow-variant: normal;
  --itemDescriptionFontSlideshow-weight: normal;
  --itemDescriptionFontSlideshow-size: 16px;
  --itemDescriptionFontSlideshow-line-height: 2em;
  --itemDescriptionFontSlideshow-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --itemDescriptionFontSlideshow-text-decoration: none;
  --descriptionFontExpand:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --descriptionFontExpand-style: normal;
  --descriptionFontExpand-variant: normal;
  --descriptionFontExpand-weight: normal;
  --descriptionFontExpand-size: 18px;
  --descriptionFontExpand-line-height: 1.4em;
  --descriptionFontExpand-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --descriptionFontExpand-text-decoration: none;
  --itemFont: normal normal bold 14px/1.4em montserrat, sans-serif;
  --itemFont-style: normal;
  --itemFont-variant: normal;
  --itemFont-weight: bold;
  --itemFont-size: 14px;
  --itemFont-line-height: 1.4em;
  --itemFont-family: montserrat, sans-serif;
  --itemFont-text-decoration: none;
  --customButtonFontForHover:
    normal normal normal 15px/18px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --customButtonFontForHover-style: normal;
  --customButtonFontForHover-variant: normal;
  --customButtonFontForHover-weight: normal;
  --customButtonFontForHover-size: 15px;
  --customButtonFontForHover-line-height: 18px;
  --customButtonFontForHover-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --customButtonFontForHover-text-decoration: none;
  --customButtonFont:
    normal normal normal 15px/18px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --customButtonFont-style: normal;
  --customButtonFont-variant: normal;
  --customButtonFont-weight: normal;
  --customButtonFont-size: 15px;
  --customButtonFont-line-height: 18px;
  --customButtonFont-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --customButtonFont-text-decoration: none;
  --m_itemFont: normal normal bold 14px/17px montserrat, sans-serif;
  --m_itemFont-style: normal;
  --m_itemFont-variant: normal;
  --m_itemFont-weight: bold;
  --m_itemFont-size: 14px;
  --m_itemFont-line-height: 17px;
  --m_itemFont-family: montserrat, sans-serif;
  --m_itemFont-text-decoration: none;
  --m_itemFontSlideshow: normal normal bold 14px/17px montserrat, sans-serif;
  --m_itemFontSlideshow-style: normal;
  --m_itemFontSlideshow-variant: normal;
  --m_itemFontSlideshow-weight: bold;
  --m_itemFontSlideshow-size: 14px;
  --m_itemFontSlideshow-line-height: 17px;
  --m_itemFontSlideshow-family: montserrat, sans-serif;
  --m_itemFontSlideshow-text-decoration: none;
  --m_itemDescriptionFont:
    normal normal normal 18px/22px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --m_itemDescriptionFont-style: normal;
  --m_itemDescriptionFont-variant: normal;
  --m_itemDescriptionFont-weight: normal;
  --m_itemDescriptionFont-size: 18px;
  --m_itemDescriptionFont-line-height: 22px;
  --m_itemDescriptionFont-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --m_itemDescriptionFont-text-decoration: none;
  --m_itemDescriptionFontSlideshow:
    normal normal normal 16px/20px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --m_itemDescriptionFontSlideshow-style: normal;
  --m_itemDescriptionFontSlideshow-variant: normal;
  --m_itemDescriptionFontSlideshow-weight: normal;
  --m_itemDescriptionFontSlideshow-size: 16px;
  --m_itemDescriptionFontSlideshow-line-height: 20px;
  --m_itemDescriptionFontSlideshow-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --m_itemDescriptionFontSlideshow-text-decoration: none;
  --m_customButtonFontForHover:
    normal normal normal 15px/18px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --m_customButtonFontForHover-style: normal;
  --m_customButtonFontForHover-variant: normal;
  --m_customButtonFontForHover-weight: normal;
  --m_customButtonFontForHover-size: 15px;
  --m_customButtonFontForHover-line-height: 18px;
  --m_customButtonFontForHover-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --m_customButtonFontForHover-text-decoration: none;
  --m_customButtonFont:
    normal normal normal 15px/18px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --m_customButtonFont-style: normal;
  --m_customButtonFont-variant: normal;
  --m_customButtonFont-weight: normal;
  --m_customButtonFont-size: 15px;
  --m_customButtonFont-line-height: 18px;
  --m_customButtonFont-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --m_customButtonFont-text-decoration: none;
  --m_loadMoreButtonFont:
    normal normal normal 18px/22px proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --m_loadMoreButtonFont-style: normal;
  --m_loadMoreButtonFont-variant: normal;
  --m_loadMoreButtonFont-weight: normal;
  --m_loadMoreButtonFont-size: 18px;
  --m_loadMoreButtonFont-line-height: 22px;
  --m_loadMoreButtonFont-family:
    proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --m_loadMoreButtonFont-text-decoration: none;
  --textFont-style: normal;
  --textFont-variant: normal;
  --textFont-weight: normal;
  --textFont-size: 20px;
  --textFont-line-height: 1.4em;
  --textFont-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
  --textFont-text-decoration: none;
}

.s__7jUJOs.ohCmOJW--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);
}

.s__6z7zwt.orZOKrh--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);
}

.nav-arrows-container .custom-nav-arrows svg {
  width: 100%;
  height: 100%;
}

.pro-gallery-stop-scroll-for-fullscreen {
  overflow-y: hidden;
}

div.pro-gallery-parent-container .show-more-container i.show-more:hover {
  opacity: 1;
}

div.pro-gallery-parent-container .show-more-container button.show-more {
  border-style: solid;
}

div.pro-gallery-parent-container .show-more-container button.show-more:hover {
  opacity: 1;
}

div.pro-gallery-parent-container
  .show-more-container.pro-gallery-mobile-indicator
  i.show-more:hover {
  opacity: 1;
}

div.pro-gallery-parent-container
  .show-more-container.pro-gallery-mobile-indicator
  button.show-more {
  border-style: solid;
}

div.pro-gallery-parent-container
  .show-more-container.pro-gallery-mobile-indicator
  button.show-more:hover {
  opacity: 1;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i {
  background: none !important;
  font-size: 26px;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-triangle {
  z-index: 12;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-background {
  z-index: 11;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  i:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  button:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  a:hover,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  i:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  button:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  a:hover {
  opacity: 0.7;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  .gallery-item-title,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  .info-element-title {
  font-size: 22px;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .custom-button-wrapper
  button,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button {
  opacity: 1;
  background: rgba(0, 0, 0, 0);
  border-style: solid;
}

.pro-gallery.inline-styles
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover.default.force-hover:before,
.pro-gallery.inline-styles
  .gallery-item-container:not(.invert-hover):hover
  .gallery-item-hover.default:not(.hide-hover):before {
  opacity: 0.6;
}

.pro-gallery.inline-styles
  .gallery-item-container.invert-hover
  .gallery-item-hover.default.force-hover:before,
.pro-gallery.inline-styles
  .gallery-item-container.invert-hover:hover
  .gallery-item-hover.default:not(.hide-hover):before {
  opacity: 1;
}

.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .info-element-description {
  font-size: 15px;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i {
  font-size: 26px;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-triangle {
  z-index: 12;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-background {
  z-index: 11;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  i:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  button:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  a:hover,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  i:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  button:not(.pro-gallery-loved):not(.info-element-loved):hover,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  a:hover {
  opacity: 0.7;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .gallery-item-title,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .info-element-title {
  font-size: 22px;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .custom-button-wrapper
  button,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button {
  opacity: 1;
  background: rgba(0, 0, 0, 0);
  border-style: solid;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover)
  .gallery-item-hover.default.force-hover:before,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover
  .gallery-item-hover.default:not(.hide-hover):before {
  opacity: 0.6;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator.invert-hover
  .gallery-item-hover.default.force-hover:before,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover
  .gallery-item-hover.default:not(.hide-hover):before {
  opacity: 1;
}

.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .info-element-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .gallery-item-description,
.pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .info-element-description {
  font-size: 15px;
}

.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-description:after,
.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-description
  .fullscreen-side-bar-description-line:after,
.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-exif:after,
.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-link:after,
.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-bottom-link:after {
  opacity: 0.3;
}

.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-icon.fullscreen-cart-icon {
  background: inherit !important;
}

.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-icon.fullscreen-social-love-store.pro-gallery-loved {
  color: #e03939 !important;
}

.pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-icon.fullscreen-social-love.pro-gallery-loved {
  color: #e03939 !important;
}

.social-share-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200005;
}

.social-share-wrapper .mobile-social-share-screen {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0);
}

.social-share-wrapper
  .mobile-social-share-screen.mobile-social-share-screen-visible {
  z-index: 200005;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-background {
  height: calc(100% - 150px);
  touch-action: none;
}

.social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: -150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab.mobile-social-share-tab-visible {
  margin-bottom: 0px;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container
  .social-share-items-list {
  display: flex;
  justify-content: space-between;
  width: 220px;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container
  .social-share-items-list
  .social-share-icon {
  height: 16px;
  width: 16px;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container
  .social-share-copylink-container {
  height: 32px;
  margin-top: 20px;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container
  .social-share-copylink-container
  .social-share-copylink-input {
  width: 200px;
  font-size: 11px;
  padding: 2px 4px;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container
  .social-share-copylink-container
  .social-share-copylink-button {
  width: 40px;
}

.social-share-wrapper
  .mobile-social-share-screen
  .mobile-social-share-tab
  .social-share-items-container
  .social-share-copylink-container
  .social-share-copylink-button
  .social-share-copylink-icon {
  height: 16px;
  width: 16px;
}

.social-share-wrapper .desktop-social-share-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-share-wrapper
  .desktop-social-share-screen.desktop-social-share-screen-visible {
  z-index: 200005;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}

.social-share-wrapper
  .desktop-social-share-screen
  .desktop-social-share-background {
  position: fixed;
  height: 100%;
  width: 100%;
}

.social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup {
  position: relative;
  width: 580px;
  height: 250px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -100px;
  opacity: 0;
  transition: all 0.4s ease;
}

.social-share-wrapper
  .desktop-social-share-screen
  .desktop-social-share-popup.desktop-social-share-popup-visible {
  margin-bottom: 0px;
  opacity: 1;
}

.social-share-wrapper
  .desktop-social-share-screen
  .desktop-social-share-popup
  .desktop-social-share-popup-close-button {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

.social-share-wrapper
  .desktop-social-share-screen
  .desktop-social-share-popup
  .social-share-items-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.social-share-wrapper
  .desktop-social-share-screen
  .desktop-social-share-popup
  .social-share-items-container
  .social-share-items-list {
  display: flex;
  justify-content: space-between;
  width: 280px;
}

.social-share-wrapper
  .desktop-social-share-screen
  .desktop-social-share-popup
  .social-share-items-container
  .social-share-items-list
  .social-share-icon {
  height: 24px;
  width: 24px;
  transition: color 0.2s ease;
}

.social-share-wrapper .social-share-item {
  position: relative;
}

.social-share-wrapper .social-share-item .social-share-button {
  opacity: 1;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.social-share-wrapper .social-share-item .social-share-button:hover {
  opacity: 0.65;
}

.social-share-wrapper .social-share-item .social-share-button:active {
  opacity: 1;
}

.social-share-wrapper .social-share-copylink-container {
  display: flex;
  margin-top: 25px;
  height: 40px;
}

.social-share-wrapper
  .social-share-copylink-container
  .social-share-copylink-input {
  border: 1px solid #000;
  padding: 2px 8px;
  height: 100%;
  width: 260px;
}

.social-share-wrapper
  .social-share-copylink-container
  .social-share-copylink-button {
  width: 50px;
  height: 100%;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.social-share-wrapper
  .social-share-copylink-container
  .social-share-copylink-button:hover {
  background-color: rgba(0, 0, 0, 0.65);
}

.social-share-wrapper
  .social-share-copylink-container
  .social-share-copylink-button
  .social-share-copylink-icon {
  margin-top: 2px;
}

div.pro-gallery
  .gallery-item-container.main-color-on-hover:not(.hide-hover)
  .gallery-item-content
  .gallery-item {
  transition: opacity 0.4s ease !important;
}

div.pro-gallery
  .gallery-item-container.main-color-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-content
  .gallery-item,
div.pro-gallery
  .gallery-item-container.main-color-on-hover:not(.hide-hover):hover
  .gallery-item-content
  .gallery-item {
  opacity: 0;
}

div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover)
  .gallery-item-hover:not(.hide-hover),
div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover)
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover)
  .hover-info-element {
  transition: transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99) !important;
}

div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover
  .gallery-item-content {
  transform: scale(1.1);
}

div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-hover:not(.hide-hover),
div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover
  .gallery-item-hover:not(.hide-hover) {
  transform: scale(1.11);
}

div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-hover:not(.hide-hover)
  .hover-info-element,
div.pro-gallery
  .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover
  .gallery-item-hover:not(.hide-hover)
  .hover-info-element {
  transform: scale(0.9009);
}

div.pro-gallery
  .gallery-item-container.blur-on-hover:not(.hide-hover)
  .gallery-item-content {
  transition: filter 0.4s linear !important;
}

div.pro-gallery
  .gallery-item-container.blur-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-content
  .gallery-item,
div.pro-gallery
  .gallery-item-container.blur-on-hover:not(.hide-hover):hover
  .gallery-item-content
  .gallery-item {
  filter: blur(6px);
}

div.pro-gallery
  .gallery-item-container.grayscale-on-hover:not(.hide-hover)
  .gallery-item-content {
  transition: filter 0.6s ease !important;
}

div.pro-gallery
  .gallery-item-container.grayscale-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.grayscale-on-hover:not(.hide-hover):hover
  .gallery-item-content {
  filter: grayscale(1);
}

div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) {
  transition: background-color 0.4s ease !important;
}

div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover)
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover)
  .gallery-item-hover:not(.hide-hover) {
  transition: transform 0.4s ease !important;
}

div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover,
div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover {
  background-color: rgba(0, 0, 0, 0) !important;
}

div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover):hover
  .gallery-item-content {
  transform: scale(0.985);
}

div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-hover:not(.hide-hover),
div.pro-gallery
  .gallery-item-container.shrink-on-hover:not(.hide-hover):hover
  .gallery-item-hover:not(.hide-hover) {
  transform: scale(0.985);
}

div.pro-gallery
  .gallery-item-container.invert-on-hover:not(.hide-hover)
  .gallery-item-content {
  transition: filter 0.6s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-on-hover:not(.hide-hover).simulate-hover
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.invert-on-hover:not(.hide-hover):hover
  .gallery-item-content {
  filter: invert(1);
}

div.pro-gallery
  .gallery-item-container.color-in-on-hover
  .gallery-item-content {
  filter: grayscale(1);
  transition: filter 0.6s ease !important;
}

div.pro-gallery
  .gallery-item-container.color-in-on-hover.simulate-hover:not(.hide-hover)
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.color-in-on-hover:hover:not(.hide-hover)
  .gallery-item-content {
  filter: grayscale(0);
}

div.pro-gallery
  .gallery-item-container.darkened-on-hover
  .gallery-item-content {
  filter: brightness(1);
  transition: filter 0.6s ease !important;
}

div.pro-gallery
  .gallery-item-container.darkened-on-hover.simulate-hover:not(.hide-hover)
  .gallery-item-content,
div.pro-gallery
  .gallery-item-container.darkened-on-hover:hover:not(.hide-hover)
  .gallery-item-content {
  filter: brightness(0.7);
}

div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover {
  transition: none;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover:before {
  opacity: 0;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover
  .gallery-item-hover-inner {
  opacity: 0;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover.force-hover,
div.pro-gallery
  .gallery-item-container:not(.invert-hover):hover
  .gallery-item-hover:not(.hide-hover) {
  transition: none;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover):hover
  .gallery-item-hover:not(.hide-hover):before {
  opacity: 1;
  background: rgba(8, 8, 8, 0.75);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover.force-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover.force-hover
  .info-member:not(.hidden),
div.pro-gallery
  .gallery-item-container:not(.invert-hover):hover
  .gallery-item-hover:not(.hide-hover)
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover):hover
  .gallery-item-hover:not(.hide-hover)
  .info-member:not(.hidden) {
  opacity: 1 !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-fade-in
  .gallery-item-hover {
  transition:
    filter 0.4s ease,
    opacity 0.4s ease !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-fade-in
  .gallery-item-hover:before {
  transition:
    filter 0.4s ease,
    opacity 0.4s ease !important;
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-fade-in
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-fade-in
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-fade-in
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-fade-in:hover
  .gallery-item-hover:not(.hide-hover):before {
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-expand
  .gallery-item-hover {
  transition:
    transform 0.4s ease,
    filter 0.2s ease,
    opacity 0.2s ease !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-expand
  .gallery-item-hover:before {
  transition:
    transform 0.4s ease,
    filter 0.2s ease,
    opacity 0.2s ease !important;
  transform: scale(0.9);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-expand
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-expand
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.2s ease;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-expand
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-expand:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: scale(1);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-up
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-up
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateY(100%);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-up
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-up
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-up
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-up:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateY(0);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-right
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-right
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateX(-100%);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-right
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-right
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-right
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-right:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateX(0);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-left
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-left
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateX(100%);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-left
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-left
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-left
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-left:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateX(0);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-down
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-down
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateY(-100%);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-down
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-down
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-down
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container:not(.invert-hover).hover-animation-slide-down:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateY(0);
  filter: opacity(1);
}

div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover {
  transition: none;
}

div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover:before {
  opacity: 1;
  background: rgba(8, 8, 8, 0.75);
}

div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover
  .gallery-item-hover-inner {
  opacity: 1;
}

div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover
  .info-member:not(.hidden) {
  opacity: 1 !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover.force-hover,
div.pro-gallery
  .gallery-item-container.invert-hover:hover
  .gallery-item-hover:not(.hide-hover) {
  transition: none;
}

div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover:hover
  .gallery-item-hover:not(.hide-hover):before {
  opacity: 0;
}

div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover.force-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover
  .gallery-item-hover.force-hover
  .info-member:not(.hidden),
div.pro-gallery
  .gallery-item-container.invert-hover:hover
  .gallery-item-hover:not(.hide-hover)
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover:hover
  .gallery-item-hover:not(.hide-hover)
  .info-member:not(.hidden) {
  opacity: 0 !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-fade-in
  .gallery-item-hover {
  transition:
    filter 0.4s ease,
    opacity 0.4s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-fade-in
  .gallery-item-hover:before {
  transition:
    filter 0.4s ease,
    opacity 0.4s ease !important;
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-fade-in
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-fade-in
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-fade-in
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-fade-in:hover
  .gallery-item-hover:not(.hide-hover):before {
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-expand
  .gallery-item-hover {
  transition:
    transform 0.4s ease,
    filter 0.2s ease,
    opacity 0.2s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-expand
  .gallery-item-hover:before {
  transition:
    transform 0.4s ease,
    filter 0.2s ease,
    opacity 0.2s ease !important;
  transform: scale(1);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-expand
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-expand
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.2s ease;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-expand
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-expand:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: scale(0.9);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-up
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-up
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateY(0);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-up
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-up
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-up
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-up:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateY(100%);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-right
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-right
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateX(0);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-right
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-right
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-right
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-right:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateX(-100%);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-left
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-left
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateX(100%);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-left
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-left
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-left
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-left:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateX(0);
  filter: opacity(0);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-down
  .gallery-item-hover {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-down
  .gallery-item-hover:before {
  transition:
    transform 0.4s cubic-bezier(0.3, 0.13, 0.12, 1),
    filter 0.5s ease,
    opacity 0.5s ease !important;
  transform: translateY(-100%);
  filter: opacity(1);
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-down
  .gallery-item-hover
  .gallery-item-hover-inner,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-down
  .gallery-item-hover
  .info-member:not(.hidden) {
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-down
  .gallery-item-hover.force-hover:before,
div.pro-gallery
  .gallery-item-container.invert-hover.hover-animation-slide-down:hover
  .gallery-item-hover:not(.hide-hover):before {
  transform: translateY(0);
  filter: opacity(0);
}

.animation-slide {
  transition:
    width 0.4s ease,
    height 0.4s ease,
    top 0.4s ease,
    left 0.4s ease;
}

.item-with-secondary-media-container .secondary-media-item.hide {
  opacity: 0;
}

.item-with-secondary-media-container .secondary-media-item.show {
  opacity: 1;
}

*[data-collapsed="true"] .pro-gallery-parent-container .gallery-item,
*[data-hidden="true"] .pro-gallery-parent-container .gallery-item {
  background-image: none !important;
}

html.pro-gallery {
  width: 100%;
  height: auto;
}

body.pro-gallery {
  transition: opacity 2s ease;
}

#gallery-loader {
  position: fixed;
  top: 50%;
}

.show-more-container {
  text-align: center;
  line-height: 138px;
}

.show-more-container i.show-more {
  color: #5d5d61;
  font-size: 40px;
  cursor: pointer;
  margin-top: -3px;
}

.show-more-container button.show-more {
  display: inline-block;
  padding: 11px 29px;
  border-radius: 0;
  border: 2px solid #5d5d61;
  font-family:
    "HelveticaNeueW01-45Ligh", "HelveticaNeueW02-45Ligh",
    "HelveticaNeueW10-45Ligh", sans-serif;
  font-size: 12px;
  color: #5d5d61;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.show-more-container button.show-more:hover {
  background: rgba(0, 0, 0, 0.1);
}

.more-items-loader {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: #3899ec;
}

.version-header {
  color: #e03939;
  text-align: left;
  font-family: "Consolas", monospace;
  font-size: 13px;
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}

.auto-slideshow-button {
  margin-top: 19px;
  padding: 5px;
  height: 28px;
  width: 20px;
  left: auto;
  z-index: 1;
  position: absolute;
  display: flex;
  text-align: center;
  cursor: pointer;
  opacity: 0.9;
}

.auto-slideshow-counter {
  margin-top: 24px;
  left: auto;
  z-index: 1;
  position: absolute;
  display: flex;
  text-align: center;
  opacity: 0.9;
  font-size: 15px;
  line-height: normal;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mouse-cursor {
  display: flex;
  width: 100%;
  position: absolute;
}

.nav-arrows-container {
  left: auto;
  position: absolute;
  display: flex;
  text-align: center;
  cursor: pointer;
  opacity: 0.9;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  justify-content: center;
}

.nav-arrows-container.follow-mouse-cursor {
  position: relative;
  cursor: none;
}

.nav-arrows-container:hover {
  opacity: 1;
}

.nav-arrows-container.drop-shadow svg {
  filter: drop-shadow(0px 1px 0.15px #b2b2b2);
}

.nav-arrows-container .slideshow-arrow {
  flex-shrink: 0;
}

.arrow-portal-container span {
  animation: fadeIn 0.1s ease-in-out;
  position: fixed;
  transition:
    top 50ms,
    left 50ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.gallery-slideshow div.pro-gallery,
div.gallery-slideshow .gallery-column {
  box-sizing: content-box !important;
}

div.gallery-slideshow .gallery-group,
div.gallery-slideshow .gallery-item-container,
div.gallery-slideshow .gallery-item-wrapper {
  overflow: visible !important;
}

div.gallery-slideshow.streched .gallery-slideshow-info {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

@media (max-width: 500px) {
  div.gallery-slideshow div.pro-gallery .gallery-slideshow-info {
    padding-left: 20px;
    padding-right: 20px;
  }
}

div.gallery-slideshow
  div.pro-gallery
  .gallery-item-container
  .gallery-slideshow-info {
  position: absolute;
  padding-top: 0px;
  bottom: -220px;
  height: 220px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  z-index: 15;
}

.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover {
  padding: 30px 60px;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover {
  padding: 30px 10px 50px;
}

.gallery-columns
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover {
  padding: 30px;
}

div.pro-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  position: relative;
}

div.pro-gallery .gallery-column {
  float: left;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

div.pro-gallery .gallery-column .gallery-left-padding {
  display: inline-block;
  height: 100%;
}

div.pro-gallery .gallery-column .gallery-top-padding {
  display: block;
  width: 100%;
}

div.pro-gallery .gallery-group {
  float: left;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-sizing: border-box;
  padding: 0;
  font-family:
    "HelveticaNeueW01-45Ligh", "HelveticaNeueW02-45Ligh",
    "HelveticaNeueW10-45Ligh", sans-serif;
  font-size: 11px;
}

div.pro-gallery .gallery-group.debug.gallery-group-gone {
  background: #cdcdd0;
}

div.pro-gallery .gallery-group.debug.gallery-group-visible {
  background: #c1f0c1;
}

div.pro-gallery .gallery-group.debug.gallery-group-hidden {
  background: #f99;
}

div.pro-gallery .gallery-item-container {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  border: none;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  outline: none;
  text-decoration: none;
  color: inherit;
  will-change: top, left, width, height;
  box-sizing: border-box;
  font-family:
    "HelveticaNeueW01-45Ligh", "HelveticaNeueW02-45Ligh",
    "HelveticaNeueW10-45Ligh", sans-serif;
  font-size: 11px;
  cursor: default;
  scroll-snap-align: center;
}

div.pro-gallery .gallery-item-container:hover .gallery-item-common-info {
  cursor: pointer;
}

div.pro-gallery .gallery-item-container:hover .gallery-item-common-info button {
  text-decoration: underline;
  cursor: pointer;
}

div.pro-gallery .gallery-item-container.visible {
  transform: translate3d(0, 0, 0);
}

div.pro-gallery .gallery-item-container.clickable {
  cursor: pointer;
}

div.pro-gallery .gallery-item-container .gallery-item-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .item-with-secondary-media-container
  .secondary-media-item {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .item-with-secondary-media-container
  .secondary-media-item
  .gallery-item {
  -o-object-fit: cover;
  object-fit: cover;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .item-with-secondary-media-container
  .secondary-media-item
  .text-item
  > div {
  width: 100% !important;
  height: 100% !important;
}

div.pro-gallery .gallery-item-container .gallery-item-wrapper.transparent,
div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit {
  background: rgba(0, 0, 0, 0);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-preload {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper.cube-type-fit
  .gallery-item {
  background: rgba(0, 0, 0, 0);
  -o-object-fit: contain;
  object-fit: contain;
}

div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item {
  box-sizing: border-box;
  /*! autoprefixer: ignore next */
  -webkit-font-smoothing: antialiased;
  white-space: initial;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  .te-pro-gallery-text-item {
  line-height: normal !important;
  letter-spacing: normal !important;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  > div {
  background: initial !important;
  box-sizing: border-box;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  p,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  span,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  div,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  h1,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  h2,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  h3,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  h4,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  h5,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  h6,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.text-item
  i {
  margin: 0;
  padding: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item
  .pro-circle-preloader {
  top: 50%;
  left: 50%;
  height: 30px;
  width: 15px;
  z-index: -1;
  opacity: 0.4;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item
  img.gallery--placeholder-item {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-loaded {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1 !important;
  animation: none !important;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-loaded.image-item:after {
  display: none !important;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-loaded
  ~ .pro-circle-preloader {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.error {
  opacity: 0 !important;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-preloaded {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-preloaded.grid-fit {
  background-size: contain;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video {
  overflow: hidden;
  text-align: center;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  iframe {
  left: 0;
  top: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video.playing
  button,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video.playing
  i {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video.playedOnce
  ~ .image-item {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  button,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i {
  display: inline-block;
  text-rendering: auto;
  /*! autoprefixer: ignore next */
  -webkit-font-smoothing: antialiased;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  height: 60px;
  text-align: center;
  margin: -30px 0 0 -30px;
  background: #080808;
  color: #fff;
  border-radius: 50px;
  opacity: 0.7;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  button.play-triangle,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.play-triangle {
  opacity: 1;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  button.play-triangle,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  button.play-background,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.play-triangle,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.play-background {
  font-size: 26px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  button:hover,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i:hover {
  opacity: 0.9;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  button:before,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i:before {
  font-size: 2.3em;
  opacity: 1;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-info {
  position: absolute;
  bottom: -220px;
  height: 220px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  z-index: 15;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-info
  > div {
  height: 100%;
  width: 100%;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover {
  white-space: initial;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  border-radius: 0;
  z-index: 15;
  overflow: hidden;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .gallery-item-hover-inner {
  height: 100%;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover.no-hover-bg:before {
  opacity: 0 !important;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  z-index: -1;
}

div.pro-gallery .gallery-item-container .gallery-item-common-info {
  box-sizing: border-box;
  cursor: pointer;
}

div.pro-gallery.one-row {
  white-space: nowrap;
  float: left;
}

div.pro-gallery.one-row .gallery-column {
  width: 100%;
  float: none;
  white-space: nowrap;
}

div.pro-gallery.one-row .gallery-column .gallery-group {
  display: inline-block;
  float: none;
}

div.pro-gallery.one-row.slider .gallery-column {
  overflow-x: scroll;
}

div.pro-gallery.one-row.slider .gallery-column.scroll-snap {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

div.pro-gallery.one-row .gallery-horizontal-scroll-inner {
  position: relative;
  will-change: transform;
}

div.pro-gallery.thumbnails-gallery {
  overflow: hidden;
  float: left;
}

div.pro-gallery.thumbnails-gallery .galleryColumn {
  position: relative;
  overflow: visible;
}

div.pro-gallery.thumbnails-gallery .thumbnailItem {
  position: absolute;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  overflow-y: inherit;
  border-radius: 0px;
  cursor: pointer;
}

div.pro-gallery.thumbnails-gallery .thumbnailItem.pro-gallery-highlight::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 500px) {
  div.pro-gallery.thumbnails-gallery {
    overflow: visible;
  }
}

div.pro-gallery *:focus {
  box-shadow: none;
}

div.pro-gallery.accessible i:focus,
div.pro-gallery.accessible
  button:not(.nav-arrows-container, .has-custom-focus):focus {
  box-shadow:
    0 0 0 1px #fff,
    0 0 1px 2px #3899ec;
}

div.pro-gallery.accessible .has-custom-focus:focus {
  box-shadow:
    inset 0 0 0 1px #fff,
    inset 0 0 1px 4px #3899ec;
}

div.pro-gallery.accessible .gallery-item-hover i:focus,
div.pro-gallery.accessible .gallery-item-hover button:focus {
  box-shadow: none;
}

div.pro-gallery.accessible .thumbnailItem.pro-gallery-highlight::after {
  box-shadow:
    inset 0 0 1px 2px #3899ec,
    inset 0 0 7px 0 #fff,
    0 0 10px -5px #3899ec;
}

div.pro-gallery.accessible .gallery-item-container:focus::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow:
    inset 0 0 1px 2px #3899ec,
    inset 0 0 7px 0 #fff,
    inset 0 0 10px -5px #3899ec;
  pointer-events: none;
  border-radius: inherit;
}

div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before {
  box-shadow:
    inset 0 0 1px 2px #3899ec,
    inset 0 0 7px 0 #fff,
    inset 0 0 10px -5px #3899ec;
}

div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow:
    inset 0 0 1px 2px #3899ec,
    inset 0 0 7px 0 #fff,
    0 0 10px -5px #3899ec;
  pointer-events: none;
  border-radius: inherit;
}

div.pro-gallery .hide-scrollbars {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}

div.pro-gallery .hide-scrollbars::-webkit-scrollbar,
div.pro-gallery .hide-scrollbars ::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

div.pro-gallery .rtl {
  direction: rtl;
}

div.pro-gallery .ltr {
  direction: ltr;
}

.sr-only.out-of-view-component {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: circle(0%);
  clip-path: circle(0%);
  border: 0;
}

.screen-logs {
  word-wrap: break-word;
  background: #fff;
  width: 280px;
  font-size: 10px;
}

.fade {
  display: block;
  transition: opacity 600ms ease;
}

.fade-visible {
  opacity: 1;
}

.fade-hidden {
  opacity: 0;
}

.deck-before {
  display: block;
  z-index: 1;
  transition: transform 600ms ease;
  transform: translateX(-100%);
}

.deck-before-rtl {
  display: block;
  z-index: 1;
  transition: transform 600ms ease;
  transform: translateX(100%);
}

.deck-current {
  display: block;
  z-index: 0;
  transition: transform 600ms ease;
  transform: translateX(0);
}

.deck-current .override {
  transition:
    transform 600ms ease,
    opacity 0.1s ease 200ms !important;
}

.deck-after {
  display: block;
  transition: opacity 0.2s ease 600ms;
  z-index: -1;
  opacity: 0;
}

.deck-after .override {
  transition: opacity 0.1s ease 0s !important;
}

.disabled-transition {
  transition: none !important;
}

@keyframes changing_background {
  0% {
    background-color: rgba(241, 241, 241, 0.2);
  }

  50% {
    background-color: rgba(241, 241, 241, 0.8);
  }

  100% {
    background-color: rgba(241, 241, 241, 0.2);
  }
}

.pro-gallery-parent-container.gallery-slideshow
  [data-hook="group-view"]::before {
  content: "";
  position: absolute;
  scroll-snap-align: center;
  top: var(--group-top);
  left: var(--group-left);
  width: var(--group-width);
  right: var(--group-right);
  height: 1px;
  pointer-events: none;
}

.pro-gallery-parent-container:not(.gallery-slideshow)
  [data-hook="group-view"]
  .item-link-wrapper::before {
  content: "";
  position: absolute;
  scroll-snap-align: center;
  top: var(--group-top);
  left: var(--group-left);
  width: var(--group-width);
  right: var(--group-right);
  height: 1px;
  pointer-events: none;
}

.gallery-item-container {
  scroll-snap-align: none !important;
}

.gallery-slideshow .gallery-item-container:not(.clickable) a {
  cursor: default;
}

.slideshow-info-element-inner {
  box-sizing: border-box;
  padding-top: 24px;
  height: 100%;
  width: 100%;
}

.slideshow-info-element-inner .info-element-text {
  flex-grow: 1;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.slideshow-info-element-inner .info-element-text > div {
  width: 100%;
}

.slideshow-info-element-inner .info-element-text .info-element-title {
  white-space: normal;
  font-family:
    "HelveticaNeueW01-Thin", "HelveticaNeueW02-Thin", "HelveticaNeueW10-35Thin",
    sans-serif;
  line-height: 32px;
  font-size: 21px;
  height: auto;
  color: #2b5672;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  transition: opacity 0.4s ease;
  text-overflow: ellipsis;
}

.slideshow-info-element-inner .info-element-text .info-element-description {
  font-family:
    "HelveticaNeueW01-Thin", "HelveticaNeueW02-Thin", "HelveticaNeueW10-35Thin",
    sans-serif;
  line-height: 25px;
  font-size: 15px;
  height: auto;
  color: #2b5672;
  overflow: hidden;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  transition: opacity 0.4s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slideshow-info-element-inner
  .info-element-text
  .info-element-description
  > span {
  white-space: normal;
}

.slideshow-info-element-inner .info-element-text .info-member.hide {
  display: none;
}

.slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper {
  display: flex;
  justify-content: center;
  color: #fff;
}

.slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 25px;
  height: 45px;
  min-width: 190px;
  padding: 0 15px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  outline: none;
  border-style: solid;
  text-decoration: none;
}

.slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button
  .overlay {
  display: none;
}

.slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button:hover {
  opacity: 1 !important;
}

.slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button:hover
  .overlay {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slideshow-info-element-inner .info-element-social {
  height: auto;
  position: static;
  display: flex;
  flex-direction: row;
  margin: 0;
  overflow: visible;
  z-index: 16;
  transition: opacity 0.4s ease;
}

.slideshow-info-element-inner .info-element-social.populated-item {
  margin-bottom: 24px;
}

.slideshow-info-element-inner
  .info-element-social:hover
  .info-element-social-share-box {
  width: 0 !important;
}

.slideshow-info-element-inner .info-element-social.info-align-center {
  justify-content: center;
}

.slideshow-info-element-inner
  .info-element-social.info-align-center
  .info-element-social-share {
  position: relative;
}

.slideshow-info-element-inner
  .info-element-social.info-align-center
  .info-element-social-share
  .info-element-social-share-box {
  position: absolute;
  left: -25px;
  padding-left: 25px !important;
  margin-right: 0 !important;
}

.slideshow-info-element-inner .info-element-social.info-align-right {
  flex-direction: row-reverse;
}

.slideshow-info-element-inner
  .info-element-social.info-align-right
  .info-element-social-share {
  flex-direction: row-reverse;
}

.slideshow-info-element-inner
  .info-element-social.info-align-right
  .info-element-social-share:hover
  .info-element-social-share-box {
  margin-right: 40px !important;
}

.slideshow-info-element-inner .info-element-social .info-element-social-button {
  margin: 0 15px;
  display: inline-flex;
  font-size: 19px;
  color: #2b5672;
  cursor: pointer;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button:hover:not(.info-element-loved) {
  opacity: 0.7;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-comments {
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  display: flex;
  -moz-column-gap: 7px;
  column-gap: 7px;
  align-items: center;
  padding: 5px;
  margin: -5px;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-icon {
  fill: #2b5672;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-count {
  color: #2b5672;
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  line-height: 15px;
  font-size: 15px;
  letter-spacing: 1px;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love {
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love
  button,
.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love
  i {
  float: left;
  display: inline-block;
  border: none;
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  cursor: pointer;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love
  .info-element-social-love-count {
  color: #2b5672;
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  float: left;
  margin-top: 2px;
  display: inline-block;
  padding-left: 9px;
  letter-spacing: 1px;
}

.slideshow-info-element-inner .info-element-social .info-element-social-share {
  flex-direction: row;
  outline: none;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share:hover
  .info-element-social-share-box {
  width: 210px !important;
  outline: none;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box {
  width: 0;
  transition: width 0.3s;
  overflow: hidden;
  margin-left: 25px !important;
  margin-right: 25px !important;
  display: inline-block;
  height: 30px;
  max-width: 300px;
  z-index: 16;
  font-size: 12px;
  transform: none !important;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.hovered {
  width: 210px !important;
  outline: none;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.opened {
  width: 210px !important;
  outline: none;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button,
.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i {
  display: inline-block;
  font-size: 15px;
  color: #2b5672;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 14px;
  text-align: center;
  margin: 0 6px;
  float: left;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
  border: none;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button:hover,
.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i:hover {
  opacity: 0.7;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button.twitter-share,
.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i.twitter-share {
  font-size: 13px;
}

.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button.email-share,
.slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i.email-share {
  font-size: 13px;
}

.gallery-item-common-info.gallery-item-bottom-info {
  box-sizing: border-box;
  padding-top: 24px;
  height: 100%;
  width: 100%;
  padding-top: 0;
}

.gallery-item-common-info.gallery-item-bottom-info .info-element-text {
  flex-grow: 1;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.gallery-item-common-info.gallery-item-bottom-info .info-element-text > div {
  width: 100%;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-title {
  white-space: normal;
  font-family:
    "HelveticaNeueW01-Thin", "HelveticaNeueW02-Thin", "HelveticaNeueW10-35Thin",
    sans-serif;
  line-height: 32px;
  font-size: 21px;
  height: auto;
  color: #2b5672;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  transition: opacity 0.4s ease;
  text-overflow: ellipsis;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-description {
  font-family:
    "HelveticaNeueW01-Thin", "HelveticaNeueW02-Thin", "HelveticaNeueW10-35Thin",
    sans-serif;
  line-height: 25px;
  font-size: 15px;
  height: auto;
  color: #2b5672;
  overflow: hidden;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  transition: opacity 0.4s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-description
  > span {
  white-space: normal;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-member.hide {
  display: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-custom-button-wrapper {
  display: flex;
  justify-content: center;
  color: #fff;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-custom-button-wrapper
  button {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 25px;
  height: 45px;
  min-width: 190px;
  padding: 0 15px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  outline: none;
  border-style: solid;
  text-decoration: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-custom-button-wrapper
  button
  .overlay {
  display: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-custom-button-wrapper
  button:hover {
  opacity: 1 !important;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-text
  .info-element-custom-button-wrapper
  button:hover
  .overlay {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-item-common-info.gallery-item-bottom-info .info-element-social {
  height: auto;
  position: static;
  display: flex;
  flex-direction: row;
  margin: 0;
  overflow: visible;
  z-index: 16;
  transition: opacity 0.4s ease;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.populated-item {
  margin-bottom: 24px;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social:hover
  .info-element-social-share-box {
  width: 0 !important;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.info-align-center {
  justify-content: center;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.info-align-center
  .info-element-social-share {
  position: relative;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.info-align-center
  .info-element-social-share
  .info-element-social-share-box {
  position: absolute;
  left: -25px;
  padding-left: 25px !important;
  margin-right: 0 !important;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.info-align-right {
  flex-direction: row-reverse;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.info-align-right
  .info-element-social-share {
  flex-direction: row-reverse;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social.info-align-right
  .info-element-social-share:hover
  .info-element-social-share-box {
  margin-right: 40px !important;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button {
  margin: 0 15px;
  display: inline-flex;
  font-size: 19px;
  color: #2b5672;
  cursor: pointer;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button:hover:not(.info-element-loved) {
  opacity: 0.7;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-comments {
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  display: flex;
  -moz-column-gap: 7px;
  column-gap: 7px;
  align-items: center;
  padding: 5px;
  margin: -5px;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-icon {
  fill: #2b5672;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-count {
  color: #2b5672;
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  line-height: 15px;
  font-size: 15px;
  letter-spacing: 1px;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-love {
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-love
  button,
.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-love
  i {
  float: left;
  display: inline-block;
  border: none;
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  cursor: pointer;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-button.info-element-social-love
  .info-element-social-love-count {
  color: #2b5672;
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  float: left;
  margin-top: 2px;
  display: inline-block;
  padding-left: 9px;
  letter-spacing: 1px;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share {
  flex-direction: row;
  outline: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share:hover
  .info-element-social-share-box {
  width: 210px !important;
  outline: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box {
  width: 0;
  transition: width 0.3s;
  overflow: hidden;
  margin-left: 25px !important;
  margin-right: 25px !important;
  display: inline-block;
  height: 30px;
  max-width: 300px;
  z-index: 16;
  font-size: 12px;
  transform: none !important;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.hovered {
  width: 210px !important;
  outline: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.opened {
  width: 210px !important;
  outline: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button,
.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i {
  display: inline-block;
  font-size: 15px;
  color: #2b5672;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 14px;
  text-align: center;
  margin: 0 6px;
  float: left;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
  border: none;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button:hover,
.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i:hover {
  opacity: 0.7;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button.twitter-share,
.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i.twitter-share {
  font-size: 13px;
}

.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button.email-share,
.gallery-item-common-info.gallery-item-bottom-info
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i.email-share {
  font-size: 13px;
}

.gallery-slideshow div.pro-gallery .slideshow-info-element-inner {
  box-sizing: border-box;
  padding-top: 24px;
  height: 100%;
  width: 100%;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text {
  flex-grow: 1;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  > div {
  width: 100%;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-title {
  white-space: normal;
  font-family:
    "HelveticaNeueW01-Thin", "HelveticaNeueW02-Thin", "HelveticaNeueW10-35Thin",
    sans-serif;
  line-height: 32px;
  font-size: 21px;
  height: auto;
  color: #2b5672;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  transition: opacity 0.4s ease;
  text-overflow: ellipsis;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-description {
  font-family:
    "HelveticaNeueW01-Thin", "HelveticaNeueW02-Thin", "HelveticaNeueW10-35Thin",
    sans-serif;
  line-height: 25px;
  font-size: 15px;
  height: auto;
  color: #2b5672;
  overflow: hidden;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  transition: opacity 0.4s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-description
  > span {
  white-space: normal;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-member.hide {
  display: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper {
  display: flex;
  justify-content: center;
  color: #fff;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 25px;
  height: 45px;
  min-width: 190px;
  padding: 0 15px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  outline: none;
  border-style: solid;
  text-decoration: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button
  .overlay {
  display: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button:hover {
  opacity: 1 !important;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-text
  .info-element-custom-button-wrapper
  button:hover
  .overlay {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social {
  height: auto;
  position: static;
  display: flex;
  flex-direction: row;
  margin: 0;
  overflow: visible;
  z-index: 16;
  transition: opacity 0.4s ease;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.populated-item {
  margin-bottom: 24px;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social:hover
  .info-element-social-share-box {
  width: 0 !important;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.info-align-center {
  justify-content: center;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.info-align-center
  .info-element-social-share {
  position: relative;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.info-align-center
  .info-element-social-share
  .info-element-social-share-box {
  position: absolute;
  left: -25px;
  padding-left: 25px !important;
  margin-right: 0 !important;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.info-align-right {
  flex-direction: row-reverse;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.info-align-right
  .info-element-social-share {
  flex-direction: row-reverse;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social.info-align-right
  .info-element-social-share:hover
  .info-element-social-share-box {
  margin-right: 40px !important;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button {
  margin: 0 15px;
  display: inline-flex;
  font-size: 19px;
  color: #2b5672;
  cursor: pointer;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button:hover:not(.info-element-loved) {
  opacity: 0.7;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-comments {
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  display: flex;
  -moz-column-gap: 7px;
  column-gap: 7px;
  align-items: center;
  padding: 5px;
  margin: -5px;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-icon {
  fill: #2b5672;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-count {
  color: #2b5672;
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  line-height: 15px;
  font-size: 15px;
  letter-spacing: 1px;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love {
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love
  button,
.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love
  i {
  float: left;
  display: inline-block;
  border: none;
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  cursor: pointer;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-button.info-element-social-love
  .info-element-social-love-count {
  color: #2b5672;
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  float: left;
  margin-top: 2px;
  display: inline-block;
  padding-left: 9px;
  letter-spacing: 1px;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share {
  flex-direction: row;
  outline: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share:hover
  .info-element-social-share-box {
  width: 210px !important;
  outline: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box {
  width: 0;
  transition: width 0.3s;
  overflow: hidden;
  margin-left: 25px !important;
  margin-right: 25px !important;
  display: inline-block;
  height: 30px;
  max-width: 300px;
  z-index: 16;
  font-size: 12px;
  transform: none !important;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.hovered {
  width: 210px !important;
  outline: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.opened {
  width: 210px !important;
  outline: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button,
.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i {
  display: inline-block;
  font-size: 15px;
  color: #2b5672;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 14px;
  text-align: center;
  margin: 0 6px;
  float: left;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
  border: none;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button:hover,
.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i:hover {
  opacity: 0.7;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button.twitter-share,
.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i.twitter-share {
  font-size: 13px;
}

.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  button.email-share,
.gallery-slideshow
  div.pro-gallery
  .slideshow-info-element-inner
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box
  i.email-share {
  font-size: 13px;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text {
  padding: 0 20px 20px;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social {
  margin: 0;
  height: auto;
  position: static;
  display: flex;
  flex-direction: row;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.with-arrows,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.with-arrows {
  width: auto;
  margin: 0px -10px 0;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.gradient-top,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.gradient-top {
  background: linear-gradient(rgba(0, 0, 0, 0.2) 0, transparent 140px);
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social:hover
  .info-element-social-share-box,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social:hover
  .info-element-social-share-box {
  width: 0 !important;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-center,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-center {
  justify-content: center;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-center
  .info-element-social-share,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-center
  .info-element-social-share {
  position: relative;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-center
  .info-element-social-share
  .info-element-social-share-box,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-center
  .info-element-social-share
  .info-element-social-share-box {
  position: absolute;
  left: -25px;
  padding-left: 25px !important;
  margin-right: 0 !important;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-right,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-right {
  flex-direction: row-reverse;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-right
  .info-element-social-share,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-right
  .info-element-social-share {
  flex-direction: row-reverse;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-right
  .info-element-social-share:hover
  .info-element-social-share-box,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social.info-align-right
  .info-element-social-share:hover
  .info-element-social-share-box {
  margin-right: 40px !important;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-button,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-button {
  position: static !important;
  margin: 0;
  padding: 0 20px;
  font-size: 19px;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-button.info-element-social-share,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-button.info-element-social-share {
  margin-top: -3px;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share {
  flex-direction: row;
  outline: none;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share:hover
  .info-element-social-share-box,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share:hover
  .info-element-social-share-box {
  width: 210px !important;
  outline: none;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box {
  width: 0;
  transition: width 0.3s;
  overflow: hidden;
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.hovered,
.gallery-thumbnails
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .hover-info-element
  .info-element-social
  .info-element-social-share
  .info-element-social-share-box.hovered {
  width: 210px !important;
  outline: none;
}

.gallery-slider
  div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-title {
  white-space: normal;
}

.gallery-columns
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover {
  padding: 30px;
}

.gallery-columns
  div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text {
  padding: 30px 0 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper {
  display: flex;
  justify-content: center;
  opacity: 0;
  /*! autoprefixer: ignore next */
  -webkit-box-pack: center;
  transition: opacity 0.4s ease;
  color: #fff;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  .buy-icon {
  margin-right: 7px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button {
  line-height: 25px;
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  display: block;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  opacity: 0;
  height: 45px;
  min-width: 190px;
  padding: 0 15px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button
  .overlay {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button:hover
  .overlay {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text.short-item {
  padding-top: 5px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text.narrow-item {
  padding-left: 5px;
  padding-right: 5px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text
  > div {
  width: 100%;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-text.push-down {
  padding-top: 60px;
  box-sizing: border-box;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-title {
  line-height: 32px;
  font-size: 21px;
  padding: 0;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  opacity: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-description {
  line-height: 25px;
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  opacity: 0;
  white-space: normal;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-member.hide {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-new-info-elements {
  width: 100%;
  height: 24px !important;
  display: flex;
  flex-direction: row;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-new-info-elements
  .info-element-social-love {
  margin-right: auto;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-new-info-elements
  .info-element-social-button {
  padding-left: 10px;
  padding-right: 10px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-absolute {
  position: absolute;
  top: 0;
  left: 0;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social {
  outline: none;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 16;
  transition: opacity 0.4s ease;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.short-item,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.narrow-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 90%;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.short-item
  .info-element-social-button,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.narrow-item
  .info-element-social-button {
  position: initial;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.with-arrows {
  width: 86%;
  margin: 0 7%;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button {
  outline: none;
  bottom: 30px;
  position: absolute;
  margin: 0;
  display: inline-block;
  font-size: 19px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  padding: 10px;
  margin: -10px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button:hover:not(.info-element-loved) {
  opacity: 0.7;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.visible {
  opacity: 1 !important;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-comments {
  left: 26px;
  top: 26px;
  bottom: initial;
  font-size: 15px;
  border: none;
  background: #2b5672;
  display: flex;
  -moz-column-gap: 7px;
  column-gap: 7px;
  align-items: center;
  padding: 5px;
  margin: -5px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-comments
  .info-element-social-comments-count {
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  line-height: 15px;
  font-size: 15px;
  letter-spacing: 1px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-love {
  left: 30px;
  bottom: 30px;
  font-size: 15px;
  border: none;
  background: rgba(0, 0, 0, 0);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-love
  button,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-love
  i {
  outline: none;
  float: left;
  display: inline-block;
  line-height: 14px;
  border: none;
  background: rgba(0, 0, 0, 0);
  font-size: 18px;
  padding: 1px 5px;
  text-decoration: none;
  cursor: pointer;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-love
  .info-element-social-love-count {
  font-family:
    "HelveticaNeueW01-UltLt", "HelveticaNeueW02-UltLt",
    "HelveticaNeueW10-25UltL", sans-serif;
  font-style: normal;
  float: left;
  line-height: 15px;
  font-size: 15px;
  margin-top: 2px;
  display: inline-block;
  padding-left: 9px;
  letter-spacing: 1px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-share {
  bottom: 26px;
  left: auto;
  right: 30px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-dots {
  left: auto;
  right: 22px;
  top: 26px;
  height: 30px;
  width: 20px;
  display: flex;
  justify-content: center;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-download {
  bottom: 25px;
  left: auto;
  right: 68px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social
  .info-element-social-button.info-element-social-download.pull-right {
  right: 30px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button {
  bottom: calc(50% - 10px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-love,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-comments {
  left: calc(25% - 8px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-love
  span,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-comments
  span {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-share {
  right: calc(25% - 8px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-download {
  left: calc(50% - 8px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item
  .info-element-social-button.info-element-social-dots {
  left: calc(50% - 8px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item.vertical-item
  .info-element-social-button {
  bottom: auto;
  left: calc(50% - 8px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item.vertical-item
  .info-element-social-button.info-element-social-love,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item.vertical-item
  .info-element-social-button.info-element-social-comments {
  top: calc(25% - 10px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item.vertical-item
  .info-element-social-button.info-element-social-share {
  top: auto;
  right: auto;
  bottom: calc(25% - 10px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item.vertical-item
  .info-element-social-button.info-element-social-download {
  top: calc(50% - 10px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social.small-item.vertical-item
  .info-element-social-button.info-element-social-dots {
  bottom: calc(50% - 10px);
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 300px;
  min-width: 200px;
  overflow: visible;
  z-index: 16;
  font-size: 12px;
  opacity: 0;
  transform: translateX(-50%);
  margin-top: 1px;
  margin-left: -3px;
  transition: opacity 0.4s ease;
  outline: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  button,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  i {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 22px;
  text-align: center;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  border: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  button:hover,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  i:hover {
  opacity: 0.7;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  button.network-1,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  i.network-1 {
  margin-left: 5px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  button.network-2,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  i.network-2 {
  font-size: 13px;
  margin-top: 1px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  button.network-4,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  i.network-4 {
  margin-left: -1px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  button.network-5,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box
  i.network-5 {
  font-size: 13px;
  margin-top: 1px;
  margin-left: -3px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item {
  top: 50%;
  left: 0;
  max-width: none;
  min-width: 0;
  max-height: 300px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item
  button,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item
  i {
  left: 50%;
  margin-left: -10px;
  margin-top: 8px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item
  button.network-2,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item
  i.network-2 {
  font-size: 13px;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item
  button.network-5,
div.pro-gallery
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-social-share-box.vertical-item
  i.network-5 {
  font-size: 13px;
}

div.pro-gallery .gallery-item-container .gallery-item-common-info {
  box-sizing: border-box;
  cursor: pointer;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-title {
  /*! autoprefixer: ignore next */
  overflow: hidden;
  /*! autoprefixer: ignore next */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-description {
  /*! autoprefixer: ignore next */
  overflow: hidden;
  display: -webkit-box;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-description
  > span {
  white-space: normal;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-member.hide {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-custom-button-wrapper {
  display: flex;
  justify-content: center;
  color: #fff;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-custom-button-wrapper
  button {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 25px;
  height: 45px;
  min-width: 190px;
  padding: 0 15px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  outline: none;
  border-style: solid;
  text-decoration: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-custom-button-wrapper
  button
  .overlay {
  display: none;
}

div.pro-gallery
  .gallery-item-container
  .gallery-item-common-info
  .info-element-custom-button-wrapper
  button:hover
  .overlay {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

div.pro-gallery.thumbnails-gallery
  .gallery-item-container
  .info-element-custom-button-wrapper {
  display: none !important;
}

:root {
  --tooltip-text-color: white;
  --tooltip-background-color: black;
  --tooltip-margin: 30px;
  --tooltip-arrow-size: 6px;
}

.tooltip-wrapper {
  position: absolute;
  top: 0;
  z-index: 100;
  background-color: var(--tooltip-background-color);
  color: var(--tooltip-text-color);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--tooltip-text-color);
}

.tooltip-body {
  padding: 4px;
  font-size: 14px;
  font-family: Helvetica;
}

.tooltip-body::before {
  content: " ";
  left: 50%;
  border: solid rgba(0, 0, 0, 0);
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: var(--tooltip-arrow-size);
  margin-left: calc(var(--tooltip-arrow-size) * -1);
}

.tooltip-body.arrow {
  top: calc(var(--tooltip-margin) * -1);
}

.tooltip-body.arrow::before {
  top: 100%;
  border-top-color: var(--tooltip-background-color);
}

.pg-render-indicator {
  position: absolute;
  bottom: 15.5px;
  left: 15.5px;
  border: 1px solid #717171;
  padding: 5px 10px 5px 5px;
  font-size: 16px;
  z-index: 2147483648;
  cursor: default;
  line-height: 20px;
}

.pg-render-indicator table {
  table-layout: fixed;
}

.pg-render-indicator.rendered {
  background-color: #7fff00;
}

.pg-render-indicator.not-rendered {
  background-color: red;
}

.pg-render-indicator .log-column {
  max-height: 450px;
  max-width: 500px;
  overflow: auto;
  background-color: #fff;
}

.pg-render-indicator .show-on-hover {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  top: -9999px;
  left: -9999px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.pg-render-indicator div.worker-log-text {
  word-wrap: break-word;
  max-width: 500px;
  min-width: 100px;
}

.pg-render-indicator:hover {
  max-width: 90%;
  max-height: 90%;
}

.pg-render-indicator:hover .show-on-hover {
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  display: block;
  height: auto;
  line-height: normal;
  text-decoration: none;
  width: auto;
  position: static;
}

.pro-fullscreen-wrapper,
.pro-fullscreen-wrapper-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100005;
}

.pro-gallery-empty {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.pro-gallery-empty .pro-gallery-empty-content {
  height: 334px;
  width: 100%;
  overflow: hidden;
}

.pro-gallery-empty .pro-gallery-empty-image {
  margin: 66px auto 35px;
  width: 262px;
  height: 132px;
  background-image: url(/web/20240715042208im_/https://www.moroba.co.kr/media/emptystate.85a4add5.svg);
  background-size: contain;
}

.pro-gallery-empty .pro-gallery-empty-title {
  color: #4eb7f5;
  font-family:
    "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma",
    "HelveticaNeueW10-55Roma", sans-serif;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  margin-bottom: 10px;
}

.pro-gallery-empty .pro-gallery-empty-info {
  color: #4eb7f5;
  font-family:
    "HelveticaNeueW01-45Ligh", "HelveticaNeueW02-45Ligh",
    "HelveticaNeueW10-45Ligh", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.comp-kpnnd4hc
  div.pro-gallery-parent-container
  .gallery-item-wrapper-text
  .gallery-item-content {
  background-color: #ffffff;
}

.comp-kpnnd4hc
  div.pro-gallery-parent-container
  .show-more-container
  i.show-more {
  color: rgba(0, 0, 0, 0.7);
}

.comp-kpnnd4hc
  div.pro-gallery-parent-container
  .show-more-container
  button.show-more {
  --loadMoreButtonBorderRadius: 0;
  --loadMoreButtonBorderColor: #ffffff;
  --loadMoreButtonBorderWidth: 1;
  --loadMoreButtonColor: #00060f;
  --loadMoreButtonFont:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --loadMoreButtonFontColor: #ffffff;
  color: rgba(255, 255, 255, 0.9);
  font:
    normal normal normal 18px/1.4em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;

  background: rgb(0, 6, 15);
  border-width: 1px;
  border-color: rgb(255, 255, 255);
  border-radius: 0px;
}

.comp-kpnnd4hc
  div.pro-gallery-parent-container
  .show-more-container.pro-gallery-mobile-indicator
  i.show-more {
  color: rgba(0, 0, 0, 0.7);
}

.comp-kpnnd4hc
  div.pro-gallery-parent-container
  .show-more-container.pro-gallery-mobile-indicator
  button.show-more {
  --loadMoreButtonBorderRadius: 0;
  --loadMoreButtonBorderColor: #ffffff;
  --loadMoreButtonBorderWidth: 1;
  --loadMoreButtonColor: #00060f;
  --loadMoreButtonFont:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --loadMoreButtonFontColor: #ffffff;
  color: rgb(255, 255, 255);
  font:
    normal normal normal 18px/22px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;

  background: rgb(0, 6, 15);
  border-width: undefinedpx;
  border-color: rgb(255, 255, 255);
  border-radius: undefinedpx;
}

.comp-kpnnd4hc .nav-arrows-container .slideshow-arrow,
.comp-kpnnd4hc .nav-arrows-container .custom-nav-arrows svg {
  --arrowsColor: #00060f;
  fill: rgb(255, 255, 255);
}

.comp-kpnnd4hc
  .nav-arrows-container.pro-gallery-mobile-indicator
  .slideshow-arrow,
.comp-kpnnd4hc
  .nav-arrows-container.pro-gallery-mobile-indicator
  .custom-nav-arrows
  svg {
  --arrowsColor: #00060f;
  fill: rgb(255, 255, 255);
}

.comp-kpnnd4hc .pro-gallery.inline-styles .auto-slideshow-counter {
  --itemDescriptionFontSlideshow:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal normal 16px/2em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info {
  --itemIconColorSlideshow: #ffffff;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  i:not(.pro-gallery-loved):not(.info-element-loved),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  button:not(.pro-gallery-loved):not(.info-element-loved):not(
    .info-element-custom-button-button
  ):not(.artstore-add-to-cart-button),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  a {
  color: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  svg
  .gallery-item-svg-foreground {
  fill: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .info-element-title {
  --itemFontSlideshow: normal normal normal 18px/1.4em montserrat, sans-serif;
  --itemFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal bold 14px/1.4em montserrat,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .info-element-description {
  --itemDescriptionFontSlideshow:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal normal 16px/2em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.load-with-color:not(.image-loaded) {
  --imageLoadingColor: #242834;
  background-color: rgb(199, 199, 199);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-triangle {
  --itemFontColor: #00060f;
  color: rgb(255, 255, 255);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-background {
  --itemOpacity: #ffffff;
  color: rgba(36, 40, 52, 0);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  svg
  .gallery-item-svg-background,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  svg
  .gallery-item-svg-background {
  --itemOpacity: #ffffff;
  fill: rgba(36, 40, 52, 0);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-slideshow-info
  .gradient-top,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .gradient-top {
  --itemOpacity: #ffffff;
  background: linear-gradient(
    rgba(36, 40, 52, 0) 0,
    transparent 140px
  ) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover {
  --itemIconColor: #00060f;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  i:not(.pro-gallery-loved):not(.info-element-loved),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  button:not(.pro-gallery-loved):not(.info-element-loved):not(
    .info-element-custom-button-button
  ),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  a {
  color: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  svg
  .gallery-item-svg-foreground {
  fill: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-title {
  --itemFont: normal normal normal 18px/1.4em montserrat, sans-serif;
  --itemFontColor: #00060f;
  color: rgb(255, 255, 255);
  font:
    normal normal bold 14px/1.4em montserrat,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-description {
  --itemDescriptionFont:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFontColor: #00060f;
  color: rgb(255, 255, 255) !important;
  font:
    normal normal normal 18px/1.4em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .custom-button-wrapper,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper {
  --customButtonFontColor: #00060f;
  color: rgb(0, 6, 15) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button {
  --customButtonColor: #ffffff;
  --customButtonBorderRadius: 0;
  --customButtonBorderWidth: 1;
  --customButtonBorderColor: #00060f;
  --customButtonFont:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  color: rgb(0, 6, 15) !important;
  font:
    normal normal normal 15px/18px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;

  background: rgba(0, 6, 15, 0) !important;
  border-width: 1px;
  border-radius: 0px;
  border-color: rgb(0, 6, 15);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover:before {
  --itemOpacity: #ffffff;
  background: rgba(36, 40, 52, 0) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container:not(.invert-hover)
  .gallery-item-hover.default.force-hover:before,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container:not(.invert-hover):hover
  .gallery-item-hover.default:not(.hide-hover):before {
  background: #ffffff !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.invert-hover
  .gallery-item-hover:before {
  --itemOpacity: #ffffff;
  background: rgba(36, 40, 52, 0) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.invert-hover
  .gallery-item-hover.default.force-hover:before,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.invert-hover:hover
  .gallery-item-hover.default:not(.hide-hover):before {
  background: #ffffff !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .info-element-title {
  --itemFontSlideshow: normal normal normal 22px/1.4em montserrat, sans-serif;
  --itemFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal bold 14px/1.4em montserrat,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .info-element-description {
  --itemDescriptionFontColorSlideshow: #ffffff;
  --itemDescriptionFontSlideshow:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal normal 16px/2em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-text
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-text
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-bottom-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-top-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-left-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-item-right-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container
  .gallery-slideshow-info
  .info-element-custom-button-wrapper
  button {
  --customButtonFontForHover:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --customButtonFontColorForHover: #ffffff;
  --externalCustomButtonBorderWidth: 0;
  --externalCustomButtonBorderRadius: 0;
  font:
    normal normal normal 15px/18px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;

  color: rgb(255, 255, 255) !important;
  background: rgba(58, 106, 253, 0) !important;
  border-color: rgb(255, 255, 255);
  border-width: 0px;
  border-radius: 0px;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item.load-with-color:not(.image-loaded) {
  --imageLoadingColor: #242834;
  background-color: rgb(199, 199, 199);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-triangle {
  --itemFontColor: #00060f;
  color: rgb(255, 255, 255);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item.gallery-item-video
  i.gallery-item-video-play-background {
  --itemOpacity: #ffffff;
  color: rgba(36, 40, 52, 0) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  svg
  .gallery-item-svg-background,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  svg
  .gallery-item-svg-background {
  --itemOpacity: #ffffff;
  fill: rgba(36, 40, 52, 0) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .gradient-top,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .gradient-top {
  --itemOpacity: #ffffff;
  background: linear-gradient(
    rgba(36, 40, 52, 0) 0,
    transparent 140px
  ) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info {
  --itemIconColorSlideshow: #ffffff;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  i:not(.pro-gallery-loved):not(.info-element-loved),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  button:not(.pro-gallery-loved):not(.info-element-loved):not(
    .info-element-custom-button-button
  ):not(.artstore-add-to-cart-button),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  a {
  color: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  svg
  .gallery-item-svg-foreground {
  fill: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .info-element-title {
  --itemFontSlideshow: normal normal normal 18px/1.4em montserrat, sans-serif;
  --itemFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal bold 14px/17px montserrat,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-slideshow-info
  .info-element-description {
  --itemDescriptionFontSlideshow:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal normal 16px/20px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover {
  --itemIconColor: #00060f;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  i:not(.pro-gallery-loved):not(.info-element-loved),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  button:not(.pro-gallery-loved):not(.info-element-loved):not(
    .info-element-custom-button-button
  ),
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  a {
  color: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  svg
  .gallery-item-svg-foreground {
  fill: rgb(255, 255, 255) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-title {
  --itemFont: normal normal normal 18px/1.4em montserrat, sans-serif;
  --itemFontColor: #00060f;
  color: rgb(255, 255, 255);
  font:
    normal normal bold 14px/17px montserrat,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-description {
  --itemDescriptionFont:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --itemDescriptionFontColor: #00060f;
  color: rgb(255, 255, 255) !important;
  font:
    normal normal normal 18px/22px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .custom-button-wrapper,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper {
  --customButtonFontColor: #00060f;
  color: rgb(0, 6, 15) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-wrapper
  .gallery-item-hover
  .info-element-custom-button-wrapper
  button {
  --customButtonColor: #ffffff;
  --customButtonBorderRadius: 0;
  --customButtonBorderWidth: 1;
  --customButtonBorderColor: #00060f;
  --customButtonFont:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  color: rgb(0, 6, 15) !important;
  font:
    normal normal normal 15px/18px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;

  background: rgba(0, 6, 15, 0) !important;
  border-width: undefinedpx;
  border-radius: undefinedpx;
  border-color: rgb(0, 6, 15);
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover)
  .gallery-item-hover:not(.hide-hover):before {
  --itemOpacity: #ffffff;
  background: rgba(36, 40, 52, 0) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover)
  .gallery-item-hover.default.force-hover:before,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover
  .gallery-item-hover.default:not(.hide-hover):before {
  background: #ffffff !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator.invert-hover
  .gallery-item-hover:before {
  --itemOpacity: #ffffff;
  background: rgba(36, 40, 52, 0) !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator.invert-hover
  .gallery-item-hover.default.force-hover:before,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover
  .gallery-item-hover.default:not(.hide-hover):before {
  background: #ffffff !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .info-element-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .gallery-item-title,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .info-element-title {
  --itemFontSlideshow: normal normal normal 22px/1.4em montserrat, sans-serif;
  --itemFontColorSlideshow: #ffffff;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal bold 14px/17px montserrat,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .info-element-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .gallery-item-description,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .info-element-description {
  --itemDescriptionFontColorSlideshow: #ffffff;
  --itemDescriptionFontSlideshow:
    normal normal normal 15px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  color: rgb(199, 199, 199) !important;
  font:
    normal normal normal 16px/20px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif !important;
}

.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-text
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-text
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-bottom-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-top-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-left-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-item-right-info
  .info-element-custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .custom-button-wrapper
  button,
.comp-kpnnd4hc
  .pro-gallery.inline-styles
  .gallery-item-container.pro-gallery-mobile-indicator
  .gallery-slideshow-info
  .info-element-custom-button-wrapper
  button {
  --customButtonFontForHover:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  --customButtonFontColorForHover: #ffffff;
  --externalCustomButtonBorderWidth: 0;
  --externalCustomButtonBorderRadius: 0;
  font:
    normal normal normal 15px/18px proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;

  color: rgb(255, 255, 255) !important;
  background: rgba(58, 106, 253, 0) !important;
  border-color: rgb(255, 255, 255);
  border-width: undefinedpx;
  border-radius: undefinedpx;
}

.comp-kpnnd4hc .te-pro-gallery-text-item {
  font:
    normal normal normal 16px/2em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;
  color: #00060f;
}

.comp-kpnnd4hc .pro-fullscreen-wrapper .pro-fullscreen-text-item {
  --fullscreen-text-item-bg: #ffffff;
  background-color: #ffffff;
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles {
  --bgColorExpand: #00060f;
  background-color: rgb(0, 6, 15);
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .pro-fullscreen-selected-license,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .pro-fullscreen-checkout-link {
  --descriptionColorExpand: #ffffff;
  --descriptionFontExpand:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  color: rgb(255, 255, 255);
  font:
    normal normal normal 18px/1.4em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-bottom-mobile-info {
  --bgColorExpand: #00060f;
  background-color: rgb(0, 6, 15);
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-title {
  --titleColorExpand: #ffffff;
  --titleFontExpand: normal normal normal 18px/1.4em montserrat, sans-serif;
  color: rgb(255, 255, 255);
  font:
    normal normal normal 40px/1.4em montserrat,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-description,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-description
  .fullscreen-side-bar-description-line,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-exif,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-link,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-bottom-link {
  --descriptionColorExpand: #ffffff;
  --descriptionFontExpand:
    normal normal normal 18px/1.4em proxima-n-w01-reg, proxima-n-w05-reg,
    sans-serif;
  color: rgb(255, 255, 255);
  font:
    normal normal normal 18px/1.4em proxima-n-w01-reg,
    proxima-n-w05-reg,
    sans-serif;
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-description:after,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-description
  .fullscreen-side-bar-description-line:after,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-exif:after,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-link:after,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-bottom-link:after {
  --descriptionColorExpand: #ffffff;
  border-color: rgb(255, 255, 255);
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-social
  i:not(.pro-gallery-loved),
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-social
  a,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-side-bar-social
  button,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-nav
  i:not(.pro-gallery-loved),
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-nav
  a,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-nav
  button,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-mobile-bar
  i:not(.pro-gallery-loved),
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-mobile-bar
  a,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-mobile-bar
  button,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-social
  i:not(.pro-gallery-loved),
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-social
  a,
.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-social
  button {
  --descriptionColorExpand: #ffffff;
  color: rgb(255, 255, 255);
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle {
  --descriptionColorExpand: #ffffff;
  color: rgb(255, 255, 255);
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  i.fullscreen-item-video-play.progallery-svg-font-icons-play-background {
  --bgColorExpand: #00060f;
  color: rgb(0, 6, 15);
}

.comp-kpnnd4hc
  .pro-fullscreen-wrapper
  #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles
  .fullscreen-icon {
  --descriptionColorExpand: #ffffff;
  --bgColorExpand: #00060f;
  color: rgb(255, 255, 255);
  background: rgb(0, 6, 15);
}
