@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;
    }
}

:root:active-view-transition {
    view-transition-name: none;
}

::view-transition {
    pointer-events: none;
}

:root:active-view-transition::view-transition-new(page-group),

:root:active-view-transition::view-transition-old(page-group) {
    animation-duration: .6s;
    cursor: wait;
    pointer-events: all;
}

:root:active-view-transition-type(SlideHorizontal)::view-transition-old(page-group) {
    animation: slide-horizontal-old .6s cubic-bezier(.83, 0, .17, 1) forwards;
    mix-blend-mode: normal;
}

:root:active-view-transition-type(SlideHorizontal)::view-transition-new(page-group) {
    animation: slide-horizontal-new .6s cubic-bezier(.83, 0, .17, 1) backwards;
    mix-blend-mode: normal;
}

:root:active-view-transition-type(SlideVertical)::view-transition-old(page-group) {
    animation: slide-vertical-old .6s cubic-bezier(.83, 0, .17, 1) forwards;
    mix-blend-mode: normal;
}

:root:active-view-transition-type(SlideVertical)::view-transition-new(page-group) {
    animation: slide-vertical-new .6s cubic-bezier(.83, 0, .17, 1) backwards;
    mix-blend-mode: normal;
}

:root:active-view-transition-type(OutIn)::view-transition-old(page-group) {
    animation: out-in-old .35s cubic-bezier(.64, 0, .78, 0) forwards;
}

:root:active-view-transition-type(OutIn)::view-transition-new(page-group) {
    animation: out-in-new .35s cubic-bezier(.22, 1, .36, 1) .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-interact-element {
    display: contents;
}

#SITE_CONTAINER {
    position: relative;
}

:root {
    --one-unit: 1vw;
    --section-max-width: 9999px;
    --spx-stopper-max: 9999px;
    --spx-stopper-min: 0px;
    --browser-zoom: 1;
}

@supports (-webkit-appearance:none) and (stroke-color:transparent) {
    :root {
        --safari-sticky-fix: opacity;
        --experimental-safari-sticky-fix: translateZ(0);
    }
}

@supports (container-type:inline-size) {
    :root {
        --one-unit: 1cqw;
    }
}

[id^=oldHoverBox-] {
    mix-blend-mode: plus-lighter;
    transition: opacity .5s ease, visibility .5s ease;
}

[data-mesh-id$=inlineContent-gridContainer]:has(>[id^=oldHoverBox-]) {
    isolation: isolate;
}

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;
}

body.device-mobile-optimized:not(.disable-site-overflow) {
    overflow-x: hidden;
    overflow-y: scroll;
}

body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER {
    margin-left: auto;
    margin-right: auto;
    overflow-x: visible;
    position: relative;
    width: 320px;
}

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: clip;
    overflow-y: clip;
}

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 #SITE_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,

body.siteScrollingBlocked {
    position: fixed;
    width: 100%;
}

body.blockSiteScrolling #SITE_CONTAINER {
    margin-top: calc(var(--blocked-site-scroll-margin-top)*-1);
}

#site-root {
    margin: 0 auto;
    min-height: 100%;
    position: relative;
    top: var(--site-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,

#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,

#masterPage.mesh-layout #SITE_HEADER,

#masterPage.mesh-layout #SITE_HEADER_WRAPPER,

#masterPage.mesh-layout #SITE_PAGES,

#masterPage.mesh-layout #masterPageinlineContent {
    position: relative;
}

#masterPage.mesh-layout #SITE_HEADER {
    grid-area: 1/1/2/2;
}

#masterPage.mesh-layout #SITE_FOOTER {
    grid-area: 4/1/5/2;
}

#masterPage.mesh-layout.overflow-x-clip #SITE_FOOTER,

#masterPage.mesh-layout.overflow-x-clip #SITE_HEADER {
    overflow-x: clip;
}

[data-z-counter] {
    z-index: 0;
}

[data-z-counter="0"] {
    z-index: auto;
}

.siteSiteProperties {
    -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);
    --wst-color-custom-1: rgb(var(--color_13));
    --wst-color-custom-2: rgb(var(--color_16));
    --wst-color-custom-3: rgb(var(--color_17));
    --wst-color-custom-4: rgb(var(--color_19));
    --wst-color-custom-5: rgb(var(--color_20));
    --wst-color-custom-6: rgb(var(--color_21));
    --wst-color-custom-7: rgb(var(--color_22));
    --wst-color-custom-8: rgb(var(--color_23));
    --wst-color-custom-9: rgb(var(--color_24));
    --wst-color-custom-10: rgb(var(--color_25));
    --wst-color-custom-11: rgb(var(--color_26));
    --wst-color-custom-12: rgb(var(--color_27));
    --wst-color-custom-13: rgb(var(--color_28));
    --wst-color-custom-14: rgb(var(--color_29));
    --wst-color-custom-15: rgb(var(--color_30));
    --wst-color-custom-16: rgb(var(--color_31));
    --wst-color-custom-17: rgb(var(--color_32));
    --wst-color-custom-18: rgb(var(--color_33));
    --wst-color-custom-19: rgb(var(--color_34));
    --wst-color-custom-20: rgb(var(--color_35));
}

.site-presets-wrapper {
    display: contents;
}

.cwL6XW {
    cursor: pointer;
}

.sNF2R0 {
    opacity: 0;
}

.fade-in {
    transition: opacity var(--transition-duration) cubic-bezier(.37, 0, .63, 1);
}

.fade-in-variant,

.fade-in {
    opacity: 1;
}

.fade-out {
    transition: opacity var(--transition-duration) cubic-bezier(.37, 0, .63, 1);
}

.fade-animation,

.fade-out {
    opacity: 0;
}

.transition-fast {
    transition: opacity var(--transition-duration) cubic-bezier(.64, 0, .78, 0);
}

.transition-fast,

.transition-medium {
    opacity: 1;
}

.transition-slow {
    opacity: 0;
    transition: opacity var(--transition-duration) cubic-bezier(.22, 1, .36, 1);
}

.slide-horizontal {
    transform: translateX(100%);
}

.slide-horizontal-variant {
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.slide-horizontal-alt,

.slide-horizontal-variant {
    transform: translateX(0);
}

.DxijZJ {
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.B5kjYq,

.DxijZJ {
    transform: translateX(-100%);
}

.cJijIV {
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.cJijIV,

.hOxaWM {
    transform: translateX(0);
}

.T9p3fN {
    transform: translateX(100%);
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.slide-vertical {
    transform: translateY(100%);
}

.slide-vertical-variant {
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.slide-vertical-alt,

.slide-vertical-variant {
    transform: translateY(0);
}

.Xf2zsA {
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.Xf2zsA,

.y7Kt7s {
    transform: translateY(-100%);
}

.EeUgMu {
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

.EeUgMu,

.fdHrtm {
    transform: translateY(0);
}

.WIFaG4 {
    transform: translateY(100%);
    transition: transform var(--transition-duration) cubic-bezier(.87, 0, .13, 1);
}

body:not(.responsive) .view-transition {
    overflow-x: clip;
}

:root:active-view-transition .view-transition {
    view-transition-name: page-group;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 100%;
}

.grid-container>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:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor {
    background-color: var(--corvid-background-color) !important;
}

.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor {
    background-color: var(--corvid-hover-background-color) !important;
}

.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor {
    background-color: var(--corvid-disabled-background-color) !important;
}

.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor {
    border-color: var(--corvid-border-color) !important;
}

.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor {
    border-color: var(--corvid-hover-border-color) !important;
}

.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor {
    border-color: var(--corvid-disabled-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:not(:hover):not([disabled]).StylableButton2545352419--hasColor,

.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label {
    color: var(--corvid-color) !important;
}

.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,

.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label {
    color: var(--corvid-hover-color) !important;
}

.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,

.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label {
    color: var(--corvid-disabled-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 .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>span {
    display: flex;
    height: inherit;
    width: inherit;
}

.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg {
    fill: var(--corvid-icon-color) !important;
    stroke: var(--corvid-icon-color) !important;
}

.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg {
    fill: var(--corvid-hover-icon-color) !important;
    stroke: var(--corvid-hover-icon-color) !important;
}

.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg {
    fill: var(--corvid-disabled-icon-color) !important;
    stroke: var(--corvid-disabled-icon-color) !important;
}

.aeyn4z {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.qQrFOK {
    cursor: pointer;
}

.VDJedC {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    fill: var(--corvid-fill-color, var(--fill));
    fill-opacity: var(--fill-opacity);
    stroke: var(--corvid-stroke-color, var(--stroke));
    stroke-opacity: var(--stroke-opacity);
    stroke-width: var(--stroke-width);
    filter: var(--drop-shadow, none);
    opacity: var(--opacity);
    transform: var(--flip);
}

.VDJedC,

.VDJedC svg {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.VDJedC svg {
    height: var(--svg-calculated-height, 100%);
    margin: auto;
    padding: var(--svg-calculated-padding, 0);
    width: var(--svg-calculated-width, 100%);
}

.VDJedC svg:not([data-type=ugc]) {
    overflow: visible;
}

.l4CAhn * {
    vector-effect: non-scaling-stroke;
}

.rich-text-base {
    -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.site-list-text-align,

ul.site-list-text-align {
    list-style-position: inside;
}

ol.site-list-text-align h1,

ol.site-list-text-align h2,

ol.site-list-text-align h3,

ol.site-list-text-align h4,

ol.site-list-text-align h5,

ol.site-list-text-align h6,

ol.site-list-text-align p,

ul.site-list-text-align h1,

ul.site-list-text-align h2,

ul.site-list-text-align h3,

ul.site-list-text-align h4,

ul.site-list-text-align h5,

ul.site-list-text-align h6,

ul.site-list-text-align p {
    display: inline;
}

.HQSswv {
    cursor: pointer;
}

.sr-only {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.rich-text-modifier-3 [data-attr-richtext-marker=true] {
    display: block;
}

.rich-text-modifier-3 [data-attr-richtext-marker=true] table {
    border-collapse: collapse;
    margin: 15px 0;
    width: 100%;
}

.rich-text-modifier-3 [data-attr-richtext-marker=true] table td {
    padding: 12px;
    position: relative;
}

.rich-text-modifier-3 [data-attr-richtext-marker=true] table td:after {
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .2;
    position: absolute;
    right: 0;
    top: 0;
}

.rich-text-modifier-3 [data-attr-richtext-marker=true] table tr td:last-child:after {
    border-right: 1px solid currentColor;
}

.rich-text-modifier-3 [data-attr-richtext-marker=true] table tr:first-child td:after {
    border-top: 1px solid currentColor;
}

@supports (-webkit-appearance:none) and (stroke-color:transparent) {
    .rich-text-modifier-2>*>:first-child {
        vertical-align: top;
    }
}

@supports (-webkit-touch-callout:none) {
    .rich-text-modifier-2>*>:first-child {
        vertical-align: top;
    }
}

.LkZBpT :is(p, h1, h2, h3, h4, h5, h6, ul, ol, span[data-attr-richtext-marker], blockquote, div) [class$=rich-text__text],

.LkZBpT :is(p, h1, h2, h3, h4, h5, h6, ul, ol, span[data-attr-richtext-marker], blockquote, div)[class$=rich-text__text] {
    color: var(--corvid-color, currentColor);
}

.LkZBpT :is(p, h1, h2, h3, h4, h5, h6, ul, ol, span[data-attr-richtext-marker], blockquote, div) span[style*=color] {
    color: var(--corvid-color, currentColor) !important;
}

.text-wrapper {
    direction: var(--text-direction);
    min-height: var(--min-height);
    min-width: var(--min-width);
}

.text-wrapper .upNqi2 {
    word-wrap: break-word;
    height: 100%;
    overflow-wrap: break-word;
    position: relative;
    width: 100%;
}

.text-wrapper .upNqi2 ul {
    list-style: disc inside;
}

.text-wrapper .upNqi2 li {
    margin-bottom: 12px;
}

.rich-text-styled blockquote,

.rich-text-styled div,

.rich-text-styled h1,

.rich-text-styled h2,

.rich-text-styled h3,

.rich-text-styled h4,

.rich-text-styled h5,

.rich-text-styled h6,

.rich-text-styled p {
    letter-spacing: normal;
    line-height: normal;
}

.text-direction {
    min-height: var(--min-height);
    min-width: var(--min-width);
}

.text-direction .upNqi2 {
    word-wrap: break-word;
    height: 100%;
    overflow-wrap: break-word;
    position: relative;
    width: 100%;
}

.text-direction .upNqi2 ol,

.text-direction .upNqi2 ul {
    letter-spacing: normal;
    line-height: normal;
    margin-inline-start: .5em;
    padding-inline-start: 1.3em;
}

.text-direction .upNqi2 ul {
    list-style-type: disc;
}

.text-direction .upNqi2 ol {
    list-style-type: decimal;
}

.text-direction .upNqi2 ol ul,

.text-direction .upNqi2 ul ul {
    line-height: normal;
    list-style-type: circle;
}

.text-direction .upNqi2 ol ol ul,

.text-direction .upNqi2 ol ul ul,

.text-direction .upNqi2 ul ol ul,

.text-direction .upNqi2 ul ul ul {
    line-height: normal;
    list-style-type: square;
}

.text-direction .upNqi2 li {
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    line-height: inherit;
}

.text-direction .upNqi2 h1,

.text-direction .upNqi2 h2,

.text-direction .upNqi2 h3,

.text-direction .upNqi2 h4,

.text-direction .upNqi2 h5,

.text-direction .upNqi2 h6,

.text-direction .upNqi2 p {
    letter-spacing: normal;
    line-height: normal;
    margin-block: 0;
    margin: 0;
}

.text-direction .upNqi2 a {
    color: inherit;
}

.rich-text-styled,

.rich-text-content {
    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;
    text-shadow: var(--textOutline, 0 0 transparent), var(--textShadow, 0 0 transparent);
    text-transform: var(--textTransform, "none");
}

.rich-text-styled>*,

.rich-text-content>* {
    pointer-events: auto;
}

.rich-text-styled li,

.rich-text-content li {
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    line-height: inherit;
}

.rich-text-styled ol,

.rich-text-styled ul,

.rich-text-content ol,

.rich-text-content ul {
    letter-spacing: normal;
    line-height: normal;
    margin-inline-end: 0;
    margin-inline-start: .5em;
}

.rich-text-styled:not(.rich-text-modifier-1) ol,

.rich-text-styled:not(.rich-text-modifier-1) ul,

.rich-text-content:not(.rich-text-modifier-1) ol,

.rich-text-content:not(.rich-text-modifier-1) ul {
    padding-inline-end: 0;
    padding-inline-start: 1.3em;
}

.rich-text-styled ul,

.rich-text-content ul {
    list-style-type: disc;
}

.rich-text-styled ol,

.rich-text-content ol {
    list-style-type: decimal;
}

.rich-text-styled ol ul,

.rich-text-styled ul ul,

.rich-text-content ol ul,

.rich-text-content ul ul {
    list-style-type: circle;
}

.rich-text-styled ol ol ul,

.rich-text-styled ol ul ul,

.rich-text-styled ul ol ul,

.rich-text-styled ul ul ul,

.rich-text-content ol ol ul,

.rich-text-content ol ul ul,

.rich-text-content ul ol ul,

.rich-text-content ul ul ul {
    list-style-type: square;
}

.rich-text-styled blockquote,

.rich-text-styled div,

.rich-text-styled h1,

.rich-text-styled h2,

.rich-text-styled h3,

.rich-text-styled h4,

.rich-text-styled h5,

.rich-text-styled h6,

.rich-text-styled p,

.rich-text-content blockquote,

.rich-text-content div,

.rich-text-content h1,

.rich-text-content h2,

.rich-text-content h3,

.rich-text-content h4,

.rich-text-content h5,

.rich-text-content h6,

.rich-text-content p {
    margin-block: 0;
    margin: 0;
}

.rich-text-styled a,

.rich-text-content a {
    color: inherit;
}

.rich-text-modifier-1 li {
    margin-inline-end: 0;
    margin-inline-start: 1.3em;
}

.scroll-anchor {
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    white-space: nowrap;
}

.hidden-content {
    display: none;
}

.lvxhkV {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.QJjwEo {
    transform: translateY(-100%);
    transition: .2s ease-in;
}

.kdBXfh {
    transition: .2s;
}

.MP52zt {
    opacity: 0;
    transition: .2s ease-in;
}

.MP52zt.Bhu9m5 {
    z-index: -1 !important;
}

.LVP8Wf {
    opacity: 1;
    transition: .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 .01s ease;
}

.AT7o0U .vlM3HR {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.image-styled,

.jhxvbR {
    display: block;
    height: 100%;
    width: 100%;
}

.jhxvbR img {
    max-width: var(--site-img-max-width, 100%);
}

.jhxvbR[data-animate-blur] img {
    filter: blur(9px);
    transition: filter .8s ease-in;
}

.jhxvbR[data-animate-blur] img[data-load-done] {
    filter: none;
}

.WzbAF8 {
    direction: var(--direction);
}

.WzbAF8 .mpGTIt .O6KwRn {
    display: var(--item-display);
    height: var(--item-size);
    margin-block: var(--item-margin-block);
    margin-inline: var(--item-margin-inline);
    width: var(--item-size);
}

.WzbAF8 .mpGTIt .O6KwRn:last-child {
    margin-block: 0;
    margin-inline: 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(--site-ads-height));
    left: 0;
    margin-top: var(--site-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));
}

.accessibility-clip {
    clip-path: inset(50%);
    height: 24px;
    position: absolute;
    width: 24px;
}

.accessibility-clip:active,

.accessibility-clip:focus {
    clip-path: unset;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.accessibility-clip.RG3k61 {
    transform: translateY(-50%) rotate(180deg);
}

.r4OX7l,

.nav-item {
    box-sizing: border-box;
    height: 100%;
    overflow: visible;
    position: relative;
    width: auto;
}

.r4OX7l[data-state~=header] a,

.r4OX7l[data-state~=header] div,

[data-state~=header].nav-item a,

[data-state~=header].nav-item div {
    cursor: default !important;
}

.r4OX7l .nav-link,

.nav-item .nav-link {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.nav-item {
    --display: inline-block;
    cursor: pointer;
    display: var(--display);
    font: var(--fnt, var(--font_1));
}

.nav-item .nav-link-padding {
    padding: 0 var(--pad, 5px);
}

.nav-item .nav-label {
    color: rgb(var(--txt, var(--color_15, color_15)));
    display: inline-block;
    padding: 0 10px;
    transition: var(--trans, color .4s ease 0s);
}

.nav-item[data-state~=drop] {
    display: block;
    width: 100%;
}

.nav-item[data-state~=drop] .nav-label {
    padding: 0 .5em;
}

.nav-item[data-state~=link]:hover .nav-label,

.nav-item[data-state~=over] .nav-label {
    color: rgb(var(--txth, var(--color_14, color_14)));
    transition: var(--trans, color .4s ease 0s);
}

.nav-item[data-state~=selected] .nav-label {
    color: rgb(var(--txts, var(--color_14, color_14)));
    transition: var(--trans, color .4s ease 0s);
}

.nav-horizontal {
    overflow-x: hidden;
}

.nav-horizontal .nav-flex-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.nav-horizontal .nav-flex-container .aOF1ks {
    flex: 1;
}

.nav-horizontal .nav-flex-container .nav-items-wrapper {
    height: calc(100% - (var(--menuTotalBordersY, 0px)));
    overflow: visible;
    white-space: nowrap;
    width: calc(100% - (var(--menuTotalBordersX, 0px)));
}

.nav-horizontal .nav-flex-container .nav-items-wrapper .nav-menu-item,

.nav-horizontal .nav-flex-container .nav-items-wrapper .nav-more-item {
    direction: var(--menu-direction);
    display: inline-block;
    text-align: var(--menu-align, var(--align));
}

.nav-horizontal .nav-flex-container .nav-items-wrapper .mvZ3NH {
    display: block;
    width: 100%;
}

.nav-horizontal .nav-dropdown-wrapper {
    direction: var(--submenus-direction);
    display: block;
    opacity: 1;
    text-align: var(--submenus-align, var(--align));
    z-index: 99999;
}

.nav-horizontal .nav-dropdown-wrapper .nav-submenu {
    display: inherit;
    overflow: visible;
    visibility: inherit;
    white-space: nowrap;
    width: auto;
}

.nav-horizontal .nav-dropdown-wrapper.DlGBN0 {
    transition: visibility;
    transition-delay: .2s;
    visibility: visible;
}

.nav-horizontal .nav-dropdown-wrapper .nav-more-item {
    display: inline-block;
}

.nav-horizontal .vh74Xw {
    display: none;
}

.nav-dropdown>nav {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.nav-dropdown .nav-dropdown-wrapper,

.nav-dropdown .nav-items-wrapper,

.nav-dropdown>nav {
    position: absolute;
}

.nav-dropdown .nav-dropdown-wrapper {
    margin-top: 7px;
    visibility: hidden;
}

.nav-dropdown .nav-dropdown-wrapper[data-dropMode=dropUp] {
    margin-bottom: 7px;
    margin-top: 0;
}

.nav-dropdown .nav-submenu {
    background-color: rgba(var(--bgDrop, var(--color_11, color_11)), var(--alpha-bgDrop, 1));
    border-radius: var(--rd, 0);
    box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

.P0dCOY .PJ4KCX {
    background-color: rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1));
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

.xpmKd_ {
    border-radius: var(--overflow-wrapper-border-radius);
}

.button-touch {
    touch-action: manipulation;
}

.button-hover {
    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;
}

.button-hover:before {
    max-width: var(--margin-start, 0);
}

.button-hover:after,

.button-hover:before {
    align-self: stretch;
    content: "";
    flex-grow: 1;
}

.button-hover:after {
    max-width: var(--margin-end, 0);
}

.button-base {
    height: 100%;
}

.button-base .button-hover {
    border-radius: var(--corvid-border-radius, var(--rd, 0));
    bottom: 0;
    box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--trans1, border-color .4s ease 0s, background-color .4s ease 0s);
}

.button-base .button-hover:link,

.button-base .button-hover:visited {
    border-color: transparent;
}

.button-base .button-disabled {
    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 .4s ease 0s);
    white-space: nowrap;
}

.button-base[aria-disabled=false] .button-hover {
    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) .button-base[aria-disabled=false]:active .button-hover,

body.device-mobile-optimized .button-base[aria-disabled=false]:active .button-hover {
    background-color: var(--corvid-hover-background-color, rgba(var(--bgh, var(--color_18, color_18)), var(--alpha-bgh, 1)));
    border-color: var(--corvid-hover-border-color, rgba(var(--brdh, var(--color_15, color_15)), var(--alpha-brdh, 1)));
}

:host(.device-mobile-optimized) .button-base[aria-disabled=false]:active .button-disabled,

body.device-mobile-optimized .button-base[aria-disabled=false]:active .button-disabled {
    color: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))));
}

:host(:not(.device-mobile-optimized)) .button-base[aria-disabled=false]:hover .button-hover,

body:not(.device-mobile-optimized) .button-base[aria-disabled=false]:hover .button-hover {
    background-color: var(--corvid-hover-background-color, rgba(var(--bgh, var(--color_18, color_18)), var(--alpha-bgh, 1)));
    border-color: var(--corvid-hover-border-color, rgba(var(--brdh, var(--color_15, color_15)), var(--alpha-brdh, 1)));
}

:host(:not(.device-mobile-optimized)) .button-base[aria-disabled=false]:hover .button-disabled,

body:not(.device-mobile-optimized) .button-base[aria-disabled=false]:hover .button-disabled {
    color: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))));
}

.button-base[aria-disabled=true] .button-hover {
    background-color: var(--corvid-disabled-background-color, rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1)));
    border-color: var(--corvid-disabled-border-color, rgba(var(--brdd, 204, 204, 204), var(--alpha-brdd, 1)));
    border-style: solid;
    border-width: var(--corvid-border-width, var(--brw, 0));
}

.button-base[aria-disabled=true] .button-disabled {
    color: var(--corvid-disabled-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: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))));
    transition: var(--trans, color .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: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))));
    transition: var(--trans, color .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 .4s ease 0s);
    white-space: nowrap;
}

.Vq4wYb[aria-disabled=true] .wJVzSK {
    color: var(--corvid-disabled-color, rgb(var(--txtd, 255, 255, 255)));
}

:host(:not(.device-mobile-optimized)) .column-strip,

body:not(.device-mobile-optimized) .column-strip {
    display: flex;
}

:host(:not(.device-mobile-optimized)) .column-layout,

body:not(.device-mobile-optimized) .column-layout {
    -moz-column-gap: var(--margin);
    column-gap: var(--margin);
    direction: var(--direction);
    display: flex;
    margin: 0 auto;
    position: relative;
    width: calc(100% - var(--padding)*2);
}

:host(:not(.device-mobile-optimized)) .column-layout>*,

body:not(.device-mobile-optimized) .column-layout>* {
    direction: ltr;
    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) .column-layout,

body.device-mobile-optimized .column-layout {
    display: block;
    padding-bottom: var(--padding-y);
    padding-left: var(--padding-x, 0);
    padding-right: var(--padding-x, 0);
    padding-top: var(--padding-y);
    position: relative;
}

:host(.device-mobile-optimized) .column-layout>*,

body.device-mobile-optimized .column-layout>* {
    margin-bottom: var(--margin);
    position: relative;
}

:host(.device-mobile-optimized) .column-layout>:first-child,

body.device-mobile-optimized .column-layout>:first-child {
    margin-top: var(--firstChildMarginTop, 0);
}

:host(.device-mobile-optimized) .column-layout>:last-child,

body.device-mobile-optimized .column-layout>:last-child {
    margin-bottom: var(--lastChildMarginBottom);
}

.LIhNy3 {
    backface-visibility: hidden;
}

.jhxvbR,

.mtrorN {
    display: block;
    height: 100%;
    width: 100%;
}

.jhxvbR img {
    max-width: var(--site-img-max-width, 100%);
}

.jhxvbR[data-animate-blur] img {
    filter: blur(9px);
    transition: filter .8s ease-in;
}

.jhxvbR[data-animate-blur] img[data-load-done] {
    filter: none;
}

.bg-layers {
    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%;
}

.bg-layers.f0uTJH {
    clip: rect(0, auto, auto, 0);
}

.bg-layers .color-overlay {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.bg-layers .DXi4PB {
    height: var(--fill-layer-image-height, 100%);
    opacity: var(--fill-layer-image-opacity);
}

.bg-layers .DXi4PB img {
    height: 100%;
    width: 100%;
}

@supports (-webkit-hyphens:none) {
    .bg-layers.f0uTJH {
        clip: auto;
        -webkit-clip-path: inset(0);
    }
}

.bg-media-wrapper {
    height: 100%;
}

.color-underlay {
    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%;
}

.KCM6zk {
    opacity: var(--fill-layer-video-opacity, var(--fill-layer-image-opacity, 1));
}

.KCM6zk .DXi4PB,

.KCM6zk .ImALHf,

.KCM6zk .Ybjs9b {
    opacity: 1;
}

._uqPqy {
    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);
}

.bg-blend,

.rWP3Gv,

.wRqk6s {
    height: 100%;
    top: 0;
    width: 100%;
}

.wRqk6s {
    position: absolute;
}

.bg-blend {
    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) {
    .bg-blend {
        mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
        opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
    }
}

.divider-top {
    --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__));
}

.divider-top,

.divider-top .dy3w_9 {
    left: 0;
    position: absolute;
    width: 100%;
}

.divider-top .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));
}

.divider-bottom {
    --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));
}

.divider-bottom .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);
}

.divider-bottom .dy3w_9[data-divider-layer="1"] {
    display: var(--divider-top-layer-1-display, block);
}

.divider-bottom .dy3w_9[data-divider-layer="2"] {
    display: var(--divider-top-layer-2-display, block);
}

.divider-bottom .dy3w_9[data-divider-layer="3"] {
    display: var(--divider-top-layer-3-display, block);
}

.divider-layer {
    --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);
}

.divider-layer .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);
}

.divider-layer .dy3w_9[data-divider-layer="1"] {
    display: var(--divider-bottom-layer-1-display, block);
}

.divider-layer .dy3w_9[data-divider-layer="2"] {
    display: var(--divider-bottom-layer-2-display, block);
}

.divider-layer .dy3w_9[data-divider-layer="3"] {
    display: var(--divider-bottom-layer-3-display, block);
}

.column {
    overflow: visible;
    position: relative;
}

.mwF7X1 {
    backface-visibility: hidden;
}

.YGilLk {
    cursor: pointer;
}

.image-styled {
    display: block;
}

.bg-layer,

.image-styled {
    height: 100%;
    width: 100%;
}

.bg-layer {
    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;
}

.bg-layer.N3eg0s {
    clip: rect(0, auto, auto, 0);
}

.bg-layer .bg-color {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.bg-layer .dLPlxY {
    height: var(--fill-layer-image-height, 100%);
    opacity: var(--fill-layer-image-opacity);
}

.bg-layer .dLPlxY img {
    height: 100%;
    width: 100%;
}

@supports (-webkit-hyphens:none) {
    .bg-layer.N3eg0s {
        clip: auto;
        -webkit-clip-path: inset(0);
    }
}

.bg-media {
    height: 100%;
}

.bg-underlay {
    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%;
}

site-media-canvas {
    display: block;
    height: 100%;
}

.I8xA4L {
    opacity: var(--fill-layer-video-opacity, var(--fill-layer-image-opacity, 1));
}

.I8xA4L .K_YxMd,

.I8xA4L .dLPlxY,

.I8xA4L .yK6aSC {
    opacity: 1;
}

.bX9O_S {
    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,

.bg-overlay {
    height: 100%;
    top: 0;
    width: 100%;
}

.FNxOn5 {
    position: absolute;
}

.bg-overlay {
    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) {
    .bg-overlay {
        mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
        opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
    }
}

.absolute-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.hFwGTD {
    transform: translateY(-100%);
    transition: .2s ease-in;
}

.IQgXoP {
    transition: .2s;
}

.Nr3Nid {
    opacity: 0;
    transition: .2s ease-in;
}

.Nr3Nid.l4oO6c {
    z-index: -1 !important;
}

.iQuoC4 {
    opacity: 1;
    transition: .2s;
}

.header-container {
    height: auto;
}

.header-container,

.header-position {
    position: relative;
    width: 100%;
}

:host(:not(.device-mobile-optimized)) .content-background,

body:not(.device-mobile-optimized) .content-background {
    margin-left: calc((100% - var(--site-width))/2);
    width: var(--site-width);
}

.header-wrapper[data-focuscycled=active] {
    outline: 1px solid transparent;
}

.header-wrapper[data-focuscycled=active]:not(:focus-within) {
    outline: 2px solid transparent;
    transition: outline .01s ease;
}

.header-wrapper .screen-width {
    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, .7));
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.header-wrapper .content-center {
    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);
}

.header-wrapper .content-background,

.header-wrapper .content-center {
    left: 0;
    position: absolute;
    right: 0;
}

.header-wrapper .content-background {
    bottom: 0;
    top: 0;
}

:host(.device-mobile-optimized) .header-wrapper .content-background,

body.device-mobile-optimized .header-wrapper .content-background {
    left: 10px;
    right: 10px;
}

.container {
    pointer-events: none;
}

.page-background {
    min-height: calc(100vh - var(--site-ads-height));
    min-width: var(--site-width);
    position: var(--bg-position);
    top: var(--site-ads-height);
}

.page-background,

.nTOEE9 {
    height: 100%;
    width: 100%;
}

.nTOEE9 {
    overflow: hidden;
    position: relative;
}

.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;
}

.RZQnmg {
    background-color: rgb(var(--color_11));
    border-radius: 50%;
    bottom: 12px;
    height: 40px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    width: 40px;
}

.RZQnmg path {
    fill: rgb(var(--color_15));
}

.RZQnmg:focus {
    cursor: auto;
    opacity: 1;
    pointer-events: auto;
}

.image-container {
    cursor: pointer;
}

.gSXewE {
    height: 0;
    left: 0;
    overflow: hidden;
    top: 0;
    width: 0;
}

.OJQ_3L,

.gSXewE {
    position: absolute;
}

.OJQ_3L {
    background-color: rgb(var(--color_11));
    border-radius: 300px;
    bottom: 0;
    cursor: pointer;
    height: 40px;
    margin: 16px 16px;
    opacity: 0;
    pointer-events: none;
    right: 0;
    width: 40px;
}

.OJQ_3L path {
    fill: rgb(var(--color_12));
}

.OJQ_3L:focus {
    cursor: auto;
    opacity: 1;
    pointer-events: auto;
}

.image-box {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.image-element {
    min-height: var(--image-min-height);
    min-width: var(--image-min-width);
}

.image-element img,

img.image-element {
    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);
}

.image-wrapper {
    left: var(--left, auto);
    position: var(--position-fixed, static);
    top: var(--top, auto);
    z-index: var(--z-index, auto);
}

.image-wrapper .image-element img {
    box-shadow: 0 0 0 #000;
    position: static;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.image-wrapper .image-box {
    display: block;
    overflow: hidden;
}

.image-wrapper .image-element {
    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;
}

.page-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.page-content {
    height: auto;
    position: relative;
    width: 100%;
}

body:not(.responsive) .page-wrapper {
    align-self: start;
    grid-area: 1/1/1/1;
    height: 100%;
    justify-self: stretch;
    left: 0;
    position: relative;
}

:host(:not(.device-mobile-optimized)) .page-background,

body:not(.device-mobile-optimized) .page-background {
    margin-left: calc((100% - var(--site-width))/2);
    width: var(--site-width);
}

:host(.device-mobile-optimized) .page-background,

body.device-mobile-optimized .page-background {
    left: 10px;
    right: 10px;
}

:host(:not(.device-mobile-optimized)) .column-strip,

body:not(.device-mobile-optimized) .column-strip {
    display: flex;
}

:host(:not(.device-mobile-optimized)) .column-layout,

body:not(.device-mobile-optimized) .column-layout {
    -moz-column-gap: var(--margin);
    column-gap: var(--margin);
    direction: var(--direction);
    display: flex;
    margin: 0 auto;
    position: relative;
    width: calc(100% - var(--padding)*2);
}

:host(:not(.device-mobile-optimized)) .column-layout>*,

body:not(.device-mobile-optimized) .column-layout>* {
    direction: ltr;
    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) .column-layout,

body.device-mobile-optimized .column-layout {
    display: block;
    padding-bottom: var(--padding-y);
    padding-left: var(--padding-x, 0);
    padding-right: var(--padding-x, 0);
    padding-top: var(--padding-y);
    position: relative;
}

:host(.device-mobile-optimized) .column-layout>*,

body.device-mobile-optimized .column-layout>* {
    margin-bottom: var(--margin);
    position: relative;
}

:host(.device-mobile-optimized) .column-layout>:first-child,

body.device-mobile-optimized .column-layout>:first-child {
    margin-top: var(--firstChildMarginTop, 0);
}

:host(.device-mobile-optimized) .column-layout>:last-child,

body.device-mobile-optimized .column-layout>:last-child {
    margin-bottom: var(--lastChildMarginBottom);
}

.LIhNy3 {
    backface-visibility: hidden;
}

.jhxvbR,

.mtrorN {
    display: block;
    height: 100%;
    width: 100%;
}

.jhxvbR img {
    max-width: var(--site-img-max-width, 100%);
}

.jhxvbR[data-animate-blur] img {
    filter: blur(9px);
    transition: filter .8s ease-in;
}

.jhxvbR[data-animate-blur] img[data-load-done] {
    filter: none;
}

.bg-layers {
    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%;
}

.bg-layers.f0uTJH {
    clip: rect(0, auto, auto, 0);
}

.bg-layers .color-overlay {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.bg-layers .DXi4PB {
    height: var(--fill-layer-image-height, 100%);
    opacity: var(--fill-layer-image-opacity);
}

.bg-layers .DXi4PB img {
    height: 100%;
    width: 100%;
}

@supports (-webkit-hyphens:none) {
    .bg-layers.f0uTJH {
        clip: auto;
        -webkit-clip-path: inset(0);
    }
}

.bg-media-wrapper {
    height: 100%;
}

.color-underlay {
    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%;
}

site-media-canvas {
    display: block;
    height: 100%;
}

.KCM6zk {
    opacity: var(--fill-layer-video-opacity, var(--fill-layer-image-opacity, 1));
}

.KCM6zk .DXi4PB,

.KCM6zk .ImALHf,

.KCM6zk .Ybjs9b {
    opacity: 1;
}

._uqPqy {
    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);
}

.bg-blend,

.rWP3Gv,

.wRqk6s {
    height: 100%;
    top: 0;
    width: 100%;
}

.wRqk6s {
    position: absolute;
}

.bg-blend {
    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) {
    .bg-blend {
        mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
        opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
    }
}

.divider-top {
    --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__));
}

.divider-top,

.divider-top .dy3w_9 {
    left: 0;
    position: absolute;
    width: 100%;
}

.divider-top .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));
}

.divider-bottom {
    --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));
}

.divider-bottom .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);
}

.divider-bottom .dy3w_9[data-divider-layer="1"] {
    display: var(--divider-top-layer-1-display, block);
}

.divider-bottom .dy3w_9[data-divider-layer="2"] {
    display: var(--divider-top-layer-2-display, block);
}

.divider-bottom .dy3w_9[data-divider-layer="3"] {
    display: var(--divider-top-layer-3-display, block);
}

.divider-layer {
    --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);
}

.divider-layer .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);
}

.divider-layer .dy3w_9[data-divider-layer="1"] {
    display: var(--divider-bottom-layer-1-display, block);
}

.divider-layer .dy3w_9[data-divider-layer="2"] {
    display: var(--divider-bottom-layer-2-display, block);
}

.divider-layer .dy3w_9[data-divider-layer="3"] {
    display: var(--divider-bottom-layer-3-display, block);
}

.skip-to-content {
    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;
}

.skip-to-content:focus {
    border: 2px solid;
    height: 40px;
    opacity: 1;
    pointer-events: auto;
    width: auto;
}

.horizontal-line {
    border-top: var(--lnw, 2px) solid rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
    box-sizing: border-box;
    height: 0;
}

.bg-layer {
    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%;
}

.bg-layer.N3eg0s {
    clip: rect(0, auto, auto, 0);
}

.bg-layer .bg-color {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.bg-layer .dLPlxY {
    height: var(--fill-layer-image-height, 100%);
    opacity: var(--fill-layer-image-opacity);
}

.bg-layer .dLPlxY img {
    height: 100%;
    width: 100%;
}

@supports (-webkit-hyphens:none) {
    .bg-layer.N3eg0s {
        clip: auto;
        -webkit-clip-path: inset(0);
    }
}

.bg-media {
    height: 100%;
}

.bg-underlay {
    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%;
}

site-media-canvas {
    display: block;
    height: 100%;
}

.I8xA4L {
    opacity: var(--fill-layer-video-opacity, var(--fill-layer-image-opacity, 1));
}

.I8xA4L .K_YxMd,

.I8xA4L .dLPlxY,

.I8xA4L .yK6aSC {
    opacity: 1;
}

.section {
    overflow: visible;
}

.section>.bg-layer .bg-underlay {
    background-color: var(--section-corvid-background-color, var(--bg-overlay-color));
}

.cM88eO {
    backface-visibility: hidden;
}

.YtfWHd {
    left: 0;
    top: 0;
}

.YtfWHd,

.mj3xJ8 {
    position: absolute;
}

.mj3xJ8 {
    clip: rect(0 0 0 0);
    background-color: #fff;
    border-radius: 50%;
    bottom: 3px;
    color: #000;
    display: grid;
    height: 24px;
    outline: 1px solid #000;
    place-items: center;
    pointer-events: none;
    right: 3px;
    width: 24px;
    z-index: 9999;
}

.mj3xJ8:active,

.mj3xJ8:focus {
    clip: auto;
    pointer-events: auto;
}

.image-styled,

.jhxvbR {
    display: block;
    height: 100%;
    width: 100%;
}

.jhxvbR img {
    max-width: var(--site-img-max-width, 100%);
}

.jhxvbR[data-animate-blur] img {
    filter: blur(9px);
    transition: filter .8s ease-in;
}

.jhxvbR[data-animate-blur] img[data-load-done] {
    filter: none;
}

.bX9O_S {
    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,

.bg-overlay {
    height: 100%;
    top: 0;
    width: 100%;
}

.FNxOn5 {
    position: absolute;
}

.bg-overlay {
    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) {
    .bg-overlay {
        mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
        opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
    }
}

.dkukWC {
    --divider-pin-height__: min(1, calc(var(--divider-layers-pin-factor__) + 1));
    --divider-pin-layer-height__: var(--divider-layers-pin-factor__);
    --divider-pin-border__: min(1, calc(var(--divider-layers-pin-factor__) / -1 + 1));
    height: calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));
}

.dkukWC,

.dkukWC .FRCqDF {
    left: 0;
    position: absolute;
    width: 100%;
}

.dkukWC .FRCqDF {
    --divider-layer-i__: var(--divider-layer-i, 0);
    background-position: left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__)) bottom;
    background-repeat: repeat-x;
    border-bottom-style: solid;
    border-bottom-width: calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));
    height: calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));
    opacity: calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));
}

.xnZvZH {
    --divider-height__: var(--divider-top-height, auto);
    --divider-offset-x__: var(--divider-top-offset-x, 0px);
    --divider-layers-size__: var(--divider-top-layers-size, 0);
    --divider-layers-y__: var(--divider-top-layers-y, 0px);
    --divider-layers-x__: var(--divider-top-layers-x, 0px);
    --divider-layers-pin-factor__: var(--divider-top-layers-pin-factor, 0);
    border-top: var(--divider-top-padding, 0) solid var(--divider-top-color, currentColor);
    opacity: var(--divider-top-opacity, 1);
    top: 0;
    transform: var(--divider-top-flip, scaleY(-1));
}

.xnZvZH .FRCqDF {
    background-image: var(--divider-top-image, none);
    background-size: var(--divider-top-size, contain);
    border-color: var(--divider-top-color, currentColor);
    bottom: 0;
    filter: var(--divider-top-filter, none);
}

.xnZvZH .FRCqDF[data-divider-layer="1"] {
    display: var(--divider-top-layer-1-display, block);
}

.xnZvZH .FRCqDF[data-divider-layer="2"] {
    display: var(--divider-top-layer-2-display, block);
}

.xnZvZH .FRCqDF[data-divider-layer="3"] {
    display: var(--divider-top-layer-3-display, block);
}

.MBOSCN {
    --divider-height__: var(--divider-bottom-height, auto);
    --divider-offset-x__: var(--divider-bottom-offset-x, 0px);
    --divider-layers-size__: var(--divider-bottom-layers-size, 0);
    --divider-layers-y__: var(--divider-bottom-layers-y, 0px);
    --divider-layers-x__: var(--divider-bottom-layers-x, 0px);
    --divider-layers-pin-factor__: var(--divider-bottom-layers-pin-factor, 0);
    border-bottom: var(--divider-bottom-padding, 0) solid var(--divider-bottom-color, currentColor);
    bottom: 0;
    opacity: var(--divider-bottom-opacity, 1);
    transform: var(--divider-bottom-flip, none);
}

.MBOSCN .FRCqDF {
    background-image: var(--divider-bottom-image, none);
    background-size: var(--divider-bottom-size, contain);
    border-color: var(--divider-bottom-color, currentColor);
    bottom: 0;
    filter: var(--divider-bottom-filter, none);
}

.MBOSCN .FRCqDF[data-divider-layer="1"] {
    display: var(--divider-bottom-layer-1-display, block);
}

.MBOSCN .FRCqDF[data-divider-layer="2"] {
    display: var(--divider-bottom-layer-2-display, block);
}

.MBOSCN .FRCqDF[data-divider-layer="3"] {
    display: var(--divider-bottom-layer-3-display, block);
}

.repeater-list {
    direction: var(--direction);
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--justify-content);
    margin-bottom: var(--margin-bottom);
    margin-top: var(--margin-top);
    margin-inline-end: var(--margin-inline-end);
    margin-inline-start: var(--margin-inline-start);
    position: relative;
}

.repeater-list-item {
    direction: ltr;
    margin: var(--item-margin);
}

.E6jjcn,

.repeater-column {
    display: flex;
    flex-direction: column;
}

.E6jjcn {
    direction: var(--direction);
    justify-content: var(--justify-content);
    margin-bottom: var(--margin-bottom);
    margin-top: var(--margin-top);
    margin-inline-end: var(--margin-inline-end);
    margin-inline-start: var(--margin-inline-start);
    position: relative;
}

.aT7wGr>* {
    width: 100%;
}

.VM7gjN {
    display: flex;
    justify-content: space-between;
}

.aT7wGr {
    direction: ltr;
    margin: var(--item-margin);
}

.height-auto {
    height: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

@view-transition {
    navigation: auto;
    types: OutIn;
}

@font-face {
    font-family: 'helvetica-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/8eac109b-0fa9-42bf-a305-43e471e23779/v1/helvetica-w02-light.woff2') format('woff2');
    unicode-range: U+0100-012B, U+012E-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+0237, U+02C7, U+02C9, U+02D8-02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2044, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E002, U+E004, U+E006, U+E008-E009, U+E00D, U+E00F, U+E011, U+E013, U+E015, U+E017, U+E01A, U+FB01-FB02;
    font-display: optional;
}

@font-face {
    font-family: 'helvetica-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/8eac109b-0fa9-42bf-a305-43e471e23779/v1/helvetica-w01-light.woff2') format('woff2');
    unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2122;
    font-display: optional;
}

@font-face {
    font-family: 'din-next-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w10-light.woff2') format('woff2');
    unicode-range: U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2116;
    font-display: swap;
}

@font-face {
    font-family: 'din-next-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w02-light.woff2') format('woff2');
    unicode-range: U+000D, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+01FA-01FF, U+0218-021B, U+0237, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03C0, U+1E80-1E85, U+1EF2-1EF3, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB00-FB04;
    font-display: swap;
}

@font-face {
    font-family: 'din-next-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2') format('woff2');
    unicode-range: U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+03BC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-roman';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-lt-w10-roman.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-roman';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w02-roman.woff2') format('woff2');
    unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-roman';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02;
    font-display: swap;
}

#masterPage:not(.landingPage) #PAGES_CONTAINER {
    margin-top: 0px;
    margin-bottom: 0px;
}

#masterPage.landingPage #SITE_FOOTER {
    display: none;
}

#masterPage.landingPage #SITE_HEADER {
    display: none;
}

#masterPage.landingPage #SITE_HEADER-placeholder {
    display: none;
}

#masterPage.landingPage #SITE_FOOTER-placeholder {
    display: none;
}

#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus,

#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus~.siteSdkShowFocusOnSibling {
    --focus-ring-box-shadow: 0 0 0 2px #116dff;
    box-shadow: var(--focus-ring-box-shadow) !important;
    z-index: 1;
}

.has-inner-focus-ring {
    --focus-ring-box-shadow: 0 0 0 2px #116dff !important;
}

#masterPage {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

#SITE_FOOTER {
    --pinned-layer-in-container: 50;
    --above-all-in-container: 49;
}

#PAGES_CONTAINER {
    --pinned-layer-in-container: 51;
    --above-all-in-container: 49;
}

#SITE_HEADER {
    z-index: 49;
    --above-all-in-container: 10000;
}

:root,

:host,

.spxThemeOverride,

.max-width-container,

#root {
    --color_0: 255, 255, 255;
    --color_1: 255, 255, 255;
    --color_2: 0, 0, 0;
    --color_3: 237, 28, 36;
    --color_4: 0, 136, 203;
    --color_5: 255, 203, 5;
    --color_6: 114, 114, 114;
    --color_7: 176, 176, 176;
    --color_8: 255, 255, 255;
    --color_9: 114, 114, 114;
    --color_10: 176, 176, 176;
    --color_11: 255, 255, 255;
    --color_12: 255, 255, 255;
    --color_13: 131, 142, 153;
    --color_14: 69, 86, 101;
    --color_15: 69, 86, 101;
    --color_16: 218, 176, 255;
    --color_17: 194, 194, 194;
    --color_18: 63, 122, 156;
    --color_19: 96, 13, 169;
    --color_20: 48, 6, 85;
    --color_21: 250, 196, 186;
    --color_22: 245, 166, 151;
    --color_23: 240, 85, 55;
    --color_24: 160, 57, 37;
    --color_25: 80, 28, 18;
    --color_26: 254, 233, 195;
    --color_27: 252, 222, 165;
    --color_28: 251, 191, 77;
    --color_29: 167, 127, 51;
    --color_30: 84, 64, 26;
    --color_31: 179, 241, 212;
    --color_32: 139, 228, 186;
    --color_33: 47, 214, 136;
    --color_34: 31, 143, 91;
    --color_35: 16, 71, 45;
    --color_36: 7, 29, 50;
    --color_37: 255, 255, 255;
    --color_38: 69, 86, 101;
    --color_39: 131, 142, 153;
    --color_40: 193, 199, 204;
    --color_41: 22, 76, 112;
    --color_42: 194, 194, 194;
    --color_43: 11, 161, 210;
    --color_44: 63, 122, 156;
    --color_45: 7, 29, 50;
    --color_46: 69, 86, 101;
    --color_47: 255, 255, 255;
    --color_48: 22, 76, 112;
    --color_49: 255, 255, 255;
    --color_50: 255, 255, 255;
    --color_51: 194, 194, 194;
    --color_52: 255, 255, 255;
    --color_53: 255, 255, 255;
    --color_54: 69, 86, 101;
    --color_55: 69, 86, 101;
    --color_56: 193, 199, 204;
    --color_57: 22, 76, 112;
    --color_58: 255, 255, 255;
    --color_59: 255, 255, 255;
    --color_60: 194, 194, 194;
    --color_61: 255, 255, 255;
    --color_62: 255, 255, 255;
    --color_63: 69, 86, 101;
    --color_64: 69, 86, 101;
    --color_65: 193, 199, 204;
    --font_0: normal normal normal 70px/1.4em helvetica-w01-light, sans-serif;
    --font_1: normal normal normal 16px/1.4em din-next-w01-light, sans-serif;
    --font_2: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    --font_3: normal normal normal 30px/1.4em helvetica-w01-light, sans-serif;
    --font_4: normal normal normal 25px/1.4em helvetica-w01-light, sans-serif;
    --font_5: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --font_6: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    --font_7: normal normal normal 17px/1.4em helvetica-w01-roman, sans-serif;
    --font_8: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --font_9: normal normal normal 14px/1.4em helvetica-w01-roman, sans-serif;
    --font_10: normal normal normal 12px/1.4em din-next-w01-light, sans-serif;
    --site-ads-height: 0px;
    --sticky-offset: 0px;
    --site-ads-top-height: 0px;
    --site-width: 980px;
    --above-all-z-index: 100000;
    --portals-z-index: 100001;
    --site-opt-in-direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --minViewportSize: 320;
    --maxViewportSize: 1920;
    --theme-spx-ratio: 1px;
    --full-viewport: 100 * var(--one-unit) * var(--browser-zoom);
    --scaling-factor: clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));
    --customScaleViewportLimit: clamp(var(--minViewportSize) * 1px, var(--full-viewport), min(var(--section-max-width), var(--maxViewportSize) * 1px));
}

.font_0 {
    font: var(--font_0);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}

.font_1 {
    font: var(--font_1);
    color: rgb(var(--color_40));
    letter-spacing: 0em;
}

.font_2 {
    font: var(--font_2);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}

.font_3 {
    font: var(--font_3);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}

.font_4 {
    font: var(--font_4);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}

.font_5 {
    font: var(--font_5);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}

.font_6 {
    font: var(--font_6);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}

.font_7 {
    font: var(--font_7);
    color: rgb(var(--color_38));
    letter-spacing: 0em;
}

.font_8 {
    font: var(--font_8);
    color: rgb(var(--color_38));
    letter-spacing: 0em;
}

.font_9 {
    font: var(--font_9);
    color: rgb(var(--color_38));
    letter-spacing: 0em;
}

.font_10 {
    font: var(--font_10);
    color: rgb(var(--color_40));
    letter-spacing: 0em;
}

.color_0 {
    color: rgb(var(--color_0));
}

.color_1 {
    color: rgb(var(--color_1));
}

.color_2 {
    color: rgb(var(--color_2));
}

.color_3 {
    color: rgb(var(--color_3));
}

.color_4 {
    color: rgb(var(--color_4));
}

.color_5 {
    color: rgb(var(--color_5));
}

.color_6 {
    color: rgb(var(--color_6));
}

.color_7 {
    color: rgb(var(--color_7));
}

.color_8 {
    color: rgb(var(--color_8));
}

.color_9 {
    color: rgb(var(--color_9));
}

.color_10 {
    color: rgb(var(--color_10));
}

.color_11 {
    color: rgb(var(--color_11));
}

.color_12 {
    color: rgb(var(--color_12));
}

.color_13 {
    color: rgb(var(--color_13));
}

.color_14 {
    color: rgb(var(--color_14));
}

.color_15 {
    color: rgb(var(--color_15));
}

.color_16 {
    color: rgb(var(--color_16));
}

.color_17 {
    color: rgb(var(--color_17));
}

.color_18 {
    color: rgb(var(--color_18));
}

.color_19 {
    color: rgb(var(--color_19));
}

.color_20 {
    color: rgb(var(--color_20));
}

.color_21 {
    color: rgb(var(--color_21));
}

.color_22 {
    color: rgb(var(--color_22));
}

.color_23 {
    color: rgb(var(--color_23));
}

.color_24 {
    color: rgb(var(--color_24));
}

.color_25 {
    color: rgb(var(--color_25));
}

.color_26 {
    color: rgb(var(--color_26));
}

.color_27 {
    color: rgb(var(--color_27));
}

.color_28 {
    color: rgb(var(--color_28));
}

.color_29 {
    color: rgb(var(--color_29));
}

.color_30 {
    color: rgb(var(--color_30));
}

.color_31 {
    color: rgb(var(--color_31));
}

.color_32 {
    color: rgb(var(--color_32));
}

.color_33 {
    color: rgb(var(--color_33));
}

.color_34 {
    color: rgb(var(--color_34));
}

.color_35 {
    color: rgb(var(--color_35));
}

.color_36 {
    color: rgb(var(--color_36));
}

.color_37 {
    color: rgb(var(--color_37));
}

.color_38 {
    color: rgb(var(--color_38));
}

.color_39 {
    color: rgb(var(--color_39));
}

.color_40 {
    color: rgb(var(--color_40));
}

.color_41 {
    color: rgb(var(--color_41));
}

.color_42 {
    color: rgb(var(--color_42));
}

.color_43 {
    color: rgb(var(--color_43));
}

.color_44 {
    color: rgb(var(--color_44));
}

.color_45 {
    color: rgb(var(--color_45));
}

.color_46 {
    color: rgb(var(--color_46));
}

.color_47 {
    color: rgb(var(--color_47));
}

.color_48 {
    color: rgb(var(--color_48));
}

.color_49 {
    color: rgb(var(--color_49));
}

.color_50 {
    color: rgb(var(--color_50));
}

.color_51 {
    color: rgb(var(--color_51));
}

.color_52 {
    color: rgb(var(--color_52));
}

.color_53 {
    color: rgb(var(--color_53));
}

.color_54 {
    color: rgb(var(--color_54));
}

.color_55 {
    color: rgb(var(--color_55));
}

.color_56 {
    color: rgb(var(--color_56));
}

.color_57 {
    color: rgb(var(--color_57));
}

.color_58 {
    color: rgb(var(--color_58));
}

.color_59 {
    color: rgb(var(--color_59));
}

.color_60 {
    color: rgb(var(--color_60));
}

.color_61 {
    color: rgb(var(--color_61));
}

.color_62 {
    color: rgb(var(--color_62));
}

.color_63 {
    color: rgb(var(--color_63));
}

.color_64 {
    color: rgb(var(--color_64));
}

.color_65 {
    color: rgb(var(--color_65));
}

.backcolor_0 {
    background-color: rgb(var(--color_0));
}

.backcolor_1 {
    background-color: rgb(var(--color_1));
}

.backcolor_2 {
    background-color: rgb(var(--color_2));
}

.backcolor_3 {
    background-color: rgb(var(--color_3));
}

.backcolor_4 {
    background-color: rgb(var(--color_4));
}

.backcolor_5 {
    background-color: rgb(var(--color_5));
}

.backcolor_6 {
    background-color: rgb(var(--color_6));
}

.backcolor_7 {
    background-color: rgb(var(--color_7));
}

.backcolor_8 {
    background-color: rgb(var(--color_8));
}

.backcolor_9 {
    background-color: rgb(var(--color_9));
}

.backcolor_10 {
    background-color: rgb(var(--color_10));
}

.backcolor_11 {
    background-color: rgb(var(--color_11));
}

.backcolor_12 {
    background-color: rgb(var(--color_12));
}

.backcolor_13 {
    background-color: rgb(var(--color_13));
}

.backcolor_14 {
    background-color: rgb(var(--color_14));
}

.backcolor_15 {
    background-color: rgb(var(--color_15));
}

.backcolor_16 {
    background-color: rgb(var(--color_16));
}

.backcolor_17 {
    background-color: rgb(var(--color_17));
}

.backcolor_18 {
    background-color: rgb(var(--color_18));
}

.backcolor_19 {
    background-color: rgb(var(--color_19));
}

.backcolor_20 {
    background-color: rgb(var(--color_20));
}

.backcolor_21 {
    background-color: rgb(var(--color_21));
}

.backcolor_22 {
    background-color: rgb(var(--color_22));
}

.backcolor_23 {
    background-color: rgb(var(--color_23));
}

.backcolor_24 {
    background-color: rgb(var(--color_24));
}

.backcolor_25 {
    background-color: rgb(var(--color_25));
}

.backcolor_26 {
    background-color: rgb(var(--color_26));
}

.backcolor_27 {
    background-color: rgb(var(--color_27));
}

.backcolor_28 {
    background-color: rgb(var(--color_28));
}

.backcolor_29 {
    background-color: rgb(var(--color_29));
}

.backcolor_30 {
    background-color: rgb(var(--color_30));
}

.backcolor_31 {
    background-color: rgb(var(--color_31));
}

.backcolor_32 {
    background-color: rgb(var(--color_32));
}

.backcolor_33 {
    background-color: rgb(var(--color_33));
}

.backcolor_34 {
    background-color: rgb(var(--color_34));
}

.backcolor_35 {
    background-color: rgb(var(--color_35));
}

.backcolor_36 {
    background-color: rgb(var(--color_36));
}

.backcolor_37 {
    background-color: rgb(var(--color_37));
}

.backcolor_38 {
    background-color: rgb(var(--color_38));
}

.backcolor_39 {
    background-color: rgb(var(--color_39));
}

.backcolor_40 {
    background-color: rgb(var(--color_40));
}

.backcolor_41 {
    background-color: rgb(var(--color_41));
}

.backcolor_42 {
    background-color: rgb(var(--color_42));
}

.backcolor_43 {
    background-color: rgb(var(--color_43));
}

.backcolor_44 {
    background-color: rgb(var(--color_44));
}

.backcolor_45 {
    background-color: rgb(var(--color_45));
}

.backcolor_46 {
    background-color: rgb(var(--color_46));
}

.backcolor_47 {
    background-color: rgb(var(--color_47));
}

.backcolor_48 {
    background-color: rgb(var(--color_48));
}

.backcolor_49 {
    background-color: rgb(var(--color_49));
}

.backcolor_50 {
    background-color: rgb(var(--color_50));
}

.backcolor_51 {
    background-color: rgb(var(--color_51));
}

.backcolor_52 {
    background-color: rgb(var(--color_52));
}

.backcolor_53 {
    background-color: rgb(var(--color_53));
}

.backcolor_54 {
    background-color: rgb(var(--color_54));
}

.backcolor_55 {
    background-color: rgb(var(--color_55));
}

.backcolor_56 {
    background-color: rgb(var(--color_56));
}

.backcolor_57 {
    background-color: rgb(var(--color_57));
}

.backcolor_58 {
    background-color: rgb(var(--color_58));
}

.backcolor_59 {
    background-color: rgb(var(--color_59));
}

.backcolor_60 {
    background-color: rgb(var(--color_60));
}

.backcolor_61 {
    background-color: rgb(var(--color_61));
}

.backcolor_62 {
    background-color: rgb(var(--color_62));
}

.backcolor_63 {
    background-color: rgb(var(--color_63));
}

.backcolor_64 {
    background-color: rgb(var(--color_64));
}

.backcolor_65 {
    background-color: rgb(var(--color_65));
}

#SITE_FOOTER {
    --bg: var(--color_37);
    --shd: none;
    --brwt: 0px;
    --brd: 160, 160, 159;
    --brwb: 0px;
    --bgctr: var(--color_37);
    --rd: 0px;
    --alpha-bg: 1;
    --alpha-bgctr: 1;
    --alpha-brd: 1;
    --boxShadowToggleOn-shd: none;
    --backdrop-filter: none;
}

#SITE_FOOTER {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=SITE_FOOTERinlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: repeat(2, min-content) 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="footer-title"],

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>site-interact-element>[id="footer-title"] {
    position: relative;
    margin: 26px 0px 11px calc((100% - 980px) * 0.5);
    left: 35px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="footer-contact-heading"],

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>site-interact-element>[id="footer-contact-heading"] {
    position: relative;
    margin: 26px 0px 14px calc((100% - 980px) * 0.5);
    left: 475px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="footer-contact-details"],

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>site-interact-element>[id="footer-contact-details"] {
    position: relative;
    margin: 0px 0px 17px calc((100% - 980px) * 0.5);
    left: 475px;
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="footer-column-strip"],

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>site-interact-element>[id="footer-column-strip"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="footer-legal-links"],

[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>site-interact-element>[id="footer-legal-links"] {
    position: relative;
    margin: 0px 0px 61px calc((100% - 980px) * 0.5);
    left: 35px;
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
    align-self: start;
}

#SITE_FOOTER {
    --shc-mutated-brightness: 128, 128, 128;
    --bg-overlay-color: rgb(var(--color_37));
    --bg-gradient: none;
}

#footer-title {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#footer-title {
    width: 191px;
    height: auto;
}

#footer-title {
    --text-direction: var(--site-opt-in-direction);
}

#footer-contact-heading {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#footer-contact-heading {
    width: 300px;
    height: auto;
}

#footer-contact-heading {
    --text-direction: var(--site-opt-in-direction);
}

#footer-contact-details {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#footer-contact-details {
    width: 469px;
    height: auto;
}

#footer-contact-details {
    --min-height: 56px;
    --text-direction: var(--site-opt-in-direction);
}

#footer-column-strip {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 980px;
}

[data-mesh-id=footer-columninlineContent] {
    height: auto;
    width: 100%;
    position: static;
    min-height: 0px;
}

#footer-column-strip {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    --padding: 0px;
    --margin: 0px;
    min-width: 980px;
    --firstChildMarginTop: -1px;
    --lastChildMarginBottom: -1px;
    --direction: ltr;
}

#footer-column {
    width: 980px;
}

#footer-column {
    --bg-overlay-color: rgb(var(--color_36));
    --bg-gradient: none;
    width: 100%;
    --column-width: 980px;
    --column-flex: 980;
}

#footer-legal-links {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#footer-legal-links {
    width: 191px;
    height: auto;
}

#footer-legal-links {
    --min-height: 56px;
    --text-direction: var(--site-opt-in-direction);
}

#PAGES_CONTAINER {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

#SITE_PAGES {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

#SITE_PAGES {
    --transition-duration: 700ms;
}

#masterPage:not(.landingPage) {
    --top-offset: 0px;
    --header-height: 99px;
}

#masterPage.landingPage {
    --top-offset: 0px;
}

#SITE_HEADER {
    --bg: var(--color_36);
    --shd: none;
    --brwt: 0px;
    --brd: var(--color_13);
    --brwb: 0px;
    --bgctr: var(--color_36);
    --rd: 0px;
    --alpha-bg: 1;
    --alpha-bgctr: 1;
    --alpha-brd: 0;
    --boxShadowToggleOn-shd: none;
    --backdrop-filter: none;
}

#SITE_HEADER {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=SITE_HEADERinlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=SITE_HEADERinlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=SITE_HEADERinlineContent-gridContainer]>[id="header-logo-section"],

[data-mesh-id=SITE_HEADERinlineContent-gridContainer]>site-interact-element>[id="header-logo-section"] {
    position: relative;
    margin: 14px 0px 15px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=SITE_HEADERinlineContent-gridContainer]>[id="nav-main"],

[data-mesh-id=SITE_HEADERinlineContent-gridContainer]>site-interact-element>[id="nav-main"] {
    position: relative;
    margin: 24px calc((100% - 980px) * 0.5) 25px 0px;
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: end;
    align-self: start;
}

#SITE_HEADER {
    --bg-overlay-color: rgb(var(--color_36));
    --bg-gradient: none;
    --shc-mutated-brightness: 4, 15, 25;
}

#header-logo-section {
    width: 243px;
    height: auto;
}

[data-mesh-id=header-logo-sectioninlineContent] {
    height: auto;
    width: 243px;
}

[data-mesh-id=header-logo-sectioninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=header-logo-sectioninlineContent-gridContainer]>[id="header-logo"],

[data-mesh-id=header-logo-sectioninlineContent-gridContainer]>site-interact-element>[id="header-logo"] {
    position: relative;
    margin: 0px 0px 0px 0;
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=header-logo-sectioninlineContent-gridContainer]>[id="header-title"],

[data-mesh-id=header-logo-sectioninlineContent-gridContainer]>site-interact-element>[id="header-title"] {
    position: relative;
    margin: 18px 0px 10px 0;
    left: 75px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

#header-logo {
    --contentPaddingLeft: 0px;
    --contentPaddingRight: 0px;
    --contentPaddingTop: 0px;
    --contentPaddingBottom: 0px;
}

#header-logo {
    width: 70px;
    height: 70px;
}

#header-logo {
    --height: 70px;
    --width: 70px;
}

#header-title {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#header-title {
    width: 168px;
    height: auto;
    white-space: nowrap;
}

#header-title {
    --min-height: 42px;
    --text-direction: var(--site-opt-in-direction);
}

#nav-main {
    --menuTotalBordersX: 0px;
    --menuTotalBordersY: 0px;
    --bgDrop: var(--color_43);
    --rd: 0px;
    --shd: none;
    --fnt: normal normal normal 16px/1.4em helvetica-w01-roman, sans-serif;
    --pad: 5px;
    --txt: var(--color_11);
    --trans: color 0.4s ease 0s;
    --txth: var(--color_40);
    --txts: var(--color_43);
    --alpha-bgDrop: 1;
    --alpha-txt: 1;
    --alpha-txth: 1;
    --alpha-txts: 1;
    --boxShadowToggleOn-shd: none;
}

#nav-main {
    width: 236px;
    height: 50px;
}

#nav-main {
    --menuTotalBordersY: 0px;
    --menuTotalBordersX: 0px;
    --submenus-direction: inherit;
    --menu-direction: inherit;
    --align: start;
    --menu-align: inherit;
    --submenus-align: inherit;
}

@font-face {
    font-family: 'avenir-lt-w01_85-heavy1475544';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w05_85-heavy.woff2') format('woff2');
    unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;
    font-display: swap;
}

@font-face {
    font-family: 'avenir-lt-w01_85-heavy1475544';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w01_85-heavy1475544.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-roman';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-lt-w10-roman.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-roman';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w02-roman.woff2') format('woff2');
    unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-roman';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02;
    font-display: swap;
}

@font-face {
    font-family: 'avenir-lt-w01_35-light1475496';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2') format('woff2');
    unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;
    font-display: swap;
}

@font-face {
    font-family: 'avenir-lt-w01_35-light1475496';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/8eac109b-0fa9-42bf-a305-43e471e23779/v1/helvetica-w02-light.woff2') format('woff2');
    unicode-range: U+0100-012B, U+012E-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+0237, U+02C7, U+02C9, U+02D8-02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2044, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E002, U+E004, U+E006, U+E008-E009, U+E00D, U+E00F, U+E011, U+E013, U+E015, U+E017, U+E01A, U+FB01-FB02;
    font-display: optional;
}

@font-face {
    font-family: 'helvetica-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url('http://static.parastorage.com/fonts/v2/8eac109b-0fa9-42bf-a305-43e471e23779/v1/helvetica-w01-light.woff2') format('woff2');
    unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2122;
    font-display: optional;
}

#m7ig0 {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

#masterPage {
    --pinned-layers-in-page: 0;
}

[data-mesh-id=Containerm7ig0inlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: 40px;
    grid-template-rows: repeat(5, min-content) 1fr;
    grid-template-columns: 100%;
    padding-bottom: 0px;
    box-sizing: border-box;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>[id="hero-section"],

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>site-interact-element>[id="hero-section"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>[id="thankyou-banner"],

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>site-interact-element>[id="thankyou-banner"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>[id="intro-section"],

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>site-interact-element>[id="intro-section"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>[id="speakers-section"],

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>site-interact-element>[id="speakers-section"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>[id="intro-bg-strip"],

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>site-interact-element>[id="intro-bg-strip"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 5 / 1 / 6 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>[id="hero-content-section"],

[data-mesh-id=Containerm7ig0inlineContent-gridContainer]>site-interact-element>[id="hero-content-section"] {
    position: relative;
    margin: 0px 0px 0 calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
    align-self: start;
}

#hero-section {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=hero-sectioninlineContent] {
    height: auto;
    width: 100%;
    display: flex;
}

[data-mesh-id=hero-sectioninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    margin-top: -99px;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=hero-sectioninlineContent-gridContainer]>[id="hero-bg-strip"],

[data-mesh-id=hero-sectioninlineContent-gridContainer]>site-interact-element>[id="hero-bg-strip"] {
    position: relative;
    margin: 0px 0px 0px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

#hero-bg-strip {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 980px;
}

[data-mesh-id=hero-columninlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=hero-columninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: 923px;
    grid-template-rows: repeat(2, min-content) 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=hero-columninlineContent-gridContainer]>[id="hero-image"],

[data-mesh-id=hero-columninlineContent-gridContainer]>site-interact-element>[id="hero-image"] {
    position: relative;
    margin: 175px 0px 35px calc((100% - 980px) * 0.5);
    left: 381px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=hero-columninlineContent-gridContainer]>[id="hero-title"],

[data-mesh-id=hero-columninlineContent-gridContainer]>site-interact-element>[id="hero-title"] {
    position: relative;
    margin: 0px 0px 44px calc((100% - 980px) * 0.5);
    left: 20px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=hero-columninlineContent-gridContainer]>[id="hero-subtitle"],

[data-mesh-id=hero-columninlineContent-gridContainer]>site-interact-element>[id="hero-subtitle"] {
    position: relative;
    margin: 0px 0px 10px calc((100% - 980px) * 0.5);
    left: 293px;
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
    align-self: start;
}

#hero-column {
    width: 980px;
}

#hero-image {
    --contentPaddingLeft: 0px;
    --contentPaddingRight: 0px;
    --contentPaddingTop: 0px;
    --contentPaddingBottom: 0px;
}

#hero-image {
    width: 216px;
    height: 239px;
}

#hero-title {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#hero-title {
    width: 939px;
    height: auto;
}

#hero-subtitle {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#hero-subtitle {
    width: 393px;
    height: auto;
}

#thankyou-banner {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=thankyou-bannerinlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=thankyou-bannerinlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=thankyou-bannerinlineContent-gridContainer]>[id="thankyou-strip"],

[data-mesh-id=thankyou-bannerinlineContent-gridContainer]>site-interact-element>[id="thankyou-strip"] {
    position: relative;
    margin: 0px 0px 0px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

#thankyou-strip {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 980px;
}

[data-mesh-id=thankyou-columninlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=thankyou-columninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=thankyou-columninlineContent-gridContainer]>[id="thankyou-message"],

[data-mesh-id=thankyou-columninlineContent-gridContainer]>site-interact-element>[id="thankyou-message"] {
    position: relative;
    margin: 41px 0px 42px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

#thankyou-column {
    width: 980px;
}

#thankyou-message {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#thankyou-message {
    width: 980px;
    height: auto;
}

#intro-section {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=intro-sectioninlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=intro-sectioninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: min-content 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=intro-sectioninlineContent-gridContainer]>[id="intro-text"],

[data-mesh-id=intro-sectioninlineContent-gridContainer]>site-interact-element>[id="intro-text"] {
    position: relative;
    margin: 49px 0px 34px calc((100% - 980px) * 0.5);
    left: 19px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=intro-sectioninlineContent-gridContainer]>[id="gallery-logos"],

[data-mesh-id=intro-sectioninlineContent-gridContainer]>site-interact-element>[id="gallery-logos"] {
    position: relative;
    margin: 0px 0px 0px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=intro-sectioninlineContent-gridContainer]>[id="gallery-logos-extended"],

[data-mesh-id=intro-sectioninlineContent-gridContainer]>site-interact-element>[id="gallery-logos-extended"] {
    position: relative;
    margin: 0px 0px 0px calc((100% - 980px) * 0.5);
    left: 0px;
    justify-self: start;
    align-self: start;
}

#intro-text {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#intro-text {
    width: 941px;
    height: auto;
}

#gallery-logos {
    width: 960px;
    height: 300px;
}

#gallery-logos-extended {
    width: 960px;
    height: 1550px;
}

#speakers-section {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=speakers-sectioninlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=speakers-sectioninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: repeat(2, min-content) 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=speakers-sectioninlineContent-gridContainer]>[id="speakers-heading"],

[data-mesh-id=speakers-sectioninlineContent-gridContainer]>site-interact-element>[id="speakers-heading"] {
    position: relative;
    margin: 45px 0px 49px calc((100% - 980px) * 0.5);
    left: 17px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=speakers-sectioninlineContent-gridContainer]>[id="speakers-decorative-lines"],

[data-mesh-id=speakers-sectioninlineContent-gridContainer]>site-interact-element>[id="speakers-decorative-lines"] {
    position: relative;
    margin: 0px 0px 42px calc((100% - 980px) * 0.5);
    left: 17px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=speakers-sectioninlineContent-gridContainer]>[id="gallery-speakers"],

[data-mesh-id=speakers-sectioninlineContent-gridContainer]>site-interact-element>[id="gallery-speakers"] {
    position: relative;
    margin: 0px 0px 12px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
    align-self: start;
}

#speakers-heading {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#speakers-heading {
    width: 941px;
    height: auto;
}

#speakers-decorative-lines {
    width: 941px;
}

[data-mesh-id=speakers-decorative-linesinlineContent] {
    height: auto;
    width: 941px;
}

[data-mesh-id=speakers-decorative-linesinlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=speakers-decorative-linesinlineContent-gridContainer]>[id="speakers-horizontal-line"],

[data-mesh-id=speakers-decorative-linesinlineContent-gridContainer]>site-interact-element>[id="speakers-horizontal-line"] {
    position: relative;
    margin: 0px 0px 0px 0;
    left: 2px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=speakers-decorative-linesinlineContent-gridContainer]>[id="speakers-decorative-element"],

[data-mesh-id=speakers-decorative-linesinlineContent-gridContainer]>site-interact-element>[id="speakers-decorative-element"] {
    position: relative;
    margin: 0px 0px 0px 0;
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

#speakers-horizontal-line {
    --lnw: 1px;
    --brd: var(--color_40);
    --alpha-brd: 1;
}

#speakers-horizontal-line {
    width: 939px;
    height: 7px;
}

#speakers-decorative-element {
    --lnw: 1px;
    --brd: var(--color_36);
    --alpha-brd: 1;
}

#speakers-decorative-element {
    width: 212px;
    height: 7px;
}

#gallery-speakers {
    width: 980px;
    height: 2295px;
}

#intro-bg-strip {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=intro-bg-stripinlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=intro-bg-stripinlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: min-content 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=intro-bg-stripinlineContent-gridContainer]>[id="intro-column"],

[data-mesh-id=intro-bg-stripinlineContent-gridContainer]>site-interact-element>[id="intro-column"] {
    position: relative;
    margin: 70px 0px 15px calc((100% - 980px) * 0.5);
    left: 16px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=intro-bg-stripinlineContent-gridContainer]>[id="intro-decorative-element-1"],

[data-mesh-id=intro-bg-stripinlineContent-gridContainer]>site-interact-element>[id="intro-decorative-element-1"] {
    position: relative;
    margin: 0px 0px 61px calc((100% - 980px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

#intro-column {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#intro-column {
    width: 941px;
    height: auto;
}

#intro-decorative-element-1 {
    --brw: 0px;
    --brd: 50, 65, 88;
    --bg: 61, 155, 233;
    --rd: 0px;
    --shd: none;
    --gradient: none;
    --alpha-brd: 0;
    --alpha-bg: 0;
    --boxShadowToggleOn-shd: none;
    --bg-gradient: none;
}

#intro-decorative-element-1 {
    width: 980px;
}

[id^="intro-decorative-element-2__"] {
    width: 483px;
}

[data-mesh-id^="intro-decorative-element-2__"][data-mesh-id$="inlineContent"] {
    height: auto;
    width: 100%;
}

[data-mesh-id^="intro-decorative-element-2__"][data-mesh-id$="inlineContent-gridContainer"] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id^=intro-decorative-element-2__]>[id^="intro-text-element__"],

[data-mesh-id^=intro-decorative-element-2__]>site-interact-element>[id^="intro-text-element__"] {
    position: relative;
    margin: 19px 0px 27px 0;
    left: 6px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[id^="intro-text-element__"]:not(.is-animating) {
    transition: all 0.4s ease-in-out 0s, visibility 0s;
    --transition: all 0.4s ease-in-out 0s, visibility 0s;
}

[id^="intro-text-element__"]:not(.is-animating) :not(.is-animating) {
    transition: all 0.4s ease-in-out 0s, visibility 0s;
    --transition: all 0.4s ease-in-out 0s, visibility 0s;
}

[id^="intro-text-element__"] {
    width: 475px;
    height: auto;
}

#hero-content-section {
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

[data-mesh-id=hero-content-sectioninlineContent] {
    height: auto;
    width: 100%;
}

[data-mesh-id=hero-content-sectioninlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=hero-content-sectioninlineContent-gridContainer]>[id="hero-text-element"],

[data-mesh-id=hero-content-sectioninlineContent-gridContainer]>site-interact-element>[id="hero-text-element"] {
    position: relative;
    margin: 0px 0 19px 0;
    left: 0;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: stretch;
    align-self: start;
}

#hero-text-element {
    width: 100%;
    left: 0;
    margin-left: 0;
    min-width: initial;
    height: 21px;
}

#m7ig0 {
    width: auto;
    min-height: 40px;
}

#pageBackground_m7ig0 {
    --bg-position: absolute;
    --fill-layer-background-overlay-color: transparent;
    --fill-layer-background-overlay-position: absolute;
    --bg-overlay-color: rgb(var(--color_37));
    --bg-gradient: none;
}

#hero-section {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    min-width: 980px;
}

#hero-bg-strip {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    --padding: 0px;
    --margin: 0px;
    min-width: 980px;
    --firstChildMarginTop: -1px;
    --lastChildMarginBottom: -1px;
    --direction: ltr;
}

#hero-column {
    --fill-layer-image-opacity: 1;
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    width: 100%;
    --column-width: 980px;
    --column-flex: 980;
}

#hero-image {
    --height: 239px;
    --width: 216px;
}

#hero-title {
    --min-height: 150px;
    --text-direction: var(--site-opt-in-direction);
}

#hero-subtitle {
    --text-direction: var(--site-opt-in-direction);
}

#thankyou-banner {
    --bg-overlay-color: rgb(202, 220, 20);
    --bg-gradient: none;
    min-width: 980px;
}

#thankyou-strip {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    --padding: 0px;
    --margin: 0px;
    min-width: 980px;
    --firstChildMarginTop: -1px;
    --lastChildMarginBottom: -1px;
    --direction: ltr;
}

#thankyou-column {
    --bg-overlay-color: rgb(202, 220, 20);
    --bg-gradient: none;
    width: 100%;
    --column-width: 980px;
    --column-flex: 980;
}

#thankyou-message {
    --min-height: 40px;
    --text-direction: var(--site-opt-in-direction);
}

#intro-section {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    min-width: 980px;
}

#intro-text {
    --min-height: 276px;
    --text-direction: var(--site-opt-in-direction);
}

#speakers-section {
    --bg-overlay-color: rgb(var(--color_11));
    --bg-gradient: none;
    min-width: 980px;
}

#speakers-heading {
    --text-direction: var(--site-opt-in-direction);
}

#speakers-horizontal-line {
    transform-origin: center 0.5px;
}

#speakers-decorative-element {
    transform-origin: center 0.5px;
}

[data-mesh-id=sponsors-sectioninlineContent-gridContainer]>[id="sponsors-heading"],

[data-mesh-id=sponsors-sectioninlineContent-gridContainer]>site-interact-element>[id="sponsors-heading"] {
    position: relative;
    margin: 45px 0px 49px calc((100% - 980px) * 0.5);
    left: 17px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=sponsors-sectioninlineContent-gridContainer]>[id="sponsors-decorative-lines"],

[data-mesh-id=sponsors-sectioninlineContent-gridContainer]>site-interact-element>[id="sponsors-decorative-lines"] {
    position: relative;
    margin: 0px 0px 42px calc((100% - 980px) * 0.5);
    left: 17px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
}

#sponsors-heading {
    --backgroundColor: 0, 0, 0;
    --alpha-backgroundColor: 0;
    --blendMode: normal;
    --textShadow: 0px 0px transparent;
    --textOutline: 0px 0px transparent;
}

#sponsors-heading {
    width: 941px;
    height: auto;
}

#sponsors-decorative-lines {
    width: 941px;
}

[data-mesh-id=sponsors-decorative-linesinlineContent] {
    height: auto;
    width: 941px;
}

[data-mesh-id=sponsors-decorative-linesinlineContent-gridContainer] {
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    grid-template-rows: 1fr;
    grid-template-columns: 100%;
}

[data-mesh-id=sponsors-decorative-linesinlineContent-gridContainer]>[id="sponsors-horizontal-line"],

[data-mesh-id=sponsors-decorative-linesinlineContent-gridContainer]>site-interact-element>[id="sponsors-horizontal-line"] {
    position: relative;
    margin: 0px 0px 0px 0;
    left: 2px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

[data-mesh-id=sponsors-decorative-linesinlineContent-gridContainer]>[id="sponsors-decorative-element"],

[data-mesh-id=sponsors-decorative-linesinlineContent-gridContainer]>site-interact-element>[id="sponsors-decorative-element"] {
    position: relative;
    margin: 0px 0px 0px 0;
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
}

#sponsors-horizontal-line {
    --lnw: 1px;
    --brd: var(--color_40);
    --alpha-brd: 1;
}

#sponsors-horizontal-line {
    width: 939px;
    height: 7px;
}

#sponsors-decorative-element {
    --lnw: 1px;
    --brd: var(--color_36);
    --alpha-brd: 1;
}

#sponsors-decorative-element {
    width: 212px;
    height: 7px;
}

#sponsors-heading {
    --text-direction: var(--site-opt-in-direction);
}

#sponsors-horizontal-line {
    transform-origin: center 0.5px;
}

#sponsors-decorative-element {
    transform-origin: center 0.5px;
}

#intro-bg-strip {
    --bg-overlay-color: rgb(var(--color_36));
    --bg-gradient: none;
    min-width: 980px;
}

#intro-column {
    --text-direction: var(--site-opt-in-direction);
}

#intro-decorative-element-1 {
    --direction: var(--site-opt-in-direction);
    --justify-content: space-between;
    --item-margin: 12.5px 0px;
    --margin-top: -12.5px;
    --margin-bottom: -12.5px;
    --margin-inline-start: 0px;
    --margin-inline-end: 0px;
}

[id^="intro-decorative-element-2__"] {
    --bg-overlay-color: rgb(var(--color_36));
    --bg-gradient: none;
    border-width: 0 0 0 0;
    border-style: solid solid solid solid;
    border-color: rgba(176, 169, 134, 1) rgba(176, 169, 134, 1) rgba(176, 169, 134, 1) rgba(176, 169, 134, 1);
    border-radius: 0 0 0 0;
    overflow: clip;
    transform: translateZ(0);
    margin: -0px;
}

[id^="intro-text-element__"] {
    --min-height: 35px;
    --text-direction: var(--site-opt-in-direction);
}

#hero-content-section {
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    min-width: 980px;
}

.gallery-logos {
    --site-color-1: 255, 255, 255;
    --site-color-2: 255, 255, 255;
    --site-color-3: 131, 142, 153;
    --site-color-4: 69, 86, 101;
    --site-color-5: 69, 86, 101;
    --site-color-6: 218, 176, 255;
    --site-color-7: 194, 194, 194;
    --site-color-8: 63, 122, 156;
    --site-color-9: 96, 13, 169;
    --site-color-10: 48, 6, 85;
    --site-color-11: 250, 196, 186;
    --site-color-12: 245, 166, 151;
    --site-color-13: 240, 85, 55;
    --site-color-14: 160, 57, 37;
    --site-color-15: 80, 28, 18;
    --site-color-16: 254, 233, 195;
    --site-color-17: 252, 222, 165;
    --site-color-18: 251, 191, 77;
    --site-color-19: 167, 127, 51;
    --site-color-20: 84, 64, 26;
    --site-color-21: 179, 241, 212;
    --site-color-22: 139, 228, 186;
    --site-color-23: 47, 214, 136;
    --site-color-24: 31, 143, 91;
    --site-color-25: 16, 71, 45;
    --site-color-26: 7, 29, 50;
    --site-color-27: 255, 255, 255;
    --site-color-28: 69, 86, 101;
    --site-color-29: 131, 142, 153;
    --site-color-30: 193, 199, 204;
    --site-color-31: 22, 76, 112;
    --site-color-32: 194, 194, 194;
    --site-color-33: 11, 161, 210;
    --site-color-34: 63, 122, 156;
    --site-color-35: 7, 29, 50;
    --site-color-36: 69, 86, 101;
    --site-color-37: 255, 255, 255;
    --site-color-38: 22, 76, 112;
    --site-color-39: 255, 255, 255;
    --site-color-40: 255, 255, 255;
    --site-color-41: 194, 194, 194;
    --site-color-42: 255, 255, 255;
    --site-color-43: 255, 255, 255;
    --site-color-44: 69, 86, 101;
    --site-color-45: 69, 86, 101;
    --site-color-46: 193, 199, 204;
    --site-color-47: 22, 76, 112;
    --site-color-48: 255, 255, 255;
    --site-color-49: 255, 255, 255;
    --site-color-50: 194, 194, 194;
    --site-color-51: 255, 255, 255;
    --site-color-52: 255, 255, 255;
    --site-color-53: 69, 86, 101;
    --site-color-54: 69, 86, 101;
    --site-color-55: 193, 199, 204;
    --site-font-Title: normal normal normal 70px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Title-style: normal;
    --site-font-Title-variant: normal;
    --site-font-Title-weight: normal;
    --site-font-Title-size: 70px;
    --site-font-Title-line-height: 1.4em;
    --site-font-Title-family: helvetica-w01-light, sans-serif;
    --site-font-Title-text-decoration: none;
    --site-font-Menu: normal normal normal 16px/1.4em din-next-w01-light, sans-serif;
    --site-font-Menu-style: normal;
    --site-font-Menu-variant: normal;
    --site-font-Menu-weight: normal;
    --site-font-Menu-size: 16px;
    --site-font-Menu-line-height: 1.4em;
    --site-font-Menu-family: din-next-w01-light, sans-serif;
    --site-font-Menu-text-decoration: none;
    --site-font-Page-title: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Page-title-style: normal;
    --site-font-Page-title-variant: normal;
    --site-font-Page-title-weight: normal;
    --site-font-Page-title-size: 50px;
    --site-font-Page-title-line-height: 1.4em;
    --site-font-Page-title-family: helvetica-w01-light, sans-serif;
    --site-font-Page-title-text-decoration: none;
    --site-font-Heading-XL: normal normal normal 30px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-XL-style: normal;
    --site-font-Heading-XL-variant: normal;
    --site-font-Heading-XL-weight: normal;
    --site-font-Heading-XL-size: 30px;
    --site-font-Heading-XL-line-height: 1.4em;
    --site-font-Heading-XL-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-XL-text-decoration: none;
    --site-font-Heading-L: normal normal normal 25px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-L-style: normal;
    --site-font-Heading-L-variant: normal;
    --site-font-Heading-L-weight: normal;
    --site-font-Heading-L-size: 25px;
    --site-font-Heading-L-line-height: 1.4em;
    --site-font-Heading-L-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-L-text-decoration: none;
    --site-font-Heading-M: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-M-style: normal;
    --site-font-Heading-M-variant: normal;
    --site-font-Heading-M-weight: bold;
    --site-font-Heading-M-size: 25px;
    --site-font-Heading-M-line-height: 1.4em;
    --site-font-Heading-M-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-M-text-decoration: none;
    --site-font-Heading-S: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-S-style: normal;
    --site-font-Heading-S-variant: normal;
    --site-font-Heading-S-weight: normal;
    --site-font-Heading-S-size: 22px;
    --site-font-Heading-S-line-height: 1.4em;
    --site-font-Heading-S-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-S-text-decoration: none;
    --site-font-Body-L: normal normal normal 17px/1.4em helvetica-w01-roman, sans-serif;
    --site-font-Body-L-style: normal;
    --site-font-Body-L-variant: normal;
    --site-font-Body-L-weight: normal;
    --site-font-Body-L-size: 17px;
    --site-font-Body-L-line-height: 1.4em;
    --site-font-Body-L-family: helvetica-w01-roman, sans-serif;
    --site-font-Body-L-text-decoration: none;
    --site-font-Body-M: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --site-font-Body-M-style: normal;
    --site-font-Body-M-variant: normal;
    --site-font-Body-M-weight: normal;
    --site-font-Body-M-size: 18px;
    --site-font-Body-M-line-height: 1.4em;
    --site-font-Body-M-family: helvetica-w01-roman, sans-serif;
    --site-font-Body-M-text-decoration: none;
    --site-font-Body-S: normal normal normal 14px/1.4em helvetica-w01-roman, sans-serif;
    --site-font-Body-S-style: normal;
    --site-font-Body-S-variant: normal;
    --site-font-Body-S-weight: normal;
    --site-font-Body-S-size: 14px;
    --site-font-Body-S-line-height: 1.4em;
    --site-font-Body-S-family: helvetica-w01-roman, sans-serif;
    --site-font-Body-S-text-decoration: none;
    --site-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light, sans-serif;
    --site-font-Body-XS-style: normal;
    --site-font-Body-XS-variant: normal;
    --site-font-Body-XS-weight: normal;
    --site-font-Body-XS-size: 12px;
    --site-font-Body-XS-line-height: 1.4em;
    --site-font-Body-XS-family: din-next-w01-light, sans-serif;
    --site-font-Body-XS-text-decoration: none;
    --site-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh;
    --site-font-LIGHT-style: normal;
    --site-font-LIGHT-variant: normal;
    --site-font-LIGHT-weight: normal;
    --site-font-LIGHT-size: 12px;
    --site-font-LIGHT-line-height: 1.4em;
    --site-font-LIGHT-family: HelveticaNeueW01-45Ligh;
    --site-font-LIGHT-text-decoration: none;
    --site-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma;
    --site-font-MEDIUM-style: normal;
    --site-font-MEDIUM-variant: normal;
    --site-font-MEDIUM-weight: normal;
    --site-font-MEDIUM-size: 12px;
    --site-font-MEDIUM-line-height: 1.4em;
    --site-font-MEDIUM-family: HelveticaNeueW01-55Roma;
    --site-font-MEDIUM-text-decoration: none;
    --site-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi;
    --site-font-STRONG-style: normal;
    --site-font-STRONG-variant: normal;
    --site-font-STRONG-weight: normal;
    --site-font-STRONG-size: 12px;
    --site-font-STRONG-line-height: 1.4em;
    --site-font-STRONG-family: HelveticaNeueW01-65Medi;
    --site-font-STRONG-text-decoration: none;
    --site-direction: ltr;
    --newItemsDetails: 1;
    --gridStyle: 1;
    --gallerySize: 48;
    --te-padding-slider: 50;
    --newItemsLocation: 0;
    --scrollDirection: 0;
    --overlayAnimation: 1;
    --collageDensity: 80;
    --calculateTextBoxHeightMode: 0;
    --loveCounter: 1;
    --galleryLayout: 2;
    --titlePlacement: 0;
    --numberOfImagesPerRow: 4;
    --galleryVerticalAlign: 0;
    --imageQuality: 75;
    --galleryHorizontalAlign: 1;
    --imageMargin: 50;
    --textBoxHeight: 25;
    --arrowsVerticalPosition: 0;
    --designedPresetId: -1;
    --itemClick: 1;
    --previewHover: 0;
    --imageResize: 1;
    --imageInfoType: 0;
    --m_designedPresetId: -1;
    --m_imageMargin: 31;
    --m_scrollDirection: 0;
    --m_numberOfImagesPerCol: 1;
    --m_galleryLayout: 2;
    --m_allowFixedGalleryRatio: 1;
    --m_fixedGalleryRatio: 1;
    --m_isAutoSlideshow: 1;
    --m_autoSlideshowType: 1;
    --m_thumbnailSize: 80;
    --m_thumbnailSpacings: 2;
    --m_numberOfImagesPerRow: 2;
    --m_gridStyle: 1;
    --textFont: normal normal normal 20px/1.4em helvetica-w01-roman, sans-serif;
    --itemIconColor: 255, 255, 255;
    --itemIconColor-rgb: 255, 255, 255;
    --itemIconColor-opacity: 1;
    --titleColorExpand: 69, 86, 101;
    --titleColorExpand-rgb: 69, 86, 101;
    --titleColorExpand-opacity: 1;
    --loadMoreButtonFontColor: 69, 86, 101;
    --loadMoreButtonFontColor-rgb: 69, 86, 101;
    --loadMoreButtonFontColor-opacity: 1;
    --itemDescriptionFontColor: 255, 255, 255;
    --itemDescriptionFontColor-rgb: 255, 255, 255;
    --itemDescriptionFontColor-opacity: 1;
    --textBoxFillColor: 255, 255, 255;
    --textBoxFillColor-rgb: 255, 255, 255;
    --textBoxFillColor-opacity: 1;
    --itemOpacity: 255, 255, 255, 0;
    --itemOpacity-rgb: 255, 255, 255;
    --itemOpacity-opacity: 0;
    --loadMoreButtonColor: 255, 255, 255;
    --loadMoreButtonColor-rgb: 255, 255, 255;
    --loadMoreButtonColor-opacity: 1;
    --loadMoreButtonBorderColor: 69, 86, 101;
    --loadMoreButtonBorderColor-rgb: 69, 86, 101;
    --loadMoreButtonBorderColor-opacity: 1;
    --imageLoadingColor: 131, 142, 153;
    --imageLoadingColor-rgb: 131, 142, 153;
    --imageLoadingColor-opacity: 1;
    --itemShadowOpacityAndColor: 69, 86, 101, 0.2;
    --itemShadowOpacityAndColor-rgb: 69, 86, 101;
    --itemShadowOpacityAndColor-opacity: 0.2;
    --itemFontColorSlideshow: 22, 76, 112;
    --itemFontColorSlideshow-rgb: 22, 76, 112;
    --itemFontColorSlideshow-opacity: 1;
    --itemFontColor: 255, 255, 255;
    --itemFontColor-rgb: 255, 255, 255;
    --itemFontColor-opacity: 1;
    --arrowsColor: 255, 255, 255;
    --arrowsColor-rgb: 255, 255, 255;
    --arrowsColor-opacity: 1;
    --itemBorderColor: 69, 86, 101;
    --itemBorderColor-rgb: 69, 86, 101;
    --itemBorderColor-opacity: 1;
    --itemIconColorSlideshow: 69, 86, 101;
    --itemIconColorSlideshow-rgb: 69, 86, 101;
    --itemIconColorSlideshow-opacity: 1;
    --foreColor: 255, 255, 255;
    --foreColor-rgb: 255, 255, 255;
    --foreColor-opacity: 1;
    --bgColorExpand: 255, 255, 255;
    --bgColorExpand-rgb: 255, 255, 255;
    --bgColorExpand-opacity: 1;
    --textBoxBorderColor: 69, 86, 101;
    --textBoxBorderColor-rgb: 69, 86, 101;
    --textBoxBorderColor-opacity: 1;
    --descriptionColorExpand: 69, 86, 101;
    --descriptionColorExpand-rgb: 69, 86, 101;
    --descriptionColorExpand-opacity: 1;
    --actionsColorExpand: 69, 86, 101;
    --actionsColorExpand-rgb: 69, 86, 101;
    --actionsColorExpand-opacity: 1;
    --oneColorAnimationColor: 255, 255, 255;
    --oneColorAnimationColor-rgb: 255, 255, 255;
    --oneColorAnimationColor-opacity: 1;
    --backColor: 255, 255, 255;
    --backColor-rgb: 255, 255, 255;
    --backColor-opacity: 1;
    --itemDescriptionFontColorSlideshow: 69, 86, 101;
    --itemDescriptionFontColorSlideshow-rgb: 69, 86, 101;
    --itemDescriptionFontColorSlideshow-opacity: 1;
    --te-background-color-picker: 194, 194, 194;
    --te-background-color-picker-rgb: 194, 194, 194;
    --te-background-color-picker-opacity: 1;
    --overlayGradientColor1: 255, 255, 255;
    --overlayGradientColor1-rgb: 255, 255, 255;
    --overlayGradientColor1-opacity: 1;
    --overlayGradientColor2: 255, 255, 255;
    --overlayGradientColor2-rgb: 255, 255, 255;
    --overlayGradientColor2-opacity: 1;
    --customButtonFontColorForHover: 69, 86, 101;
    --customButtonFontColorForHover-rgb: 69, 86, 101;
    --customButtonFontColorForHover-opacity: 1;
    --externalCustomButtonColor: 63, 122, 156, 0;
    --externalCustomButtonColor-rgb: 63, 122, 156;
    --externalCustomButtonColor-opacity: 0;
    --externalCustomButtonBorderColor: 69, 86, 101;
    --externalCustomButtonBorderColor-rgb: 69, 86, 101;
    --externalCustomButtonBorderColor-opacity: 1;
    --customButtonFontColor: 255, 255, 255;
    --customButtonFontColor-rgb: 255, 255, 255;
    --customButtonFontColor-opacity: 1;
    --customButtonColor: 255, 255, 255, 0;
    --customButtonColor-rgb: 255, 255, 255;
    --customButtonColor-opacity: 0;
    --customButtonBorderColor: 255, 255, 255;
    --customButtonBorderColor-rgb: 255, 255, 255;
    --customButtonBorderColor-opacity: 1;
    --arrowsContainerBackgroundColor: 69, 86, 101, 0.6;
    --arrowsContainerBackgroundColor-rgb: 69, 86, 101;
    --arrowsContainerBackgroundColor-opacity: 0.6;
    --m_overlayGradientColor1: 255, 255, 255;
    --m_overlayGradientColor1-rgb: 255, 255, 255;
    --m_overlayGradientColor1-opacity: 1;
    --m_overlayGradientColor2: 255, 255, 255;
    --m_overlayGradientColor2-rgb: 255, 255, 255;
    --m_overlayGradientColor2-opacity: 1;
    --m_itemOpacity: 255, 255, 255, 0;
    --m_itemOpacity-rgb: 255, 255, 255;
    --m_itemOpacity-opacity: 0;
    --m_itemIconColorSlideshow: 69, 86, 101;
    --m_itemIconColorSlideshow-rgb: 69, 86, 101;
    --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: 22, 76, 112;
    --m_itemFontColorSlideshow-rgb: 22, 76, 112;
    --m_itemFontColorSlideshow-opacity: 1;
    --m_itemDescriptionFontColor: 255, 255, 255;
    --m_itemDescriptionFontColor-rgb: 255, 255, 255;
    --m_itemDescriptionFontColor-opacity: 1;
    --m_itemDescriptionFontColorSlideshow: 69, 86, 101;
    --m_itemDescriptionFontColorSlideshow-rgb: 69, 86, 101;
    --m_itemDescriptionFontColorSlideshow-opacity: 1;
    --m_customButtonFontColorForHover: 69, 86, 101;
    --m_customButtonFontColorForHover-rgb: 69, 86, 101;
    --m_customButtonFontColorForHover-opacity: 1;
    --m_externalCustomButtonColor: 63, 122, 156, 0;
    --m_externalCustomButtonColor-rgb: 63, 122, 156;
    --m_externalCustomButtonColor-opacity: 0;
    --m_externalCustomButtonBorderColor: 69, 86, 101;
    --m_externalCustomButtonBorderColor-rgb: 69, 86, 101;
    --m_externalCustomButtonBorderColor-opacity: 1;
    --m_customButtonFontColor: 255, 255, 255;
    --m_customButtonFontColor-rgb: 255, 255, 255;
    --m_customButtonFontColor-opacity: 1;
    --m_customButtonColor: 255, 255, 255, 0;
    --m_customButtonColor-rgb: 255, 255, 255;
    --m_customButtonColor-opacity: 0;
    --m_customButtonBorderColor: 255, 255, 255;
    --m_customButtonBorderColor-rgb: 255, 255, 255;
    --m_customButtonBorderColor-opacity: 1;
    --m_loadMoreButtonFontColor: 69, 86, 101;
    --m_loadMoreButtonFontColor-rgb: 69, 86, 101;
    --m_loadMoreButtonFontColor-opacity: 1;
    --m_loadMoreButtonColor: 255, 255, 255;
    --m_loadMoreButtonColor-rgb: 255, 255, 255;
    --m_loadMoreButtonColor-opacity: 1;
    --m_loadMoreButtonBorderColor: 69, 86, 101;
    --m_loadMoreButtonBorderColor-rgb: 69, 86, 101;
    --m_loadMoreButtonBorderColor-opacity: 1;
    --m_arrowsContainerBackgroundColor: 69, 86, 101, 0.6;
    --m_arrowsContainerBackgroundColor-rgb: 69, 86, 101;
    --m_arrowsContainerBackgroundColor-opacity: 0.6;
    --m_itemBorderColor: 69, 86, 101;
    --m_itemBorderColor-rgb: 69, 86, 101;
    --m_itemBorderColor-opacity: 1;
    --m_itemShadowOpacityAndColor: 69, 86, 101, 0.2;
    --m_itemShadowOpacityAndColor-rgb: 69, 86, 101;
    --m_itemShadowOpacityAndColor-opacity: 0.2;
    --m_oneColorAnimationColor: 255, 255, 255;
    --m_oneColorAnimationColor-rgb: 255, 255, 255;
    --m_oneColorAnimationColor-opacity: 1;
    --backgroundColor: 131, 142, 153;
    --backgroundColor-rgb: 131, 142, 153;
    --backgroundColor-opacity: 1;
    --textColor: 69, 86, 101;
    --textColor-rgb: 69, 86, 101;
    --textColor-opacity: 1;
    --text-editor-font: normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544, 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, sans-serif;
    --text-editor-font-text-decoration: none;
    --itemDescriptionFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFont-style: normal;
    --itemDescriptionFont-variant: normal;
    --itemDescriptionFont-weight: normal;
    --itemDescriptionFont-size: 18px;
    --itemDescriptionFont-line-height: 1.4em;
    --itemDescriptionFont-family: helvetica-w01-roman, sans-serif;
    --itemDescriptionFont-text-decoration: none;
    --text-editor-font-1499774301866: normal normal normal 40px/50px avenir-lt-w01_35-light1475496, 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, sans-serif;
    --text-editor-font-1499774301866-text-decoration: none;
    --loadMoreButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --loadMoreButtonFont-style: normal;
    --loadMoreButtonFont-variant: normal;
    --loadMoreButtonFont-weight: normal;
    --loadMoreButtonFont-size: 18px;
    --loadMoreButtonFont-line-height: 1.4em;
    --loadMoreButtonFont-family: helvetica-w01-roman, sans-serif;
    --loadMoreButtonFont-text-decoration: none;
    --itemFontSlideshow: italic normal normal 11px/13px helvetica-w01-light, sans-serif;
    --itemFontSlideshow-style: italic;
    --itemFontSlideshow-variant: normal;
    --itemFontSlideshow-weight: normal;
    --itemFontSlideshow-size: 11px;
    --itemFontSlideshow-line-height: 13px;
    --itemFontSlideshow-family: helvetica-w01-light, sans-serif;
    --itemFontSlideshow-text-decoration: none;
    --titleFontExpand: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    --titleFontExpand-style: normal;
    --titleFontExpand-variant: normal;
    --titleFontExpand-weight: normal;
    --titleFontExpand-size: 50px;
    --titleFontExpand-line-height: 1.4em;
    --titleFontExpand-family: helvetica-w01-light, sans-serif;
    --titleFontExpand-text-decoration: none;
    --itemDescriptionFontSlideshow: normal normal normal 15px/18px helvetica-w01-light, sans-serif;
    --itemDescriptionFontSlideshow-style: normal;
    --itemDescriptionFontSlideshow-variant: normal;
    --itemDescriptionFontSlideshow-weight: normal;
    --itemDescriptionFontSlideshow-size: 15px;
    --itemDescriptionFontSlideshow-line-height: 18px;
    --itemDescriptionFontSlideshow-family: helvetica-w01-light, sans-serif;
    --itemDescriptionFontSlideshow-text-decoration: none;
    --descriptionFontExpand: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --descriptionFontExpand-style: normal;
    --descriptionFontExpand-variant: normal;
    --descriptionFontExpand-weight: normal;
    --descriptionFontExpand-size: 18px;
    --descriptionFontExpand-line-height: 1.4em;
    --descriptionFontExpand-family: helvetica-w01-roman, sans-serif;
    --descriptionFontExpand-text-decoration: none;
    --itemFont: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    --itemFont-style: normal;
    --itemFont-variant: normal;
    --itemFont-weight: normal;
    --itemFont-size: 22px;
    --itemFont-line-height: 1.4em;
    --itemFont-family: helvetica-w01-light, sans-serif;
    --itemFont-text-decoration: none;
    --customButtonFontForHover: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    --customButtonFontForHover-style: normal;
    --customButtonFontForHover-variant: normal;
    --customButtonFontForHover-weight: normal;
    --customButtonFontForHover-size: 15px;
    --customButtonFontForHover-line-height: 18px;
    --customButtonFontForHover-family: helvetica-w01-roman, sans-serif;
    --customButtonFontForHover-text-decoration: none;
    --customButtonFont: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    --customButtonFont-style: normal;
    --customButtonFont-variant: normal;
    --customButtonFont-weight: normal;
    --customButtonFont-size: 15px;
    --customButtonFont-line-height: 18px;
    --customButtonFont-family: helvetica-w01-roman, sans-serif;
    --customButtonFont-text-decoration: none;
    --m_itemFont: normal normal normal 22px/27px helvetica-w01-light, sans-serif;
    --m_itemFont-style: normal;
    --m_itemFont-variant: normal;
    --m_itemFont-weight: normal;
    --m_itemFont-size: 22px;
    --m_itemFont-line-height: 27px;
    --m_itemFont-family: helvetica-w01-light, sans-serif;
    --m_itemFont-text-decoration: none;
    --m_itemFontSlideshow: italic normal normal 9px/11px helvetica-w01-light, sans-serif;
    --m_itemFontSlideshow-style: italic;
    --m_itemFontSlideshow-variant: normal;
    --m_itemFontSlideshow-weight: normal;
    --m_itemFontSlideshow-size: 9px;
    --m_itemFontSlideshow-line-height: 11px;
    --m_itemFontSlideshow-family: helvetica-w01-light, sans-serif;
    --m_itemFontSlideshow-text-decoration: none;
    --m_itemDescriptionFont: normal normal normal 18px/22px helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --m_itemDescriptionFont-text-decoration: none;
    --m_itemDescriptionFontSlideshow: normal normal normal 15px/18px helvetica-w01-light, sans-serif;
    --m_itemDescriptionFontSlideshow-style: normal;
    --m_itemDescriptionFontSlideshow-variant: normal;
    --m_itemDescriptionFontSlideshow-weight: normal;
    --m_itemDescriptionFontSlideshow-size: 15px;
    --m_itemDescriptionFontSlideshow-line-height: 18px;
    --m_itemDescriptionFontSlideshow-family: helvetica-w01-light, sans-serif;
    --m_itemDescriptionFontSlideshow-text-decoration: none;
    --m_customButtonFontForHover: normal normal normal 15px/18px helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --m_customButtonFontForHover-text-decoration: none;
    --m_customButtonFont: normal normal normal 15px/18px helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --m_customButtonFont-text-decoration: none;
    --m_loadMoreButtonFont: normal normal normal 18px/22px helvetica-w01-roman, 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: helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --textFont-text-decoration: none;
}

.s__514oxQ.oY2_tRb--madefor {
    --wbu-font-stack: var(--site-font-stack);
    --wbu-font-weight-regular: var(--site-font-weight-regular);
    --wbu-font-weight-medium: var(--site-font-weight-medium);
    --wbu-font-weight-bold: var(--site-font-weight-bold);
}

.syjDhab {
    --wbu-color-blue-0: #0F2CCF;
    --wbu-color-blue-100: #2F5DFF;
    --wbu-color-blue-200: #597DFF;
    --wbu-color-blue-300: #ACBEFF;
    --wbu-color-blue-400: #D5DFFF;
    --wbu-color-blue-500: #EAEFFF;
    --wbu-color-blue-600: #F5F7FF;
    --wbu-color-black-0: #151414;
    --wbu-color-black-100: #383838;
    --wbu-color-black-200: #525150;
    --wbu-color-black-300: #767574;
    --wbu-color-black-400: #A8A6A5;
    --wbu-color-black-500: #E0DFDF;
    --wbu-color-black-600: #F1F0EF;
    --wbu-color-red-0: #9C2426;
    --wbu-color-red-100: #DF3336;
    --wbu-color-red-200: #E55C5E;
    --wbu-color-red-300: #ED8F90;
    --wbu-color-red-400: #F4B8B9;
    --wbu-color-red-500: #F9D6D7;
    --wbu-color-red-600: #FCEBEB;
    --wbu-color-green-0: #0D4F3D;
    --wbu-color-green-100: #4B916D;
    --wbu-color-green-200: #97C693;
    --wbu-color-green-300: #BDE2A7;
    --wbu-color-green-400: #DAF3C0;
    --wbu-color-green-500: #EFFAE5;
    --wbu-color-green-600: #F1F5ED;
    --wbu-color-yellow-0: #D49341;
    --wbu-color-yellow-100: #F9AD4D;
    --wbu-color-yellow-200: #FABD71;
    --wbu-color-yellow-300: #FCD29D;
    --wbu-color-yellow-400: #FDEAD2;
    --wbu-color-yellow-500: #FEF3E5;
    --wbu-color-yellow-600: #FEF6ED;
    --wbu-color-orange-0: #AE3E09;
    --wbu-color-orange-100: #FF8044;
    --wbu-color-orange-200: #FE9361;
    --wbu-color-orange-300: #FDA77F;
    --wbu-color-orange-400: #FBCFBB;
    --wbu-color-orange-500: #FBE3D9;
    --wbu-color-orange-600: #FDF1EC;
    --wbu-color-purple-0: #5000AA;
    --wbu-color-purple-100: #7200F3;
    --wbu-color-purple-200: #8B2DF5;
    --wbu-color-purple-300: #BE89F9;
    --wbu-color-purple-400: #D7B7FB;
    --wbu-color-purple-500: #F1E5FE;
    --wbu-color-purple-600: #F8F2FF;
    --wbu-color-ai-0: #4D3DD0;
    --wbu-color-ai-100: #5A48F5;
    --wbu-color-ai-200: #7B6DF7;
    --wbu-color-ai-300: #A59BFA;
    --wbu-color-ai-400: #D6D1FC;
    --wbu-color-ai-500: #E7E4FE;
    --wbu-color-ai-600: #EEECFE;
    --wbu-heading-font-stack: 'Madefor Display', 'Helvetica Neue', Helvetica, Arial, '\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA', 'meiryo', '\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4  pro w3', 'hiragino kaku gothic pro', sans-serif;
    --wbu-text-tiny-size: 10px;
    --wbu-text-tiny-line-height: 12px;
    --wbu-text-small-size: 12px;
    --wbu-text-small-line-height: 12px;
    --wbu-text-medium-size: 14px;
    --wbu-text-medium-line-height: 16px;
    --wbu-text-large-size: 16px;
    --wbu-text-large-line-height: 18px;
    --wbu-heading-h1-font-size: 32px;
    --wbu-heading-h1-line-height: 40px;
    --wbu-heading-h1-letter-spacing: -0.5px;
    --wbu-heading-h1-font-weight: 400;
    --wbu-heading-h2-font-size: 24px;
    --wbu-heading-h2-line-height: 32px;
    --wbu-heading-h2-letter-spacing: -0.5px;
    --wbu-heading-h2-font-weight: 500;
    --wbu-heading-h3-font-size: 16px;
    --wbu-heading-h3-line-height: 24px;
    --wbu-heading-h3-letter-spacing: -0.5px;
    --wbu-heading-h3-font-weight: 700;
    --wbu-heading-h4-font-size: 14px;
    --wbu-heading-h4-line-height: 18px;
    --wbu-heading-h4-letter-spacing: 0px;
    --wbu-heading-h4-font-weight: 500;
    --wbu-heading-h5-font-size: 12px;
    --wbu-heading-h5-line-height: 18px;
    --wbu-heading-h5-letter-spacing: 0px;
    --wbu-heading-h5-font-weight: 600;
}

.s__1Rytdd.oH6LYyn--madefor {
    --wbu-font-stack: var(--site-font-stack);
    --wbu-font-weight-regular: var(--site-font-weight-regular);
    --wbu-font-weight-medium: var(--site-font-weight-medium);
    --wbu-font-weight-bold: var(--site-font-weight-bold);
}

.nav-arrows-container .custom-nav-arrows svg {
    width: 100%;
    height: 100%;
}

.fullscreen-focus-lock {
    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: .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: .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: .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: .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: .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, .6);
    transition: background-color .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 .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, .6);
    transition: all .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 .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 .desktop-social-share-popup-close-button:focus {
    border-radius: 7px;
    box-shadow: inset 0 0 1px 3px #116dff;
}

.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 .2s ease;
}

.social-share-wrapper .social-share-item {
    position: relative;
}

.social-share-wrapper .social-share-item .social-share-button {
    opacity: 1;
    transition: opacity .2s ease;
    cursor: pointer;
}

.social-share-wrapper .social-share-item .social-share-button:focus {
    border-radius: 7px;
    box-shadow: inset 0 0 1px 3px #116dff;
}

.social-share-wrapper .social-share-item .social-share-button:hover {
    opacity: .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 .1s ease;
}

.social-share-wrapper .social-share-copylink-container .social-share-copylink-button:focus {
    border-radius: 7px;
    box-shadow: inset 0 0 1px 3px #116dff;
}

.social-share-wrapper .social-share-copylink-container .social-share-copylink-button:hover {
    background-color: rgba(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 .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 .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 .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 .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 .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 .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 .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 .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, .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 .4s ease, opacity .4s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover:before {
    transition: filter .4s ease, opacity .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 .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 .4s ease, filter .2s ease, opacity .2s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover:before {
    transition: transform .4s ease, filter .2s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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, .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 .4s ease, opacity .4s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover:before {
    transition: filter .4s ease, opacity .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 .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 .4s ease, filter .2s ease, opacity .2s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover:before {
    transition: transform .4s ease, filter .2s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s ease, height .4s ease, top .4s ease, left .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, .1);
}

.more-items-loader {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    color: #116dff;
}

.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: hsla(0, 0%, 100%, .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: .9;
}

.auto-slideshow-counter {
    margin-top: 24px;
    left: auto;
    z-index: 1;
    position: absolute;
    display: flex;
    text-align: center;
    opacity: .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: .9;
    align-items: center;
    background: rgba(0, 0, 0, 0);
    border: 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;
}

.nav-arrows-container:focus:not(:focus-visible) {
    --focus-ring-box-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.arrow-portal-container span {
    animation: fadeIn .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 .item-action {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

div.pro-gallery .gallery-item-container .item-action:focus {
    --focus-ring-box-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

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: .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 .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: .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: .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: hsla(0, 0%, 100%, .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: inset 0 0 0 1px #fff, inset 0 0 1px 4px #116dff;
}

div.pro-gallery.accessible i:focus:not(:focus-visible),

div.pro-gallery.accessible button:not(.nav-arrows-container, .has-custom-focus):focus:not(:focus-visible) {
    box-shadow: none !important;
}

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 .gallery-item-container:has(.item-action:focus)::after {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 1px 2px #116dff, inset 0 0 7px 0 #fff, inset 0 0 10px -5px #116dff;
    pointer-events: none;
    border-radius: inherit;
    z-index: 15;
}

div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before {
    box-shadow: inset 0 0 1px 2px #116dff, inset 0 0 7px 0 #fff, inset 0 0 10px -5px #116dff;
}

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 #116dff, inset 0 0 7px 0 #fff, 0 0 10px -5px #116dff;
    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;
    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 .1s ease 200ms !important;
}

.deck-after {
    display: block;
    transition: opacity .2s ease 600ms;
    z-index: -1;
    opacity: 0;
}

.deck-after .override {
    transition: opacity .1s ease 0s !important;
}

.disabled-transition {
    transition: none !important;
}

@keyframes changing_background {
    0% {
        background-color: rgba(241, 241, 241, .2);
    }

    50% {
        background-color: rgba(241, 241, 241, .8);
    }

    100% {
        background-color: rgba(241, 241, 241, .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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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,

.gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover {
    padding: 30px;
}

.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;
}

.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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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: hsla(0, 0%, 100%, .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, .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);
    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;
    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: 100%;
    height: 100vh;
    z-index: 100005;
}

.pro-gallery-empty {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: hsla(0, 0%, 100%, .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(media/emptystate.85a4add5.html);
    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;
}

.gallery-logos div.pro-gallery-parent-container .gallery-item-wrapper-text .gallery-item-content {
    background-color: #455665;
}

.gallery-logos div.pro-gallery-parent-container .show-more-container i.show-more {
    color: rgba(0, 0, 0, 0.7);
}

.gallery-logos div.pro-gallery-parent-container .show-more-container button.show-more {
    --loadMoreButtonBorderRadius: 0;
    --loadMoreButtonBorderColor: #455665;
    --loadMoreButtonBorderWidth: 1;
    --loadMoreButtonColor: #FFFFFF;
    --loadMoreButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --loadMoreButtonFontColor: #455665;
    color: rgba(69, 86, 101, 0.9);
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-color: rgb(69, 86, 101);
    border-radius: 0px;
}

.gallery-logos div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more {
    color: rgba(0, 0, 0, 0.7);
}

.gallery-logos div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more {
    --loadMoreButtonBorderRadius: 0;
    --loadMoreButtonBorderColor: #455665;
    --loadMoreButtonBorderWidth: 1;
    --loadMoreButtonColor: #FFFFFF;
    --loadMoreButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --loadMoreButtonFontColor: #455665;
    color: rgb(69, 86, 101);
    font: normal normal normal 18px/22px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgb(255, 255, 255);
    border-width: undefinedpx;
    border-color: rgb(69, 86, 101);
    border-radius: undefinedpx;
}

.gallery-logos .nav-arrows-container .slideshow-arrow,

.gallery-logos .nav-arrows-container .custom-nav-arrows svg {
    --arrowsColor: #FFFFFF;
    fill: rgb(255, 255, 255);
}

.gallery-logos .nav-arrows-container.pro-gallery-mobile-indicator .slideshow-arrow,

.gallery-logos .nav-arrows-container.pro-gallery-mobile-indicator .custom-nav-arrows svg {
    --arrowsColor: #FFFFFF;
    fill: rgb(255, 255, 255);
}

.gallery-logos .pro-gallery.inline-styles .auto-slideshow-counter {
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 15px/18px helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info {
    --itemIconColorSlideshow: #455665;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),

.gallery-logos .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),

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info a {
    color: rgb(69, 86, 101) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info svg .gallery-item-svg-foreground {
    fill: rgb(69, 86, 101) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(22, 76, 112) !important;
    font: italic normal normal 11px/13px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description {
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 15px/18px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded) {
    --imageLoadingColor: #FFFFFF;
    background-color: rgb(131, 142, 153);
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle {
    --itemFontColor: #FFFFFF;
    color: rgb(255, 255, 255);
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background {
    --itemOpacity: #455665;
    color: rgba(255, 255, 255, 0);
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background {
    --itemOpacity: #455665;
    fill: rgba(255, 255, 255, 0);
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gradient-top,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gradient-top {
    --itemOpacity: #455665;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, transparent 140px) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover {
    --itemIconColor: #FFFFFF;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),

.gallery-logos .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),

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a {
    color: rgb(255, 255, 255) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground {
    fill: rgb(255, 255, 255) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title {
    --itemFont: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColor: #FFFFFF;
    color: rgb(255, 255, 255);
    font: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description {
    --itemDescriptionFont: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper {
    --customButtonFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button {
    --customButtonColor: #455665;
    --customButtonBorderRadius: 0;
    --customButtonBorderWidth: 1;
    --customButtonBorderColor: #FFFFFF;
    --customButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgba(255, 255, 255, 0) !important;
    border-width: 1px;
    border-radius: 0px;
    border-color: rgb(255, 255, 255);
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover:before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover:before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 22px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(22, 76, 112) !important;
    font: italic normal normal 11px/13px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description {
    --itemDescriptionFontColorSlideshow: #455665;
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 15px/18px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-custom-button-wrapper button {
    --customButtonFontForHover: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --customButtonFontColorForHover: #455665;
    --externalCustomButtonBorderWidth: 0;
    --externalCustomButtonBorderRadius: 0;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    color: rgb(69, 86, 101) !important;
    background: rgba(63, 122, 156, 0) !important;
    border-color: rgb(69, 86, 101);
    border-width: 0px;
    border-radius: 0px;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded) {
    --imageLoadingColor: #FFFFFF;
    background-color: rgb(131, 142, 153);
}

.gallery-logos .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: #FFFFFF;
    color: rgb(255, 255, 255);
}

.gallery-logos .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: #455665;
    color: rgba(255, 255, 255, 0) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background {
    --itemOpacity: #455665;
    fill: rgba(255, 255, 255, 0) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gradient-top,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gradient-top {
    --itemOpacity: #455665;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, transparent 140px) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info {
    --itemIconColorSlideshow: #455665;
}

.gallery-logos .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),

.gallery-logos .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),

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a {
    color: rgb(69, 86, 101) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-foreground {
    fill: rgb(69, 86, 101) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(22, 76, 112) !important;
    font: italic normal normal 9px/11px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-description,

.gallery-logos .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 helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 15px/18px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover {
    --itemIconColor: #FFFFFF;
}

.gallery-logos .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),

.gallery-logos .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),

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a {
    color: rgb(255, 255, 255) !important;
}

.gallery-logos .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;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-title {
    --itemFont: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColor: #FFFFFF;
    color: rgb(255, 255, 255);
    font: normal normal normal 22px/27px helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-description,

.gallery-logos .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 helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 18px/22px helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper {
    --customButtonFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button {
    --customButtonColor: #455665;
    --customButtonBorderRadius: 0;
    --customButtonBorderWidth: 1;
    --customButtonBorderColor: #FFFFFF;
    --customButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgba(255, 255, 255, 0) !important;
    border-width: undefinedpx;
    border-radius: undefinedpx;
    border-color: rgb(255, 255, 255);
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover:not(.hide-hover):before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover:before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-title,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 22px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(22, 76, 112) !important;
    font: italic normal normal 9px/11px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description {
    --itemDescriptionFontColorSlideshow: #455665;
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 15px/18px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-custom-button-wrapper button,

.gallery-logos .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .custom-button-wrapper button,

.gallery-logos .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 helvetica-w01-roman, sans-serif;
    --customButtonFontColorForHover: #455665;
    --externalCustomButtonBorderWidth: 0;
    --externalCustomButtonBorderRadius: 0;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    color: rgb(69, 86, 101) !important;
    background: rgba(63, 122, 156, 0) !important;
    border-color: rgb(69, 86, 101);
    border-width: undefinedpx;
    border-radius: undefinedpx;
}

.gallery-logos .te-pro-gallery-text-item {
    font: normal normal normal 14px/1.4em helvetica-w01-roman, sans-serif;
    color: #FFFFFF;
}

.gallery-logos .pro-fullscreen-wrapper .pro-fullscreen-text-item {
    --fullscreen-text-item-bg: #455665;
    background-color: #455665;
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles {
    --bgColorExpand: #FFFFFF;
    background-color: rgb(255, 255, 255);
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-selected-license,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-checkout-link {
    --descriptionColorExpand: #455665;
    --descriptionFontExpand: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101);
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-mobile-info {
    --bgColorExpand: #FFFFFF;
    background-color: rgb(255, 255, 255);
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-title h1 {
    --titleColorExpand: #455665;
    --titleFontExpand: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    color: rgb(69, 86, 101);
    font: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link {
    --descriptionColorExpand: #455665;
    --descriptionFontExpand: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101);
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after {
    --descriptionColorExpand: #455665;
    border-color: rgb(69, 86, 101);
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social i:not(.pro-gallery-loved),

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social a,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social button,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav i:not(.pro-gallery-loved),

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav a,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav button,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar i:not(.pro-gallery-loved),

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar a,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar button,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social i:not(.pro-gallery-loved),

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social a,

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social button {
    --descriptionColorExpand: #455665;
    color: rgb(69, 86, 101);
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle {
    --descriptionColorExpand: #455665;
    color: rgb(69, 86, 101);
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-background {
    --bgColorExpand: #FFFFFF;
    color: rgb(255, 255, 255);
}

.gallery-logos .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon {
    --descriptionColorExpand: #455665;
    --bgColorExpand: #FFFFFF;
    color: rgb(69, 86, 101);
    background: rgb(255, 255, 255);
}

div.gallery-logos:not(.fullscreen-comp-wrapper) {
    width: 100%;
}

.gallery-speakers {
    --site-color-1: 255, 255, 255;
    --site-color-2: 255, 255, 255;
    --site-color-3: 131, 142, 153;
    --site-color-4: 69, 86, 101;
    --site-color-5: 69, 86, 101;
    --site-color-6: 218, 176, 255;
    --site-color-7: 194, 194, 194;
    --site-color-8: 63, 122, 156;
    --site-color-9: 96, 13, 169;
    --site-color-10: 48, 6, 85;
    --site-color-11: 250, 196, 186;
    --site-color-12: 245, 166, 151;
    --site-color-13: 240, 85, 55;
    --site-color-14: 160, 57, 37;
    --site-color-15: 80, 28, 18;
    --site-color-16: 254, 233, 195;
    --site-color-17: 252, 222, 165;
    --site-color-18: 251, 191, 77;
    --site-color-19: 167, 127, 51;
    --site-color-20: 84, 64, 26;
    --site-color-21: 179, 241, 212;
    --site-color-22: 139, 228, 186;
    --site-color-23: 47, 214, 136;
    --site-color-24: 31, 143, 91;
    --site-color-25: 16, 71, 45;
    --site-color-26: 7, 29, 50;
    --site-color-27: 255, 255, 255;
    --site-color-28: 69, 86, 101;
    --site-color-29: 131, 142, 153;
    --site-color-30: 193, 199, 204;
    --site-color-31: 22, 76, 112;
    --site-color-32: 194, 194, 194;
    --site-color-33: 11, 161, 210;
    --site-color-34: 63, 122, 156;
    --site-color-35: 7, 29, 50;
    --site-color-36: 69, 86, 101;
    --site-color-37: 255, 255, 255;
    --site-color-38: 22, 76, 112;
    --site-color-39: 255, 255, 255;
    --site-color-40: 255, 255, 255;
    --site-color-41: 194, 194, 194;
    --site-color-42: 255, 255, 255;
    --site-color-43: 255, 255, 255;
    --site-color-44: 69, 86, 101;
    --site-color-45: 69, 86, 101;
    --site-color-46: 193, 199, 204;
    --site-color-47: 22, 76, 112;
    --site-color-48: 255, 255, 255;
    --site-color-49: 255, 255, 255;
    --site-color-50: 194, 194, 194;
    --site-color-51: 255, 255, 255;
    --site-color-52: 255, 255, 255;
    --site-color-53: 69, 86, 101;
    --site-color-54: 69, 86, 101;
    --site-color-55: 193, 199, 204;
    --site-font-Title: normal normal normal 70px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Title-style: normal;
    --site-font-Title-variant: normal;
    --site-font-Title-weight: normal;
    --site-font-Title-size: 70px;
    --site-font-Title-line-height: 1.4em;
    --site-font-Title-family: helvetica-w01-light, sans-serif;
    --site-font-Title-text-decoration: none;
    --site-font-Menu: normal normal normal 16px/1.4em din-next-w01-light, sans-serif;
    --site-font-Menu-style: normal;
    --site-font-Menu-variant: normal;
    --site-font-Menu-weight: normal;
    --site-font-Menu-size: 16px;
    --site-font-Menu-line-height: 1.4em;
    --site-font-Menu-family: din-next-w01-light, sans-serif;
    --site-font-Menu-text-decoration: none;
    --site-font-Page-title: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Page-title-style: normal;
    --site-font-Page-title-variant: normal;
    --site-font-Page-title-weight: normal;
    --site-font-Page-title-size: 50px;
    --site-font-Page-title-line-height: 1.4em;
    --site-font-Page-title-family: helvetica-w01-light, sans-serif;
    --site-font-Page-title-text-decoration: none;
    --site-font-Heading-XL: normal normal normal 30px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-XL-style: normal;
    --site-font-Heading-XL-variant: normal;
    --site-font-Heading-XL-weight: normal;
    --site-font-Heading-XL-size: 30px;
    --site-font-Heading-XL-line-height: 1.4em;
    --site-font-Heading-XL-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-XL-text-decoration: none;
    --site-font-Heading-L: normal normal normal 25px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-L-style: normal;
    --site-font-Heading-L-variant: normal;
    --site-font-Heading-L-weight: normal;
    --site-font-Heading-L-size: 25px;
    --site-font-Heading-L-line-height: 1.4em;
    --site-font-Heading-L-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-L-text-decoration: none;
    --site-font-Heading-M: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-M-style: normal;
    --site-font-Heading-M-variant: normal;
    --site-font-Heading-M-weight: bold;
    --site-font-Heading-M-size: 25px;
    --site-font-Heading-M-line-height: 1.4em;
    --site-font-Heading-M-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-M-text-decoration: none;
    --site-font-Heading-S: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    --site-font-Heading-S-style: normal;
    --site-font-Heading-S-variant: normal;
    --site-font-Heading-S-weight: normal;
    --site-font-Heading-S-size: 22px;
    --site-font-Heading-S-line-height: 1.4em;
    --site-font-Heading-S-family: helvetica-w01-light, sans-serif;
    --site-font-Heading-S-text-decoration: none;
    --site-font-Body-L: normal normal normal 17px/1.4em helvetica-w01-roman, sans-serif;
    --site-font-Body-L-style: normal;
    --site-font-Body-L-variant: normal;
    --site-font-Body-L-weight: normal;
    --site-font-Body-L-size: 17px;
    --site-font-Body-L-line-height: 1.4em;
    --site-font-Body-L-family: helvetica-w01-roman, sans-serif;
    --site-font-Body-L-text-decoration: none;
    --site-font-Body-M: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --site-font-Body-M-style: normal;
    --site-font-Body-M-variant: normal;
    --site-font-Body-M-weight: normal;
    --site-font-Body-M-size: 18px;
    --site-font-Body-M-line-height: 1.4em;
    --site-font-Body-M-family: helvetica-w01-roman, sans-serif;
    --site-font-Body-M-text-decoration: none;
    --site-font-Body-S: normal normal normal 14px/1.4em helvetica-w01-roman, sans-serif;
    --site-font-Body-S-style: normal;
    --site-font-Body-S-variant: normal;
    --site-font-Body-S-weight: normal;
    --site-font-Body-S-size: 14px;
    --site-font-Body-S-line-height: 1.4em;
    --site-font-Body-S-family: helvetica-w01-roman, sans-serif;
    --site-font-Body-S-text-decoration: none;
    --site-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light, sans-serif;
    --site-font-Body-XS-style: normal;
    --site-font-Body-XS-variant: normal;
    --site-font-Body-XS-weight: normal;
    --site-font-Body-XS-size: 12px;
    --site-font-Body-XS-line-height: 1.4em;
    --site-font-Body-XS-family: din-next-w01-light, sans-serif;
    --site-font-Body-XS-text-decoration: none;
    --site-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh;
    --site-font-LIGHT-style: normal;
    --site-font-LIGHT-variant: normal;
    --site-font-LIGHT-weight: normal;
    --site-font-LIGHT-size: 12px;
    --site-font-LIGHT-line-height: 1.4em;
    --site-font-LIGHT-family: HelveticaNeueW01-45Ligh;
    --site-font-LIGHT-text-decoration: none;
    --site-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma;
    --site-font-MEDIUM-style: normal;
    --site-font-MEDIUM-variant: normal;
    --site-font-MEDIUM-weight: normal;
    --site-font-MEDIUM-size: 12px;
    --site-font-MEDIUM-line-height: 1.4em;
    --site-font-MEDIUM-family: HelveticaNeueW01-55Roma;
    --site-font-MEDIUM-text-decoration: none;
    --site-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi;
    --site-font-STRONG-style: normal;
    --site-font-STRONG-variant: normal;
    --site-font-STRONG-weight: normal;
    --site-font-STRONG-size: 12px;
    --site-font-STRONG-line-height: 1.4em;
    --site-font-STRONG-family: HelveticaNeueW01-65Medi;
    --site-font-STRONG-text-decoration: none;
    --site-direction: ltr;
    --newItemsDetails: 1;
    --gridStyle: 1;
    --gallerySize: 48;
    --te-padding-slider: 50;
    --newItemsLocation: 0;
    --scrollDirection: 0;
    --overlayAnimation: 1;
    --collageDensity: 80;
    --calculateTextBoxHeightMode: 1;
    --loveCounter: 1;
    --galleryLayout: 2;
    --titlePlacement: 0;
    --numberOfImagesPerRow: 3;
    --galleryVerticalAlign: 0;
    --imageQuality: 75;
    --galleryHorizontalAlign: 1;
    --imageMargin: 20;
    --textBoxHeight: 130;
    --arrowsVerticalPosition: 0;
    --designedPresetId: -1;
    --previewHover: 0;
    --itemClick: 1;
    --m_designedPresetId: -1;
    --itemBorderRadius: 287;
    --m_imageMargin: 5;
    --textFont: normal normal normal 20px/1.4em helvetica-w01-roman, sans-serif;
    --itemIconColor: 255, 255, 255;
    --itemIconColor-rgb: 255, 255, 255;
    --itemIconColor-opacity: 1;
    --titleColorExpand: 69, 86, 101;
    --titleColorExpand-rgb: 69, 86, 101;
    --titleColorExpand-opacity: 1;
    --loadMoreButtonFontColor: 69, 86, 101;
    --loadMoreButtonFontColor-rgb: 69, 86, 101;
    --loadMoreButtonFontColor-opacity: 1;
    --itemDescriptionFontColor: 255, 255, 255;
    --itemDescriptionFontColor-rgb: 255, 255, 255;
    --itemDescriptionFontColor-opacity: 1;
    --textBoxFillColor: 255, 255, 255;
    --textBoxFillColor-rgb: 255, 255, 255;
    --textBoxFillColor-opacity: 1;
    --itemOpacity: 255, 255, 255, 0;
    --itemOpacity-rgb: 255, 255, 255;
    --itemOpacity-opacity: 0;
    --loadMoreButtonColor: 255, 255, 255;
    --loadMoreButtonColor-rgb: 255, 255, 255;
    --loadMoreButtonColor-opacity: 1;
    --loadMoreButtonBorderColor: 69, 86, 101;
    --loadMoreButtonBorderColor-rgb: 69, 86, 101;
    --loadMoreButtonBorderColor-opacity: 1;
    --imageLoadingColor: 131, 142, 153;
    --imageLoadingColor-rgb: 131, 142, 153;
    --imageLoadingColor-opacity: 1;
    --itemShadowOpacityAndColor: 69, 86, 101, 0.2;
    --itemShadowOpacityAndColor-rgb: 69, 86, 101;
    --itemShadowOpacityAndColor-opacity: 0.2;
    --itemFontColorSlideshow: 69, 86, 101;
    --itemFontColorSlideshow-rgb: 69, 86, 101;
    --itemFontColorSlideshow-opacity: 1;
    --itemFontColor: 255, 255, 255;
    --itemFontColor-rgb: 255, 255, 255;
    --itemFontColor-opacity: 1;
    --arrowsColor: 255, 255, 255;
    --arrowsColor-rgb: 255, 255, 255;
    --arrowsColor-opacity: 1;
    --itemBorderColor: 69, 86, 101;
    --itemBorderColor-rgb: 69, 86, 101;
    --itemBorderColor-opacity: 1;
    --itemIconColorSlideshow: 69, 86, 101;
    --itemIconColorSlideshow-rgb: 69, 86, 101;
    --itemIconColorSlideshow-opacity: 1;
    --foreColor: 255, 255, 255;
    --foreColor-rgb: 255, 255, 255;
    --foreColor-opacity: 1;
    --bgColorExpand: 255, 255, 255;
    --bgColorExpand-rgb: 255, 255, 255;
    --bgColorExpand-opacity: 1;
    --textBoxBorderColor: 69, 86, 101;
    --textBoxBorderColor-rgb: 69, 86, 101;
    --textBoxBorderColor-opacity: 1;
    --descriptionColorExpand: 69, 86, 101;
    --descriptionColorExpand-rgb: 69, 86, 101;
    --descriptionColorExpand-opacity: 1;
    --actionsColorExpand: 69, 86, 101;
    --actionsColorExpand-rgb: 69, 86, 101;
    --actionsColorExpand-opacity: 1;
    --oneColorAnimationColor: 255, 255, 255;
    --oneColorAnimationColor-rgb: 255, 255, 255;
    --oneColorAnimationColor-opacity: 1;
    --backColor: 255, 255, 255;
    --backColor-rgb: 255, 255, 255;
    --backColor-opacity: 1;
    --itemDescriptionFontColorSlideshow: 69, 86, 101;
    --itemDescriptionFontColorSlideshow-rgb: 69, 86, 101;
    --itemDescriptionFontColorSlideshow-opacity: 1;
    --te-background-color-picker: 194, 194, 194;
    --te-background-color-picker-rgb: 194, 194, 194;
    --te-background-color-picker-opacity: 1;
    --overlayGradientColor1: 255, 255, 255;
    --overlayGradientColor1-rgb: 255, 255, 255;
    --overlayGradientColor1-opacity: 1;
    --overlayGradientColor2: 255, 255, 255;
    --overlayGradientColor2-rgb: 255, 255, 255;
    --overlayGradientColor2-opacity: 1;
    --customButtonFontColorForHover: 69, 86, 101;
    --customButtonFontColorForHover-rgb: 69, 86, 101;
    --customButtonFontColorForHover-opacity: 1;
    --externalCustomButtonColor: 63, 122, 156, 0;
    --externalCustomButtonColor-rgb: 63, 122, 156;
    --externalCustomButtonColor-opacity: 0;
    --externalCustomButtonBorderColor: 69, 86, 101;
    --externalCustomButtonBorderColor-rgb: 69, 86, 101;
    --externalCustomButtonBorderColor-opacity: 1;
    --customButtonFontColor: 255, 255, 255;
    --customButtonFontColor-rgb: 255, 255, 255;
    --customButtonFontColor-opacity: 1;
    --customButtonColor: 255, 255, 255, 0;
    --customButtonColor-rgb: 255, 255, 255;
    --customButtonColor-opacity: 0;
    --customButtonBorderColor: 255, 255, 255;
    --customButtonBorderColor-rgb: 255, 255, 255;
    --customButtonBorderColor-opacity: 1;
    --arrowsContainerBackgroundColor: 69, 86, 101, 0.6;
    --arrowsContainerBackgroundColor-rgb: 69, 86, 101;
    --arrowsContainerBackgroundColor-opacity: 0.6;
    --m_overlayGradientColor1: 255, 255, 255;
    --m_overlayGradientColor1-rgb: 255, 255, 255;
    --m_overlayGradientColor1-opacity: 1;
    --m_overlayGradientColor2: 255, 255, 255;
    --m_overlayGradientColor2-rgb: 255, 255, 255;
    --m_overlayGradientColor2-opacity: 1;
    --m_itemOpacity: 255, 255, 255, 0;
    --m_itemOpacity-rgb: 255, 255, 255;
    --m_itemOpacity-opacity: 0;
    --m_itemIconColorSlideshow: 69, 86, 101;
    --m_itemIconColorSlideshow-rgb: 69, 86, 101;
    --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: 69, 86, 101;
    --m_itemFontColorSlideshow-rgb: 69, 86, 101;
    --m_itemFontColorSlideshow-opacity: 1;
    --m_itemDescriptionFontColor: 255, 255, 255;
    --m_itemDescriptionFontColor-rgb: 255, 255, 255;
    --m_itemDescriptionFontColor-opacity: 1;
    --m_itemDescriptionFontColorSlideshow: 69, 86, 101;
    --m_itemDescriptionFontColorSlideshow-rgb: 69, 86, 101;
    --m_itemDescriptionFontColorSlideshow-opacity: 1;
    --m_customButtonFontColorForHover: 69, 86, 101;
    --m_customButtonFontColorForHover-rgb: 69, 86, 101;
    --m_customButtonFontColorForHover-opacity: 1;
    --m_externalCustomButtonColor: 63, 122, 156, 0;
    --m_externalCustomButtonColor-rgb: 63, 122, 156;
    --m_externalCustomButtonColor-opacity: 0;
    --m_externalCustomButtonBorderColor: 69, 86, 101;
    --m_externalCustomButtonBorderColor-rgb: 69, 86, 101;
    --m_externalCustomButtonBorderColor-opacity: 1;
    --m_customButtonFontColor: 255, 255, 255;
    --m_customButtonFontColor-rgb: 255, 255, 255;
    --m_customButtonFontColor-opacity: 1;
    --m_customButtonColor: 255, 255, 255, 0;
    --m_customButtonColor-rgb: 255, 255, 255;
    --m_customButtonColor-opacity: 0;
    --m_customButtonBorderColor: 255, 255, 255;
    --m_customButtonBorderColor-rgb: 255, 255, 255;
    --m_customButtonBorderColor-opacity: 1;
    --m_loadMoreButtonFontColor: 69, 86, 101;
    --m_loadMoreButtonFontColor-rgb: 69, 86, 101;
    --m_loadMoreButtonFontColor-opacity: 1;
    --m_loadMoreButtonColor: 255, 255, 255;
    --m_loadMoreButtonColor-rgb: 255, 255, 255;
    --m_loadMoreButtonColor-opacity: 1;
    --m_loadMoreButtonBorderColor: 69, 86, 101;
    --m_loadMoreButtonBorderColor-rgb: 69, 86, 101;
    --m_loadMoreButtonBorderColor-opacity: 1;
    --m_arrowsContainerBackgroundColor: 69, 86, 101, 0.6;
    --m_arrowsContainerBackgroundColor-rgb: 69, 86, 101;
    --m_arrowsContainerBackgroundColor-opacity: 0.6;
    --m_itemBorderColor: 69, 86, 101;
    --m_itemBorderColor-rgb: 69, 86, 101;
    --m_itemBorderColor-opacity: 1;
    --m_itemShadowOpacityAndColor: 69, 86, 101, 0.2;
    --m_itemShadowOpacityAndColor-rgb: 69, 86, 101;
    --m_itemShadowOpacityAndColor-opacity: 0.2;
    --m_oneColorAnimationColor: 255, 255, 255;
    --m_oneColorAnimationColor-rgb: 255, 255, 255;
    --m_oneColorAnimationColor-opacity: 1;
    --backgroundColor: 131, 142, 153;
    --backgroundColor-rgb: 131, 142, 153;
    --backgroundColor-opacity: 1;
    --textColor: 69, 86, 101;
    --textColor-rgb: 69, 86, 101;
    --textColor-opacity: 1;
    --text-editor-font: normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544, 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, sans-serif;
    --text-editor-font-text-decoration: none;
    --itemDescriptionFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFont-style: normal;
    --itemDescriptionFont-variant: normal;
    --itemDescriptionFont-weight: normal;
    --itemDescriptionFont-size: 18px;
    --itemDescriptionFont-line-height: 1.4em;
    --itemDescriptionFont-family: helvetica-w01-roman, sans-serif;
    --itemDescriptionFont-text-decoration: none;
    --text-editor-font-1499774301866: normal normal normal 40px/50px avenir-lt-w01_35-light1475496, 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, sans-serif;
    --text-editor-font-1499774301866-text-decoration: none;
    --loadMoreButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --loadMoreButtonFont-style: normal;
    --loadMoreButtonFont-variant: normal;
    --loadMoreButtonFont-weight: normal;
    --loadMoreButtonFont-size: 18px;
    --loadMoreButtonFont-line-height: 1.4em;
    --loadMoreButtonFont-family: helvetica-w01-roman, sans-serif;
    --loadMoreButtonFont-text-decoration: none;
    --itemFontSlideshow: normal normal bold 18px/22px helvetica-w01-light, sans-serif;
    --itemFontSlideshow-style: normal;
    --itemFontSlideshow-variant: normal;
    --itemFontSlideshow-weight: bold;
    --itemFontSlideshow-size: 18px;
    --itemFontSlideshow-line-height: 22px;
    --itemFontSlideshow-family: helvetica-w01-light, sans-serif;
    --itemFontSlideshow-text-decoration: none;
    --titleFontExpand: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    --titleFontExpand-style: normal;
    --titleFontExpand-variant: normal;
    --titleFontExpand-weight: normal;
    --titleFontExpand-size: 50px;
    --titleFontExpand-line-height: 1.4em;
    --titleFontExpand-family: helvetica-w01-light, sans-serif;
    --titleFontExpand-text-decoration: none;
    --itemDescriptionFontSlideshow: normal normal normal 14px/17px helvetica-w01-light, sans-serif;
    --itemDescriptionFontSlideshow-style: normal;
    --itemDescriptionFontSlideshow-variant: normal;
    --itemDescriptionFontSlideshow-weight: normal;
    --itemDescriptionFontSlideshow-size: 14px;
    --itemDescriptionFontSlideshow-line-height: 17px;
    --itemDescriptionFontSlideshow-family: helvetica-w01-light, sans-serif;
    --itemDescriptionFontSlideshow-text-decoration: none;
    --descriptionFontExpand: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --descriptionFontExpand-style: normal;
    --descriptionFontExpand-variant: normal;
    --descriptionFontExpand-weight: normal;
    --descriptionFontExpand-size: 18px;
    --descriptionFontExpand-line-height: 1.4em;
    --descriptionFontExpand-family: helvetica-w01-roman, sans-serif;
    --descriptionFontExpand-text-decoration: none;
    --itemFont: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    --itemFont-style: normal;
    --itemFont-variant: normal;
    --itemFont-weight: normal;
    --itemFont-size: 22px;
    --itemFont-line-height: 1.4em;
    --itemFont-family: helvetica-w01-light, sans-serif;
    --itemFont-text-decoration: none;
    --customButtonFontForHover: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    --customButtonFontForHover-style: normal;
    --customButtonFontForHover-variant: normal;
    --customButtonFontForHover-weight: normal;
    --customButtonFontForHover-size: 15px;
    --customButtonFontForHover-line-height: 18px;
    --customButtonFontForHover-family: helvetica-w01-roman, sans-serif;
    --customButtonFontForHover-text-decoration: none;
    --customButtonFont: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    --customButtonFont-style: normal;
    --customButtonFont-variant: normal;
    --customButtonFont-weight: normal;
    --customButtonFont-size: 15px;
    --customButtonFont-line-height: 18px;
    --customButtonFont-family: helvetica-w01-roman, sans-serif;
    --customButtonFont-text-decoration: none;
    --m_itemFont: normal normal normal 22px/27px helvetica-w01-light, sans-serif;
    --m_itemFont-style: normal;
    --m_itemFont-variant: normal;
    --m_itemFont-weight: normal;
    --m_itemFont-size: 22px;
    --m_itemFont-line-height: 27px;
    --m_itemFont-family: helvetica-w01-light, sans-serif;
    --m_itemFont-text-decoration: none;
    --m_itemFontSlideshow: normal normal bold 15px/18px helvetica-w01-light, sans-serif;
    --m_itemFontSlideshow-style: normal;
    --m_itemFontSlideshow-variant: normal;
    --m_itemFontSlideshow-weight: bold;
    --m_itemFontSlideshow-size: 15px;
    --m_itemFontSlideshow-line-height: 18px;
    --m_itemFontSlideshow-family: helvetica-w01-light, sans-serif;
    --m_itemFontSlideshow-text-decoration: none;
    --m_itemDescriptionFont: normal normal normal 18px/22px helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --m_itemDescriptionFont-text-decoration: none;
    --m_itemDescriptionFontSlideshow: normal normal normal 12px/15px helvetica-w01-light, sans-serif;
    --m_itemDescriptionFontSlideshow-style: normal;
    --m_itemDescriptionFontSlideshow-variant: normal;
    --m_itemDescriptionFontSlideshow-weight: normal;
    --m_itemDescriptionFontSlideshow-size: 12px;
    --m_itemDescriptionFontSlideshow-line-height: 15px;
    --m_itemDescriptionFontSlideshow-family: helvetica-w01-light, sans-serif;
    --m_itemDescriptionFontSlideshow-text-decoration: none;
    --m_customButtonFontForHover: normal normal normal 15px/18px helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --m_customButtonFontForHover-text-decoration: none;
    --m_customButtonFont: normal normal normal 15px/18px helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --m_customButtonFont-text-decoration: none;
    --m_loadMoreButtonFont: normal normal normal 18px/22px helvetica-w01-roman, 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: helvetica-w01-roman, 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: helvetica-w01-roman, sans-serif;
    --textFont-text-decoration: none;
}

.s__514oxQ.oY2_tRb--madefor {
    --wbu-font-stack: var(--site-font-stack);
    --wbu-font-weight-regular: var(--site-font-weight-regular);
    --wbu-font-weight-medium: var(--site-font-weight-medium);
    --wbu-font-weight-bold: var(--site-font-weight-bold);
}

.syjDhab {
    --wbu-color-blue-0: #0F2CCF;
    --wbu-color-blue-100: #2F5DFF;
    --wbu-color-blue-200: #597DFF;
    --wbu-color-blue-300: #ACBEFF;
    --wbu-color-blue-400: #D5DFFF;
    --wbu-color-blue-500: #EAEFFF;
    --wbu-color-blue-600: #F5F7FF;
    --wbu-color-black-0: #151414;
    --wbu-color-black-100: #383838;
    --wbu-color-black-200: #525150;
    --wbu-color-black-300: #767574;
    --wbu-color-black-400: #A8A6A5;
    --wbu-color-black-500: #E0DFDF;
    --wbu-color-black-600: #F1F0EF;
    --wbu-color-red-0: #9C2426;
    --wbu-color-red-100: #DF3336;
    --wbu-color-red-200: #E55C5E;
    --wbu-color-red-300: #ED8F90;
    --wbu-color-red-400: #F4B8B9;
    --wbu-color-red-500: #F9D6D7;
    --wbu-color-red-600: #FCEBEB;
    --wbu-color-green-0: #0D4F3D;
    --wbu-color-green-100: #4B916D;
    --wbu-color-green-200: #97C693;
    --wbu-color-green-300: #BDE2A7;
    --wbu-color-green-400: #DAF3C0;
    --wbu-color-green-500: #EFFAE5;
    --wbu-color-green-600: #F1F5ED;
    --wbu-color-yellow-0: #D49341;
    --wbu-color-yellow-100: #F9AD4D;
    --wbu-color-yellow-200: #FABD71;
    --wbu-color-yellow-300: #FCD29D;
    --wbu-color-yellow-400: #FDEAD2;
    --wbu-color-yellow-500: #FEF3E5;
    --wbu-color-yellow-600: #FEF6ED;
    --wbu-color-orange-0: #AE3E09;
    --wbu-color-orange-100: #FF8044;
    --wbu-color-orange-200: #FE9361;
    --wbu-color-orange-300: #FDA77F;
    --wbu-color-orange-400: #FBCFBB;
    --wbu-color-orange-500: #FBE3D9;
    --wbu-color-orange-600: #FDF1EC;
    --wbu-color-purple-0: #5000AA;
    --wbu-color-purple-100: #7200F3;
    --wbu-color-purple-200: #8B2DF5;
    --wbu-color-purple-300: #BE89F9;
    --wbu-color-purple-400: #D7B7FB;
    --wbu-color-purple-500: #F1E5FE;
    --wbu-color-purple-600: #F8F2FF;
    --wbu-color-ai-0: #4D3DD0;
    --wbu-color-ai-100: #5A48F5;
    --wbu-color-ai-200: #7B6DF7;
    --wbu-color-ai-300: #A59BFA;
    --wbu-color-ai-400: #D6D1FC;
    --wbu-color-ai-500: #E7E4FE;
    --wbu-color-ai-600: #EEECFE;
    --wbu-heading-font-stack: 'Madefor Display', 'Helvetica Neue', Helvetica, Arial, '\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA', 'meiryo', '\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4  pro w3', 'hiragino kaku gothic pro', sans-serif;
    --wbu-text-tiny-size: 10px;
    --wbu-text-tiny-line-height: 12px;
    --wbu-text-small-size: 12px;
    --wbu-text-small-line-height: 12px;
    --wbu-text-medium-size: 14px;
    --wbu-text-medium-line-height: 16px;
    --wbu-text-large-size: 16px;
    --wbu-text-large-line-height: 18px;
    --wbu-heading-h1-font-size: 32px;
    --wbu-heading-h1-line-height: 40px;
    --wbu-heading-h1-letter-spacing: -0.5px;
    --wbu-heading-h1-font-weight: 400;
    --wbu-heading-h2-font-size: 24px;
    --wbu-heading-h2-line-height: 32px;
    --wbu-heading-h2-letter-spacing: -0.5px;
    --wbu-heading-h2-font-weight: 500;
    --wbu-heading-h3-font-size: 16px;
    --wbu-heading-h3-line-height: 24px;
    --wbu-heading-h3-letter-spacing: -0.5px;
    --wbu-heading-h3-font-weight: 700;
    --wbu-heading-h4-font-size: 14px;
    --wbu-heading-h4-line-height: 18px;
    --wbu-heading-h4-letter-spacing: 0px;
    --wbu-heading-h4-font-weight: 500;
    --wbu-heading-h5-font-size: 12px;
    --wbu-heading-h5-line-height: 18px;
    --wbu-heading-h5-letter-spacing: 0px;
    --wbu-heading-h5-font-weight: 600;
}

.s__1Rytdd.oH6LYyn--madefor {
    --wbu-font-stack: var(--site-font-stack);
    --wbu-font-weight-regular: var(--site-font-weight-regular);
    --wbu-font-weight-medium: var(--site-font-weight-medium);
    --wbu-font-weight-bold: var(--site-font-weight-bold);
}

.nav-arrows-container .custom-nav-arrows svg {
    width: 100%;
    height: 100%;
}

.fullscreen-focus-lock {
    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: .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: .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: .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: .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: .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, .6);
    transition: background-color .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 .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, .6);
    transition: all .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 .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 .desktop-social-share-popup-close-button:focus {
    border-radius: 7px;
    box-shadow: inset 0 0 1px 3px #116dff;
}

.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 .2s ease;
}

.social-share-wrapper .social-share-item {
    position: relative;
}

.social-share-wrapper .social-share-item .social-share-button {
    opacity: 1;
    transition: opacity .2s ease;
    cursor: pointer;
}

.social-share-wrapper .social-share-item .social-share-button:focus {
    border-radius: 7px;
    box-shadow: inset 0 0 1px 3px #116dff;
}

.social-share-wrapper .social-share-item .social-share-button:hover {
    opacity: .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 .1s ease;
}

.social-share-wrapper .social-share-copylink-container .social-share-copylink-button:focus {
    border-radius: 7px;
    box-shadow: inset 0 0 1px 3px #116dff;
}

.social-share-wrapper .social-share-copylink-container .social-share-copylink-button:hover {
    background-color: rgba(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 .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 .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 .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 .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 .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 .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 .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 .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, .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 .4s ease, opacity .4s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover:before {
    transition: filter .4s ease, opacity .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 .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 .4s ease, filter .2s ease, opacity .2s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover:before {
    transition: transform .4s ease, filter .2s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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, .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 .4s ease, opacity .4s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover:before {
    transition: filter .4s ease, opacity .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 .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 .4s ease, filter .2s ease, opacity .2s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover:before {
    transition: transform .4s ease, filter .2s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .5s ease !important;
}

div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover:before {
    transition: transform .4s cubic-bezier(0.3, 0.13, 0.12, 1), filter .5s ease, opacity .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 .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 .4s ease, height .4s ease, top .4s ease, left .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, .1);
}

.more-items-loader {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    color: #116dff;
}

.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: hsla(0, 0%, 100%, .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: .9;
}

.auto-slideshow-counter {
    margin-top: 24px;
    left: auto;
    z-index: 1;
    position: absolute;
    display: flex;
    text-align: center;
    opacity: .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: .9;
    align-items: center;
    background: rgba(0, 0, 0, 0);
    border: 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;
}

.nav-arrows-container:focus:not(:focus-visible) {
    --focus-ring-box-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.arrow-portal-container span {
    animation: fadeIn .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 .item-action {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

div.pro-gallery .gallery-item-container .item-action:focus {
    --focus-ring-box-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

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: .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 .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: .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: .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: hsla(0, 0%, 100%, .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: inset 0 0 0 1px #fff, inset 0 0 1px 4px #116dff;
}

div.pro-gallery.accessible i:focus:not(:focus-visible),

div.pro-gallery.accessible button:not(.nav-arrows-container, .has-custom-focus):focus:not(:focus-visible) {
    box-shadow: none !important;
}

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 .gallery-item-container:has(.item-action:focus)::after {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 1px 2px #116dff, inset 0 0 7px 0 #fff, inset 0 0 10px -5px #116dff;
    pointer-events: none;
    border-radius: inherit;
    z-index: 15;
}

div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before {
    box-shadow: inset 0 0 1px 2px #116dff, inset 0 0 7px 0 #fff, inset 0 0 10px -5px #116dff;
}

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 #116dff, inset 0 0 7px 0 #fff, 0 0 10px -5px #116dff;
    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;
    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 .1s ease 200ms !important;
}

.deck-after {
    display: block;
    transition: opacity .2s ease 600ms;
    z-index: -1;
    opacity: 0;
}

.deck-after .override {
    transition: opacity .1s ease 0s !important;
}

.disabled-transition {
    transition: none !important;
}

@keyframes changing_background {
    0% {
        background-color: rgba(241, 241, 241, .2);
    }

    50% {
        background-color: rgba(241, 241, 241, .8);
    }

    100% {
        background-color: rgba(241, 241, 241, .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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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,

.gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover {
    padding: 30px;
}

.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;
}

.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 .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 .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: hsla(0, 0%, 100%, .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 .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: .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 .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: .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: hsla(0, 0%, 100%, .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, .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);
    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;
    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: 100%;
    height: 100vh;
    z-index: 100005;
}

.pro-gallery-empty {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: hsla(0, 0%, 100%, .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(media/emptystate.85a4add5.html);
    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;
}

.gallery-speakers div.pro-gallery-parent-container .gallery-item-wrapper-text .gallery-item-content {
    background-color: #455665;
}

.gallery-speakers div.pro-gallery-parent-container .show-more-container i.show-more {
    color: rgba(0, 0, 0, 0.7);
}

.gallery-speakers div.pro-gallery-parent-container .show-more-container button.show-more {
    --loadMoreButtonBorderRadius: 0;
    --loadMoreButtonBorderColor: #455665;
    --loadMoreButtonBorderWidth: 1;
    --loadMoreButtonColor: #FFFFFF;
    --loadMoreButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --loadMoreButtonFontColor: #455665;
    color: rgba(69, 86, 101, 0.9);
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-color: rgb(69, 86, 101);
    border-radius: 0px;
}

.gallery-speakers div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more {
    color: rgba(0, 0, 0, 0.7);
}

.gallery-speakers div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more {
    --loadMoreButtonBorderRadius: 0;
    --loadMoreButtonBorderColor: #455665;
    --loadMoreButtonBorderWidth: 1;
    --loadMoreButtonColor: #FFFFFF;
    --loadMoreButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --loadMoreButtonFontColor: #455665;
    color: rgb(69, 86, 101);
    font: normal normal normal 18px/22px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgb(255, 255, 255);
    border-width: undefinedpx;
    border-color: rgb(69, 86, 101);
    border-radius: undefinedpx;
}

.gallery-speakers .nav-arrows-container .slideshow-arrow,

.gallery-speakers .nav-arrows-container .custom-nav-arrows svg {
    --arrowsColor: #FFFFFF;
    fill: rgb(255, 255, 255);
}

.gallery-speakers .nav-arrows-container.pro-gallery-mobile-indicator .slideshow-arrow,

.gallery-speakers .nav-arrows-container.pro-gallery-mobile-indicator .custom-nav-arrows svg {
    --arrowsColor: #FFFFFF;
    fill: rgb(255, 255, 255);
}

.gallery-speakers .pro-gallery.inline-styles .auto-slideshow-counter {
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 14px/17px helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info {
    --itemIconColorSlideshow: #455665;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),

.gallery-speakers .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),

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info a {
    color: rgb(69, 86, 101) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info svg .gallery-item-svg-foreground {
    fill: rgb(69, 86, 101) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal bold 18px/22px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description {
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 14px/17px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded) {
    --imageLoadingColor: #FFFFFF;
    background-color: rgb(131, 142, 153);
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle {
    --itemFontColor: #FFFFFF;
    color: rgb(255, 255, 255);
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background {
    --itemOpacity: #455665;
    color: rgba(255, 255, 255, 0);
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background {
    --itemOpacity: #455665;
    fill: rgba(255, 255, 255, 0);
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gradient-top,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gradient-top {
    --itemOpacity: #455665;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, transparent 140px) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover {
    --itemIconColor: #FFFFFF;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),

.gallery-speakers .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),

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a {
    color: rgb(255, 255, 255) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground {
    fill: rgb(255, 255, 255) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title {
    --itemFont: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColor: #FFFFFF;
    color: rgb(255, 255, 255);
    font: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description {
    --itemDescriptionFont: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper {
    --customButtonFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button {
    --customButtonColor: #455665;
    --customButtonBorderRadius: 0;
    --customButtonBorderWidth: 1;
    --customButtonBorderColor: #FFFFFF;
    --customButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgba(255, 255, 255, 0) !important;
    border-width: 1px;
    border-radius: 0px;
    border-color: rgb(255, 255, 255);
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover:before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover:before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 22px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal bold 18px/22px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description {
    --itemDescriptionFontColorSlideshow: #455665;
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 14px/17px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-custom-button-wrapper button {
    --customButtonFontForHover: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    --customButtonFontColorForHover: #455665;
    --externalCustomButtonBorderWidth: 0;
    --externalCustomButtonBorderRadius: 0;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    color: rgb(69, 86, 101) !important;
    background: rgba(63, 122, 156, 0) !important;
    border-color: rgb(69, 86, 101);
    border-width: 0px;
    border-radius: 0px;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded) {
    --imageLoadingColor: #FFFFFF;
    background-color: rgb(131, 142, 153);
}

.gallery-speakers .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: #FFFFFF;
    color: rgb(255, 255, 255);
}

.gallery-speakers .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: #455665;
    color: rgba(255, 255, 255, 0) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background {
    --itemOpacity: #455665;
    fill: rgba(255, 255, 255, 0) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gradient-top,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gradient-top {
    --itemOpacity: #455665;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, transparent 140px) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info {
    --itemIconColorSlideshow: #455665;
}

.gallery-speakers .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),

.gallery-speakers .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),

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a {
    color: rgb(69, 86, 101) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-foreground {
    fill: rgb(69, 86, 101) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal bold 15px/18px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-description,

.gallery-speakers .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 helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 12px/15px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover {
    --itemIconColor: #FFFFFF;
}

.gallery-speakers .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),

.gallery-speakers .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),

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a {
    color: rgb(255, 255, 255) !important;
}

.gallery-speakers .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;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-title {
    --itemFont: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColor: #FFFFFF;
    color: rgb(255, 255, 255);
    font: normal normal normal 22px/27px helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-description,

.gallery-speakers .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 helvetica-w01-roman, sans-serif;
    --itemDescriptionFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 18px/22px helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper {
    --customButtonFontColor: #FFFFFF;
    color: rgb(255, 255, 255) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button {
    --customButtonColor: #455665;
    --customButtonBorderRadius: 0;
    --customButtonBorderWidth: 1;
    --customButtonBorderColor: #FFFFFF;
    --customButtonFont: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(255, 255, 255) !important;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    background: rgba(255, 255, 255, 0) !important;
    border-width: undefinedpx;
    border-radius: undefinedpx;
    border-color: rgb(255, 255, 255);
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover:not(.hide-hover):before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover:before {
    --itemOpacity: #455665;
    background: rgba(255, 255, 255, 0) !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before {
    background: #455665 !important;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-title,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-title {
    --itemFontSlideshow: normal normal bold 22px/1.4em helvetica-w01-light, sans-serif;
    --itemFontColorSlideshow: #455665;
    color: rgb(69, 86, 101) !important;
    font: normal normal bold 15px/18px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description {
    --itemDescriptionFontColorSlideshow: #455665;
    --itemDescriptionFontSlideshow: normal normal normal 15px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101) !important;
    font: normal normal normal 12px/15px helvetica-w01-light, sans-serif !important;
    text-decoration: ;
}

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-custom-button-wrapper button,

.gallery-speakers .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .custom-button-wrapper button,

.gallery-speakers .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 helvetica-w01-roman, sans-serif;
    --customButtonFontColorForHover: #455665;
    --externalCustomButtonBorderWidth: 0;
    --externalCustomButtonBorderRadius: 0;
    font: normal normal normal 15px/18px helvetica-w01-roman, sans-serif;
    text-decoration: ;
    color: rgb(69, 86, 101) !important;
    background: rgba(63, 122, 156, 0) !important;
    border-color: rgb(69, 86, 101);
    border-width: undefinedpx;
    border-radius: undefinedpx;
}

.gallery-speakers .te-pro-gallery-text-item {
    font: normal normal normal 14px/1.4em helvetica-w01-roman, sans-serif;
    color: #FFFFFF;
}

.gallery-speakers .pro-fullscreen-wrapper .pro-fullscreen-text-item {
    --fullscreen-text-item-bg: #455665;
    background-color: #455665;
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles {
    --bgColorExpand: #FFFFFF;
    background-color: rgb(255, 255, 255);
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-selected-license,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-checkout-link {
    --descriptionColorExpand: #455665;
    --descriptionFontExpand: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101);
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-mobile-info {
    --bgColorExpand: #FFFFFF;
    background-color: rgb(255, 255, 255);
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-title h1 {
    --titleColorExpand: #455665;
    --titleFontExpand: normal normal bold 25px/1.4em helvetica-w01-light, sans-serif;
    color: rgb(69, 86, 101);
    font: normal normal normal 50px/1.4em helvetica-w01-light, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link {
    --descriptionColorExpand: #455665;
    --descriptionFontExpand: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    color: rgb(69, 86, 101);
    font: normal normal normal 18px/1.4em helvetica-w01-roman, sans-serif;
    text-decoration: ;
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after {
    --descriptionColorExpand: #455665;
    border-color: rgb(69, 86, 101);
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social i:not(.pro-gallery-loved),

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social a,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social button,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav i:not(.pro-gallery-loved),

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav a,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav button,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar i:not(.pro-gallery-loved),

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar a,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar button,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social i:not(.pro-gallery-loved),

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social a,

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social button {
    --descriptionColorExpand: #455665;
    color: rgb(69, 86, 101);
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle {
    --descriptionColorExpand: #455665;
    color: rgb(69, 86, 101);
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-background {
    --bgColorExpand: #FFFFFF;
    color: rgb(255, 255, 255);
}

.gallery-speakers .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon {
    --descriptionColorExpand: #455665;
    --bgColorExpand: #FFFFFF;
    color: rgb(69, 86, 101);
    background: rgb(255, 255, 255);
}

div.gallery-speakers:not(.fullscreen-comp-wrapper) {
    width: 100%;
}

/* ========================================
   Responsive Width Fix Only
   Makes fixed-width containers responsive
   ======================================== */
@media screen and (max-width: 1024px) {
    /* Override fixed-width layout to be full-width responsive */
    body:not(.device-mobile-optimized) .content-background,
    
  body:not(.device-mobile-optimized) .vlM3HR,
    
  body:not(.device-mobile-optimized) .c7cMWz,
    
  body:not(.device-mobile-optimized) .page-background {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Make column strips full width */
    body:not(.device-mobile-optimized) .column-layout {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Add padding to header/top bar contents */
    .header-wrapper .content-background,
    
  .header-wrapper [data-mesh-id$="inlineContent-gridContainer"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }
}

@media screen and (max-width: 480px) {
    /* Smaller padding for very small screens */
    .header-wrapper .content-background,
    
  .header-wrapper [data-mesh-id$="inlineContent-gridContainer"] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
/* Disable pointer cursor and click on second gallery (Plenaries and Featured Speakers) */
#pro-gallery-comp-lzrvp9e5 .item-action,
#pro-gallery-comp-lzrvp9e5 .gallery-item-container {
    cursor: default !important;
    pointer-events: none;
}
