
.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width,60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: currentColor;
    opacity: .25;
    transition: opacity .15s ease-in-out
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    width: var(--carousel-button-width,48px);
    height: var(--carousel-button-height,48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color,currentColor);
    background: var(--carousel-button-bg,transparent);
    border-radius: var(--carousel-button-border-radius,50%);
    box-shadow: var(--carousel-button-shadow,none);
    transition: opacity .15s ease
}

.carousel__button.is-next,.carousel__button.is-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel__button.is-prev {
    left: 10px
}

.carousel__button.is-next {
    right: 10px
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3
}

.carousel__button svg {
    width: var(--carousel-button-svg-width,50%);
    height: var(--carousel-button-svg-height,50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width,1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden!important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top,0) env(safe-area-inset-right,0) env(safe-area-inset-bottom,0) env(safe-area-inset-left,0);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color,#fff);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    z-index: 1050;
    outline: 0;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .4))
}

.fancybox__container *,.fancybox__container ::after,.fancybox__container ::before {
    box-sizing: inherit
}

.fancybox__container :focus {
    outline: 0
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,.94))
}

@media all and (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width:48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg,rgba(24,24,27,.92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

.fancybox__slide::after,.fancybox__slide::before {
    content: "";
    flex: 0 0 0;
    margin: auto
}

@media all and (min-width: 1024px) {
    .fancybox__slide {
        padding:64px 100px
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right,0) 0 env(safe-area-inset-left,0);
    padding: 36px;
    color: var(--fancybox-content-color,#374151);
    background: var(--fancybox-content-bg,#fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: dotted thin;
    box-shadow: none
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0;
    line-height: 1.375;
    color: var(--fancybox-color,currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container>.carousel__dots {
    top: 100%;
    color: var(--fancybox-color,#fff)
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top,0px) + 8px);
    right: calc(env(safe-area-inset-right,0px) + 8px);
    z-index: 40
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right:40px
    }

    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }

    .carousel__button.is-close {
        right: 40px
    }
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color,#fff)
}

.fancybox__no-click,.fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color,currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: 2s linear infinite fancybox-rotate;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

.carousel__button.is-close,.carousel__dots,.fancybox__backdrop,.fancybox__caption,.fancybox__nav {
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
    animation: .15s backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav {
    animation: .15s both fancybox-fadeOut
}

.fancybox-fadeOut {
    animation: .1s both fancybox-fadeOut
}

.fancybox-zoomInUp {
    animation: .2s both fancybox-zoomInUp
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(.97) translate3d(0,16px,0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0,0,0);
        opacity: 1
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255,255,255,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255,255,255,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0,0,0,.2)
}

.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none
}

.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0)
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0 3px;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width,96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

.fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    user-select: none
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top,hsla(0deg,0%,0%,0) 0,hsla(0deg,0%,0%,.006) 8.1%,hsla(0deg,0%,0%,.021) 15.5%,hsla(0deg,0%,0%,.046) 22.5%,hsla(0deg,0%,0%,.077) 29%,hsla(0deg,0%,0%,.114) 35.3%,hsla(0deg,0%,0%,.155) 41.2%,hsla(0deg,0%,0%,.198) 47.1%,hsla(0deg,0%,0%,.242) 52.9%,hsla(0deg,0%,0%,.285) 58.8%,hsla(0deg,0%,0%,.326) 64.7%,hsla(0deg,0%,0%,.363) 71%,hsla(0deg,0%,0%,.394) 77.5%,hsla(0deg,0%,0%,.419) 84.5%,hsla(0deg,0%,0%,.434) 91.9%,hsla(0deg,0%,0%,.44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.4))
}

@media all and (min-width: 1024px) {
    .fancybox__toolbar {
        padding:8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color,rgba(34,213,233,.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fa-times:before {
    content: "\f00d"
}

.fa-play:before {
    content: "\f04b"
}

.fa-facebook-square:before {
    content: "\f082"
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none
}

.ui-helper-clearfix:after,.ui-helper-clearfix:before {
    content: "";
    display: table;
    border-collapse: collapse
}

.ui-helper-clearfix:after {
    clear: both
}

.ui-front {
    z-index: 100
}

.ui-state-disabled {
    cursor: default!important;
    pointer-events: none
}

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default
}

.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0
}

.ui-menu .ui-menu {
    position: absolute
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0
}

.ui-menu .ui-state-active,.ui-menu .ui-state-focus {
    margin: -1px
}

.ui-menu-icons {
    position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em
}

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0
}

.ui-menu .ui-menu-icon {
    left: auto;
    right: 0
}

.ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible
}

.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited {
    text-decoration: none
}

.ui-button-icon-only {
    width: 2em;
    box-sizing: border-box;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-button-icon-only {
    text-indent: 0
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px
}

button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0
}

.ui-controlgroup {
    vertical-align: middle;
    display: inline-block
}

.ui-controlgroup>.ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus {
    z-index: 9999
}

.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc;
    border-radius: .12em;
    border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none
}

.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em
}

.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover {
    top: 1px
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px
}

.ui-datepicker .ui-datepicker-next {
    right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px
}

.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year {
    width: 45%
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: 700;
    border: 0
}

.ui-datepicker td {
    border: 0;
    padding: 1px
}

.ui-datepicker td a,.ui-datepicker td span {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em;
    width: auto;
    overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left
}

.ui-datepicker.ui-datepicker-multi {
    width: auto
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0
}

.ui-datepicker-rtl {
    direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: right
}

.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em
}

.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0;
    padding: 1px;
    height: 20px
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: 0 0;
    overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer
}

.ui-dialog .ui-resizable-n {
    height: 2px;
    top: 0
}

.ui-dialog .ui-resizable-e {
    width: 2px;
    right: 0
}

.ui-dialog .ui-resizable-s {
    height: 2px;
    bottom: 0
}

.ui-dialog .ui-resizable-w {
    width: 2px;
    left: 0
}

.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw {
    width: 7px;
    height: 7px
}

.ui-dialog .ui-resizable-se {
    right: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-sw {
    left: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-ne {
    right: 0;
    top: 0
}

.ui-dialog .ui-resizable-nw {
    left: 0;
    top: 0
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move
}

.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none
}

.ui-resizable {
    position: relative
}

.ui-resizable-handle {
    position: absolute;
    font-size: .1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none
}

.ui-resizable-autohide .ui-resizable-handle {
    display: none
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
    background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
    height: 100%;
    opacity: .25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none
}

.ui-selectable {
    -ms-touch-action: none;
    touch-action: none
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted #000
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none
}

.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: 700;
    line-height: 1.5;
    padding: 2px .4em;
    margin: .5em 0 0;
    height: auto;
    border: 0
}

.ui-selectmenu-open {
    display: block
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0
}

.ui-slider {
    position: relative;
    text-align: left
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit
}

.ui-slider-horizontal {
    height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.ui-slider-vertical {
    width: .8em;
    height: 100px
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0
}

.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle
}

.ui-spinner-input {
    border: none;
    background: 0 0;
    color: inherit;
    padding: .222em 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 2em
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none
}

.ui-spinner-up {
    top: 0
}

.ui-spinner-down {
    bottom: 0
}

.ui-tabs {
    position: relative;
    padding: .2em
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: 0 0
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px
}

body .ui-tooltip {
    border-width: 2px
}

.ui-widget {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em
}

.ui-widget .ui-widget {
    font-size: 1em
}

.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5
}

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333
}

.ui-widget-content a {
    color: #333
}

.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: 700
}

.ui-widget-header a {
    color: #333
}

.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: 400;
    color: #454545
}

.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button {
    color: #454545;
    text-decoration: none
}

.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover {
    border: 1px solid #ccc;
    background: #ededed;
    font-weight: 400;
    color: #2b2b2b
}

.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover {
    color: #2b2b2b;
    text-decoration: none
}

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: 400;
    color: #fff
}

.ui-icon-background,.ui-state-active .ui-icon-background {
    border: #003eff;
    background-color: #fff
}

.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited {
    color: #fff;
    text-decoration: none
}

.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90
}

.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a {
    color: #777620
}

.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary {
    font-weight: 700
}

.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: 400
}

.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35)
}

.ui-icon {
    width: 16px;
    height: 16px
}

.ui-icon,.ui-widget-content .ui-icon {
    background-image: var(--wpr-bg-25ba46a9-7673-4a61-8fcc-58e3ba33068a)
}

.ui-widget-header .ui-icon {
    background-image: var(--wpr-bg-82c977bf-053c-4f36-9af3-d9993223c702)
}

.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon {
    background-image: var(--wpr-bg-14557e5b-6236-4b83-a591-a36d4a3b56e7)
}

.ui-button:active .ui-icon,.ui-state-active .ui-icon {
    background-image: var(--wpr-bg-cada5df9-5fe2-44c6-a503-3b953be4744f)
}

.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon {
    background-image: var(--wpr-bg-ee1ae879-4989-4344-811a-1b153e6ebb22)
}

.ui-button .ui-icon {
    background-image: var(--wpr-bg-e4b83cec-3637-47e1-a495-91ed5843dfbb)
}

.ui-icon-blank {
    background-position: 16px 16px
}

.ui-icon-caret-1-e {
    background-position: -32px 0
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px
}

.ui-icon-closethick {
    background-position: -96px -128px
}

.ui-icon-check {
    background-position: -64px -144px
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px
}

.ui-corner-all,.ui-corner-left,.ui-corner-top {
    border-top-left-radius: 3px
}

.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr {
    border-top-right-radius: 3px
}

.ui-corner-all,.ui-corner-bottom,.ui-corner-left {
    border-bottom-left-radius: 3px
}

.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right {
    border-bottom-right-radius: 3px
}

.ui-widget-overlay {
    background: #aaa;
    opacity: .003;
    filter: Alpha(Opacity=.3)
}

.ui-widget-shadow {
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666
}

[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s
}

[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s
}

[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s
}

[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s
}

[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(.25,.25,.75,.75)
}

[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity,transform
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0)
}

[data-aos=fade-up] {
    transform: translate3d(0,100px,0)
}

[data-aos=fade-right] {
    transform: translate3d(-100px,0,0)
}

[data-aos=fade-left] {
    transform: translate3d(100px,0,0)
}

[data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity,transform
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1)
}

[data-aos^=slide][data-aos^=slide] {
    transition-property: transform
}

[data-aos^=slide][data-aos^=slide].aos-animate {
    transform: translateZ(0)
}

[data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform
}

.leaflet-image-layer,.leaflet-layer,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box {
    position: absolute;
    left: 0;
    top: 0
}

.leaflet-container {
    overflow: hidden
}

.leaflet-tile {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none
}

.leaflet-tile::selection {
    background: 0 0
}

.leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast
}

.leaflet-safari .leaflet-tile-container {
    width: 1600px;
    height: 1600px;
    -webkit-transform-origin: 0 0
}

.leaflet-container .leaflet-tile,.leaflet-container img.leaflet-image-layer {
    max-width: none!important;
    max-height: none!important;
    width: auto;
    padding: 0
}

.leaflet-container img.leaflet-tile {
    mix-blend-mode: plus-lighter
}

.leaflet-container.leaflet-touch-zoom {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y
}

.leaflet-container.leaflet-touch-drag {
    -ms-touch-action: pinch-zoom;
    touch-action: none;
    touch-action: pinch-zoom
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    -ms-touch-action: none;
    touch-action: none
}

.leaflet-container {
    -webkit-tap-highlight-color: transparent
}

.leaflet-container a {
    -webkit-tap-highlight-color: rgba(51,181,229,.4)
}

.leaflet-tile {
    filter: inherit;
    visibility: hidden
}

.leaflet-tile-loaded {
    visibility: inherit
}

.leaflet-zoom-box {
    width: 0;
    height: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 800
}

.leaflet-pane {
    z-index: 400
}

.leaflet-vml-shape {
    width: 1px;
    height: 1px
}

.lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute
}

.leaflet-control {
    position: relative;
    z-index: 800;
    pointer-events: visiblePainted;
    pointer-events: auto
}

.leaflet-control {
    float: left;
    clear: both
}

.leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.leaflet-zoom-animated {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0
}

svg.leaflet-zoom-animated {
    will-change: transform
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    -webkit-transition: -webkit-transform .25s cubic-bezier(0,0,.25,1);
    -moz-transition: -moz-transform .25s cubic-bezier(0,0,.25,1);
    transition: transform .25s cubic-bezier(0,0,.25,1)
}

.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none
}

.leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden
}

.leaflet-interactive {
    cursor: pointer
}

.leaflet-grab {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab
}

.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive {
    cursor: crosshair
}

.leaflet-control {
    cursor: auto
}

.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing
}

.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container {
    pointer-events: none
}

.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path {
    pointer-events: visiblePainted;
    pointer-events: auto
}

.leaflet-container {
    background: #ddd;
    outline-offset: 1px
}

.leaflet-container a {
    color: #0078a8
}

.leaflet-zoom-box {
    border: 2px dotted #38f;
    background: rgba(255,255,255,.5)
}

.leaflet-container {
    font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.5
}

.leaflet-bar {
    box-shadow: 0 1px 5px rgba(0,0,0,.65);
    border-radius: 4px
}

.leaflet-bar a {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000
}

.leaflet-bar a {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block
}

.leaflet-bar a:focus,.leaflet-bar a:hover {
    background-color: #f4f4f4
}

.leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none
}

.leaflet-bar a.leaflet-disabled {
    cursor: default;
    background-color: #f4f4f4;
    color: #bbb
}

.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px
}

.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px
}

.leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0,0,0,.4);
    background: #fff;
    border-radius: 5px
}

.leaflet-control-layers-expanded {
    padding: 6px 10px 6px 6px;
    color: #333;
    background: #fff
}

.leaflet-control-layers-scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px
}

.leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px
}

.leaflet-control-layers label {
    display: block;
    font-size: 13px;
    font-size: 1.08333em
}

.leaflet-default-icon-path {
    background-image: var(--wpr-bg-5f127159-f91b-4a81-9502-5fb50f17a695)
}

.leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: rgba(255,255,255,.8);
    margin: 0
}

.leaflet-control-attribution {
    padding: 0 5px;
    color: #333;
    line-height: 1.4
}

.leaflet-control-attribution a {
    text-decoration: none
}

.leaflet-control-attribution a:focus,.leaflet-control-attribution a:hover {
    text-decoration: underline
}

.leaflet-attribution-flag {
    display: inline!important;
    vertical-align: baseline!important;
    width: 1em;
    height: .6669em
}

.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers {
    box-shadow: none
}

.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers {
    border: 2px solid rgba(0,0,0,.2);
    background-clip: padding-box
}

.leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 20px
}

.leaflet-popup-scrolled {
    overflow: auto
}

.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom {
    border: 1px solid #999
}

.leaflet-div-icon {
    background: #fff;
    border: 1px solid #666
}

.leaflet-tooltip {
    position: absolute;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.4)
}

.leaflet-tooltip.leaflet-interactive {
    cursor: pointer;
    pointer-events: auto
}

.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before {
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    background: 0 0;
    content: ""
}

.leaflet-tooltip-bottom {
    margin-top: 6px
}

.leaflet-tooltip-top {
    margin-top: -6px
}

.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px
}

.leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #fff
}

.leaflet-tooltip-bottom:before {
    top: 0;
    margin-top: -12px;
    margin-left: -6px;
    border-bottom-color: #fff
}

.leaflet-tooltip-left {
    margin-left: -6px
}

.leaflet-tooltip-right {
    margin-left: 6px
}

.leaflet-tooltip-left:before,.leaflet-tooltip-right:before {
    top: 50%;
    margin-top: -6px
}

.leaflet-tooltip-left:before {
    right: 0;
    margin-right: -12px;
    border-left-color: #fff
}

.leaflet-tooltip-right:before {
    left: 0;
    margin-left: -12px;
    border-right-color: #fff
}

@media print {
    .leaflet-control {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact
    }
}

@font-face {
  font-family: "Gilroy";
  src: url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Bold.eot");
  src: url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Bold.woff2")
      format("woff2"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Bold.woff")
      format("woff"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Bold.ttf")
      format("truetype"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Bold.svg#Gilroy-Bold")
      format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Regular.eot");
  src: url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Regular.woff2")
      format("woff2"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Regular.woff")
      format("woff"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Regular.ttf")
      format("truetype"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Gilroy-Regular.svg#Gilroy-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quattrocento";
  src: url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Quattrocento.eot");
  src: url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Quattrocento.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Quattrocento.woff2")
      format("woff2"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Quattrocento.woff")
      format("woff"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Quattrocento.ttf")
      format("truetype"),
    url("https://cdn.talentfinder.be/Orelia2025/Ressources/new/fonts//Quattrocento.svg#Quattrocento")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


.wp-block-columns {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    gap: 100px;
    margin: 120px auto
}

.wp-block-video {
    margin: 60px 0;
    position: relative
}

.wp-block-video .play-overlay {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3
}

@media screen and (max-width: 1000px) {
    body .wp-block-columns {
        flex-wrap:wrap!important;
        gap: 40px;
        margin: 80px auto
    }
}

@media only screen and (max-width: 768px) {
    .aos-animate {
        transition-property:none!important;
        transform: none!important;
        -webkit-animation: none!important;
        animation: none!important
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: auto;
    outline: 0!important
}

body,html {
    width: 100%;
    height: 100%;
    font-size: 18px;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Gilroy,sans-serif;
    font-weight: 400
}

.wrapper {
    min-height: calc(100% - 44px);
    overflow-x: hidden
}

a {
    outline: 0;
    transition: all .3s ease;
    color: inherit;
    color: #a39161
}

button {
    font-family: Gilroy,sans-serif;
    font-weight: 400;
    transition: all .3s ease
}

p {
    margin-bottom: 20px;
    line-height: 1.5
}

ol li,ul li {
    line-height: 1.5
}

ol:not(.menu),ul:not(.menu) {
    list-style: none;
    margin-bottom: 20px;
    margin-left: 30px
}

ol:not(.menu) li,ul:not(.menu) li {
    position: relative;
    padding-bottom: 5px
}

ol:not(.menu) li::before,ul:not(.menu) li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 4px;
    left: -30px;
    top: 10px;
    background-color: #a39161
}

ol:not(.menu) li>ul,ul:not(.menu) li>ul {
    margin-top: 10px;
    margin-bottom: 10px
}

ol:not(.menu) li:last-child,ul:not(.menu) li:last-child {
    padding-bottom: 0
}

ol.menu,ul.menu {
    list-style: none;
    margin: 0;
    padding: 0
}

b,strong {
    font-weight: 700
}

h1,h2,h4,h5,h6 {
    font-family: Gilroy,sans-serif;
    font-weight: 700
}

h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1
}

h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1
}

h4 {
    font-size: 37px;
    margin-bottom: 20px;
    line-height: 1.2
}

h5 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2
}

h6 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2
}

a,button,li,p {
    font-size: 18px
}

.font-larger {
    font-size: 20px
}

.font-larger a,.font-larger button,.font-larger li,.font-larger p {
    font-size: 20px
}

.font-smaller {
    font-size: 16px
}

.font-smaller a,.font-smaller button,.font-smaller li,.font-smaller p {
    font-size: 16px
}

@media screen and (max-width: 1000px) {
    body,html {
        font-size:16px
    }

    h1 {
        font-size: 45px
    }

    h2 {
        font-size: 45px
    }

    h4 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2
    }

    h5 {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.2
    }

    h6 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.2
    }

    a,button,li,p {
        font-size: 16px
    }

    .font-larger {
        font-size: 18px
    }

    .font-larger a,.font-larger button,.font-larger li,.font-larger p {
        font-size: 18px
    }

    .font-smaller {
        font-size: 14px
    }

    .font-smaller a,.font-smaller button,.font-smaller li,.font-smaller p {
        font-size: 14px
    }
}

@media screen and (max-width: 600px) {
    body,html {
        font-size:15px
    }

    h1 {
        font-size: 35px
    }

    h2 {
        font-size: 35px
    }

    h4 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.2
    }

    h5 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.2
    }

    h6 {
        font-size: 17px;
        margin-bottom: 20px;
        line-height: 1.2
    }

    a,button,li,p {
        font-size: 15px
    }

    .font-larger {
        font-size: 17px
    }

    .font-larger a,.font-larger button,.font-larger li,.font-larger p {
        font-size: 17px
    }

    .font-smaller {
        font-size: 13px
    }

    .font-smaller a,.font-smaller button,.font-smaller li,.font-smaller p {
        font-size: 13px
    }
}

.we-button-styling {
    display: inline-block;
    font-weight: 700;
    padding: 13px 25px 12px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #a39161;
    background-color: #a39161;
    color: #fff;
    text-align: center
}

.we-button-styling:hover {
    background-color: #716545;
    border-color: #716545
}

.we-button-styling.magenta {
    background-color: #e6007e;
    border-color: #e6007e;
    color: #fff
}

.we-button-styling.magenta:hover {
    background-color: #a5005a;
    border-color: #a5005a
}

.we-button-styling.turquoise {
    background-color: #007d7e;
    border-color: #007d7e;
    color: #fff
}

.we-button-styling.turquoise:hover {
    background-color: #005455;
    border-color: #005455
}

.we-button-styling.pink {
    background-color: #f38bb9;
    border-color: #f38bb9;
    color: #fff
}

.we-button-styling.pink:hover {
    background-color: #cb739b;
    border-color: #cb739b;
    color: #fff
}

@media screen and (max-width: 450px) {
    h1 {
        font-size:32px
    }

    h2 {
        font-size: 32px
    }

    .we-button-styling {
        padding: 11px 18px 10px
    }
}

button.we-button-styling {
    cursor: pointer
}

.we-buttons-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.the-content>div {
    padding-bottom: 30px
}

.the-content>:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.the-content>:last-child div :last-child,.the-content>:last-child p :last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

header {
    padding: 20px 50px
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center
}

header nav .logo img {
    max-width: 200px;
    width: 100%
}

header nav .menuwrapper .bottom-menu,header nav .menuwrapper .top-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

header nav .menuwrapper .bottom-menu ul,header nav .menuwrapper .top-menu ul {
    display: flex;
    align-items: center
}

header nav .menuwrapper .top-menu {
    margin-bottom: 10px
}

header nav .menuwrapper .top-menu ul {
    gap: 40px
}

header nav .menuwrapper .top-menu ul>:last-child a {
    margin-right: 0
}

header nav .menuwrapper .top-menu ul li {
    font-size: 16px
}

header nav .menuwrapper .top-menu ul li a {
    font-size: 16px
}

header nav .menuwrapper .top-menu .highlight a {
    background-color: #007d7e;
    padding: 7px 15px 6px;
    line-height: 1;
    color: #fff
}

header nav .menuwrapper .top-menu .highlight a:hover {
    background-color: #005455
}

header nav .menuwrapper .top-menu .highlight a::before {
    display: none
}

header nav .menuwrapper .bottom-menu ul {
    gap: 60px
}

header nav .menuwrapper .bottom-menu ul>:last-child a {
    margin-right: 0
}

header nav .menuwrapper .menu-button a {
    display: inline-block;
    font-weight: 700;
    padding: 13px 25px 12px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #a39161;
    background-color: #a39161;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 6px 18px 5px;
    border: 1px solid #e6007e;
    background-color: #e6007e
}

header nav .menuwrapper .menu-button a:hover {
    background-color: #716545;
    border-color: #716545
}

header nav .menuwrapper .menu-button a:hover {
    background-color: #a5005a;
    border-color: #a5005a;
    color: #fff
}

header nav .menuwrapper .menu-button a::before {
    display: none
}

header nav .menuwrapper ul {
    list-style: none
}

header nav .menuwrapper ul li {
    display: inline-block;
    position: relative
}

header nav .menuwrapper ul li .sub-menu {
    display: none;
    border: 1px solid rgba(0,0,0,.1);
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background: #fff;
    z-index: 200
}

header nav .menuwrapper ul li .sub-menu li {
    display: block
}

header nav .menuwrapper ul li .sub-menu li a {
    margin: 0;
    font-size: .9em;
    white-space: nowrap
}

header nav .menuwrapper ul li .sub-menu li a:hover {
    color: #a39161
}

header nav .menuwrapper ul li .sub-menu li a:before {
    display: none
}

header nav .menuwrapper ul li:hover .sub-menu {
    display: block
}

header nav .menuwrapper ul li a {
    display: block;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    color: #000
}

header nav .menuwrapper ul li a:hover:before {
    width: 100%
}

header nav .menuwrapper ul li a:before {
    content: "";
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: #a39161;
    transition: .3s all
}

#trigger {
    display: none;
    float: right;
    width: 28px;
    height: 20px;
    position: relative;
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-left: 50px;
    z-index: 100
}

#trigger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: .25s ease-in-out;
    margin-top: 1px;
    background: #000
}

#trigger span:first-child {
    top: 0
}

#trigger span:nth-child(2),#trigger span:nth-child(3) {
    top: 7px
}

#trigger span:nth-child(4) {
    top: 14px
}

.open #trigger span {
    background: #000
}

.open #trigger span:first-child {
    top: 18px;
    width: 0%;
    left: 50%
}

.open #trigger span:nth-child(2) {
    transform: rotate(45deg)
}

.open #trigger span:nth-child(3) {
    transform: rotate(-45deg)
}

.open #trigger span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

@media screen and (min-width: 1200px) {
    header nav .menuwrapper {
        display:block!important
    }
}

.we-cta_jobs {
    overflow: hidden;
    margin: 120px 0
}

@media screen and (max-width: 1200px) {
    #trigger {
        display:block;
        margin-top: 5px
    }

    header nav {
        display: flex;
        flex-wrap: wrap
    }

    header nav .we-menus {
        display: flex;
        flex-direction: column-reverse
    }

    header nav .we-menus .bottom-menu {
        margin-top: 40px;
        display: block
    }

    header nav .we-menus .bottom-menu ul {
        flex-direction: column;
        gap: 5px
    }

    header nav .we-menus .top-menu {
        margin-top: 20px;
        justify-content: center
    }

    header nav .we-menus .top-menu ul li a {
        font-size: 14px
    }

    header nav .menuwrapper {
        display: none;
        flex-basis: 100%!important;
        border-bottom: 1px solid rgba(0,0,0,.1);
        text-align: center;
        padding-bottom: 10px
    }

    header nav .menuwrapper .menu-button {
        margin-top: 10px
    }

    header nav .menuwrapper ul li {
        display: block
    }

    header nav .menuwrapper ul li .sub-menu {
        position: relative;
        border: none
    }

    header nav .menuwrapper ul li .sub-menu li {
        display: block
    }

    header nav .menuwrapper ul li:hover .sub-menu {
        display: none
    }

    header nav .menuwrapper ul li a {
        display: inline-block;
        margin: 0
    }
}

footer {
    background-color: #f5f5f5
}

footer li,footer p,footer ul {
    margin-bottom: 0
}

footer .top-footer-container {
    padding: 60px 0;
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between
}

footer .top-footer-container .menu-button a {
    display: inline-block;
    font-weight: 700;
    padding: 13px 25px 12px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #a39161;
    background-color: #a39161;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 6px 18px 5px;
    border: 1px solid #e6007e;
    background-color: #e6007e
}

footer .top-footer-container .menu-button a:hover {
    background-color: #716545;
    border-color: #716545
}

footer .top-footer-container .menu-button a:hover {
    background-color: #a5005a;
    border-color: #a5005a;
    color: #fff
}

footer .top-footer-container .menu-button a::before {
    display: none
}

footer .top-footer-container h6 {
    font-size: 18px;
    margin-bottom: 20px
}

footer .top-footer-container a,footer .top-footer-container li,footer .top-footer-container p,footer .top-footer-container ul {
    font-size: 18px;
    line-height: 1.5
}

footer .top-footer-container a {
    color: #000;
    text-decoration: none
}

footer .top-footer-container a:hover {
    color: #a39161
}

footer .top-footer-container a.mail {
    text-decoration: underline
}

footer .top-footer-container .logo-container {
    flex-basis: 40%
}

footer .top-footer-container .logo-container .footer-logo {
    display: block;
    width: 100%;
    max-width: 300px
}

footer .top-footer-container .logo-container img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

footer .top-footer-container .menu li {
    margin-bottom: 15px
}

footer .top-footer-container .menu li:last-child {
    margin-bottom: 0
}

footer .top-footer-container .menu .highlight a {
    background-color: #007d7e;
    padding: 7px 15px 6px;
    line-height: 1;
    color: #fff
}

footer .top-footer-container .menu .highlight a:hover {
    background-color: #005455
}

footer .top-footer-container .menu .highlight a::before {
    display: none
}

footer .top-footer-container .some .links {
    display: flex;
    gap: 15px;
    align-items: center
}

footer .top-footer-container .some .links svg {
    display: block
}

footer .bottom-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,.15);
    max-width: 1700px;
    margin: 0 auto;
    width: 90%
}

footer .bottom-footer-container a {
    color: #000;
    text-decoration: none
}

footer .bottom-footer-container a:hover {
    color: #a39161
}

footer .bottom-footer-container a.mail {
    text-decoration: underline
}

footer .bottom-footer-container .privacy ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end
}

@media screen and (max-width: 1000px) {
    footer .top-footer-container {
        flex-wrap:wrap;
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 40px
    }

    footer .top-footer-container .some {
        flex-basis: 100%
    }
}

@media screen and (max-width: 800px) {
    footer .top-footer-container .logo-container {
        flex-basis:100%
    }

    footer .top-footer-container .about,footer .top-footer-container .solutions {
        flex-basis: calc(50% - 20px)
    }

    footer .top-footer-container .some {
        flex-basis: 100%
    }
}

@media screen and (max-width: 600px) {
    footer .top-footer-container .about,footer .top-footer-container .logo-container,footer .top-footer-container .solutions,footer .top-footer-container .some {
        flex-basis:100%;
        text-align: center
    }

    footer .top-footer-container .logo-container {
        display: flex;
        justify-content: center
    }

    footer .top-footer-container .some .links {
        justify-content: center
    }

    footer .bottom-footer-container {
        display: block
    }

    footer .bottom-footer-container .copyright {
        text-align: center;
        margin-bottom: 10px
    }

    footer .bottom-footer-container .privacy ul {
        justify-content: center
    }
}

header nav .menuwrapper .wpml-ls {
    display: inline-block;
    margin-left: 30px;
    margin-right: 0;
    border: none!important;
    padding: 0
}

header nav .menuwrapper .wpml-ls ul {
    list-style: none;
    margin: 0;
    gap: 0
}

header nav .menuwrapper .wpml-ls ul li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    margin: 0 10px
}

header nav .menuwrapper .wpml-ls ul li.wpml-ls-current-language a::before {
    width: 100%
}

header nav .menuwrapper .wpml-ls ul li:first-child {
    margin-left: 0
}

header nav .menuwrapper .wpml-ls ul li:last-child {
    margin-right: 0
}

header nav .menuwrapper .wpml-ls ul li a {
    padding: 0;
    margin: 0
}

header nav .menuwrapper .wpml-ls ul li a::before {
    bottom: -5px
}

header nav .menuwrapper .wpml-ls ul li::before {
    content: none
}

header nav .menuwrapper .wpml-ls ul li:not(:last-child)::after {
    content: " | ";
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%)
}

@media screen and (max-width: 1200px) {
    header nav .menuwrapper .top-menu {
        flex-wrap:wrap;
        row-gap: 10px
    }

    header nav .menuwrapper .wpml-ls {
        flex-basis: 100%;
        margin-left: 0
    }

    header nav .menuwrapper .wpml-ls ul {
        justify-content: center
    }
}

.we-content_video {
    position: relative;
    margin-top: 120px
}

.we-content_video .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    display: flex
}

.we-content_video .left {
    position: relative;
    flex-basis: 60%;
    margin-left: 80px;
    padding-right: 120px
}

.we-content_video .image,.we-content_video .video {
    flex-basis: 40%;
    height: 700px
}

.we-content_video .image-container {
    position: relative;
    width: 100%;
    height: 100%
}

.we-content_video img,.we-content_video video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-content_video img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.we-content_video .play-overlay {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3
}

.we-content_video ul {
    list-style: none;
    margin-left: 30px
}

.we-content_video li {
    position: relative
}

.we-content_video li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 4px;
    left: -30px;
    top: 10px;
    background-color: #a39161
}

.we-content_video .the-content h1 b,.we-content_video .the-content h1 strong,.we-content_video .the-content h2 b,.we-content_video .the-content h2 strong,.we-content_video .the-content h4 b,.we-content_video .the-content h4 strong,.we-content_video .the-content h5 b,.we-content_video .the-content h5 strong,.we-content_video .the-content h6 b,.we-content_video .the-content h6 strong {
    color: #a39161
}

.we-content_video .content-box {
    position: absolute;
    bottom: -40px;
    left: 120px;
    background-color: #a39161;
    padding: 40px 30px;
    width: 100%;
    z-index: 5
}

.we-content_video .content-box .the-content li,.we-content_video .content-box .the-content p,.we-content_video .content-box .the-content ul {
    color: #fff
}

.we-content_video .content-box li::before {
    background-color: #76ced9
}

@media screen and (max-width: 1300px) {
    .we-content_video .left {
        padding-right:60px;
        flex-basis: 55%
    }

    .we-content_video .content-box {
        left: 60px;
        width: calc(100% + 60px)
    }

    .we-content_video .image,.we-content_video .video {
        flex-basis: 45%
    }
}

@media screen and (max-width: 1000px) {
    .we-content_video {
        margin:80px 0
    }

    .we-content_video .inner-content {
        display: block
    }

    .we-content_video .left {
        margin-left: 0;
        padding-right: 0;
        padding-bottom: 0!important
    }

    .we-content_video .content-box {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 40px;
        padding: 40px 20px
    }

    .we-content_video .image,.we-content_video .video {
        margin-top: 40px;
        width: 100%;
        height: auto
    }
}

.we-cta_jobs {
    margin: 120px 0
}

.we-cta_jobs .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 140px
}

.we-cta_jobs .inner-content .image {
    position: relative;
    flex-basis: calc(50% - 140px)
}

.we-cta_jobs .inner-content .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-cta_jobs .inner-content .content {
    padding: 50px 0;
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.we-cta_jobs .inner-content .we-buttons-container {
    margin-top: 30px
}

@media screen and (max-width: 1200px) {
    .we-cta_jobs .inner-content {
        gap:60px
    }

    .we-cta_jobs .inner-content .image {
        flex-basis: calc(50% - 60px)
    }
}

@media screen and (max-width: 1000px) {
    .we-cta_jobs {
        margin:80px 0
    }

    .we-cta_jobs .inner-content {
        display: block
    }

    .we-cta_jobs .inner-content .image {
        flex-basis: auto;
        height: 400px
    }

    .we-cta_jobs .inner-content .content {
        padding-bottom: 0
    }
}

@media screen and (max-width: 600px) {
    .we-cta_jobs .inner-content .image {
        height:300px
    }

    .we-cta_jobs .inner-content .content {
        padding-top: 30px
    }
}

.we-faq {
    padding: 120px 0;
    background-color: #ece6db
}

.we-faq .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 80px
}

.we-faq .content {
    flex-basis: calc(35% - 40px)
}

.we-faq .content h1,.we-faq .content h2,.we-faq .content h4,.we-faq .content h5,.we-faq .content h6 {
    color: #a39161
}

.we-faq .faq-item {
    background-color: #fff;
    margin-bottom: 20px
}

.we-faq .faq-item:last-child {
    margin-bottom: 0
}

.we-faq .question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

.we-faq .question h6 {
    margin-bottom: 0
}

@media screen and (max-width: 1000px) {
    .we-faq {
        padding:80px 0
    }

    .we-faq .inner-content {
        display: block
    }

    .we-faq .content {
        margin-bottom: 40px
    }
}

.we-form_contact {
    padding: 120px;
    background-color: #ece6db
}

.we-form_contact .inner-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 80px
}

.we-form_contact .content,.we-form_contact .form {
    flex-basis: calc(50% - 40px)
}

.we-form_contact .content h1,.we-form_contact .content h2,.we-form_contact .content h4,.we-form_contact .content h5,.we-form_contact .content h6 {
    color: #a39161
}

.we-form_contact .privacy {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(50% - 80px)
}

.we-form_contact .privacy a {
    color: #000;
    text-decoration: underline;
    font-weight: 700
}

.we-form_contact .privacy a:hover {
    color: #007d7e
}

@media screen and (max-width: 1200px) {
    .we-form_contact .inner-content {
        display:block
    }

    .we-form_contact .form {
        margin-top: 20px
    }

    .we-form_contact .privacy {
        position: relative;
        width: 100%;
        margin-top: 20px
    }
}

@media screen and (max-width: 1000px) {
    .we-form_contact {
        padding:80px 0
    }
}

.we-header_default {
    position: relative;
    z-index: 2;
    width: 100%
}

.we-header_default .inner-content {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    height: calc(80vh - 127px);
    min-height: 500px;
    z-index: 2
}

.we-header_default .inner-content .content-box {
    position: absolute;
    width: 45%;
    bottom: -40px;
    background-color: #a39161;
    padding: 40px
}

.we-header_default .inner-content h1,.we-header_default .inner-content h2,.we-header_default .inner-content h4,.we-header_default .inner-content h5,.we-header_default .inner-content h6,.we-header_default .inner-content li,.we-header_default .inner-content p {
    color: #fff
}

.we-header_default .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.we-header_default .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-hover-buttons {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: #fff;
    border-radius: 100px;
    padding: 15px;
    z-index: 10000;
    box-shadow: 0 0 25px rgba(0,0,0,.15)
}

.we-hover-buttons .we-buttons-container {
    width: 100%;
    margin-top: 0;
    flex-wrap: nowrap
}

@media screen and (max-width: 1400px) {
    .we-header_default .inner-content .content-box {
        width:65%
    }
}

@media screen and (max-width: 1000px) {
    .we-header_default .inner-content {
        height:auto;
        min-height: 500px
    }

    .we-header_default .inner-content h1 {
        font-size: 50px;
        line-height: 1
    }

    .we-header_default .inner-content .content-box {
        width: 100%;
        bottom: -60px;
        padding: 40px
    }
}

@media screen and (max-width: 600px) {
    .we-header_default .inner-content h1 {
        font-size:38px
    }

    .we-header_default .inner-content .content-box {
        padding: 30px
    }
}

@media screen and (max-width: 450px) {
    .we-header_default .inner-content h1 {
        font-size:32px
    }

    .we-header_default .inner-content .content-box {
        padding: 20px
    }

    .we-hover-buttons {
        width: 95%;
        border-radius: 25px
    }

    .we-hover-buttons .we-buttons-container {
        width: 100%;
        justify-content: center;
        flex-direction: column
    }
}

.we-overview_stories {
    padding: 120px 0;
    background-color: #ece6db
}

.we-overview_stories .filter {
    text-align: center
}

.we-overview_stories .toggle-container {
    text-align: center;
    display: inline-flex;
    background-color: transparent;
    border-radius: 50px;
    border: 1px solid #a39161;
    padding: 5px
}

.we-overview_stories .toggle-container .option {
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    gap: 8px;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 10px 20px;
    color: #a39161;
    font-weight: 700;
    text-decoration: none
}

.we-overview_stories .toggle-container .option.active {
    background-color: #fff;
    color: #000
}

.we-overview_stories .toggle-container .option svg {
    display: block
}

.we-overview_stories .toggle-container .option span {
    line-height: 1
}

.we-overview_stories .first,.we-overview_stories .last {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 140px
}

.we-overview_stories .first .image,.we-overview_stories .last .image {
    position: relative;
    flex-basis: calc(50% - 140px);
    min-height: 700px
}

.we-overview_stories .first .image img,.we-overview_stories .last .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-overview_stories .first .content,.we-overview_stories .last .content {
    padding: 40px 0;
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.we-overview_stories .first .content h6.author,.we-overview_stories .last .content h6.author {
    color: #a39161
}

.we-overview_stories .last {
    flex-direction: row-reverse
}

.we-overview_stories .slick-list {
    overflow: visible
}

.we-overview_stories .slick-track {
    display: flex!important
}

.we-overview_stories .slick-slide {
    height: inherit!important
}

.we-overview_stories .slider-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    margin: 120px auto 60px
}

.we-overview_stories .slider-container {
    width: 80%;
    margin: 0 -10px
}

.we-overview_stories .arrows {
    display: flex
}

.we-overview_stories .divider {
    height: 80px;
    width: 2px;
    background-color: #fff
}

.we-overview_stories .next-arrow,.we-overview_stories .prev-arrow {
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #a39161;
    border: 1px solid #a39161;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center
}

.we-overview_stories .next-arrow svg,.we-overview_stories .prev-arrow svg {
    display: block;
    color: #ece6db;
    transition: all .3s ease
}

.we-overview_stories .next-arrow:hover,.we-overview_stories .prev-arrow:hover {
    background-color: transparent
}

.we-overview_stories .next-arrow:hover svg,.we-overview_stories .prev-arrow:hover svg {
    color: #a39161
}

.we-overview_stories .slick-dots {
    margin-top: 20px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    gap: 8px
}

.we-overview_stories .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    cursor: pointer
}

.we-overview_stories .slick-dots li::before {
    display: none
}

.we-overview_stories .slick-dots li:hover button {
    background: #a39161
}

.we-overview_stories .slick-dots li.slick-active button {
    background: #a39161
}

.we-overview_stories .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    border-radius: 20px;
    background: #fff;
    transition: all .3s ease
}

@media screen and (max-width: 1200px) {
    .we-overview_stories .first,.we-overview_stories .last {
        gap:60px
    }

    .we-overview_stories .first .image,.we-overview_stories .last .image {
        flex-basis: calc(50% - 60px);
        min-height: 500px
    }

    .we-overview_stories .first .content,.we-overview_stories .last .content {
        flex-basis: 50%
    }
}

@media screen and (max-width: 1000px) {
    .we-overview_stories {
        padding:120px 0 80px
    }

    .we-overview_stories .first,.we-overview_stories .last {
        margin: 80px auto;
        display: block
    }

    .we-overview_stories .first .image,.we-overview_stories .last .image {
        min-height: 450px
    }

    .we-overview_stories .first .content,.we-overview_stories .last .content {
        padding-bottom: 0
    }

    .we-overview_stories .last {
        margin-bottom: 0
    }

    .we-overview_stories .slider-wrapper {
        margin: 80px auto
    }
}

@media screen and (max-width: 700px) {
    .we-overview_stories .toggle-container {
        max-width:1700px;
        margin: 0 auto;
        width: 90%;
        padding: 0;
        display: block;
        border: none;
        text-align: center
    }

    .we-overview_stories .toggle-container a.option {
        border: 1px solid #a39161;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px
    }

    .we-overview_stories .toggle-container a.option:last-child {
        margin-bottom: 0
    }
}

@media screen and (max-width: 600px) {
    .we-overview_stories .slider-container {
        width:100%
    }

    .we-overview_stories .first .image,.we-overview_stories .last .image {
        min-height: 350px
    }
}

.we-overview_vacancies_filter {
    margin: 120px 0;
    scroll-margin-top: 120px
}

.we-overview_vacancies_filter .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%
}

.we-overview_vacancies_filter .toolbar {
    position: relative;
    z-index: 100;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 25px;
    background-color: rgba(241,241,241,.75)
}

.we-overview_vacancies_filter .left h6 {
    margin-bottom: 0
}

.we-overview_vacancies_filter .left,.we-overview_vacancies_filter .right {
    flex-basis: calc(50% - 20px)
}

.we-overview_vacancies_filter .label {
    margin-bottom: 5px
}

.we-overview_vacancies_filter .label p {
    margin-bottom: 0
}

.we-overview_vacancies_filter .current-item,.we-overview_vacancies_filter .label p {
    font-weight: 700
}

.we-overview_vacancies_filter .toggle-container {
    display: inline-flex;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #007d7e;
    padding: 5px
}

.we-overview_vacancies_filter button.option {
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    gap: 8px;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 10px 20px
}

.we-overview_vacancies_filter button.option.active {
    background-color: #007d7e;
    color: #fff
}

.we-overview_vacancies_filter button.option svg {
    display: block
}

.we-overview_vacancies_filter button.option span {
    line-height: 1
}

.we-overview_vacancies_filter .filters {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
    z-index: 100
}

.we-overview_vacancies_filter .filters button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #000
}

.we-overview_vacancies_filter .filters button span {
    color: #000
}

.we-overview_vacancies_filter .filters .current-item {
    padding: 15px 12px;
    border: 1px solid #f38bb9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px
}

.we-overview_vacancies_filter .filters .filter-function,.we-overview_vacancies_filter .filters .filter-province,.we-overview_vacancies_filter .filters .filter-type {
    position: relative
}

.we-overview_vacancies_filter .filters .filter-list {
    position: absolute;
    width: 100%;
    top: 100%;
    padding: 10px 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    z-index: 90;
    transition: .3s all
}

.we-overview_vacancies_filter .filters .filter-list button {
    padding: 10px 20px;
    transition: .3s all;
    text-align: left
}

.we-overview_vacancies_filter .filters .filter-list button:hover {
    color: #fff;
    background-color: #a39161
}

.we-overview_vacancies_filter .vacancies-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px
}

.we-overview_vacancies_filter .vacancies-container .bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 30px);
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,.15)
}

.we-overview_vacancies_filter .vacancies-container .full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10
}

@media screen and (max-width: 1200px) {
    .we-overview_vacancies_filter .toolbar {
        display:block
    }

    .we-overview_vacancies_filter .filters {
        margin-top: 20px;
        justify-content: flex-start
    }
}

@media screen and (max-width: 1000px) {
    .we-overview_vacancies_filter {
        margin:80px 0;
        scroll-margin-top: 80px
    }

    .we-overview_vacancies_filter .toolbar {
        margin-top: 40px
    }
}

@media screen and (max-width: 700px) {
    .we-overview_vacancies_filter .filters {
        flex-wrap:wrap
    }
}

.we-slider_images {
    margin: 120px 0
}

.we-slider_images .images-container {
    position: relative;
    margin: 0 -10px
}

.we-slider_images .image {
    margin: 0 10px;
    height: 700px
}

.we-slider_images .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-slider_images .slick-list {
    overflow: visible
}

.we-slider_images .slick-track {
    display: flex!important
}

.we-slider_images .arrows {
    flex-shrink: 0;
    flex-grow: 0;
    display: flex
}

.we-slider_images .divider {
    height: 80px;
    width: 2px;
    background-color: #fff
}

.we-slider_images .next-arrow,.we-slider_images .prev-arrow {
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #76ced9;
    border: 1px solid #76ced9;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center
}

.we-slider_images .next-arrow svg,.we-slider_images .prev-arrow svg {
    display: block;
    color: #007d7e
}

.we-slider_images .next-arrow:hover,.we-slider_images .prev-arrow:hover {
    background-color: transparent
}

.we-slider_images .slick-dots {
    margin-top: 20px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    gap: 8px
}

.we-slider_images .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    cursor: pointer
}

.we-slider_images .slick-dots li::before {
    display: none
}

.we-slider_images .slick-dots li:hover button {
    background: #a39161
}

.we-slider_images .slick-dots li.slick-active button {
    background: #a39161
}

.we-slider_images .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    border-radius: 20px;
    background: #ece6db;
    transition: all .3s ease
}

@media screen and (max-width: 1000px) {
    .we-slider_images {
        margin:80px 0
    }

    .we-slider_images .image {
        height: 500px
    }
}

@media screen and (max-width: 600px) {
    .we-overview_vacancies_filter .filters .function,.we-overview_vacancies_filter .filters .province {
        width:100%
    }

    .we-overview_vacancies_filter .filters .current-item {
        width: 100%
    }

    .we-slider_images .image {
        height: 350px
    }

    .we-slider_images .slick-dots {
        overflow: hidden
    }

    .we-slider_images .divider {
        height: 50px
    }

    .we-slider_images .next-arrow,.we-slider_images .prev-arrow {
        width: 50px;
        height: 50px
    }

    .we-slider_images .next-arrow svg,.we-slider_images .prev-arrow svg {
        width: 20px;
        height: 20px
    }
}

@media screen and (max-width: 450px) {
    .we-slider_images .image {
        height:300px
    }

    .we-slider_images .divider {
        height: 40px
    }

    .we-slider_images .next-arrow,.we-slider_images .prev-arrow {
        width: 40px;
        height: 40px
    }

    .we-slider_images .next-arrow svg,.we-slider_images .prev-arrow svg {
        width: 15px;
        height: 15px
    }
}

.we-slider_testimonials .inner-content {
    display: flex
}

.we-slider_testimonials .quotes {
    position: relative;
    flex-basis: 40%;
    background-color: #ece6db
}

.we-slider_testimonials .slider-wrapper {
    position: relative;
    flex-basis: 60%;
    width: 60%
}

.we-slider_testimonials .image-container {
    width: 100%;
    height: 640px
}

.we-slider_testimonials .image-container img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-slider_testimonials .quote {
    padding: 60px;
    align-content: center;
    display: block;
    height: 100%
}

.we-slider_testimonials .quote .the-content {
    position: relative;
    padding-left: 15px
}

.we-slider_testimonials .quote .the-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: #a39161;
    z-index: 3
}

.we-slider_testimonials .quote .the-content p.content {
    font-family: Quattrocento,serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1
}

.we-slider_testimonials .quote .the-content p.content b,.we-slider_testimonials .quote .the-content p.content strong {
    font-weight: 400
}

.we-slider_testimonials .quote .the-content p.author {
    margin-top: 20px;
    margin-bottom: 0;
    color: #a39161;
    font-weight: 700
}

.we-slider_testimonials .quote .we-buttons-container {
    margin-top: 40px
}

.we-slider_testimonials .navigation-arrows {
    position: absolute;
    right: 0;
    bottom: 0
}

.we-slider_testimonials .arrows {
    display: flex
}

.we-slider_testimonials .divider {
    position: relative;
    height: 80px;
    width: 2px;
    background-color: #a39161
}

.we-slider_testimonials .divider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #000;
    opacity: 25%
}

.we-slider_testimonials .next-arrow,.we-slider_testimonials .prev-arrow {
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #a39161;
    border: 1px solid #a39161;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center
}

.we-slider_testimonials .next-arrow svg,.we-slider_testimonials .prev-arrow svg {
    display: block;
    color: #fff
}

.we-slider_testimonials .next-arrow:hover,.we-slider_testimonials .prev-arrow:hover {
    background-color: #ece6db
}

.we-slider_testimonials .next-arrow:hover svg,.we-slider_testimonials .prev-arrow:hover svg {
    color: #a39161
}

.we-slider_testimonials .slick-dots {
    position: absolute;
    margin: 0;
    left: 60px;
    bottom: 80px;
    display: flex;
    justify-content: flex-start;
    gap: 8px
}

.we-slider_testimonials .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    cursor: pointer
}

.we-slider_testimonials .slick-dots li::before {
    display: none
}

.we-slider_testimonials .slick-dots li:hover button {
    background: #a39161
}

.we-slider_testimonials .slick-dots li.slick-active button {
    background: #a39161
}

.we-slider_testimonials .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    border-radius: 20px;
    background: #fff;
    transition: all .3s ease
}

@media screen and (max-width: 1200px) {
    .we-slider_testimonials .quotes {
        flex-basis:45%;
        flex-grow: 0;
        flex-shrink: 0
    }

    .we-slider_testimonials .slider-wrapper {
        flex-basis: 55%;
        width: 55%;
        flex-grow: 0;
        flex-shrink: 0
    }
}

@media screen and (max-width: 1000px) {
    .we-slider_testimonials {
        padding-bottom:80px;
        margin-bottom: 0;
        background-color: #ece6db
    }

    .we-slider_testimonials .inner-content {
        flex-direction: column
    }

    .we-slider_testimonials .slider-wrapper {
        width: 100%;
        flex-basis: 100%
    }

    .we-slider_testimonials .slick-dots {
        bottom: 20px
    }

    .we-slider_testimonials .quote .the-content p.content {
        font-size: 28px
    }
}

@media screen and (max-width: 600px) {
    .we-slider_testimonials .quote {
        max-width:1700px;
        margin: 0 auto;
        width: 90%;
        padding: 0;
        padding-top: 30px
    }

    .we-slider_testimonials .quote .the-content p.content {
        font-size: 25px
    }

    .we-slider_testimonials .navigation-dots {
        position: relative;
        max-width: 1700px;
        margin: 0 auto;
        width: 90%
    }

    .we-slider_testimonials .slick-dots {
        bottom: -40px;
        left: 0
    }

    .we-slider_testimonials .image-container {
        height: 400px
    }

    .we-slider_testimonials .divider {
        height: 50px
    }

    .we-slider_testimonials .next-arrow,.we-slider_testimonials .prev-arrow {
        width: 50px;
        height: 50px
    }

    .we-slider_testimonials .next-arrow svg,.we-slider_testimonials .prev-arrow svg {
        width: 14px;
        height: 14px
    }
}

.acf-block-preview .we-slider_testimonials .slick-dots {
    bottom: 20px
}

img:is([sizes=auto i],[sizes^="auto," i]) {
    contain-intrinsic-size: 3000px 1500px
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset
}

#ui-datepicker-div {
    background: #fff;
    position: absolute;
    display: none;
    z-index: 999999!important
}

:root {
    --ss-primary-color: #5897fb;
    --ss-bg-color: #ffffff;
    --ss-font-color: #4d4d4d;
    --ss-font-placeholder-color: #8d8d8d;
    --ss-disabled-color: #dcdee2;
    --ss-border-color: #dcdee2;
    --ss-highlight-color: #fffb8c;
    --ss-success-color: #00b755;
    --ss-error-color: #dc3545;
    --ss-focus-color: #5897fb;
    --ss-main-height: 30px;
    --ss-content-height: 300px;
    --ss-spacing-l: 7px;
    --ss-spacing-m: 5px;
    --ss-spacing-s: 3px;
    --ss-animation-timing: 0.2s;
    --ss-border-radius: 4px
}

img.emoji {
    display: inline!important;
    border: none!important;
    box-shadow: none!important;
    height: 1em!important;
    width: 1em!important;
    margin: 0 .07em!important;
    vertical-align: -.1em!important;
    background: 0 0!important;
    padding: 0!important
}

:where(.wp-block-button__link) {
    border-radius: 9999px;
    box-shadow: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    text-decoration: none
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link) {
    border: 2px solid;
    padding: .667em 1.333em
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)) {
    color: currentColor
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)) {
    background-color: initial;
    background-image: none
}

:where(.wp-block-calendar table:not(.has-background) th) {
    background: #ddd
}

.wp-block-columns {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap!important
}

@media (min-width: 782px) {
    .wp-block-columns {
        flex-wrap:nowrap!important
    }
}

.wp-block-columns {
    align-items: normal!important
}

:where(.wp-block-columns) {
    margin-bottom: 1.75em
}

:where(.wp-block-columns.has-background) {
    padding: 1.25em 2.375em
}

:where(.wp-block-post-comments input[type=submit]) {
    border: none
}

:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)) {
    color: #fff
}

:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)) {
    color: #000
}

:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)) {
    color: inherit
}

:where(.wp-block-file) {
    margin-bottom: 1.5em
}

:where(.wp-block-file__button) {
    border-radius: 2em;
    display: inline-block;
    padding: .5em 1em
}

:where(.wp-block-file__button):where(a):active,:where(.wp-block-file__button):where(a):focus,:where(.wp-block-file__button):where(a):hover,:where(.wp-block-file__button):where(a):visited {
    box-shadow: none;
    color: #fff;
    opacity: .85;
    text-decoration: none
}

:where(.wp-block-form-input__input) {
    font-size: 1em;
    margin-bottom: .5em;
    padding: 0 .5em
}

:where(.wp-block-form-input__input)[type=date],:where(.wp-block-form-input__input)[type=datetime-local],:where(.wp-block-form-input__input)[type=datetime],:where(.wp-block-form-input__input)[type=email],:where(.wp-block-form-input__input)[type=month],:where(.wp-block-form-input__input)[type=number],:where(.wp-block-form-input__input)[type=password],:where(.wp-block-form-input__input)[type=search],:where(.wp-block-form-input__input)[type=tel],:where(.wp-block-form-input__input)[type=text],:where(.wp-block-form-input__input)[type=time],:where(.wp-block-form-input__input)[type=url],:where(.wp-block-form-input__input)[type=week] {
    border-style: solid;
    border-width: 1px;
    line-height: 2;
    min-height: 2em
}

:where(.wp-block-group.wp-block-group-is-layout-constrained) {
    position: relative
}

:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img) {
    border-radius: 9999px
}

:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)) {
    line-height: 1.1
}

:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)) {
    line-height: 1.8
}

:root :where(.wp-block-latest-posts.is-grid) {
    padding: 0
}

:root :where(.wp-block-latest-posts.wp-block-latest-posts__list) {
    padding-left: 0
}

ol,ul {
    box-sizing: border-box
}

:root :where(.wp-block-list.has-background) {
    padding: 1.25em 2.375em
}

:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)) {
    padding: .5em 1em
}

:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content) {
    padding: .5em 1em
}

:root :where(p.has-background) {
    padding: 1.25em 2.375em
}

:where(p.has-text-color:not(.has-link-color)) a {
    color: inherit
}

:where(.wp-block-post-comments-form input:not([type=submit])),:where(.wp-block-post-comments-form textarea) {
    border: 1px solid #949494;
    font-family: inherit;
    font-size: 1em
}

:where(.wp-block-post-comments-form input:where(:not([type=submit]):not([type=checkbox]))),:where(.wp-block-post-comments-form textarea) {
    padding: calc(.667em + 2px)
}

:where(.wp-block-post-excerpt) {
    box-sizing: border-box;
    margin-bottom: var(--wp--style--block-gap);
    margin-top: var(--wp--style--block-gap)
}

:where(.wp-block-preformatted.has-background) {
    padding: 1.25em 2.375em
}

:where(.wp-block-search__button) {
    border: 1px solid #ccc;
    padding: 6px 10px
}

:where(.wp-block-search__input) {
    appearance: none;
    border: 1px solid #949494;
    flex-grow: 1;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-left: 0;
    margin-right: 0;
    min-width: 3rem;
    padding: 8px;
    text-decoration: unset!important;
    text-transform: inherit
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    background-color: #fff;
    border: 1px solid #949494;
    box-sizing: border-box;
    padding: 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
    border: none;
    border-radius: 0;
    padding: 0 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus {
    outline: 0
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button) {
    padding: 4px 8px
}

:root :where(.wp-block-separator.is-style-dots) {
    height: auto;
    line-height: 1;
    text-align: center
}

:root :where(.wp-block-separator.is-style-dots):before {
    color: currentColor;
    content: "&#183;&#183;&#183;";
    font-family: serif;
    font-size: 1.5em;
    letter-spacing: 2em;
    padding-left: 2em
}

:root :where(.wp-block-site-logo.is-style-rounded) {
    border-radius: 9999px
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link {
    background-color: #f0f0f0;
    color: #444
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon {
    background-color: #f90;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp {
    background-color: #1ea0c3;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance {
    background-color: #0757fe;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky {
    background-color: #0a7aff;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen {
    background-color: #1e1f26;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart {
    background-color: #02e49b;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord {
    background-color: #5865f2;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble {
    background-color: #e94c89;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox {
    background-color: #4280ff;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy {
    background-color: #f45800;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook {
    background-color: #0866ff;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx {
    background-color: #000;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr {
    background-color: #0461dd;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare {
    background-color: #e65678;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github {
    background-color: #24292d;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads {
    background-color: #eceadd;
    color: #382110
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google {
    background-color: #ea4434;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar {
    background-color: #1d4fc4;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram {
    background-color: #f00075;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm {
    background-color: #e21b24;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin {
    background-color: #0d66c2;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon {
    background-color: #3288d4;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium {
    background-color: #000;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup {
    background-color: #f6405f;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon {
    background-color: #000;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest {
    background-color: #e60122;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket {
    background-color: #ef4155;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit {
    background-color: #ff4500;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype {
    background-color: #0478d7;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat {
    background-color: #fefc00;
    color: #fff;
    stroke: #000
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud {
    background-color: #ff5600;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify {
    background-color: #1bd760;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram {
    background-color: #2aabee;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads {
    background-color: #000;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok {
    background-color: #000;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr {
    background-color: #011835;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch {
    background-color: #6440a4;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter {
    background-color: #1da1f2;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo {
    background-color: #1eb7ea;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk {
    background-color: #4680c2;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress {
    background-color: #3499cd;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp {
    background-color: #25d366;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x {
    background-color: #000;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp {
    background-color: #d32422;
    color: #fff
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube {
    background-color: red;
    color: #fff
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link {
    background: 0 0
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg {
    height: 1.25em;
    width: 1.25em
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon {
    color: #f90
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp {
    color: #1ea0c3
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance {
    color: #0757fe
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky {
    color: #0a7aff
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen {
    color: #1e1f26
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart {
    color: #02e49b
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord {
    color: #5865f2
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble {
    color: #e94c89
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox {
    color: #4280ff
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy {
    color: #f45800
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook {
    color: #0866ff
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx {
    color: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr {
    color: #0461dd
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare {
    color: #e65678
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github {
    color: #24292d
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads {
    color: #382110
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google {
    color: #ea4434
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar {
    color: #1d4fc4
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram {
    color: #f00075
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm {
    color: #e21b24
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin {
    color: #0d66c2
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon {
    color: #3288d4
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium {
    color: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup {
    color: #f6405f
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon {
    color: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest {
    color: #e60122
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket {
    color: #ef4155
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit {
    color: #ff4500
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype {
    color: #0478d7
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat {
    color: #fff;
    stroke: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud {
    color: #ff5600
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify {
    color: #1bd760
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram {
    color: #2aabee
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads {
    color: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok {
    color: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr {
    color: #011835
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch {
    color: #6440a4
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter {
    color: #1da1f2
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo {
    color: #1eb7ea
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk {
    color: #4680c2
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp {
    color: #25d366
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress {
    color: #3499cd
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x {
    color: #000
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp {
    color: #d32422
}

:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube {
    color: red
}

:root :where(.wp-block-social-links .wp-social-link a) {
    padding: .25em
}

:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
    padding: 0
}

:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
    padding-left: .6666666667em;
    padding-right: .6666666667em
}

:root :where(.wp-block-tag-cloud.is-style-outline) {
    display: flex;
    flex-wrap: wrap;
    gap: 1ch
}

:root :where(.wp-block-tag-cloud.is-style-outline a) {
    border: 1px solid;
    font-size: unset!important;
    margin-right: 0;
    padding: 1ch 2ch;
    text-decoration: none!important
}

:root :where(.wp-block-table-of-contents) {
    box-sizing: border-box
}

:where(.wp-block-term-description) {
    box-sizing: border-box;
    margin-bottom: var(--wp--style--block-gap);
    margin-top: var(--wp--style--block-gap)
}

:where(pre.wp-block-verse) {
    font-family: inherit
}

.wp-block-video {
    box-sizing: border-box
}

.wp-block-video video {
    height: auto;
    vertical-align: middle;
    width: 100%
}

.wp-block-video :where(figcaption) {
    margin-bottom: 1em;
    margin-top: .5em
}

:root {
    --wp-block-synced-color: #7a00df;
    --wp-block-synced-color--rgb: 122,0,223;
    --wp-bound-block-color: var(--wp-block-synced-color);
    --wp-editor-canvas-background: #ddd;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color--rgb: 0,124,186;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-10--rgb: 0,107,160.5;
    --wp-admin-theme-color-darker-20: #005a87;
    --wp-admin-theme-color-darker-20--rgb: 0,90,135;
    --wp-admin-border-width-focus: 2px
}

@media (min-resolution: 192dpi) {
    :root {
        --wp-admin-border-width-focus:1.5px
    }
}

:root {
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 42px
}

html :where(.has-border-color) {
    border-style: solid
}

html :where([style*=border-top-color]) {
    border-top-style: solid
}

html :where([style*=border-right-color]) {
    border-right-style: solid
}

html :where([style*=border-bottom-color]) {
    border-bottom-style: solid
}

html :where([style*=border-left-color]) {
    border-left-style: solid
}

html :where([style*=border-width]) {
    border-style: solid
}

html :where([style*=border-top-width]) {
    border-top-style: solid
}

html :where([style*=border-right-width]) {
    border-right-style: solid
}

html :where([style*=border-bottom-width]) {
    border-bottom-style: solid
}

html :where([style*=border-left-width]) {
    border-left-style: solid
}

html :where(img[class*=wp-image-]) {
    height: auto;
    max-width: 100%
}

:where(figure) {
    margin: 0 0 1em
}

html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height,0px)
}

:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #FFFFFF;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--color--gold: #A39161;
    --wp--preset--color--magenta: #E6007E;
    --wp--preset--color--turquoise: #007D7E;
    --wp--preset--color--beige: #ECE6DB;
    --wp--preset--color--pink: #F38BB9;
    --wp--preset--color--blue: #76CED9;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6, 147, 227) 0%,rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252, 185, 0) 0%,rgb(255, 105, 0) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255, 105, 0) 0%,rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, .2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, .4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, .2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255),6px 6px rgb(0, 0, 0);
    --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0)
}

:where(.is-layout-flex) {
    gap: .5em
}

:where(.is-layout-grid) {
    gap: .5em
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em
}

.cff-img-layout-3,.cff-img-layout-4 {
    grid-template-rows: 3fr 2fr
}

#cff:after,.cff-lightbox-dataContainer:after,.cff-lightbox-outerContainer:after,.cff-wrapper:after {
    content: "";
    display: table;
    clear: both
}

#cff {
    float: left;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cff .cff-review .cff-post-links,#cff.cff-half-layout .cff-link-slider,#cff.cff-thumb-layout .cff-link-slider {
    float: left
}

#cff .cff-posts-wrap {
    position: relative;
    clear: both;
    height: 100%;
    top: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box
}

#cff .cff-item {
    float: left;
    width: 100%;
    clear: both;
    padding: 20px 0 15px;
    margin: 0;
    border-bottom: 1px solid #ddd
}

#cff .cff-item:first-child {
    padding-top: 0
}

#cff.cff-masonry {
    position: relative;
    margin-bottom: 50px
}

#cff .cff-author-img.cff-no-consent img,#cff .cff-comments-wrap:empty,#cff .cff-event .cff-end-date k,#cff .cff-less,#cff .cff-timeline-event .cff-end-date k,#cff-lightbox-wrapper .cff-comments-wrap:empty,#cff-lightbox-wrapper .cff-end-date k,#cff-lightbox-wrapper.cff-no-svgs svg,#cff.cff-all-reviews .cff-review,#cff.cff-all-reviews.cff-masonry .cff-review,#cff.cff-no-svgs svg,.cff-masonry .cff-load-more,.cff-wrapper .cff-visual-header .cff-header-hero img {
    display: none
}

.cff-wrapper .cff-visual-header {
    margin-bottom: 24px!important
}

.cff-wrapper .cff-visual-header .cff-header-hero {
    width: 100%;
    height: 300px;
    position: relative
}

.cff-wrapper .cff-visual-header .cff-header-img img {
    display: block;
    width: 100px;
    border-radius: 3px;
    padding: 0;
    margin: 0
}

.cff-wrapper .cff-visual-header .cff-header-img {
    position: absolute;
    display: inline-block;
    line-height: 1
}

.cff-wrapper .cff-visual-header .cff-header-text {
    display: inline-block;
    float: left;
    padding-top: 10px;
    margin: 0
}

.cff-header-text:after {
    display: table;
    clear: both;
    content: " "
}

#cff .cff-credit a,#cff .cff-link:focus,#cff .cff-link:hover,#cff a,#cff-lightbox-wrapper .cff-comments-box .cff-comment-on-facebook a,.cff-lightbox-wrapper.cff-theme .cff-comment-text-wrapper .cff-name {
    text-decoration: none
}

#cff a:focus,#cff a:hover {
    text-decoration: underline
}

#cff .cff-album-cover,#cff .cff-event-thumb,#cff .cff-html5-video,#cff .cff-iframe-wrap,#cff .cff-photo,#cff .cff-vidLink {
    text-decoration: none;
    border: none
}

#cff h4,#cff h5,#cff h6,#cff p {
    float: left;
    width: 100%;
    clear: both;
    padding: 0;
    margin: 5px 0;
    line-height: 1.4;
    word-wrap: break-word
}

#cff .cff-date {
    float: left;
    width: 100%;
    min-width: 50px;
    font-size: 11px
}

#cff .cff-author,#cff-lightbox-wrapper .cff-author {
    float: left;
    clear: both;
    margin: 0 0 15px;
    padding: 0;
    line-height: 1.2;
    width: 100%
}

#cff .cff-author-img,#cff .cff-author.cff-no-author-info .cff-author-img,#cff-lightbox-wrapper .cff-author-img,#cff-lightbox-wrapper .cff-author.cff-no-author-info .cff-author-img {
    width: 40px;
    height: 40px;
    background: var(--wpr-bg-d31616fe-d591-4e6d-b29f-b60d4ab5f6e2) -132px -50px no-repeat
}

#cff .cff-author a,#cff-lightbox-wrapper .cff-author a {
    border: none;
    text-decoration: none
}

#cff .cff-author-img,#cff-lightbox-wrapper .cff-author-img {
    float: left;
    margin: 0 0 0 -100%!important;
    font-size: 0;
    border-radius: 40px
}

#cff .cff-author-img {
    margin: unset!important;
    flex-shrink: 0
}

.cff-no-consent .cff-header-text {
    margin-left: 0!important
}

.cff-author>a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px
}

#cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-dataContainer .cff-lightbox-caption,#cff.cff-thumb-layout .cff-media-wrap .cff-html5-video:not(:first-child),#cff.cff-thumb-layout .cff-media-wrap .cff-iframe-wrap:not(:first-child),#cff.cff-thumb-layout .cff-media-wrap .cff-photo:not(:first-child),#cff.cff-thumb-layout .cff-media-wrap .cff-vidLink:not(:first-child),.cff-lightbox-wrapper.cff-theme .cff-comments a .cff-icon,.cff-no-consent .cff-header-hero,.cff-no-consent .cff-header-img,.cff-num-diff-hide {
    display: none!important
}

#cff .cff-author img,#cff-lightbox-wrapper .cff-author img {
    float: left;
    margin: 0!important;
    padding: 0!important;
    border: none!important;
    font-size: 0;
    border-radius: 40px
}

#cff .cff-author .cff-author-text span.cff-page-name,#cff-lightbox-wrapper .cff-author .cff-author-text span.cff-page-name {
    display: table-cell;
    vertical-align: middle;
    height: 40px;
    margin: 0;
    font-weight: 700;
    padding-left: 50px;
    float: none
}

#cff .cff-author .cff-story,#cff .cff-event b,#cff .cff-timeline-event b,#cff-lightbox-wrapper .cff-author .cff-story,#cff-lightbox-wrapper b {
    font-weight: 400
}

#cff .cff-author .cff-author-text,#cff-lightbox-wrapper .cff-author .cff-author-text {
    float: left;
    width: 100%;
    min-height: 40px
}

#cff .cff-author .cff-date,#cff .cff-author .cff-page-name {
    font-weight: 700;
    line-height: 1.2
}

#cff-lightbox-wrapper .cff-author .cff-date,#cff-lightbox-wrapper .cff-author .cff-page-name {
    float: left;
    clear: both;
    width: auto;
    margin: 0 0 0 50px!important;
    font-weight: 700;
    line-height: 1.2
}

#cff .cff-author .cff-date,#cff-lightbox-wrapper .cff-author .cff-date {
    color: #9197a3;
    font-weight: 400;
    font-size: 11px;
    margin-top: 1px!important;
    margin-bottom: 0!important
}

#cff .cff-author.cff-no-author-info .cff-date,#cff-lightbox-wrapper .cff-author.cff-no-author-info .cff-date {
    margin-top: 14px!important
}

#cff .cff-author .cff-page-name.cff-author-date,#cff-lightbox-wrapper .cff-author .cff-page-name.cff-author-date {
    float: left;
    padding: 3px 0 0;
    font-size: 14px
}

#cff .cff-post-desc,#cff-lightbox-wrapper .cff-post-desc {
    line-height: 1.3
}

#cff .cff-html5-video.cff-img-layout-2 .cff-img-wrap,#cff .cff-link-slider .cff-link-slider-item:first-child,#cff .cff-photo span,#cff .cff-timeline-event .cff-date,#cff span.cff-post-desc,#cff-lightbox-wrapper .cff-date,#cff-lightbox-wrapper span.cff-post-desc,#cff-lightbox-wrapper.cff-has-iframe iframe {
    display: block
}

#cff .cff-post-text .cff-post-desc,#cff-lightbox-wrapper .cff-post-desc {
    margin: 5px 0;
    border-left: 2px solid rgba(0,0,0,.1);
    padding-left: 8px
}

#cff .cff-text-wrapper {
    float: right;
    width: 77%;
    margin: 0;
    padding: 0
}

#cff .cff-img-layout-2:after,#cff .cff-img-layout-3:after,#cff .cff-img-layout-4:after,#cff .cff-item img,.cff-lightbox-wrapper a img {
    border: none
}

#cff .cff-photo {
    max-width: 100%;
    float: left;
    display: block;
    position: relative;
    margin: 0
}

#cff .cff-album-item .cff-album-cover:after,#cff .cff-event-thumb:after,#cff .cff-html5-video:after,#cff .cff-img-wrap:after,#cff .cff-photo:after {
    border: 1px solid rgba(0,0,0,.1);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

#cff .cff-photo img {
    float: left;
    max-width: 100%;
    height: auto;
    margin: 0!important;
    padding: 0!important
}

#cff .cff-photo .cff-album-icon {
    position: absolute;
    z-index: 5;
    bottom: 5px;
    right: 5px;
    height: 22px;
    background: var(--wpr-bg-5f604e3d-f544-4f08-a672-ab4417b1768b) -49px -38px no-repeat rgba(0,0,0,.7);
    color: #fff;
    font-size: 12px;
    margin: 0;
    padding: 0 0 0 26px;
    line-height: 22px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 0 1px 0 rgba(255,255,255,.8);
    -moz-box-shadow: 0 0 1px 0 rgba(255,255,255,.8);
    -webkit-box-shadow: 0 0 1px 0 rgba(255,255,255,.8)
}

#cff.cff-masonry .cff-comment-replies-box,#cff.narrow.cff-half-layout .cff-link-slider,#cff.narrow.cff-thumb-layout .cff-link-slider {
    max-width: 100%
}

.cff-img-layout-2,.cff-img-layout-3 {
    grid-template-columns: repeat(2,1fr)
}

#cff.cff-half-layout .cff-media-wrap .cff-photo img,#cff.cff-thumb-layout .cff-media-wrap .cff-photo img,.cff img,.cff video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cff-html5-video {
    position: relative;
    overflow: hidden
}

#cff .cff-img-attachments {
    width: 100%;
    float: left;
    clear: both
}

#cff .cff-comment-text.cff-no-image,#cff .cff-img-layout-2 .cff-img-wrap,#cff .cff-timeline-event .cff-date,#cff-lightbox-wrapper .cff-comment-text.cff-no-image,#cff-lightbox-wrapper .cff-date,#cff-lightbox-wrapper .cff-lightbox-caption.cff-no-caption .cff-lightbox-caption-text {
    margin: 0
}

#cff .cff-img-layout-2 .cff-img-wrap.cff-main-image {
    margin: 0 0 .5%
}

#cff .cff-img-layout-2.cff-portrait .cff-img-wrap {
    width: 49.75%;
    float: left
}

#cff .cff-img-layout-2.cff-portrait .cff-img-wrap.cff-main-image {
    margin: 0 .5% 0 0
}

#cff .cff-img-layout-3 .cff-img-attachments .cff-img-wrap {
    width: 49.75%;
    margin: .5% .25% 0;
    float: left
}

#cff .cff-img-layout-4 .cff-img-attachments .cff-img-wrap {
    width: 33%;
    margin: .5% .25% 0;
    float: left
}

#cff .cff-small-layout.cff-img-layout-2 .cff-img-wrap.cff-main-image {
    margin: 0 0 1%
}

#cff .cff-small-layout.cff-img-layout-2.cff-portrait .cff-img-wrap {
    width: 49.5%
}

#cff .cff-small-layout.cff-img-layout-2.cff-portrait .cff-img-wrap.cff-main-image {
    margin: 0 1% 0 0
}

#cff .cff-small-layout.cff-img-layout-3 .cff-img-attachments .cff-img-wrap {
    width: 49.5%;
    margin: 1% .5% 0
}

#cff .cff-small-layout.cff-img-layout-4 .cff-img-attachments .cff-img-wrap {
    width: 32.5%;
    margin: 1% .5% 0
}

#cff .cff-img-layout-3 .cff-img-attachments .cff-img-wrap:first-child,#cff .cff-img-layout-4 .cff-img-attachments .cff-img-wrap:first-child,#cff .cff-reaction-one.cff-no-animate,#cff .cff-reactions-count span:first-child,#cff-lightbox-wrapper .cff-reactions-count span:first-child {
    margin-left: 0
}

#cff .cff-img-layout-3 .cff-img-attachments .cff-img-wrap:last-child,#cff .cff-img-layout-4 .cff-img-attachments .cff-img-wrap:last-child {
    margin-right: 0
}

#cff .cff-event .cff-date,#cff .cff-img-wrap,#cff .cff-view-comments,#cff-lightbox-wrapper.cff-no-svgs .cff-comments-box .cff-show-more-comments,#cff.cff-no-svgs .cff-comments-box .cff-show-more-comments {
    position: relative
}

#cff .cff-img-attachments .cff-crop {
    width: 100%;
    height: 100px;
    display: block;
    float: left;
    position: relative;
    border: none
}

#cff .cff-img-attachments .cff-crop img,#cff.cff-nojs .cff-new .cff-crop img {
    visibility: visible
}

.cff-gdpr-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.4)
}

#cff .cff-html5-video.cff-img-layout-2 .cff-crop,#cff .cff-photo.cff-img-layout-2 .cff-crop {
    height: 150px
}

#cff .cff-album-item {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    text-align: center
}

#cff .cff-album-item .cff-album-cover,#cff .cff-main-image.cff-crop,#cff .cff-photo.cff-crop {
    width: 100%;
    display: block;
    float: left;
    position: relative;
    border: none;
    overflow: hidden;
    background-size: cover;
    background-position: center center
}

#cff.cff-masonry .cff-album-item .cff-album-cover {
    height: auto;
    float: none;
    overflow: visible;
    line-height: 0
}

#cff .cff-album-item .cff-album-cover img,#cff .cff-crop img,#cff .cff-new .cff-crop img {
    visibility: hidden;
    opacity: 0;
    display: block!important
}

#cff.cff-masonry .cff-album-item .cff-album-cover img {
    visibility: visible;
    opacity: 1
}

#cff:not(.cff-disable-liquid) .cff-album-item.cff-video .cff-album-cover img {
    opacity: 0!important
}

#cff.cff-disable-liquid .cff-album-item .cff-album-cover {
    height: auto
}

#cff.cff-disable-liquid .cff-album-item .cff-album-cover img,#cff.cff-masonry .cff-album-item.cff-video .cff-album-cover img {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: auto
}

#cff.cff-nojs .cff-album-item .cff-album-cover img {
    height: 100%;
    visibility: visible
}

#cff .cff-main-image.cff-crop {
    overflow: hidden;
    float: none
}

#cff .cffFadeIn {
    opacity: 1;
    transition: .1s
}

#cff .cff-album-item .cff-album-info {
    width: 100%;
    height: 70px;
    float: left;
    clear: both
}

#cff .cff-album-item h4 {
    font-size: 14px;
    line-height: 1.2;
    margin: 10px 0 0;
    padding: 0
}

#cff .cff-album-item p {
    font-size: 12px;
    color: gray;
    margin: 5px 0 0
}

#cff .cff-iframe-wrap {
    float: left;
    clear: both;
    margin: 5px 0;
    width: 100%;
    position: relative;
    padding-bottom: 62%
}

#cff iframe {
    border: 0
}

#cff .cff-iframe-wrap iframe {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0
}

#cff.narrow.cff-half-layout .cff-text-wrapper,#cff.narrow.cff-thumb-layout .cff-text-wrapper {
    float: left;
    width: 100%
}

#cff .cff-html5-video>div.cff-html5-video,#cff.cff-half-layout .cff-html5-video .cff-vidLink,#cff.cff-thumb-layout .cff-html5-video .cff-vidLink,#cff.narrow .cff-event .cff-details,#cff.narrow .cff-event-thumb {
    width: 100%
}

#cff .cff-html5-video,#cff video {
    float: left;
    clear: left;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden
}

#cff video,#cff.cff-masonry.cff-opaque-comments .cff-item {
    z-index: 1
}

#cff .cff-vidLink {
    float: left;
    clear: both;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
    zoom:1}

#cff .cff-vidLink .cff-poster {
    width: 100%;
    height: auto;
    float: left
}

#cff .cff-event-thumb img,#cff .cff-link img {
    float: left;
    margin: 0!important;
    padding: 0!important;
    border: none!important
}

.cff-html5-play {
    display: block;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

#cff .cff-expand {
    display: none;
    white-space: normal
}

#cff .cff-expand a {
    font-size: 11px;
    font-weight: 400
}

#cff .cff-link {
    float: left;
    clear: both;
    border: none;
    max-width: 20%;
    margin-right: 3%
}

#cff .cff-link img {
    width: 100%;
    max-width: 100%
}

#cff .cff-details,#cff-lightbox-wrapper .cff-details {
    float: left;
    clear: none;
    width: 77%;
    margin-left: 3%;
    padding: 0 0 10px
}

#cff .cff-timeline-event .cff-details,#cff-lightbox-wrapper .cff-details {
    width: 100%;
    margin: 0;
    padding: 0
}

#cff-lightbox-wrapper .cff-details {
    padding-bottom: 20px
}

#cff .cff-timeline-event .cff-post-text {
    padding-bottom: 5px
}

#cff .cff-event-thumb {
    position: relative;
    width: 100%;
    float: left;
    clear: none;
    margin: 0
}

#cff .cff-event-thumb img {
    overflow: hidden;
    width: 100%;
    height: auto
}

#cff .cff-details h5 {
    margin: 0 0 5px;
    padding: 0;
    font-size: 16px
}

#cff .cff-details p {
    font-size: 14px
}

#cff .cff-event .cff-photo {
    margin-top: 5px
}

#cff .cff-event .cff-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0
}

#cff .cff-comments-box .cff-comment-likes.cff-likes,#cff .cff-event .cff-details {
    padding: 0
}

#cff.cff-half-layout .cff-event .cff-details {
    float: right;
    width: 47%
}

#cff .cff-more-dates {
    height: 16px;
    margin: 0 0 0 10px;
    padding: 2px 5px;
    border: 1px solid #ddd;
    font-size: 12px;
    text-decoration: none;
    border-radius: 3px
}

#cff .cff-more-dates:hover {
    background: rgba(0,0,0,.05);
    text-decoration: none
}

#cff .cff-multiple-dates {
    display: none;
    position: absolute;
    z-index: 10;
    top: 30px;
    left: 0;
    max-height: 150px;
    padding: 8px 20px 8px 12px;
    margin: 0 0 0 -12px;
    color: #333;
    overflow-y: auto;
    background: rgba(255,255,255,.95);
    border-radius: 3px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1)
}

#cff .cff-meta-wrap {
    float: left;
    width: 100%;
    margin: 5px 0 0;
    padding: 0
}

[data-cff-theme=default_theme] .cff-meta-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center
}

#cff .cff-meta,#cff-lightbox-wrapper .cff-meta {
    float: left;
    clear: both;
    list-style-type: none;
    padding: 10px 0!important;
    margin: 0!important;
    display: flex;
    align-items: center;
    gap: 2px
}

#cff .cff-meta>span,#cff-lightbox-wrapper .cff-meta li {
    float: left;
    width: auto;
    display: block;
    list-style-type: none!important;
    margin: 0 10px 0 0!important;
    padding: 0!important;
    font-size: 11px;
    line-height: 16px!important;
    background: 0 0!important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px
}

#cff .cff-meta>span:before,#cff-lightbox-wrapper .cff-meta li:before {
    content: none!important
}

.cff-icon,.cff-icon svg {
    width: 16px;
    height: 16px;
    transition: .1s
}

.cff-angry,.cff-angry svg,.cff-haha,.cff-haha svg,.cff-sad,.cff-sad svg,.cff-wow,.cff-wow svg {
    width: 17px;
    height: 17px
}

#cff .cff-icon,#cff .cff-reactions-count .cff-like,#cff-lightbox-wrapper .cff-icon,#cff-lightbox-wrapper .cff-reactions-count .cff-like {
    display: block;
    float: left;
    position: relative;
    z-index: 2;
    margin: 0 0 0 3px
}

#cff .cff-icon svg,#cff-lightbox-wrapper .cff-icon svg {
    z-index: 2
}

#cff .cff-meta .cff-count,#cff-lightbox-wrapper .cff-meta .cff-count {
    position: relative;
    z-index: 2;
    margin-left: 5px
}

#cff .cff-comments-box .cff-comments .cff-icon,#cff .cff-comments-box .cff-likes .cff-icon,#cff-lightbox-wrapper .cff-comments-box .cff-comments .cff-icon,#cff-lightbox-wrapper .cff-comments-box .cff-likes .cff-icon {
    margin: 0 5px 0 0
}

#cff .cff-angry,#cff .cff-haha,#cff .cff-love,#cff .cff-reactions-count .cff-like,#cff .cff-reactions-count svg,#cff .cff-sad,#cff .cff-wow,#cff-lightbox-wrapper .cff-angry,#cff-lightbox-wrapper .cff-haha,#cff-lightbox-wrapper .cff-love,#cff-lightbox-wrapper .cff-reactions-count .cff-like,#cff-lightbox-wrapper .cff-reactions-count svg,#cff-lightbox-wrapper .cff-sad,#cff-lightbox-wrapper .cff-wow {
    display: block;
    float: left;
    position: relative;
    margin: 0 0 0 1px;
    z-index: 2
}

#cff .cff-comment .cff-comment-date,#cff-lightbox-wrapper .cff-comment .cff-comment-date,#cff-lightbox-wrapper .cff-comments-box .cff-reactions-count .cff-icon {
    margin-right: 3px
}

#cff .cff-theme-default_theme .cff-icon path,#cff-lightbox-wrapper .cff-reaction-one path,#cff-lightbox-wrapper .cff-reaction-two path,#cff-lightbox-wrapper .cff-reactions-count path,#cff-lightbox-wrapper .cff-theme-default_theme .cff-icon path,#cff.cff-theme-default_theme .cff-icon path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reaction-one path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reaction-two path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count path {
    fill: rgba(0,0,0,.4)
}

#cff .cff-reactions-count .cff-svg-bg,#cff .cff-reactions-count .cff-svg-bg-dark,#cff svg.cff-svg-bg,#cff-lightbox-wrapper svg.cff-svg-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

#cff-lightbox-wrapper .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-svg-bg path {
    fill: rgba(255,255,255,.7)
}

#cff .cff-open .cff-svg-bg-dark .cff-svg-bg path,#cff .cff-reactions-count .cff-svg-bg-dark .cff-svg-bg path,#cff .cff-view-comments .cff-animate .cff-svg-bg-dark .cff-svg-bg path,#cff-lightbox-wrapper .cff-svg-bg-dark .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-svg-bg-dark .cff-svg-bg path {
    fill: rgba(0,0,0,.05)
}

#cff-lightbox-wrapper .cff-like .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-like .cff-svg-bg path {
    fill: url(#likeGrad)
}

#cff .cff-reaction-one:not(.cff-no-animate),#cff-lightbox-wrapper .cff-reaction-one {
    position: relative;
    z-index: 1;
    animation-name: cff_reactions_enter;
    animation-duration: .1s
}

#cff .cff-reaction-two,#cff-lightbox-wrapper .cff-reaction-two {
    position: relative;
    z-index: 0;
    animation-name: cff_reactions_enter_two;
    animation-duration: .2s
}

@keyframes cff_reactions_enter {
    0% {
        opacity: 0;
        margin-left: -10px
    }

    25% {
        opacity: 0;
        margin-left: -7px
    }

    50% {
        opacity: 25%;
        opacity: 50%;
        margin-left: -1px
    }

    100% {
        opacity: 100%;
        margin-left: 2px
    }
}

@keyframes cff_reactions_enter_two {
    0% {
        opacity: 0;
        margin-left: -30px
    }

    25% {
        opacity: 0;
        margin-left: -22px
    }

    50% {
        opacity: 25%;
        opacity: 50%;
        margin-left: -6px
    }

    100% {
        opacity: 100%;
        margin-left: 2px
    }
}

#cff .cff-reactions-count,#cff-lightbox-wrapper .cff-reactions-count {
    display: flex;
    align-items: center;
    float: left;
    padding-top: 1px;
    font-size: 11px;
    line-height: 11px!important;
    margin-right: -2px
}

#cff .cff-angry-count,#cff .cff-haha-count,#cff .cff-like-count,#cff .cff-love-count,#cff .cff-sad-count,#cff .cff-wow-count,#cff-lightbox-wrapper .cff-angry-count,#cff-lightbox-wrapper .cff-haha-count,#cff-lightbox-wrapper .cff-like-count,#cff-lightbox-wrapper .cff-love-count,#cff-lightbox-wrapper .cff-sad-count,#cff-lightbox-wrapper .cff-wow-count {
    float: left;
    margin: 0 6px 0 0;
    font-size: 11px;
    line-height: 17px
}

#cff .cff-angry-count,#cff .cff-haha-count,#cff .cff-like-count,#cff .cff-love-count,#cff .cff-sad-count,#cff .cff-wow-count {
    margin-right: 8px
}

.cff-reaction-wrap {
    display: flex;
    align-items: center
}

#cff .cff-view-comments,#cff-lightbox-wrapper .cff-view-comments {
    display: block;
    overflow: hidden;
    outline: 0;
    float: left;
    clear: left;
    height: 37px;
    margin: 5px 12px 5px 0;
    padding: 0 5px 0 0;
    border: none;
    text-decoration: none;
    cursor: pointer;
    background: rgba(0,0,0,.05);
    box-shadow: 0 0 0 1px rgba(0,0,0,.07);
    border-radius: 4px
}

#cff-lightbox-wrapper:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments {
    padding: 0 5px 0 10px
}

#cff.cff-masonry-css .cff-view-comments {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1
}

#cff .cff-view-comments:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,.09)
}

#cff .cff-view-comments:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(90deg,rgba(0,0,0,.04) 50%,rgba(0,0,0,0) 100%);
    transition: .2s
}

#cff .cff-view-comments:hover:after {
    left: 0;
    transition: .5s
}

#cff .cff-open .cff-svg-bg path,#cff .cff-reactions-count .cff-svg-bg path,#cff .cff-view-comments .cff-animate .cff-svg-bg path {
    fill: rgba(255,255,255,1)
}

#cff-lightbox-wrapper .cff-reactions-count .cff-like .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-like .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-like .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-like.cff-animate .cff-svg-bg path {
    fill: url(#likeGradHover)
}

#cff-lightbox-wrapper .cff-reactions-count .cff-love .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-love .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-love .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-love.cff-animate .cff-svg-bg path {
    fill: #ffb9b9
}

#cff-lightbox-wrapper .cff-reactions-count .cff-haha .cff-svg-bg path,#cff-lightbox-wrapper .cff-reactions-count .cff-sad .cff-svg-bg path,#cff-lightbox-wrapper .cff-reactions-count .cff-wow .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-haha .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-sad .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-wow .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-haha .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-sad .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-wow .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-haha.cff-animate .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-sad.cff-animate .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-wow.cff-animate .cff-svg-bg path {
    fill: #ffe7a4
}

#cff-lightbox-wrapper .cff-reactions-count .cff-angry .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-angry .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-angry .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-angry.cff-animate .cff-svg-bg path {
    fill: url(#angryGrad)
}

#cff-lightbox-wrapper .cff-reactions-count .cff-comment .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-open .cff-comments .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-reactions-count .cff-comment .cff-svg-bg path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-comment.cff-animate .cff-svg-bg path {
    fill: white
}

#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-icon path,#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-icon.cff-animate path {
    transition: .2s
}

#cff:not(.cff-theme-modern):not(.cff-theme-social_wall):not(.cff-theme-outline):not(.cff-theme-overlap) .cff-view-comments .cff-icon.cff-animate svg {
    animation-duration: .2s
}

#cff-lightbox-wrapper.cff-no-svgs .cff-comments-box .cff-comments .cff-icon,#cff-lightbox-wrapper.cff-no-svgs .cff-comments-box .cff-likes .cff-icon,#cff.cff-no-svgs .cff-comments-box .cff-comments .cff-icon,#cff.cff-no-svgs .cff-comments-box .cff-likes .cff-icon {
    margin: 0 3px 0 0
}

#cff-lightbox-wrapper.cff-no-svgs .cff-angry,#cff-lightbox-wrapper.cff-no-svgs .cff-comment,#cff-lightbox-wrapper.cff-no-svgs .cff-comments .cff-icon,#cff-lightbox-wrapper.cff-no-svgs .cff-haha,#cff-lightbox-wrapper.cff-no-svgs .cff-love,#cff-lightbox-wrapper.cff-no-svgs .cff-reactions-count .cff-like,#cff-lightbox-wrapper.cff-no-svgs .cff-reactions-count svg,#cff-lightbox-wrapper.cff-no-svgs .cff-sad,#cff-lightbox-wrapper.cff-no-svgs .cff-wow,#cff.cff-no-svgs .cff-angry,#cff.cff-no-svgs .cff-comment,#cff.cff-no-svgs .cff-comments .cff-icon,#cff.cff-no-svgs .cff-haha,#cff.cff-no-svgs .cff-like,#cff.cff-no-svgs .cff-love,#cff.cff-no-svgs .cff-reactions-count svg,#cff.cff-no-svgs .cff-sad,#cff.cff-no-svgs .cff-wow {
    background: var(--wpr-bg-671c8b96-eafc-45dc-a9a2-b8b155e9fc81) no-repeat
}

#cff-lightbox-wrapper.cff-no-svgs .cff-like,#cff-lightbox-wrapper.cff-no-svgs .cff-reactions-count .cff-like,#cff.cff-no-svgs .cff-like,#cff.cff-no-svgs .cff-reactions-count .cff-like {
    background-position: 0 -17px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-reactions-count .cff-like,#cff.cff-no-svgs .cff-reactions-count .cff-like {
    width: 13px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-comments .cff-icon,#cff.cff-no-svgs .cff-comments .cff-icon {
    width: 12px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-love,#cff.cff-no-svgs .cff-love {
    width: 15px;
    height: 13px;
    margin-top: 1px;
    background-position: -34px -1px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-reactions-count .cff-love,#cff.cff-no-svgs .cff-reactions-count .cff-love {
    height: 14px;
    background-position: -34px 0
}

#cff-lightbox-wrapper.cff-no-svgs .cff-haha,#cff.cff-no-svgs .cff-haha {
    height: 15px;
    background-position: -34px -15px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-wow,#cff.cff-no-svgs .cff-wow {
    height: 15px;
    background-position: -34px -47px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-sad,#cff.cff-no-svgs .cff-sad {
    height: 15px;
    background-position: -34px -31px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-angry,#cff.cff-no-svgs .cff-angry {
    height: 15px;
    background-position: -34px -63px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-comments-box .cff-comment-likes b,#cff.cff-no-svgs .cff-comments-box .cff-comment-likes b {
    background: var(--wpr-bg-35275501-769a-4c59-aaa0-a732cb490636) 1px -48px no-repeat;
    width: 10px;
    height: 9px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-comments-box .cff-show-more-comments a,#cff.cff-no-svgs .cff-comments-box .cff-show-more-comments a {
    position: relative;
    z-index: 1;
    height: 20px
}

#cff-lightbox-wrapper.cff-no-svgs .cff-comments-box .cff-show-more-comments:after,#cff.cff-no-svgs .cff-comments-box .cff-show-more-comments:after {
    position: absolute;
    z-index: 0;
    content: '...';
    top: -2px;
    font-size: 20px;
    color: #333;
    height: 20px;
    line-height: 20px
}

#cff .cff-comments-box,#cff-lightbox-wrapper .cff-comments-box {
    display: none;
    float: left;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box
}

#cff .cff-comments-box .cff-likes,#cff-lightbox-wrapper .cff-comments-box .cff-likes {
    margin-bottom: 1px
}

#cff .cff-comments-box .cff-comments .cff-icon,#cff-lightbox-wrapper .cff-comments-box .cff-comments .cff-icon {
    margin-top: 1px
}

#cff .cff-comments-box .cff-comment,#cff .cff-comments-box p,#cff-lightbox-wrapper .cff-comments-box .cff-comment,#cff-lightbox-wrapper .cff-comments-box p {
    width: 100%;
    min-width: 100%;
    float: left;
    clear: both;
    font-size: 12px;
    padding: 5px 20px 5px 10px;
    margin: 0 0 1px;
    background: rgba(0,0,0,.05);
    line-height: 17px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cff .cff-comments-box .cff-comment-on-facebook,#cff-lightbox-wrapper .cff-comments-box .cff-comment-on-facebook {
    border-radius: 4px
}

#cff-lightbox-wrapper .cff-comments-box .cff-comment-on-facebook>span {
    margin-right: 10px
}

#cff .cff-comments-wrap,#cff-lightbox-wrapper .cff-comments-wrap {
    float: left;
    clear: both;
    overflow: hidden;
    width: 100%;
    padding-bottom: 0;
    border-radius: 0 0 4px 4px;
    background: rgba(0,0,0,.05);
    z-index: 2;
    position: relative
}

#cff .cff-comments-box .cff-comment,#cff-lightbox-wrapper .cff-comments-box .cff-comment {
    display: none;
    margin: 0;
    background: 0 0
}

#cff .cff-comments-box .cff-name,#cff-lightbox-wrapper .cff-comments-box .cff-name {
    padding: 0;
    margin-right: 6px;
    font-weight: 700
}

#cff .cff-comments-box .cff-comment-likes,#cff-lightbox-wrapper .cff-comments-box .cff-comment-likes {
    font-style: normal;
    border-radius: 4px 4px 0 0
}

#cff .cff-comments-box .cff-comment-likes b,#cff-lightbox-wrapper .cff-comments-box .cff-comment-likes b {
    display: inline-block;
    vertical-align: top;
    zoom:1;background-position: 0 -50px;
    width: 10px;
    height: 9px;
    margin: 0;
    line-height: 1;
    padding: 2px 2px 0;
    box-sizing: unset
}

.cff-comments-box .cff-comment-likes path {
    fill: rgba(0,0,0,.6)
}

.cff-comments-box .cff-comment-likes .cff-comment-likes-bg {
    background: rgba(255,255,255,.6);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.2);
    padding: 1px 4px 2px 3px;
    border-radius: 5px;
    margin: 0 0 0 2px;
    font-size: 10px;
    display: inline-block
}

#cff .cff-comments-box .cff-time,#cff-lightbox-wrapper .cff-comments-box .cff-time {
    float: left;
    clear: both;
    font-size: 11px;
    margin: 2px 0 0;
    display: block;
    font-style: italic
}

#cff .cff-comment-likes,#cff-lightbox-wrapper .cff-comment-likes {
    margin: 5px 0 10px;
    width: 100%
}

#cff .cff-comment-text-wrapper,#cff-lightbox-wrapper .cff-comment-text-wrapper {
    width: 100%;
    float: left
}

#cff .cff-comment .cff-comment-img,#cff-lightbox-wrapper .cff-comment .cff-comment-img {
    float: left;
    width: 32px;
    margin: 0 0 0 -100%!important;
    border-radius: 40px
}

#cff .cff-comment .cff-comment-avatar,#cff .cff-comment .cff-comment-img img,#cff-lightbox-wrapper .cff-comment .cff-comment-avatar,#cff-lightbox-wrapper .cff-comment .cff-comment-img img {
    float: left;
    width: 32px;
    margin: 0 10px 0 0!important;
    padding: 0!important;
    border: none!important;
    border-radius: 40px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

#cff .cff-avatar-fallback,#cff .cff-comment .cff-comment-avatar,#cff-lightbox-wrapper .cff-avatar-fallback,#cff-lightbox-wrapper .cff-comment .cff-comment-avatar {
    height: 32px;
    background: var(--wpr-bg-09cd2586-c5de-4a0e-bc32-789658593ed8) -77px 0 no-repeat
}

#cff-lightbox-wrapper .cff-avatar-fallback img {
    position: relative;
    text-indent: -9999px
}

#cff-lightbox-wrapper .cff-avatar-fallback img[alt]:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wpr-bg-fcbbb57b-e008-409b-b9ee-39f24d34a165) -77px 0 no-repeat;
    font-family: Helvetica,serif;
    font-weight: 300;
    line-height: 2;
    text-align: center;
    content: ''
}

#cff .cff-comment .cff-comment-text,#cff-lightbox-wrapper .cff-comment .cff-comment-text {
    margin: 0 0 0 42px;
    line-height: 1.3
}

#cff .cff-comment .cff-comment-text p,#cff-lightbox-wrapper .cff-comment .cff-comment-text p {
    padding: 0!important;
    margin: 0!important;
    line-height: 1.4;
    background: 0 0!important
}

#cff .cff-comments-box .cff-show-more-comments,#cff-lightbox-wrapper .cff-comments-box .cff-show-more-comments {
    text-align: center;
    padding: 2px 0 1px;
    background: rgba(0,0,0,.02);
    border-top: 1px solid rgba(0,0,0,.05);
    margin-top: 8px;
    transition: .5s
}

#cff .cff-comments-box .cff-show-more-comments svg,#cff-lightbox-wrapper .cff-comments-box .cff-show-more-comments svg {
    width: 17px;
    height: 10px
}

#cff .cff-comments-box .cff-show-more-comments path,#cff-lightbox-wrapper .cff-comments-box .cff-show-more-comments path {
    fill: rgba(0,0,0,.5);
    transition: .5s
}

#cff .cff-comments-box .cff-show-more-comments:hover,#cff-lightbox-wrapper .cff-comments-box .cff-show-more-comments:hover {
    background: rgba(0,0,0,.05);
    text-decoration: none;
    transition: .1s
}

#cff .cff-comments-box .cff-show-more-comments:hover path,#cff-lightbox-wrapper .cff-comments-box .cff-show-more-comments:hover path {
    fill: rgba(0,0,0,.7);
    transition: .1s
}

#cff .cff-comment .cff-comment-text img,#cff img.emoji,#cff-lightbox-wrapper .cff-comment .cff-comment-text img,#cff-lightbox-wrapper img.emoji {
    float: none;
    max-width: 100%
}

#cff .cff-comment-replies a,#cff-lightbox-wrapper .cff-comment-replies a {
    display: block;
    float: left;
    position: relative;
    padding: 3px 0;
    font-size: 11px
}

#cff .cff-comment-replies-box,#cff-lightbox-wrapper .cff-comment-replies-box {
    float: left;
    clear: both;
    border-left: 2px solid rgba(0,0,0,.1)
}

#cff .cff-comment-replies-box a,#cff-lightbox-wrapper .cff-comment-replies-box a {
    color: inherit!important
}

#cff .cff-comment-replies .cff-replies-icon,#cff-lightbox-wrapper .cff-comment-replies .cff-replies-icon {
    background: var(--wpr-bg-c99186b1-0df5-41ac-9b67-aa88d88d5897) 0 -65px no-repeat;
    width: 11px;
    height: 8px;
    display: block;
    float: left;
    margin: 5px 5px 0 0
}

#cff .cff-post-links {
    float: right;
    clear: none;
    font-size: 11px;
    flex-shrink: 0
}

#cff .cff-post-links.cff-left {
    float: left;
    margin: 8px 0
}

#cff .cff-post-links a {
    font-size: 11px
}

#cff .cff-post-links a:first-child {
    padding-left: 0;
    margin: 0
}

#cff .cff-share-tooltip {
    display: none;
    position: absolute;
    z-index: 1000;
    bottom: 22px;
    right: 0;
    width: 110px;
    padding: 4px 5px;
    margin: 0;
    background: #333;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cff .cff-share-tooltip .fa-play {
    position: absolute;
    font-size: 8px;
    bottom: -8px;
    right: 8px;
    color: #333;
    transform: rotate(90deg);
    height: 14px;
    width: 14px
}

#cff .cff-share-tooltip a svg {
    font-size: 16px;
    margin: 0;
    padding: 5px;
    box-sizing: unset;
    overflow: visible;
    height: 1em;
    width: .9em;
    display: block
}

#cff .cff-share-tooltip a {
    display: block;
    float: left;
    margin: 0!important;
    padding: 0!important;
    color: #fff!important;
    opacity: 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

#cff .cff-share-tooltip a:hover {
    color: #fff!important
}

#cff .cff-share-tooltip a.cff-show {
    opacity: 1;
    transition: opacity .2s
}

.cff-likebox {
    float: left;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0
}

#cff.cff-thumb-layout .cff-date {
    margin-bottom: 10px
}

.cff-likebox iframe {
    margin: 0!important;
    border: 0!important;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%!important
}

#cff.cff-thumb-layout .cff-media-wrap {
    width: 20%;
    float: left;
    clear: none;
    margin-right: 0;
    padding-right: 10px;
    box-sizing: border-box
}

#cff.cff-half-layout .cff-media-wrap .cff-html5-video,#cff.cff-half-layout .cff-media-wrap .cff-iframe-wrap,#cff.cff-half-layout .cff-media-wrap .cff-photo,#cff.cff-half-layout .cff-media-wrap .cff-vidLink,#cff.cff-thumb-layout .cff-media-wrap .cff-html5-video,#cff.cff-thumb-layout .cff-media-wrap .cff-iframe-wrap,#cff.cff-thumb-layout .cff-media-wrap .cff-photo,#cff.cff-thumb-layout .cff-media-wrap .cff-vidLink {
    width: 100%;
    clear: none
}

#cff.cff-thumb-layout .cff-html5-video,#cff.cff-thumb-layout .cff-iframe-wrap,#cff.cff-thumb-layout .cff-photo,#cff.cff-thumb-layout .cff-vidLink {
    width: 20%;
    clear: none
}

.cff-link {
    cursor: pointer
}

#cff.cff-half-layout .cff-photo img,#cff.cff-thumb-layout .cff-photo img {
    width: 100%;
    height: auto
}

#cff.cff-half-layout .cff-media-wrap .cff-html5-video,#cff.cff-thumb-layout .cff-media-wrap .cff-html5-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1
}

#cff.cff-thumb-layout .cff-media-wrap .cff-html5-video:first-child,#cff.cff-thumb-layout .cff-media-wrap .cff-iframe-wrap:first-child,#cff.cff-thumb-layout .cff-media-wrap .cff-photo:first-child,#cff.cff-thumb-layout .cff-media-wrap .cff-vidLink:first-child {
    width: 100%!important;
    max-width: 100%!important
}

#cff.cff-thumb-layout .cff-iframe-wrap {
    margin-top: 0;
    padding-bottom: 16%
}

#cff.cff-half-layout .cff-media-wrap .cff-iframe-wrap,#cff.cff-thumb-layout .cff-media-wrap .cff-iframe-wrap {
    margin-top: 0;
    padding-bottom: 56.25%;
    width: 100%
}

#cff.cff-thumb-layout .cff-text-wrapper {
    float: right;
    width: 77%;
    margin-left: 0;
    padding-left: 10px;
    box-sizing: border-box
}

#cff.cff-half-layout .cff-post-text,#cff.cff-thumb-layout .cff-post-text {
    margin-top: 0
}

#cff.cff-thumb-layout .cff-photo-hover svg {
    margin-top: -11px;
    margin-left: -10px;
    font-size: 24px
}

#cff.cff-thumb-layout .cff-link-slider {
    width: auto;
    max-width: 20%;
    margin-right: 3%;
    margin-bottom: 0;
    text-align: left
}

#cff.cff-thumb-layout .cff-event-thumb {
    width: 20%
}

#cff.cff-masonry.masonry-1-desktop .cff-album-item {
    width: 100%;
    margin: 0
}

#cff.cff-half-layout .cff-media-wrap {
    width: 50%;
    float: left;
    clear: none;
    margin-right: 0;
    padding-right: 10px;
    box-sizing: border-box
}

#cff.cff-half-layout .cff-html5-video,#cff.cff-half-layout .cff-iframe-wrap,#cff.cff-half-layout .cff-photo,#cff.cff-half-layout .cff-vidLink {
    width: 50%;
    clear: none
}

#cff.cff-half-layout .cff-iframe-wrap {
    margin-top: 0;
    padding-bottom: 28%
}

#cff.cff-half-layout .cff-text-wrapper {
    float: right;
    width: 50%;
    margin-left: 0;
    padding-left: 10px;
    box-sizing: border-box
}

#cff.cff-half-layout .cff-photo-hover svg {
    margin-top: -16px;
    margin-left: -14px;
    font-size: 32px
}

#cff.cff-half-layout .cff-link-slider {
    width: auto;
    max-width: 50%;
    margin-right: 3%;
    margin-bottom: 0;
    text-align: left
}

#cff.cff-half-layout .cff-event-thumb {
    width: 50%
}

#cff.narrow.cff-half-layout .cff-html5-video,#cff.narrow.cff-half-layout .cff-iframe-wrap,#cff.narrow.cff-half-layout .cff-link-slider,#cff.narrow.cff-half-layout .cff-photo,#cff.narrow.cff-half-layout .cff-vidLink,#cff.narrow.cff-thumb-layout .cff-html5-video,#cff.narrow.cff-thumb-layout .cff-iframe-wrap,#cff.narrow.cff-thumb-layout .cff-link-slider,#cff.narrow.cff-thumb-layout .cff-photo,#cff.narrow.cff-thumb-layout .cff-vidLink {
    width: 100%;
    clear: both
}

#cff.cff-super-narrow .cff-meta {
    padding: 8px 0!important
}

#cff.cff-super-narrow .cff-view-comments {
    margin-right: 0;
    height: 32px
}

#cff.cff-super-narrow .cff-meta>span {
    margin: 0 5px 0 0!important
}

#cff.cff-super-narrow .cff-meta .cff-count {
    margin-left: 2px;
    font-size: 11px
}

#cff.cff-super-narrow .cff-comments-box {
    float: left;
    width: 100%;
    max-width: 100%
}

#cff .cff-credit {
    font-size: 11px;
    padding-top: 10px
}

#cff .cff-lightbox-link {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.1;
    border: none
}

#cff.cff-doing-gdpr .cff-iframe-wrap .cff-lightbox-link:after {
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,.7);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 100%
}

#cff .cff-photo-hover {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    color: #fff;
    background: rgba(0,0,0,.4)
}

#cff .cff-photo-hover svg {
    display: none;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin-top: -19px;
    margin-left: -16px;
    padding: 0;
    font-size: 39px;
    font-style: normal!important
}

.cff-lightbox-thumbs {
    display: none;
    float: left;
    position: relative;
    width: 111%;
    margin: 0 0 0 -5px
}

.cff-lightbox-thumbs-holder {
    float: left;
    overflow: hidden;
    max-height: 0;
    transition: max-height 2s
}

.cff-lightbox-thumbs-holder.cff-animate {
    max-height: 2000px;
    transition: max-height 1.5s
}

.cff-lightbox-thumbs-wrap {
    margin-top: 10px;
    padding: 2px 0 6px;
    overflow: hidden
}

.cff-gdpr-more-link,.cff-lightbox-thumbs a {
    width: 60px;
    height: 60px;
    display: block;
    float: left;
    margin: 5px 0 0 5px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
    -webkit-transition: box-shadow .1s;
    -moz-transition: box-shadow .1s;
    -ms-transition: box-shadow .1s;
    -o-transition: box-shadow .1s;
    transition: box-shadow .1s
}

.cff-gdpr-more-link:focus,.cff-gdpr-more-link:hover,.cff-lightbox-thumbs a:focus,.cff-lightbox-thumbs a:hover {
    box-shadow: inset 0 0 0 4px rgba(0,0,0,.3);
    outline: 0;
    -webkit-transition: box-shadow .1s;
    -moz-transition: box-shadow .1s;
    -ms-transition: box-shadow .1s;
    -o-transition: box-shadow .1s;
    transition: box-shadow .1s
}

.cff-lightbox-nav a.cff-lightbox-next,.cff-lightbox-nav a.cff-lightbox-prev {
    width: 50px;
    opacity: .3;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s
}

.cff-enable-lb-comments .cff-lightbox-thumbs a {
    border: 1px solid #333
}

.cff-enable-lb-comments .cff-lightbox-thumbs a:focus,.cff-enable-lb-comments .cff-lightbox-thumbs a:hover {
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.7);
    border: 1px solid #bbb
}

.cff-lightbox-thumbs .cff-selected,.cff-lightbox-thumbs .cff-selected:focus,.cff-lightbox-thumbs .cff-selected:hover {
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.7);
    border: 1px solid #eee;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.cff-lightbox-thumbs .cff-selected:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,.2)
}

.cff-lightbox-thumbs img {
    width: 60px;
    height: auto
}

.cff-lightbox-thumbs .cff-loader {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: rgba(0,0,0,.5);
    border-radius: 100%;
    -webkit-animation: 1s ease-in-out infinite ctf-sk-scaleout;
    animation: 1s ease-in-out infinite ctf-sk-scaleout
}

.cff-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: #000;
    opacity: .9;
    display: none
}

.cff-lightbox-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000000;
    text-align: center;
    line-height: 0;
    font-weight: 400
}

.cff-lightbox-wrapper .cff-lightbox-image {
    display: block;
    height: auto;
    max-width: inherit;
    border-radius: 3px 3px 0 0
}

.cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-image {
    border-radius: 3px 0 0 3px
}

.cff-lightbox-wrapper.cff-enable-lb-comments.cff-has-thumbs .cff-lightbox-image {
    border-radius: 3px 0 0
}

.cff-lightbox-outerContainer {
    position: relative;
    background-color: #141b38;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 3px 3px 0 0
}

.cff-lightbox-container {
    position: relative;
    padding: 0;
    height: 100%
}

#cff-lightbox-wrapper .cff-lightbox-caption,#cff-lightbox-wrapper .cff-lightbox-caption-text {
    float: left;
    clear: both;
    width: 100%
}

#cff-lightbox-wrapper .cff-lightbox-caption-text {
    margin: 0 0 15px;
    word-break: break-all
}

#cff-lightbox-wrapper .cff-gdpr-more-link {
    position: relative;
    display: inline-block;
    clear: both;
    margin-top: 10px;
    margin-left: 0
}

#cff-lightbox-wrapper .cff-gdpr-more-link:hover {
    background: #eee
}

#cff-lightbox-wrapper .cff-gdpr-more-link span {
    position: absolute;
    display: none;
    top: 50%;
    right: 50%;
    margin-top: -8px;
    margin-right: -10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px
}

#cff-lightbox-wrapper .cff-lightbox-facebook {
    margin: 0;
    padding: 0;
    border-left: none;
    border-bottom: none;
    color: #3b579d;
    width: 100%;
    display: block;
    float: left;
    clear: both
}

#cff-lightbox-wrapper .cff-lightbox-facebook svg {
    vertical-align: middle;
    width: 12px;
    height: 14px;
    margin-right: 6px;
    margin-top: -5px
}

#cff-lightbox-wrapper .cff-lightbox-caption.cff-no-caption .cff-lightbox-facebook {
    padding: 0;
    border: none
}

#cff-lightbox-wrapper .cff-lightbox-caption .cff-date,#cff-lightbox-wrapper .cff-lightbox-caption .cff-event-title,#cff-lightbox-wrapper .cff-lightbox-caption .cff-location {
    display: block;
    padding-bottom: 10px
}

#cff-lightbox-wrapper .cff-lightbox-caption .cff-desc {
    display: block;
    padding-top: 10px
}

#cff-lightbox-wrapper .cff_gdpr_notice {
    z-index: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -44px;
    margin-top: -44px;
    padding: 20px
}

#cff-lightbox-wrapper .cff_gdpr_notice svg:not(:root).svg-inline--fa {
    position: relative;
    display: block!important;
    height: 48px;
    width: 48px;
    opacity: .8
}

#cff-lightbox-wrapper .cff_gdpr_notice:hover svg:not(:root).svg-inline--fa,.cff-lightbox-nav a.cff-lightbox-next:hover,.cff-lightbox-nav a.cff-lightbox-prev:hover {
    opacity: 1
}

.cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-sidebar::-webkit-scrollbar {
    width: 14px
}

.cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-sidebar::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #ccc;
    border: 3px solid #fff;
    border-left: none
}

.cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-sidebar::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #fff
}

#cff-lightbox-wrapper .cff-lightbox-caption-text a:active,#cff-lightbox-wrapper .cff-lightbox-caption-text a:hover,#cff-lightbox-wrapper .cff-lightbox-caption-text a:link,#cff-lightbox-wrapper .cff-lightbox-caption-text a:visited,#cff-lightbox-wrapper .cff-lightbox-facebook:active,#cff-lightbox-wrapper .cff-lightbox-facebook:hover,#cff-lightbox-wrapper .cff-lightbox-facebook:link,#cff-lightbox-wrapper .cff-lightbox-facebook:visited {
    color: #3b579d;
    text-decoration: none
}

#cff-lightbox-wrapper .cff-lightbox-caption-text a:focus,#cff-lightbox-wrapper .cff-lightbox-caption-text a:hover,#cff-lightbox-wrapper .cff-lightbox-facebook:focus,#cff-lightbox-wrapper .cff-lightbox-facebook:hover {
    text-decoration: underline;
    border-bottom: none
}

.cff-lightbox-nav {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000
}

.cff-lightbox-container>.nav {
    left: 0
}

.cff-lightbox-nav a {
    outline: 0;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
    position: absolute;
    z-index: 1000;
    top: 0;
    bottom: 0;
    height: auto
}

.cff-has-iframe .cff-lightbox-nav a {
    top: 50px;
    bottom: 50px
}

.cff-has-video .cff-lightbox-nav a {
    top: 35px;
    bottom: 35px
}

.cff-fb-player .cff-lightbox-nav a.cff-lightbox-next,.cff-fb-player .cff-lightbox-nav a.cff-lightbox-prev {
    top: 75px;
    bottom: 75px;
    width: 7%
}

.cff-lightbox-next,.cff-lightbox-prev {
    height: 100%;
    cursor: pointer;
    display: block
}

#cff-lightbox-wrapper iframe {
    display: none;
    height: 100%;
    left: 0;
    z-index: 999;
    max-width: 100%;
    bottom: 0
}

#cff .cff-link-slider .cff-slider-prev:active,#cff .cff-link-slider .cff-slider-prev:focus,.cff-lightbox-next:active,.cff-lightbox-next:focus,.cff-lightbox-prev:active,.cff-lightbox-prev:focus {
    outline: 0
}

.cff-lightbox-nav a.cff-lightbox-prev {
    left: -50px;
    float: left;
    transition: opacity .2s
}

.cff-lightbox-nav a.cff-lightbox-next {
    right: -50px;
    float: right;
    transition: opacity .2s
}

.cff-enable-lb-comments .cff-lightbox-nav a.cff-lightbox-next {
    margin-right: -300px
}

.cff-lightbox-dataContainer {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 3px 3px
}

.cff-enable-lb-comments .cff-lightbox-dataContainer {
    background: #222
}

.cff-lightbox-nav span {
    display: block;
    top: 50%;
    position: absolute;
    left: 0;
    width: 34px;
    height: 45px;
    margin: -25px 0 0;
    background: var(--wpr-bg-197c27e6-f09b-4632-a34c-a6017ebb661f) no-repeat;
    text-indent: -9999px
}

.cff-lightbox-nav a.cff-lightbox-prev span {
    background-position: -160px 0
}

.cff-lightbox-nav a.cff-lightbox-next span {
    left: auto;
    right: 0;
    background-position: -125px 0
}

.cff-fb-player .cff-lightbox-nav a.cff-lightbox-prev span {
    left: 10px
}

.cff-fb-player .cff-lightbox-nav a.cff-lightbox-next span {
    right: 10px
}

.cff-lightbox-data {
    padding: 0 4px;
    color: #444
}

.cff-lightbox-data .cff-lightbox-details {
    position: relative;
    width: 90%;
    padding: 0 0 0 2px;
    float: left;
    text-align: left;
    line-height: 1.1em
}

#cff-lightbox-wrapper iframe,.cff-lightbox-sidebar .cff-lightbox-closeContainer {
    position: absolute;
    right: 0;
    top: 0
}

.cff-lightbox-data .cff-lightbox-caption {
    padding: 15px 10px 10px;
    margin: 0;
    font-size: 14px;
    line-height: 1.3
}

.cff-lightbox-data .cff-lightbox-number {
    clear: left;
    padding-right: 10px;
    font-size: 12px;
    color: #999
}

.cff-lightbox-data .cff-lightbox-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    margin: 7px -5px 0 0;
    color: #333;
    text-align: center;
    outline: 0;
    opacity: .7;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s
}

.cff-lightbox-data .cff-lightbox-close:hover {
    cursor: pointer;
    opacity: 1
}

.cff-lightbox-sidebar .cff-lightbox-closeContainer .cff-lightbox-close {
    display: block;
    padding: 8px;
    cursor: pointer;
    line-height: 1
}

.cff-lightbox-sidebar .cff-lightbox-closeContainer .cff-lightbox-close:hover {
    color: #000
}

.cff-lightbox-closeContainer svg {
    width: 10px;
    height: 14px
}

.cff-has-video .cff-lightbox-outerContainer {
    min-width: 640px;
    min-height: 360px
}

.cff-has-video .cff-lightbox-dataContainer {
    min-width: 640px
}

.cff-has-video.cff-enable-lb-comments .cff-lightbox-dataContainer,.cff-has-video.cff-enable-lb-comments .cff-lightbox-outerContainer {
    min-width: 0;
    min-height: 0
}

@media all and (max-width: 640px) {
    .cff-has-video .cff-lightbox-outerContainer {
        min-width:100%;
        min-height: auto
    }

    .cff-has-video .cff-lightbox-dataContainer {
        min-width: 100%
    }

    .cff-lightbox-nav a.cff-lightbox-prev {
        width: 25px;
        left: -25px
    }

    .cff-lightbox-nav a.cff-lightbox-next {
        width: 25px;
        right: -25px
    }

    .cff-lightbox-nav span {
        left: 0
    }

    .cff-lightbox-nav a.cff-lightbox-prev span {
        background-position: -108px 0;
        background-size: 650%;
        width: 20px;
        height: 30px
    }

    .cff-lightbox-nav a.cff-lightbox-next span {
        background-position: -84px 0;
        background-size: 650%;
        width: 20px;
        height: 30px
    }

    .cff-lightbox-thumbs a {
        border: none
    }

    .cff-lightbox-thumbs .cff-selected,.cff-lightbox-thumbs .cff-selected:focus,.cff-lightbox-thumbs .cff-selected:hover,.cff-lightbox-thumbs a:focus,.cff-lightbox-thumbs a:hover {
        box-shadow: inset 0 0 0 4px rgba(0,0,0,.5);
        border: none
    }
}

#cff-lightbox-wrapper iframe {
    width: 100%!important
}

#cff-lightbox-wrapper.cff-has-iframe .cff-lightbox-image {
    min-width: 500px;
    display: none!important
}

#cff .cff-load-more,#cff .cff-no-more-posts {
    width: 100%;
    display: block;
    min-height: 30px;
    position: relative;
    box-sizing: border-box;
    outline: 0;
    float: left;
    text-align: center;
    clear: both;
    text-decoration: none
}

#cff .cff-load-more {
    border: none;
    background: rgba(0,0,0,.05);
    padding: 5px 0;
    margin: 10px 0 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#cff .cff-load-more:hover {
    background: rgba(0,0,0,.1);
    text-decoration: none;
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#cff .cff-load-more.cff-loading span {
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    opacity: 0
}

#cff .cff-no-more-posts {
    padding: 7px 0;
    margin: 10px 0 -1px;
    background: rgba(255,255,255,.1);
    border: 1px solid #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px
}

#cff .cff-loader,.cff-lightbox-loader {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: rgba(0,0,0,.5);
    border-radius: 100%;
    -webkit-animation: 1s ease-in-out infinite ctf-sk-scaleout;
    animation: 1s ease-in-out infinite ctf-sk-scaleout
}

#cff .cff-poster {
    margin: 0!important
}

.cff-lightbox-loader {
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    background-color: transparent;
    border: 4px solid rgba(255,255,255,.3);
    border-top-color: rgba(255,255,255,.9);
    border-radius: 50%;
    -webkit-animation: .8s linear infinite cff-spin;
    animation: .8s linear infinite cff-spin;
    z-index: 9999
}

#cff .cff-comment-replies .cff-loader {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: auto;
    right: -16px;
    margin: -6px 0 0
}

@-webkit-keyframes ctf-sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes ctf-sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes cff-spin {
    0% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes cff-spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

#cff .cff-load-more.cff-disabled {
    cursor: default
}

#cff-lightbox-wrapper .cff-comment,.cff-screenreader {
    display: block!important
}

#cff .cff-poster {
    padding: 0!important;
    width: 100%!important
}

.cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-outerContainer {
    position: relative;
    padding-right: 300px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.cff-lightbox-wrapper.cff-enable-lb-comments .cff-lightbox-sidebar {
    width: 300px;
    position: absolute;
    top: 0;
    right: -300px;
    height: 100%;
    bottom: 0;
    background: #fff;
    line-height: 1.4;
    overflow: hidden;
    overflow-y: auto;
    text-align: left;
    border-radius: 0 3px 3px 0
}

.cff-lightbox-wrapper.cff-enable-lb-comments.cff-has-thumbs .cff-lightbox-sidebar {
    border-radius: 0 3px 0 0
}

#cff-lightbox-wrapper .cff-comments-box {
    display: block!important;
    width: 90%;
    margin: 0 5% 15px
}

#cff-lightbox-wrapper .cff-comments-box p {
    text-align: left
}

#cff-lightbox-wrapper .cff-lightbox-sidebar-content {
    padding: 15px 20px
}

#cff-lightbox-wrapper p.cff-comment-likes {
    padding-right: 10px;
    line-height: 16px
}

#cff .cff-likes-this-text,#cff-lightbox-wrapper .cff-likes-this-text {
    display: inline;
    min-height: 20px;
    line-height: 20px
}

#cff-lightbox-wrapper .cff-likes-this-text.cff-long {
    display: inline-block;
    float: left;
    clear: both;
    margin-top: 4px;
    line-height: 16px
}

.cff-screenreader {
    text-indent: -9999px!important;
    width: 0!important;
    height: 0!important;
    line-height: 0!important
}

#cff .cff-link-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 10px
}

#cff .cff-link-slider .cff-link-slider-slides {
    position: relative;
    left: 0;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-transition: .2s
}

#cff .cff-link-slider .cff-link-slider-item {
    position: relative;
    display: none;
    float: left;
    margin: 0;
    padding: 0;
    text-align: center
}

#cff .cff-link-slider .cff-link-slider-item img {
    display: block;
    margin: 0 auto
}

#cff .cff-link-slider .cff-slider-prev {
    position: absolute;
    top: 50%;
    z-index: 999;
    display: block;
    width: 12px;
    height: 20px;
    margin-top: -17px;
    background: #f9f9f9;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    -webkit-transition: .1s;
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset
}

#cff .cff-link-slider .cff-slider-prev {
    left: -1px;
    display: none;
    border-radius: 0 2px 2px 0;
    padding: 6px 7px 6px 5px
}

#cff .cff-link-slider .cff-slider-prev:hover {
    margin-top: -19px;
    color: #141b38;
    box-shadow: 0 0 8px 2px rgba(0,0,0,.2);
    -webkit-transition: .1s
}

#cff .cff-link-slider .cff-slider-prev:hover {
    padding: 8px 9px 8px 5px
}

#cff.cff-masonry {
    box-sizing: border-box
}

#cff.cff-masonry .cff-item,#cff.cff-masonry .cff-item:first-child {
    padding-top: 20px;
    margin-top: 0
}

#cff.cff-masonry .cff-album-item,#cff.cff-masonry .cff-item,#cff.cff-masonry .cff-likebox {
    float: none;
    display: inline-block;
    width: 30.3%;
    margin: 0 1.5% 20px
}

#cff.cff-masonry .cff-comments-box {
    position: relative;
    z-index: 999
}

#cff.cff-masonry .cff-load-more {
    display: flex;
    float: left;
    clear: both;
    justify-content: center;
    align-items: center
}

@media (max-width: 800px) {
    #cff.cff-masonry .cff-album-item,#cff.cff-masonry .cff-item,#cff.cff-masonry .cff-likebox {
        width:100%;
        margin: 0
    }

    #cff.cff-masonry.masonry-2-tablet .cff-posts-wrap .cff-album-item,#cff.cff-masonry.masonry-2-tablet .cff-posts-wrap .cff-item,#cff.cff-masonry.masonry-2-tablet .cff-posts-wrap .cff-likebox {
        width: 47%;
        margin-left: 1.5%;
        margin-right: 1.5%
    }

    #cff.cff-masonry.masonry-3-tablet .cff-posts-wrap .cff-album-item,#cff.cff-masonry.masonry-3-tablet .cff-posts-wrap .cff-item,#cff.cff-masonry.masonry-3-tablet .cff-posts-wrap .cff-likebox {
        width: 30.3%;
        margin-left: 1.5%;
        margin-right: 1.5%
    }

    #cff.cff-masonry.masonry-4-tablet .cff-album-item,#cff.cff-masonry.masonry-4-tablet .cff-item,#cff.cff-masonry.masonry-4-tablet .cff-likebox {
        width: 22%
    }

    .cff-view-comments {
        width: 100%!important
    }

    #cff .cff-post-links.cff-left {
        margin: 12px 0 0!important
    }
}

@media (max-width: 480px) {
    #cff.cff-masonry .cff-album-item,#cff.cff-masonry .cff-item,#cff.cff-masonry .cff-likebox {
        width:100%;
        margin: 0
    }

    #cff.cff-masonry.masonry-2-mobile .cff-posts-wrap .cff-album-item,#cff.cff-masonry.masonry-2-mobile .cff-posts-wrap .cff-item,#cff.cff-masonry.masonry-2-mobile .cff-posts-wrap .cff-likebox {
        width: 47%;
        margin-left: 1.5%;
        margin-right: 1.5%
    }

    #cff.cff-masonry.masonry-3-mobile .cff-posts-wrap .cff-album-item,#cff.cff-masonry.masonry-3-mobile .cff-posts-wrap .cff-item,#cff.cff-masonry.masonry-3-mobile .cff-posts-wrap .cff-likebox {
        width: 30.3%;
        margin-left: 1.5%;
        margin-right: 1.5%
    }
}

#cff.cff-masonry .cff-posts-wrap .cff-album-item {
    margin-bottom: 3%
}

#cff.cff-masonry.cff-masonry-css {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px
}

#cff.cff-masonry.cff-masonry-css .cff-posts-wrap {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-column-fill: auto;
    column-fill: unset;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    margin: 0
}

#cff.cff-masonry.cff-masonry-css .cff-item,#cff.cff-masonry.cff-masonry-css .cff-likebox {
    float: none;
    display: inline-block;
    width: 100%;
    margin: 0 0 12px
}

#cff.cff-masonry.cff-masonry-css .cff-likebox {
    width: 99.5%
}

#cff.cff-masonry.cff-masonry-css .cff-load-more {
    margin: 0 0 10px;
    position: relative;
    bottom: 0
}

@media only screen and (max-width: 780px) {
    #cff.cff-masonry.cff-masonry-css .cff-posts-wrap {
        -webkit-column-count:1;
        -moz-column-count: 1;
        column-count: 1
    }

    #cff.cff-masonry.cff-masonry-css.masonry-2-mobile .cff-posts-wrap {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        margin: 0
    }

    #cff.cff-masonry.cff-masonry-css.masonry-2-mobile .cff-posts-wrap,#cff.cff-masonry.cff-masonry-css.masonry-2-mobile .cff-posts-wrap .cff-item {
        width: 100%
    }
}

#cff.cff-disable-masonry {
    height: auto!important
}

#cff.cff-disable-masonry .cff-item,#cff.cff-disable-masonry .cff-likebox {
    position: relative!important;
    top: auto!important
}

#cff .cff-comments-box .cff-likes-info-wrap {
    padding: 5px 20px 5px 10px;
    display: block;
    float: left;
    box-sizing: border-box
}

.cff-theme-default_theme .cff-comments.cff-comment-on-facebook>a {
    margin-left: 10px
}

@media all and (min-width: 480px) {
    #cff.masonry-1-desktop .cff-posts-wrap .cff-item {
        width:100%;
        float: left;
        margin: 0 0 20px
    }
}

@media all and (max-width: 800px) {
    #cff .cff-posts-wrap .cff-album-item {
        width:47.5%;
        margin-left: 1.5%;
        margin-right: 1.5%!important
    }

    #cff .cff-posts-wrap .cff-album-item:nth-of-type(2n) {
        margin-right: 0!important
    }
}

@media all and (max-width: 480px) {
    #cff .cff-album-item .cff-album-info {
        height:auto
    }

    .cff-wrapper .cff-visual-header .cff-header-img img {
        width: 80px
    }
}

.cff-gdpr-notice {
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 15px;
    margin: 0;
    font-size: 12px;
    background: #fdf7f7;
    border-radius: 5px;
    border: 1px solid #e4b1b1;
    line-height: 1.3;
    display: none
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon {
    margin-left: -5px!important;
    border: 1px solid #fff!important;
    border-radius: 50%!important
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon:first-of-type {
    margin-left: 0!important;
    z-index: 9!important
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon:nth-of-type(2) {
    z-index: 8!important
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon:nth-of-type(3) {
    z-index: 7!important
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon:nth-of-type(4) {
    z-index: 6!important
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon:nth-of-type(5) {
    z-index: 5!important
}

.cff:not(.cff-theme-default_theme) .cff-reaction-one.cff-icon:nth-of-type(6) {
    z-index: 4!important
}

.cff-lightbox-wrapper.cff-theme .cff-comments {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px!important;
    background: 0 0!important;
    border-bottom: 1px solid #e6e6eb;
    margin-bottom: 12px!important
}

.cff-lightbox-wrapper.cff-theme .cff-comments a {
    font-size: 12px;
    font-weight: 600;
    background: #e2f5ff;
    padding: 5px;
    border-radius: 4px;
    color: #0068a0
}

.cff-lightbox-wrapper.cff-theme .cff-comment-text-wrapper .cff-comment-date {
    font-style: normal;
    color: #696d80
}

.cff-lightbox-wrapper.cff-theme .cff-comment-text-wrapper .cff-comment-replies-box {
    border-left: none!important
}

.cff-html5-play {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.cff-img-layout-3 {
    aspect-ratio: 2/3
}

.cff-img-layout-3>:first-child {
    grid-column: span 2
}

.cff-img-layout-4 {
    grid-template-columns: repeat(3,1fr)
}

.cff-img-layout-4>:first-child {
    grid-column: span 3
}

.cff-masonry .cff-posts-wrap {
    column-gap: 15px
}

@media (max-width: 900px) {
    .cff-masonry .cff-posts-wrap {
        column-count:2
    }
}

@media (max-width: 600px) {
    .cff-masonry .cff-posts-wrap {
        column-count:1
    }
}

.cff-html5-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center
}

.cff-html5-play::before {
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,.55);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    border: 2px solid #fff
}

.cff-super-narrow .cff-html5-play::before {
    width: 48px;
    height: 48px
}

.cff-html5-play::after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #fff;
    margin-left: 10
}

.cff-super-narrow .cff-html5-play::after {
    border-width: 5px 0 5px 8px
}

.cff-html5-video:hover .cff-html5-play::before {
    background: rgba(0,0,0,.65)
}

:not(.cff-html5-video) .cff-photo-hover .cff-html5-play {
    opacity: 0!important;
    visibility: hidden!important
}

.cff-video .cff-html5-play,.cff-video-post .cff-html5-play {
    opacity: 1!important;
    visibility: visible!important
}

#cff.cff-super-narrow .cff-meta-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.wpml-ls-legacy-list-horizontal {
    border: 1px solid transparent;
    padding: 7px;
    clear: both
}

.wpml-ls-legacy-list-horizontal>ul {
    padding: 0;
    margin: 0!important;
    list-style-type: none
}

.wpml-ls-legacy-list-horizontal .wpml-ls-item {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-block
}

.wpml-ls-legacy-list-horizontal a {
    display: block;
    text-decoration: none;
    padding: 5px 10px 6px;
    line-height: 1
}

.wpml-ls-legacy-list-horizontal a span {
    vertical-align: middle
}

.we-header_home {
    position: relative;
    margin-bottom: 120px;
    width: 100%
}

.we-header_home .inner-content {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    height: calc(100vh - 127px);
    min-height: 800px;
    z-index: 2
}

.we-header_home .inner-content .content-box {
    position: absolute;
    width: 50%;
    bottom: 60px;
    background-color: #ece6db;
    padding: 40px
}

.we-header_home .inner-content h1 {
    font-size: 72px
}

.we-header_home .inner-content h1 b,.we-header_home .inner-content h1 strong {
    color: #a39161
}

.we-header_home .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.we-header_home .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media screen and (max-width: 1400px) {
    .we-header_home .inner-content .content-box {
        width:65%
    }
}

@media screen and (max-width: 1000px) {
    .we-header_home {
        margin-bottom:80px;
        display: flex;
        flex-direction: column-reverse
    }

    .we-header_home .image {
        position: relative;
        top: unset;
        left: unset;
        height: 400px
    }

    .we-header_home .inner-content {
        margin-top: -60px;
        height: auto;
        min-height: auto
    }

    .we-header_home .inner-content h1 {
        font-size: 50px;
        line-height: 1
    }

    .we-header_home .inner-content .content-box {
        position: relative;
        width: 100%;
        bottom: unset!important;
        padding: 40px
    }
}

@media screen and (max-width: 600px) {
    html :where(.is-position-sticky) {
        --wp-admin--admin-bar--position-offset:0px
    }

    .we-header_home .image {
        height: 350px
    }

    .we-header_home .inner-content h1 {
        font-size: 38px
    }

    .we-header_home .inner-content .content-box {
        padding: 30px
    }
}

@media screen and (max-width: 450px) {
    .we-header_home .image {
        height:250px
    }

    .we-header_home .inner-content {
        margin-top: -40px
    }
}

.we-content_media {
    margin: 120px 0
}

.we-content_media .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 140px
}

.we-content_media .inner-content .image {
    position: relative;
    flex-basis: calc(50% - 140px);
    min-height: 700px
}

.we-content_media .inner-content .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-content_media .inner-content .content {
    padding: 40px 0;
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.we-content_media .columns {
    margin-top: 20px;
    display: flex;
    gap: 40px
}

.we-content_media .columns .column {
    position: relative;
    flex-basis: calc(50% - 20px)
}

.we-content_media .columns .column:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    background-color: #000;
    opacity: 25%
}

.we-content_media .columns .column p {
    margin-bottom: 10px
}

.we-content_media .columns .column p b,.we-content_media .columns .column p strong {
    color: #a39161
}

.we-content_media .label h6 {
    padding: 6px 8px 2px;
    display: inline-block;
    color: #a39161;
    background-color: #ece6db;
    font-weight: 700;
    line-height: 1
}

.we-content_media .label.white h6 {
    background-color: #fff
}

.we-content_media .content-text {
    margin-bottom: 20px
}

.we-content_media .list ul {
    list-style: none;
    margin-left: 30px
}

.we-content_media .list li {
    position: relative
}

.we-content_media .list li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 4px;
    left: -30px;
    top: 10px;
    background-color: #a39161
}

@media screen and (max-width: 1200px) {
    .we-content_media .inner-content {
        gap:60px
    }

    .we-content_media .inner-content .image {
        flex-basis: calc(50% - 60px);
        min-height: 500px
    }

    .we-content_media .inner-content .content {
        flex-basis: 50%
    }
}

@media screen and (max-width: 1000px) {
    .we-content_media {
        margin:80px 0
    }

    .we-content_media .inner-content {
        display: block
    }

    .we-content_media .inner-content .image {
        min-height: 450px
    }

    .we-content_media .inner-content .content {
        padding-bottom: 0
    }
}

@media screen and (max-width: 600px) {
    .we-content_media .columns {
        flex-direction:column;
        gap: 20px
    }

    .we-content_media .columns .column {
        flex-basis: auto
    }

    .we-content_media .columns .column:nth-child(2)::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        background-color: #000;
        opacity: 25%
    }
}

.we-offers {
    padding: 120px 0;
    background-color: #ece6db
}

.we-offers .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%
}

.we-offers .label h6 {
    padding: 6px 8px 2px;
    display: inline-block;
    color: #a39161;
    background-color: #ece6db;
    font-weight: 700;
    line-height: 1
}

.we-offers .label.white h6 {
    background-color: #fff
}

.we-offers .intro {
    max-width: 1000px;
    margin-bottom: 40px
}

.we-offers .offers {
    display: grid;
    gap: 40px
}

.we-offers .offer {
    padding: 30px 20px;
    background-color: #fff;
    display: flex;
    gap: 20px
}

.we-offers .offer .content,.we-offers .offer .media {
    flex-basis: calc(50% - 10px)
}

.we-offers .offer .media {
    position: relative;
    width: 100%
}

.we-offers .offer .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-offers .offer .content {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.we-offers .offer .content :last-child {
    margin-bottom: 0
}

.we-offers .offers-amount-4 .offer {
    gap: 40px
}

.we-offers .offers-amount-4 {
    grid-template-columns: repeat(2,1fr)
}

@media screen and (max-width: 1200px) {
    .we-offers .offers {
        display:block
    }

    .we-offers .offer {
        margin-bottom: 20px
    }

    .we-offers .offer:last-child {
        margin-bottom: 0
    }

    .we-offers .offer:nth-child(3) .media {
        flex-basis: auto;
        display: block;
        width: 100%;
        height: 400px;
        aspect-ratio: auto
    }
}

@media screen and (max-width: 800px) {
    .we-offers .offer:nth-child(3) .media {
        height:300px
    }
}

@media screen and (max-width: 600px) {
    .we-offers .offer:first-child,.we-offers .offer:nth-child(2),.we-offers .offer:nth-child(3) {
        flex-direction:column
    }

    .we-offers .offer:first-child .media,.we-offers .offer:nth-child(2) .media,.we-offers .offer:nth-child(3) .media {
        display: block;
        flex-basis: auto;
        min-height: unset;
        width: 100%;
        height: 280px
    }

    .we-offers .offer:first-child .content,.we-offers .offer:nth-child(2) .content,.we-offers .offer:nth-child(3) .content {
        padding: 0
    }
}

.we-slider_quote .inner-content {
    display: flex
}

.we-slider_quote .quotes {
    position: relative;
    flex-basis: 40%
}

.we-slider_quote .slider-wrapper {
    position: relative;
    flex-basis: 60%;
    width: 60%
}

.we-slider_quote .image-container {
    width: 100%;
    height: 640px
}

.we-slider_quote .image-container img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-slider_quote .quote {
    padding: 60px;
    align-content: center;
    display: block;
    height: 100%
}

.we-slider_quote .quote .the-content {
    position: relative;
    padding-left: 15px
}

.we-slider_quote .quote .the-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: #a39161;
    z-index: 3
}

.we-slider_quote .quote .the-content p.content {
    font-family: Quattrocento,serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.we-slider_quote .quote .the-content p.content b,.we-slider_quote .quote .the-content p.content strong {
    font-weight: 400
}

.we-slider_quote .quote .the-content p.author {
    margin-top: 20px;
    margin-bottom: 0;
    color: #a39161;
    font-weight: 700
}

.we-slider_quote .navigation-arrows {
    position: absolute;
    left: 0;
    bottom: 0
}

.we-slider_quote .arrows {
    display: flex
}

.we-slider_quote .divider {
    position: relative;
    height: 80px;
    width: 2px;
    background-color: #a39161
}

.we-slider_quote .divider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #000;
    opacity: 25%
}

.we-slider_quote .next-arrow,.we-slider_quote .prev-arrow {
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #a39161;
    border: 1px solid #a39161;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center
}

.we-slider_quote .next-arrow svg,.we-slider_quote .prev-arrow svg {
    display: block;
    color: #fff
}

.we-slider_quote .next-arrow:hover,.we-slider_quote .prev-arrow:hover {
    background-color: #ece6db
}

.we-slider_quote .next-arrow:hover svg,.we-slider_quote .prev-arrow:hover svg {
    color: #a39161
}

.we-slider_quote .slick-dots {
    position: absolute;
    margin: 0;
    left: 60px;
    bottom: 80px;
    display: flex;
    justify-content: flex-start;
    gap: 8px
}

.we-slider_quote .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    cursor: pointer
}

.we-slider_quote .slick-dots li::before {
    display: none
}

.we-slider_quote .slick-dots li:hover button {
    background: #a39161
}

.we-slider_quote .slick-dots li.slick-active button {
    background: #a39161
}

.we-slider_quote .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    border-radius: 20px;
    background: #ece6db;
    transition: all .3s ease
}

@media screen and (max-width: 1200px) {
    .we-slider_quote .quotes {
        flex-basis:45%;
        flex-grow: 0;
        flex-shrink: 0
    }

    .we-slider_quote .slider-wrapper {
        flex-basis: 55%;
        width: 55%;
        flex-grow: 0;
        flex-shrink: 0
    }
}

@media screen and (max-width: 1000px) {
    .we-offers {
        padding:80px 0
    }

    .we-slider_quote {
        margin-bottom: 60px
    }

    .we-slider_quote .inner-content {
        flex-direction: column-reverse
    }

    .we-slider_quote .slider-wrapper {
        width: 100%;
        flex-basis: 100%
    }

    .we-slider_quote .slick-dots {
        bottom: 20px
    }

    .we-slider_quote .quote .the-content p.content {
        font-size: 28px
    }
}

@media screen and (max-width: 600px) {
    .we-slider_quote {
        margin-bottom:80px
    }

    .we-slider_quote .quote {
        max-width: 1700px;
        margin: 0 auto;
        width: 90%;
        padding: 0;
        padding-top: 30px
    }

    .we-slider_quote .quote .the-content p.content {
        font-size: 25px
    }

    .we-slider_quote .navigation-dots {
        position: relative;
        max-width: 1700px;
        margin: 0 auto;
        width: 90%
    }

    .we-slider_quote .slick-dots {
        bottom: -40px;
        left: 0
    }

    .we-slider_quote .image-container {
        height: 400px
    }

    .we-slider_quote .divider {
        height: 50px
    }

    .we-slider_quote .next-arrow,.we-slider_quote .prev-arrow {
        width: 50px;
        height: 50px
    }

    .we-slider_quote .next-arrow svg,.we-slider_quote .prev-arrow svg {
        width: 14px;
        height: 14px
    }
}

.acf-block-preview .we-slider_quote .slick-dots {
    bottom: 20px
}

.we-latest_news {
    padding: 120px 0;
    background-color: #ece6db
}

.we-latest_news .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%
}

.we-latest_news .intro {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.we-latest_news .link {
    padding-top: 5px
}

.we-latest_news .link a {
    display: inline-flex;
    color: #000;
    font-weight: 700;
    gap: 10px;
    text-decoration: none
}

.we-latest_news .link a span {
    position: relative;
    display: block
}

.we-latest_news .link a span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: #000;
    transition: all .3s ease
}

.we-latest_news .link a svg {
    display: block
}

.we-latest_news .link a:hover {
    color: #007d7e
}

.we-latest_news .link a:hover span::before {
    background-color: #007d7e
}

.we-latest_news .news-container {
    display: flex;
    gap: 30px
}

.we-latest_news .news-container .news-item {
    position: relative;
    flex-basis: calc(50% - 15px);
    padding-bottom: 70px
}

.we-latest_news .news-container .news-item .image {
    position: relative;
    margin-bottom: 40px
}

.we-latest_news .news-container .news-item .date {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 7px 10px 5px;
    background-color: #fff;
    border-radius: 0;
    z-index: 2
}

.we-latest_news .news-container .news-item .date p {
    margin-bottom: 0;
    line-height: 1;
    font-size: 14px
}

.we-latest_news .news-container .news-item img {
    display: block;
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-latest_news .news-container .news-item .top-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px
}

.we-latest_news .news-container .news-item .category a {
    position: relative;
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 6px 10px 4px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    z-index: 3
}

.we-latest_news .news-container .news-item .reading-time p {
    line-height: 1;
    padding-top: 2px;
    margin-bottom: 0;
    font-weight: 700
}

.we-latest_news .news-container .news-item .full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.we-latest_news .news-container .news-item .we-button-styling {
    position: absolute;
    bottom: 0;
    z-index: 3
}

@media screen and (max-width: 1200px) {
    .we-latest_news .news-container .news-item img {
        height:300px
    }
}

@media screen and (max-width: 800px) {
    .we-latest_news .news-container {
        display:block
    }

    .we-latest_news .news-container .news-item {
        margin-bottom: 40px
    }

    .we-latest_news .news-container .news-item:last-child {
        margin-bottom: 0
    }
}

@media screen and (max-width: 600px) {
    .we-latest_news .intro {
        flex-wrap:wrap;
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 15px
    }

    .we-latest_news .link a {
        align-items: center
    }

    .we-latest_news .link a svg {
        width: 14px;
        height: 14px
    }
}

@media screen and (max-width: 450px) {
    .we-latest_news .news-container .news-item img {
        height:250px
    }
}

.we-overview_care {
    margin: 120px 0;
    scroll-margin-top: 120px
}

.we-overview_care .inner-content {
    max-width: 1700px;
    margin: 0 auto;
    width: 90%
}

.we-overview_care .toolbar {
    position: relative;
    z-index: 100;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 25px;
    background-color: rgba(241,241,241,.75)
}

.we-overview_care .left,.we-overview_care .right {
    flex-shrink: 0;
    flex-basis: auto
}

.we-overview_care .right {
    flex-grow: 1
}

.we-overview_care .label {
    margin-bottom: 5px
}

.we-overview_care .label p {
    margin-bottom: 0
}

.we-overview_care .current-item,.we-overview_care .label p {
    font-weight: 700
}

.we-overview_care .toggle-container {
    display: inline-flex;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #007d7e;
    padding: 5px
}

.we-overview_care button.option {
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    gap: 8px;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 10px 20px
}

.we-overview_care button.option.active {
    background-color: #007d7e;
    color: #fff
}

.we-overview_care button.option svg {
    display: block
}

.we-overview_care button.option span {
    line-height: 1
}

.we-overview_care .filters {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
    z-index: 100
}

.we-overview_care .filters .trial {
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 15px
}

.we-overview_care .filters .trial label {
    padding-top: 1px;
    position: relative;
    padding-left: 30px;
    gap: 10px;
    cursor: pointer
}

.we-overview_care .filters .trial input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: -1px;
    left: 0;
    border: 1px solid #007d7e;
    border-radius: 0!important;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    width: 22px!important;
    height: 22px!important
}

.we-overview_care .filters .trial input[type=checkbox]:not([disabled]):checked {
    border: 1px solid #007d7e!important;
    background-color: #007d7e!important
}

.we-overview_care .filters .trial input[type=checkbox]:not([disabled]):checked::after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(7px,-3px)
}

.we-overview_care .filters .trial input[type=checkbox]:focus {
    border: 1px solid #007d7e!important;
    background-color: transparent!important;
    box-shadow: none!important
}

.we-overview_care .filters .trial label {
    color: #000
}

.we-overview_care .filters button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #000
}

.we-overview_care .filters button span {
    color: #000
}

.we-overview_care .filters .current-item {
    padding: 15px 12px;
    border: 1px solid #007d7e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px
}

.we-overview_care .filters .filter-province,.we-overview_care .filters .filter-type {
    position: relative
}

@media screen and (min-width: 500px) {
    .we-overview_vacancies_filter .filters .filter-function:hover .filter-list,.we-overview_vacancies_filter .filters .filter-province:hover .filter-list,.we-overview_vacancies_filter .filters .filter-type:hover .filter-list {
        display:flex
    }

    .we-overview_care .filters .filter-province:hover .filter-list,.we-overview_care .filters .filter-type:hover .filter-list {
        display: flex
    }
}

.we-overview_care .filters .filter-list {
    position: absolute;
    width: 100%;
    top: 100%;
    padding: 10px 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    z-index: 90;
    transition: .3s all
}

.we-overview_care .filters .filter-list button {
    padding: 10px 20px;
    transition: .3s all;
    text-align: left
}

.we-overview_care .filters .filter-list button:hover {
    color: #fff;
    background-color: #a39161
}

.we-overview_care .carehomes {
    position: relative;
    z-index: 99
}

.we-overview_care .list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px
}

.we-overview_care .list .location-item {
    position: relative;
    flex-basis: calc(33.3333333333% - 20px);
    background-color: #fff;
    box-shadow: 0 4px 15px 0 rgba(0,0,0,.25)
}

.we-overview_care .list .location-item:hover .image img {
    transform: scale(1.03)
}

.we-overview_care .list .image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

.we-overview_care .list .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: .3s all ease
}

.we-overview_care .list .info {
    padding: 20px 15px
}

.we-overview_care .list .info h5 {
    color: #007d7e;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.we-overview_care .list .types {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 12px
}

.we-overview_care .list .types p {
    margin-bottom: 0;
    line-height: 1;
    display: inline-block;
    position: relative;
    letter-spacing: -.2px
}

.we-overview_care .list .types p::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #007d7e;
    right: -7px;
    top: 50%;
    transform: translateY(-50%)
}

.we-overview_care .list .types p:last-child::after {
    display: none
}

.we-overview_care .list .city {
    display: flex;
    align-items: center;
    gap: 10px
}

.we-overview_care .list .city p {
    padding-top: 3px;
    margin-bottom: 0;
    line-height: 1
}

.we-overview_care .list .full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10
}

.we-overview_care .map {
    margin-top: 40px;
    width: 100%
}

.we-overview_care .map-container {
    position: relative;
    width: 100%;
    height: 700px
}

.we-overview_care .leaflet-tile-pane {
    filter: grayscale(100%)
}

.we-overview_care .leaflet-popup-content-wrapper {
    padding: 0!important;
    border-radius: 0!important
}

.we-overview_care .leaflet-popup-content {
    padding: 0!important;
    margin: 0!important
}

.we-overview_care .leaflet-popup-content p {
    margin: 0;
    font-size: 16px
}

.we-overview_care .leaflet-popup-content .image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative
}

.we-overview_care .leaflet-popup-content .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.we-overview_care .leaflet-popup-content .info {
    padding: 20px 15px;
    background-color: #fff
}

.we-overview_care .leaflet-popup-content .info h5 {
    color: #007d7e;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.we-overview_care .leaflet-popup-content .types {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 12px
}

.we-overview_care .leaflet-popup-content .types p {
    margin-bottom: 0;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    letter-spacing: -.2px
}

.we-overview_care .leaflet-popup-content .city {
    display: flex;
    align-items: center;
    gap: 10px
}

.we-overview_care .leaflet-popup-content .city p {
    padding-top: 3px;
    margin-bottom: 0;
    line-height: 1
}

.we-overview_care .leaflet-popup-content .full-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.we-overview_care .map-labels {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #fff;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    z-index: 10000;
    gap: 15px;
    padding: 5px 10px
}

.we-overview_care .map-labels .map-label {
    display: flex;
    align-items: center;
    gap: 7px
}

.we-overview_care .map-labels .icon {
    width: 15px;
    height: 22px
}

.we-overview_care .map-labels .icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.we-overview_care .map-labels p {
    padding-top: 3px;
    margin-bottom: 0;
    font-family: Gilroy,sans-serif;
    font-weight: 700;
    line-height: 1
}

@media screen and (max-width: 1200px) {
    .we-overview_care .toolbar {
        display:block
    }

    .we-overview_care .filters {
        margin-top: 20px;
        justify-content: flex-start
    }

    .we-overview_care .list .location-item {
        flex-basis: calc(50% - 15px)
    }

    .we-overview_care .list .image {
        aspect-ratio: 16/9
    }
}

@media screen and (max-width: 1000px) {
    .we-latest_news {
        padding:80px 0
    }

    .we-overview_care {
        margin: 80px 0;
        scroll-margin-top: 80px
    }

    .we-overview_care .toolbar {
        margin-top: 40px
    }

    .we-overview_care .filters {
        flex-wrap: wrap
    }

    .we-overview_care .filters .trial {
        flex-basis: 100%;
        justify-content: flex-start;
        padding-bottom: 0
    }
}

@media screen and (max-width: 700px) {
    .we-overview_care .filters {
        flex-wrap:wrap
    }
}

@media screen and (max-width: 600px) {
    .we-overview_care .list .location-item {
        flex-basis:100%
    }

    .we-overview_care .toggle-container {
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        gap: 5px
    }

    .we-overview_care .toggle-container button.option {
        justify-content: center
    }

    .we-overview_care .filters .function,.we-overview_care .filters .province,.we-overview_care .filters .type {
        width: 100%
    }

    .we-overview_care .filters .current-item {
        width: 100%
    }

    .we-overview_care .leaflet-popup-content p {
        font-size: 14px
    }

    .we-overview_care .map-labels {
        flex-direction: column;
        align-items: flex-start
    }
}

.acf-block-preview .we-overview_care {
    margin: 80px 0
}

.acf-block-preview .we-overview_care .toolbar {
    display: block;
    margin-top: 40px
}

.acf-block-preview .we-overview_care .filters {
    margin-top: 20px;
    justify-content: flex-start
}

.acf-block-preview .we-overview_care .filters .filter {
    float: none!important;
    margin: 0!important
}

.acf-block-preview .we-overview_care .list .location-item {
    flex-basis: calc(50% - 15px)
}

.acf-block-preview .we-overview_care .list .image {
    aspect-ratio: 16/9
}

#sb_instagram {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#sb_instagram #sbi_images,#sb_instagram.sbi_fixed_height {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
}

#sb_instagram:after,.sbi_lb-commentBox:after,.sbi_lb-data:after,.sbi_lb-dataContainer:after,.sbi_lb-outerContainer:after {
    content: "";
    display: table;
    clear: both
}

#sb_instagram.sbi_fixed_height {
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box
}

#sb_instagram #sbi_images {
    box-sizing: border-box;
    display: grid;
    width: 100%;
    padding: 12px 0
}

#sb_instagram .sbi_header_link {
    -webkit-box-shadow: none;
    box-shadow: none
}

#sb_instagram .sbi_header_link:hover,.sbi_lightbox a img {
    border: none
}

#sb_instagram #sbi_images .sbi_item {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    zoom:1;margin: 0!important;
    text-decoration: none;
    opacity: 1;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

#sb_instagram #sbi_images .sbi_item.sbi_transition {
    opacity: 0
}

#sb_instagram.sbi_col_1 #sbi_images,#sb_instagram.sbi_col_1.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(1,1fr)
}

#sb_instagram.sbi_col_2 #sbi_images,#sb_instagram.sbi_col_2.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(2,1fr)
}

#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(3,1fr)
}

#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(4,1fr)
}

#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(5,1fr)
}

#sb_instagram.sbi_col_6 #sbi_images,#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(6,1fr)
}

#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_7.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(7,1fr)
}

#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_8.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(8,1fr)
}

#sb_instagram.sbi_col_9 #sbi_images,#sb_instagram.sbi_col_9.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(9,1fr)
}

#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_10.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(10,1fr)
}

#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_photo_wrap {
    position: relative
}

#sb_instagram .sbi_photo {
    display: block;
    text-decoration: none
}

#sb_instagram .sbi_photo img {
    width: 100%;
    height: inherit;
    object-fit: cover;
    scale: 1;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out,-webkit-transform .5s ease-in-out;
    vertical-align: middle
}

#sb_instagram .sbi_no_js img,#sb_instagram br,#sb_instagram p:empty,#sb_instagram.sbi_no_js .sbi_load_btn,#sb_instagram.sbi_no_js .sbi_photo img {
    display: none
}

#sb_instagram a,#sb_instagram a:active,#sb_instagram a:focus,#sb_instagram a:hover,.sbi_lightbox a:active,.sbi_lightbox a:focus,.sbi_lightbox a:hover {
    outline: 0
}

#sb_instagram img {
    display: block;
    padding: 0!important;
    margin: 0!important;
    max-width: 100%!important;
    opacity: 1!important
}

#sb_instagram .sbi_link {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0,0,0,.5);
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.1
}

#sb_instagram .sbi_link a {
    padding: 0 6px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    line-height: 1.1;
    display: inline-block;
    vertical-align: top;
    zoom:1}

#sb_instagram .sbi_link .sbi_lightbox_link {
    padding-bottom: 5px
}

#sb_instagram .sbi_link a:focus,#sb_instagram .sbi_link a:hover {
    text-decoration: underline
}

#sb_instagram .sbi_photo_wrap:focus .sbi_link,#sb_instagram .sbi_photo_wrap:hover .sbi_link {
    display: block
}

#sb_instagram svg:not(:root).svg-inline--fa {
    height: 1em;
    display: inline-block
}

#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,#sb_instagram .sbi_type_video .sbi_playbtn,#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,.sbi_type_carousel .fa-clone {
    display: block!important;
    position: absolute;
    z-index: 1;
    color: rgba(255,255,255,.9);
    font-style: normal!important;
    text-shadow: 0 0 8px rgba(0,0,0,.8)
}

#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_video .sbi_playbtn {
    z-index: 2;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -19px;
    padding: 0;
    font-size: 48px
}

#sb_instagram .sbi_type_carousel .fa-clone {
    right: 12px;
    top: 12px;
    font-size: 24px;
    text-shadow: 0 0 8px rgba(0,0,0,.3)
}

#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,.sbi_type_carousel svg.fa-clone {
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0,0,0,.4));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, .4))
}

#sb_instagram .sbi_loader {
    width: 20px;
    height: 20px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: rgba(0,0,0,.5);
    border-radius: 100%;
    -webkit-animation: 1s ease-in-out infinite sbi-sk-scaleout;
    animation: 1s ease-in-out infinite sbi-sk-scaleout
}

#sbi_load p {
    display: inline;
    padding: 0;
    margin: 0
}

#sb_instagram #sbi_load .sbi_loader {
    position: absolute;
    margin-top: -11px;
    background-color: #fff;
    opacity: 1
}

@-webkit-keyframes sbi-sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes sbi-sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

#sb_instagram .fa-spin,#sbi_lightbox .fa-spin {
    -webkit-animation: 2s linear infinite fa-spin;
    animation: 2s linear infinite fa-spin
}

#sb_instagram .fa-pulse,#sbi_lightbox .fa-pulse {
    -webkit-animation: 1s steps(8) infinite fa-spin;
    animation: 1s steps(8) infinite fa-spin
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.sbi-screenreader {
    text-indent: -9999px!important;
    display: block!important;
    width: 0!important;
    height: 0!important;
    line-height: 0!important;
    text-align: left!important;
    overflow: hidden!important
}

#sb_instagram .sb_instagram_header,.sb_instagram_header {
    overflow: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 0
}

#sb_instagram .sb_instagram_header a,.sb_instagram_header a {
    transition: color .5s;
    text-decoration: none
}

.sb_instagram_header.sbi_header_outside {
    float: none;
    margin-left: auto!important;
    margin-right: auto!important;
    display: flex
}

.sbi_no_avatar .sbi_header_img {
    background: #333;
    color: #fff;
    width: 50px;
    height: 50px;
    position: relative
}

.sb_instagram_header .sbi_header_hashtag_icon {
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.75)
}

.sbi_no_avatar .sbi_header_hashtag_icon {
    display: block;
    color: #fff;
    opacity: .9;
    -webkit-transition: background .6s linear,color .6s linear;
    -moz-transition: background .6s linear,color .6s linear;
    -o-transition: background .6s linear,color .6s linear;
    transition: background .6s linear,color .6s linear
}

.sbi_no_avatar:hover .sbi_header_hashtag_icon {
    display: block;
    opacity: 1;
    -webkit-transition: background .2s linear,color .2s linear;
    -moz-transition: background .2s linear,color .2s linear;
    -o-transition: background .2s linear,color .2s linear;
    transition: background .2s linear,color .2s linear
}

@media all and (min-width: 480px) {
    #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img,.sb_instagram_header.sbi_medium .sbi_header_img,.sb_instagram_header.sbi_medium .sbi_header_img img {
        width:80px;
        height: 80px;
        border-radius: 50%
    }

    #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,.sb_instagram_header.sbi_medium .sbi_header_text h3 {
        font-size: 20px
    }

    #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info {
        font-size: 14px
    }

    #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_medium .sbi_header_text h3 {
        line-height: 1.4
    }

    #sb_instagram .sb_instagram_header.sbi_large .sbi_header_img,#sb_instagram .sb_instagram_header.sbi_large .sbi_header_img img,.sb_instagram_header.sbi_large .sbi_header_img,.sb_instagram_header.sbi_large .sbi_header_img img {
        width: 120px;
        height: 120px;
        border-radius: 50%
    }

    #sb_instagram .sb_instagram_header.sbi_large .sbi_header_text h3,.sb_instagram_header.sbi_large .sbi_header_text h3 {
        font-size: 28px
    }

    #sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info {
        font-size: 16px
    }
}

#sb_instagram .sb_instagram_header .sbi_header_img,.sb_instagram_header .sbi_header_img {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 50%
}

#sb_instagram .sb_instagram_header .sbi_header_img_hover,.sb_instagram_header .sbi_header_img_hover {
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.75);
    z-index: 2;
    transition: opacity .4s ease-in-out
}

#sb_instagram .sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,#sb_instagram .sb_instagram_header .sbi_header_img_hover .sbi_new_logo,.sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header .sbi_header_img_hover .sbi_new_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    font-size: 24px
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo {
    margin-top: -18px;
    margin-left: -18px;
    width: 36px;
    height: 36px;
    font-size: 36px
}

#sb_instagram .sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo {
    margin-top: -24px;
    margin-left: -24px;
    width: 48px;
    height: 48px;
    font-size: 48px
}

#sb_instagram .sb_instagram_header .sbi_header_img_hover i {
    overflow: hidden
}

#sb_instagram .sb_instagram_header .sbi_fade_in,.sb_instagram_header .sbi_fade_in {
    opacity: 1;
    transition: opacity .2s ease-in-out
}

#sb_instagram .sb_instagram_header a:focus .sbi_header_img_hover,#sb_instagram .sb_instagram_header a:hover .sbi_header_img_hover,#sb_instagram.sbi_no_js #sbi_images .sbi_item.sbi_transition,.sb_instagram_header a:focus .sbi_header_img_hover,.sb_instagram_header a:hover .sbi_header_img_hover,.sbi_lb-nav a.sbi_lb-next:hover,.sbi_lb-nav a.sbi_lb-prev:hover {
    opacity: 1
}

#sb_instagram .sb_instagram_header .sbi_header_text,.sb_instagram_header .sbi_header_text {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center
}

#sb_instagram .sb_instagram_header.sbi_large .sbi_feedtheme_header_text,.sb_instagram_header.sbi_large .sbi_feedtheme_header_text {
    gap: 8px
}

.sb_instagram_header.sbi_medium .sbi_feedtheme_header_text {
    gap: 4px
}

.sbi_feedtheme_header_text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    flex-direction: column;
    gap: 4px
}

#sb_instagram .sb_instagram_header h3,.sb_instagram_header h3 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
    padding: 0
}

#sb_instagram .sb_instagram_header p,.sb_instagram_header p {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    padding: 0
}

#sb_instagram .sb_instagram_header .sbi_header_text img.emoji,.sb_instagram_header .sbi_header_text img.emoji {
    margin-right: 3px!important
}

#sb_instagram .sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info,.sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info {
    clear: both
}

#sb_instagram #sbi_load {
    float: left;
    clear: both;
    width: 100%;
    text-align: center;
    opacity: 1;
    transition: .5s ease-in
}

#sb_instagram #sbi_load .fa-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -7px;
    font-size: 15px
}

#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a,.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a {
    display: inline-block;
    vertical-align: top;
    zoom:1;padding: 7px 14px;
    margin: 5px auto 0;
    background: #333;
    text-decoration: none;
    line-height: 1.5
}

#sb_instagram .sbi_load_btn .sbi_btn_text,#sb_instagram .sbi_load_btn .sbi_loader {
    opacity: 1;
    transition: .1s ease-in
}

#sb_instagram .sbi_hidden {
    opacity: 0!important
}

#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a {
    border: none;
    color: #fff;
    font-size: 13px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: .1s ease-in
}

.sbi_lb-nav a.sbi_lb-next,.sbi_lb-nav a.sbi_lb-prev {
    width: 50px;
    padding-left: 10px;
    padding-right: 10px;
    opacity: .5;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s
}

#sb_instagram .sbi_follow_btn {
    display: inline-block;
    vertical-align: top;
    zoom:1;text-align: center
}

#sb_instagram .sbi_follow_btn.sbi_top {
    display: block;
    margin-bottom: 5px
}

#sb_instagram .sbi_follow_btn a {
    background: #408bd1;
    color: #fff
}

#sb_instagram #sbi_load .sbi_load_btn:focus,#sb_instagram #sbi_load .sbi_load_btn:hover {
    outline: 0;
    box-shadow: inset 0 0 20px 20px rgba(255,255,255,.25)
}

#sb_instagram .sbi_follow_btn a:focus,#sb_instagram .sbi_follow_btn a:hover {
    outline: 0;
    box-shadow: inset 0 0 10px 20px #359dff
}

#sb_instagram #sbi_load .sbi_load_btn:active,#sb_instagram .sbi_follow_btn a:active {
    box-shadow: inset 0 0 10px 20px rgba(0,0,0,.3)
}

#sb_instagram .sbi_follow_btn .fa,#sb_instagram .sbi_follow_btn svg {
    margin-bottom: -1px;
    margin-right: 7px;
    font-size: 15px
}

#sb_instagram .sbi_follow_btn svg {
    vertical-align: -.125em
}

#sb_instagram #sbi_load .sbi_follow_btn {
    margin-left: 5px
}

#sb_instagram .sb_instagram_error {
    width: 100%;
    text-align: center;
    line-height: 1.4
}

#sbi_mod_error {
    display: none;
    border: 1px solid #ddd;
    background: #eee;
    color: #333;
    margin: 10px 0 0;
    padding: 10px 15px;
    font-size: 13px;
    text-align: center;
    clear: both;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

#sbi_mod_error br {
    display: initial!important
}

#sbi_mod_error p {
    padding: 5px 0!important;
    margin: 0!important;
    line-height: 1.3!important
}

#sbi_mod_error ol,#sbi_mod_error ul {
    padding: 5px 0 5px 20px!important;
    margin: 0!important
}

#sbi_mod_error li {
    padding: 1px 0!important;
    margin: 0!important
}

#sbi_mod_error span {
    font-size: 12px
}

#sb_instagram.sbi_medium .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_medium .sbi_playbtn {
    margin-top: -12px;
    margin-left: -9px;
    font-size: 23px
}

#sb_instagram.sbi_medium .sbi_type_carousel .sbi_photo_wrap .fa-clone {
    right: 8px;
    top: 8px;
    font-size: 18px
}

#sb_instagram.sbi_small .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_small .sbi_playbtn {
    margin-top: -9px;
    margin-left: -7px;
    font-size: 18px
}

#sb_instagram.sbi_small .sbi_type_carousel .sbi_photo_wrap .fa-clone {
    right: 5px;
    top: 5px;
    font-size: 12px
}

@media all and (max-width: 640px) {
    #sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_6 #sbi_images {
        grid-template-columns:repeat(2,1fr)
    }

    #sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_9 #sbi_images {
        grid-template-columns: repeat(4,1fr)
    }

    #sb_instagram.sbi_width_resp {
        width: 100%!important
    }
}

#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap {
    box-sizing: border-box;
    position: relative;
    overflow: hidden
}

#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
    z-index: -300
}

#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

#sb_instagram #sbi_images .sbi_js_load_disabled .sbi_imgLiquid_ready.sbi_photo,#sb_instagram #sbi_images .sbi_no_js_customizer .sbi_imgLiquid_ready.sbi_photo {
    padding-bottom: 0!important
}

#sb_instagram #sbi_mod_error .sb_frontend_btn {
    display: inline-block;
    padding: 6px 10px;
    background: rgba(0,0,0,.1);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    color: #444
}

#sb_instagram #sbi_mod_error .sb_frontend_btn:hover {
    background: rgba(0,0,0,.15)
}

#sb_instagram #sbi_mod_error .sb_frontend_btn .fa {
    margin-right: 2px
}

#sb_instagram.sbi_palette_dark,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lightbox_tooltip,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_share_close,.sbi_header_outside.sbi_header_palette_dark {
    background-color: rgba(0,0,0,.85);
    color: rgba(255,255,255,.75)
}

#sb_instagram.sbi_palette_dark .sbi_caption,#sb_instagram.sbi_palette_dark .sbi_meta,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox .sbi_lb-commentBox p,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details .sbi_lb-caption,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-number,.sbi_header_palette_dark,.sbi_header_palette_dark .sbi_bio {
    color: rgba(255,255,255,.75)
}

#sb_instagram.sbi_palette_dark .sbi_expand a,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox .sbi_lb-commentBox .sbi_lb-commenter,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a p,.sbi_header_palette_dark a {
    color: #fff
}

#sb_instagram.sbi_palette_light,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lightbox_tooltip,#sbi_lightbox.sbi_palette_light_lightbox .sbi_share_close,.sbi_header_outside.sbi_header_palette_light {
    color: rgba(0,0,0,.85);
    background-color: rgba(255,255,255,.75)
}

#sb_instagram.sbi_palette_light .sbi_caption,#sb_instagram.sbi_palette_light .sbi_meta,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox .sbi_lb-commentBox p,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details .sbi_lb-caption,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-number,.sbi_header_palette_light,.sbi_header_palette_light .sbi_bio {
    color: rgba(0,0,0,.85)
}

#sb_instagram.sbi_palette_light .sbi_expand a,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox .sbi_lb-commentBox .sbi_lb-commenter,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a p,.sbi_header_palette_light a {
    color: #000
}

@media all and (max-width: 800px) {
    #sb_instagram.sbi_tab_col_10 #sbi_images {
        grid-template-columns:repeat(10,1fr)
    }

    #sb_instagram.sbi_tab_col_9 #sbi_images {
        grid-template-columns: repeat(9,1fr)
    }

    #sb_instagram.sbi_tab_col_8 #sbi_images {
        grid-template-columns: repeat(8,1fr)
    }

    #sb_instagram.sbi_tab_col_7 #sbi_images {
        grid-template-columns: repeat(7,1fr)
    }

    #sb_instagram.sbi_tab_col_6 #sbi_images {
        grid-template-columns: repeat(6,1fr)
    }

    #sb_instagram.sbi_tab_col_5 #sbi_images {
        grid-template-columns: repeat(5,1fr)
    }

    #sb_instagram.sbi_tab_col_4 #sbi_images {
        grid-template-columns: repeat(4,1fr)
    }

    #sb_instagram.sbi_tab_col_3 #sbi_images {
        grid-template-columns: repeat(3,1fr)
    }

    #sb_instagram.sbi_tab_col_2 #sbi_images {
        grid-template-columns: repeat(2,1fr)
    }

    #sb_instagram.sbi_tab_col_1 #sbi_images {
        grid-template-columns: 1fr
    }
}

@media all and (max-width: 480px) {
    #sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_6 #sbi_images,#sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_8.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_9 #sbi_images,#sb_instagram.sbi_col_9.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_mob_col_1 #sbi_images {
        grid-template-columns:1fr
    }

    #sb_instagram.sbi_mob_col_2 #sbi_images {
        grid-template-columns: repeat(2,1fr)
    }

    #sb_instagram.sbi_mob_col_3 #sbi_images {
        grid-template-columns: repeat(3,1fr)
    }

    #sb_instagram.sbi_mob_col_4 #sbi_images {
        grid-template-columns: repeat(4,1fr)
    }

    #sb_instagram.sbi_mob_col_5 #sbi_images {
        grid-template-columns: repeat(5,1fr)
    }

    #sb_instagram.sbi_mob_col_6 #sbi_images {
        grid-template-columns: repeat(6,1fr)
    }

    #sb_instagram.sbi_mob_col_7 #sbi_images {
        grid-template-columns: repeat(7,1fr)
    }

    #sb_instagram.sbi_mob_col_8 #sbi_images {
        grid-template-columns: repeat(8,1fr)
    }

    #sb_instagram.sbi_mob_col_9 #sbi_images {
        grid-template-columns: repeat(9,1fr)
    }

    #sb_instagram.sbi_mob_col_10 #sbi_images {
        grid-template-columns: repeat(10,1fr)
    }
}

#sb_instagram #sbi_images .sbi_item.sbi_num_diff_hide {
    display: none!important
}

body:after {
    content: url(https://orelia.be/wp-content/plugins/instagram-feed/img/sbi-sprite.png);
    display: none
}

.sbi_lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #000;
    opacity: .9;
    display: none
}

.sbi_lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 100000;
    text-align: center;
    line-height: 0;
    font-weight: 400
}

.sbi_lightbox .sbi_lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    object-fit: contain
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-image {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px
}

.sbi_lb-outerContainer {
    position: relative;
    background-color: #000;
    width: 250px;
    height: 250px;
    margin: 0 auto 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px
}

.sbi_lb-container-wrapper {
    height: 100%
}

.sbi_lb-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0
}

.sbi_lb-loader {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 20px;
    margin-top: -10px;
    text-align: center;
    line-height: 0
}

.sbi_lb-loader span {
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: var(--wpr-bg-525e0c2c-d496-4009-82bb-015babee15d7) no-repeat
}

.sbi_lb-container>.nav {
    left: 0
}

.sbi_lb-nav a {
    position: absolute;
    z-index: 100;
    top: 0;
    height: 90%;
    outline: 0;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')
}

.sbi_lb-next,.sbi_lb-prev {
    height: 100%;
    cursor: pointer;
    display: block
}

.sbi_lb-nav a.sbi_lb-prev {
    left: -70px;
    float: left;
    transition: opacity .2s
}

.sbi_lb-nav a.sbi_lb-next {
    right: -70px;
    float: right;
    transition: opacity .2s
}

.sbi_lb-nav span {
    display: block;
    top: 55%;
    position: absolute;
    left: 20px;
    width: 34px;
    height: 45px;
    margin: -25px 0 0;
    background: var(--wpr-bg-57f51640-8f33-4163-8491-eff9235fbdc3) no-repeat
}

.sbi_lb-nav a.sbi_lb-prev span {
    background-position: -53px 0
}

.sbi_lb-nav a.sbi_lb-next span {
    left: auto;
    right: 20px;
    background-position: -18px 0
}

.sbi_lb-dataContainer {
    margin: 0 auto;
    padding-top: 10px;
    width: 100%;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-outerContainer {
    position: relative;
    padding-right: 300px;
    background: #fff;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-container-wrapper {
    position: relative;
    background: #000
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer {
    width: 300px!important;
    position: absolute;
    top: 0;
    right: -300px;
    height: 100%;
    bottom: 0;
    background: #fff;
    line-height: 1.4;
    overflow: hidden;
    overflow-y: auto;
    text-align: left
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox {
    display: block!important;
    width: 100%;
    margin-top: 20px;
    padding: 4px
}

#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number {
    padding-bottom: 0
}

#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption .sbi_caption_text {
    display: inline-block;
    padding-top: 10px
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-comment {
    display: block!important;
    width: 100%;
    min-width: 100%;
    float: left;
    clear: both;
    font-size: 12px;
    padding: 3px 20px 3px 0;
    margin: 0 0 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter {
    font-weight: 700;
    margin-right: 5px
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox p {
    text-align: left
}

.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer {
    box-sizing: border-box;
    padding: 15px 20px
}

.sbi_lb-data {
    padding: 0 4px;
    color: #ccc
}

.sbi_lb-data .sbi_lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1
}

.sbi_lb-data .sbi_lb-caption {
    float: left;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    padding-bottom: 3px;
    color: #ccc;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto
}

.sbi_lb-data .sbi_lb-caption a {
    color: #ccc;
    font-weight: 700;
    text-decoration: none
}

.sbi_lb-commenter:hover,.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,.sbi_lb-data .sbi_lb-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username {
    float: left;
    width: 100%;
    color: #ccc;
    padding-bottom: 0;
    display: block;
    margin: 0 0 5px
}

#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number,#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a,#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption .sbi_lightbox_username p,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_username {
    color: #333
}

.sbi_lightbox .sbi_lightbox_username img {
    float: left;
    border: none;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background: #666;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

.sbi_lightbox_username p {
    float: left;
    margin: 0;
    padding: 0;
    color: #ccc;
    line-height: 32px;
    font-weight: 700;
    font-size: 13px
}

.sbi_lb-data .sbi_lb-number {
    display: block;
    float: left;
    clear: both;
    padding: 5px 0 15px;
    font-size: 12px;
    color: #999
}

.sbi_lb-data .sbi_lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: #aaa;
    text-align: right;
    outline: 0;
    opacity: .7;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s
}

.sbi_lb-data .sbi_lb-close:hover {
    cursor: pointer;
    opacity: 1;
    color: #fff
}

.sbi_lb-nav {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: auto
}

.sbi-feed-block-cta,.sbi-feed-block-cta-img-ctn {
    width: 100%!important;
    position: relative!important
}

.sbi_lightbox .sbi_owl-item:nth-child(n+2) .sbi_video {
    position: relative!important
}

.sbi_lb-container {
    padding: 0
}

.sbi-feed-block-cta {
    border: 1px solid #e8e8eb!important;
    border-radius: 2px!important;
    text-align: center!important
}

.sbi-feed-block-cta-img-ctn {
    float: left!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    margin-top: 50px!important;
    margin-bottom: 35px!important
}

.sbi-feed-block-cta-img {
    width: 65px!important;
    height: 65px!important;
    position: relative!important;
    border: 2px solid #dcdde1!important;
    border-radius: 16px!important;
    -webkit-transform: rotate(-3deg)!important;
    transform: rotate(-3deg)!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important
}

.sbi-feed-block-cta-img span svg {
    float: left!important
}

.sbi-feed-block-cta-img>* {
    -webkit-transform: rotate(3deg)!important;
    transform: rotate(3deg)!important
}

.sbi-feed-block-cta-logo {
    position: absolute!important;
    right: -15px!important;
    bottom: -19px!important;
    z-index: 1!important
}

.sbi-feed-block-cta-heading {
    font-size: 19px!important;
    padding: 0!important;
    margin: 0 0 30px!important;
    display: inline-block!important;
    width: 100%!important;
    font-weight: 700!important;
    line-height: 1.4em!important
}

.sbi-feed-block-cta-btn {
    background: #0068a0!important;
    border-radius: 2px!important;
    padding: 8px 20px 8px 38px!important;
    cursor: pointer!important;
    color: #fff!important;
    position: relative!important;
    margin-bottom: 30px!important
}

.sbi-feed-block-cta-btn:after,.sbi-feed-block-cta-btn:before {
    content: ''!important;
    position: absolute!important;
    width: 2px!important;
    height: 12px!important;
    background: #fff!important;
    left: 20px!important;
    top: 14px!important
}

.sbi-feed-block-cta-btn:after {
    -webkit-transform: rotate(90deg)!important;
    transform: rotate(90deg)!important
}

.sbi-feed-block-cta-desc {
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    padding: 20px!important;
    background: #f9f9fa!important;
    border-top: 1px solid #e8e8eb!important;
    margin-top: 35px!important;
    flex-direction: column!important
}

.sbi-feed-block-cta-desc strong {
    color: #141b38!important;
    font-size: 16px!important;
    font-weight: 600!important;
    margin-bottom: 8px!important
}

.sbi-feed-block-cta-desc span {
    color: #434960!important;
    font-size: 14px!important;
    line-height: 1.5em!important;
    padding: 0 20%!important
}

.sbi-feed-block-cta-desc span a,.sbi-feed-block-cta-selector span a {
    text-transform: capitalize!important;
    text-decoration: underline!important;
    font-weight: 600!important
}

.sbi-feed-block-cta-selector {
    width: 100%!important;
    padding: 0 20%!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    flex-direction: column!important;
    margin-bottom: 45px!important
}

.sbi-feed-block-cta-feedselector {
    border: 1px solid #d0d1d7!important;
    padding: 8px 16px!important;
    margin-bottom: 15px!important;
    max-width: 100%!important;
    min-width: 400px!important
}

.sbi-feed-block-cta-selector span {
    color: #2c324c!important
}

.sbi-feed-block-cta-selector span a:after {
    color: #2c324c!important;
    margin-left: 2px!important;
    font-weight: 400!important;
    text-decoration-color: #fff!important
}

.sbi-feed-block-cta-selector span a:first-of-type:after {
    content: ','!important
}

.sbi-feed-block-cta-selector span a:nth-of-type(2):after {
    content: 'or'!important;
    margin-left: 5px!important;
    margin-right: 2px!important
}

.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed::before {
    content: ''!important;
    height: 16px!important;
    font-variant: normal!important;
    background-position: center center!important;
    background-repeat: no-repeat!important
}

.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9056 18.109H13.4056V17.609H12.9056V18.109ZM9.79722 18.109H9.29722V18.609H9.79722V18.109ZM9.79722 14.5601V14.0601H9.29722V14.5601H9.79722ZM12.9056 14.5601V15.0601H13.4056V14.5601H12.9056ZM20.2604 7.32764H20.7604V6.90407L20.3426 6.83444L20.2604 7.32764ZM20.2604 10.3503V10.8503H20.7604V10.3503H20.2604ZM16.7237 14.5601H16.2237V15.0601H16.7237V14.5601ZM20.1258 14.5601L20.6199 14.6367L20.7094 14.0601H20.1258V14.5601ZM19.5751 18.109V18.609H20.0035L20.0692 18.1857L19.5751 18.109ZM16.7237 18.109V17.609H16.2237V18.109H16.7237ZM27.0523 14.5601H26.5523L26.5523 14.5612L27.0523 14.5601ZM17.0803 26.6136L16.9877 26.1222L17.0803 26.6136ZM12.5489 26.6139L12.6411 26.1225L12.5489 26.6139ZM14.8147 1.79797C7.80749 1.79797 2.07703 7.51685 2.07703 14.5601H3.07703C3.07703 8.06849 8.36042 2.79797 14.8147 2.79797V1.79797ZM2.07703 14.5601C2.07703 20.7981 6.54984 25.9974 12.4567 27.1053L12.6411 26.1225C7.19999 25.1019 3.07703 20.3097 3.07703 14.5601H2.07703ZM13.4056 26.3139V18.109H12.4056V26.3139H13.4056ZM12.9056 17.609H9.79722V18.609H12.9056V17.609ZM10.2972 18.109V14.5601H9.29722V18.109H10.2972ZM9.79722 15.0601H12.9056V14.0601H9.79722V15.0601ZM13.4056 14.5601V11.8556H12.4056V14.5601H13.4056ZM13.4056 11.8556C13.4056 10.4191 13.8299 9.36825 14.5211 8.67703C15.2129 7.98525 16.2305 7.59512 17.5314 7.59512V6.59512C16.0299 6.59512 14.7346 7.04939 13.814 7.96992C12.893 8.891 12.4056 10.2204 12.4056 11.8556H13.4056ZM17.5314 7.59512C18.1724 7.59512 18.8342 7.65119 19.3401 7.70823C19.592 7.73664 19.8029 7.76502 19.9504 7.78622C20.0241 7.79681 20.0818 7.8056 20.1208 7.81167C20.1402 7.81471 20.155 7.81706 20.1647 7.81863C20.1695 7.81941 20.1731 7.82 20.1754 7.82037C20.1765 7.82056 20.1773 7.82069 20.1778 7.82077C20.178 7.82081 20.1782 7.82083 20.1782 7.82084C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1782 7.82084 20.1782 7.82084 20.2604 7.32764C20.3426 6.83444 20.3426 6.83443 20.3425 6.83443C20.3425 6.83442 20.3424 6.83441 20.3424 6.83441C20.3423 6.83439 20.3422 6.83437 20.342 6.83435C20.3418 6.8343 20.3414 6.83425 20.341 6.83417C20.3401 6.83403 20.3389 6.83383 20.3373 6.83357C20.3342 6.83307 20.3298 6.83234 20.3241 6.83142C20.3127 6.82958 20.2962 6.82695 20.2749 6.82362C20.2323 6.81698 20.1707 6.8076 20.0927 6.7964C19.9369 6.774 19.7157 6.74425 19.4521 6.71453C18.927 6.65532 18.2243 6.59512 17.5314 6.59512V7.59512ZM19.7604 7.32764V10.3503H20.7604V7.32764H19.7604ZM20.2604 9.85033H18.7185V10.8503H20.2604V9.85033ZM18.7185 9.85033C17.851 9.85033 17.1997 10.1241 16.7742 10.6148C16.3604 11.0922 16.2237 11.7025 16.2237 12.2594H17.2237C17.2237 11.8495 17.3257 11.5053 17.5298 11.2699C17.7224 11.0477 18.0684 10.8503 18.7185 10.8503V9.85033ZM16.2237 12.2594V14.5601H17.2237V12.2594H16.2237ZM16.7237 15.0601H20.1258V14.0601H16.7237V15.0601ZM19.6317 14.4834L19.081 18.0323L20.0692 18.1857L20.6199 14.6367L19.6317 14.4834ZM19.5751 17.609H16.7237V18.609H19.5751V17.609ZM16.2237 18.109V26.3135H17.2237V18.109H16.2237ZM17.1728 27.105C20.0281 26.5671 22.618 25.068 24.5079 22.8512L23.7469 22.2025C22.0054 24.2452 19.6188 25.6266 16.9877 26.1222L17.1728 27.105ZM24.5079 22.8512C26.4793 20.5388 27.5591 17.5977 27.5523 14.559L26.5523 14.5612C26.5586 17.3614 25.5636 20.0715 23.7469 22.2025L24.5079 22.8512ZM27.5523 14.5601C27.5523 7.51685 21.8218 1.79797 14.8147 1.79797V2.79797C21.2689 2.79797 26.5523 8.06849 26.5523 14.5601H27.5523ZM16.2237 26.3135C16.2237 26.8064 16.6682 27.2 17.1728 27.105L16.9877 26.1222C17.119 26.0975 17.2237 26.2006 17.2237 26.3135H16.2237ZM12.4567 27.1053C12.9603 27.1998 13.4056 26.8073 13.4056 26.3139H12.4056C12.4056 26.2001 12.5107 26.098 12.6411 26.1225L12.4567 27.1053Z' fill='%232b87da' /%3E%3Cpath d='M12.9056 18.1088H13.4056V17.6088H12.9056V18.1088ZM9.79724 18.1088H9.29724V18.6088H9.79724V18.1088ZM9.79724 14.5599V14.0599H9.29724V14.5599H9.79724ZM12.9056 14.5599V15.0599H13.4056V14.5599H12.9056ZM20.2604 7.32749H20.7604V6.90392L20.3426 6.83429L20.2604 7.32749ZM20.2604 10.3502V10.8502H20.7604V10.3502H20.2604ZM16.7237 14.5599H16.2237V15.0599H16.7237V14.5599ZM20.1258 14.5599L20.6199 14.6366L20.7094 14.0599H20.1258V14.5599ZM19.5751 18.1088V18.6088H20.0035L20.0692 18.1855L19.5751 18.1088ZM16.7237 18.1088V17.6088H16.2237V18.1088H16.7237ZM13.4056 26.366V18.1088H12.4056V26.366H13.4056ZM12.9056 17.6088H9.79724V18.6088H12.9056V17.6088ZM10.2972 18.1088V14.5599H9.29724V18.1088H10.2972ZM9.79724 15.0599H12.9056V14.0599H9.79724V15.0599ZM13.4056 14.5599V11.8554H12.4056V14.5599H13.4056ZM13.4056 11.8554C13.4056 10.4189 13.8299 9.3681 14.5212 8.67688C15.2129 7.9851 16.2305 7.59497 17.5314 7.59497V6.59497C16.0299 6.59497 14.7346 7.04924 13.814 7.96977C12.893 8.89085 12.4056 10.2202 12.4056 11.8554H13.4056ZM17.5314 7.59497C18.1724 7.59497 18.8342 7.65103 19.3401 7.70808C19.592 7.73648 19.803 7.76487 19.9504 7.78607C20.0241 7.79666 20.0819 7.80545 20.1208 7.81152C20.1402 7.81455 20.155 7.81691 20.1647 7.81848C20.1695 7.81926 20.1731 7.81984 20.1754 7.82022C20.1765 7.8204 20.1773 7.82054 20.1778 7.82061C20.178 7.82065 20.1782 7.82068 20.1783 7.82069C20.1783 7.8207 20.1783 7.8207 20.1783 7.8207C20.1783 7.8207 20.1783 7.82069 20.1783 7.82069C20.1782 7.82069 20.1782 7.82068 20.2604 7.32749C20.3426 6.83429 20.3426 6.83428 20.3425 6.83427C20.3425 6.83427 20.3424 6.83426 20.3424 6.83425C20.3423 6.83424 20.3422 6.83422 20.3421 6.8342C20.3418 6.83415 20.3414 6.83409 20.341 6.83402C20.3401 6.83387 20.3389 6.83367 20.3374 6.83342C20.3343 6.83291 20.3298 6.83219 20.3241 6.83127C20.3127 6.82943 20.2962 6.82679 20.2749 6.82347C20.2324 6.81683 20.1707 6.80745 20.0927 6.79624C19.9369 6.77385 19.7158 6.7441 19.4522 6.71438C18.927 6.65516 18.2244 6.59497 17.5314 6.59497V7.59497ZM19.7604 7.32749V10.3502H20.7604V7.32749H19.7604ZM20.2604 9.85018H18.7185V10.8502H20.2604V9.85018ZM18.7185 9.85018C17.8511 9.85018 17.1997 10.1239 16.7743 10.6146C16.3604 11.092 16.2237 11.7024 16.2237 12.2592H17.2237C17.2237 11.8493 17.3257 11.5052 17.5298 11.2697C17.7224 11.0476 18.0684 10.8502 18.7185 10.8502V9.85018ZM16.2237 12.2592V14.5599H17.2237V12.2592H16.2237ZM16.7237 15.0599H20.1258V14.0599H16.7237V15.0599ZM19.6317 14.4833L19.081 18.0322L20.0692 18.1855L20.6199 14.6366L19.6317 14.4833ZM19.5751 17.6088H16.7237V18.6088H19.5751V17.6088ZM16.2237 18.1088V26.366H17.2237V18.1088H16.2237ZM16.4146 26.1752H13.2148V27.1752H16.4146V26.1752ZM16.2237 26.366C16.2237 26.2606 16.3092 26.1752 16.4146 26.1752V27.1752C16.8615 27.1752 17.2237 26.8129 17.2237 26.366H16.2237ZM12.4056 26.366C12.4056 26.8129 12.7679 27.1752 13.2148 27.1752V26.1752C13.3202 26.1752 13.4056 26.2606 13.4056 26.366H12.4056Z' fill='%232b87da'/%3E%3C/svg%3E%0A")
}

.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='22' height='22' rx='6' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='5' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='18.5' cy='5.75' r='1.25' fill='%232b87da'/%3E%3C/svg%3E%0A")
}

.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.8762 6.78846C27.9345 6.7065 27.8465 6.60094 27.7536 6.63936C27.0263 6.93989 26.26 7.15757 25.4698 7.29241C25.3632 7.31061 25.3082 7.16347 25.3956 7.09969C26.2337 6.48801 26.8918 5.63649 27.2636 4.63802C27.2958 4.55162 27.2014 4.47574 27.1212 4.52123C26.1605 5.06618 25.1092 5.45524 24.0054 5.68842C23.971 5.69568 23.9354 5.68407 23.9113 5.65844C22.9264 4.60891 21.5545 4 19.9999 4C17.0624 4 14.6624 6.4 14.6624 9.3625C14.6624 9.74071 14.702 10.109 14.7724 10.4586C14.7855 10.5235 14.7342 10.5842 14.6681 10.5803C10.3227 10.3231 6.45216 8.2421 3.84135 5.09864C3.79681 5.04501 3.71241 5.0515 3.67879 5.11257C3.26061 5.8722 3.02493 6.75115 3.02493 7.675C3.02493 9.41548 3.84362 10.9704 5.13417 11.9317C5.2141 11.9913 5.17327 12.12 5.07385 12.1129C4.32811 12.0597 3.63173 11.835 3.00827 11.5171C2.99303 11.5094 2.97493 11.5204 2.97493 11.5375V11.5375C2.97493 13.9896 4.6205 16.0638 6.86301 16.7007C6.96452 16.7295 6.96588 16.8757 6.86218 16.8953C6.25772 17.0096 5.63724 17.0173 5.0289 16.9176C4.95384 16.9052 4.89095 16.9762 4.91633 17.0479C5.26967 18.0466 5.91213 18.9192 6.7637 19.5537C7.58576 20.1661 8.56481 20.5283 9.58351 20.6001C9.67715 20.6067 9.71634 20.7266 9.64124 20.7829C7.78574 22.1744 5.52424 22.9237 3.19993 22.9125C2.91864 22.9125 2.63736 22.9015 2.35608 22.8796C2.25034 22.8714 2.20189 23.0116 2.29272 23.0664C4.58933 24.4509 7.27959 25.25 10.1499 25.25C19.9999 25.25 25.4124 17.075 25.4124 9.9875C25.4124 9.76833 25.4124 9.5598 25.4026 9.34228C25.4011 9.30815 25.4168 9.27551 25.4445 9.2555C26.3819 8.57814 27.1984 7.74079 27.8762 6.78846Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
}

.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed::before {
    background-image: url("data:image/svg+xml,%3Csvg width='27' height='20' viewBox='0 0 27 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 13.3267C11 13.4037 11.0834 13.4518 11.15 13.4133L17.3377 9.83658C17.4043 9.79808 17.4043 9.70192 17.3377 9.66342L11.15 6.08673C11.0834 6.0482 11 6.0963 11 6.17331V13.3267ZM25.45 3.7125C25.6125 4.3 25.725 5.0875 25.8 6.0875C25.8875 7.0875 25.925 7.95 25.925 8.7L26 9.75C26 12.4875 25.8 14.5 25.45 15.7875C25.1375 16.9125 24.4125 17.6375 23.2875 17.95C22.7 18.1125 21.625 18.225 19.975 18.3C18.35 18.3875 16.8625 18.425 15.4875 18.425L13.5 18.5C8.2625 18.5 5 18.3 3.7125 17.95C2.5875 17.6375 1.8625 16.9125 1.55 15.7875C1.3875 15.2 1.275 14.4125 1.2 13.4125C1.1125 12.4125 1.075 11.55 1.075 10.8L1 9.75C1 7.0125 1.2 5 1.55 3.7125C1.8625 2.5875 2.5875 1.8625 3.7125 1.55C4.3 1.3875 5.375 1.275 7.025 1.2C8.65 1.1125 10.1375 1.075 11.5125 1.075L13.5 1C18.7375 1 22 1.2 23.2875 1.55C24.4125 1.8625 25.1375 2.5875 25.45 3.7125Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
}

.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a {
    border: none;
    color: #fff;
    font-size: 13px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:after,.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:before {
    top: 10px!important
}
