/*----- SLIDESHOW SETUP - Open -----*/
/* Theme-safe: Olivero and other themes style global .view / .view-content as CSS grid. */
.paragraph--type--apb-pb-slideshow .apb-ss-splide-wrap .apb-ss-main,
.paragraph--type--apb-pb-slideshow .apb-ss-splide-wrap .apb-ss-slides {
  display: block;
  gap: unset;
  grid-template-rows: unset;
}
.paragraph--type--apb-pb-slideshow .apb-ss-splide-wrap .splide__list {
  display: flex;
  height: 100%;
}

/* Slideshow paragraph rules (node or block host). */
.paragraph--type--apb-pb-slideshow .splide__slide.apb-slideshow-row {
  height: auto;
}
.paragraph--type--apb-pb-slideshow .splide:not(.apb-slideshow-bullets-under) ul.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 4;
}
.paragraph--type--apb-pb-slideshow .apb-ss-splide-wrap.apb-slideshow-bullets-under > ul.splide__pagination,
.paragraph--type--apb-pb-slideshow .apb-ss-splide-wrap.apb-slideshow-bullets-under > .splide__pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0 0 !important;
  padding: 0 !important;
  position: static;
  width: 100%;
}
.paragraph--type--apb-pb-slideshow .apb-ss-only-one .splide__arrows,
.paragraph--type--apb-pb-slideshow .apb-ss-only-one .splide__pagination {
  display: none !important;
}
.paragraph--type--apb-pb-slideshow .splide__arrow {
  background: #ffffff !important;
  opacity: 0;
}
.paragraph--type--apb-pb-slideshow .splide:hover .splide__arrow {
  opacity: 1;
}

/* Title + intro share a content column; only the Splide track uses apb-full-width (JS). */
.paragraph--type--apb-pb-slideshow .apb-pb-container__content > h2.apb-section-title,
.paragraph--type--apb-pb-slideshow .apb-pb-container__content > .field--name-field-apb-section-title,
.paragraph--type--apb-pb-slideshow > h2.apb-section-title,
.paragraph--type--apb-pb-slideshow > .field--name-field-apb-section-title,
.paragraph--type--apb-pb-slideshow .apb-pb-container__content > .apb-slideshow-intro,
.paragraph--type--apb-pb-slideshow > .apb-slideshow-intro {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1270px;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.paragraph--type--apb-pb-slideshow .apb-pb-container__content > .apb-slideshow-intro,
.paragraph--type--apb-pb-slideshow > .apb-slideshow-intro {
  margin-bottom: 1.5rem;
}

/* Splide fade slides: row height comes from content wrapper, not collapsed absolute layers. */
.paragraph--type--apb-pb-slideshow .splide__slide.apb-slideshow-row {
  height: auto;
}

.apb-slideshow-top-region .apb-slideshow,
.apb-slideshow-bottom-region .apb-slideshow,
.paragraphs-item-apb-pb-slideshow {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}
.apb-slideshow-top-region,
.apb-slideshow-bottom-region {
  margin: 30px auto;
  max-width: 1600px;
  width: 100%;
}
.apb-slideshow-row .apb-ss-content-wrapper {
  display: flex;
  margin: 0 auto;
  max-width: 1270px;
  overflow: hidden;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.apb-slideshow-row.apb-ss-row-fill .apb-ss-content-wrapper {
  overflow: visible;
}

.apb-slideshow-row {
  background-color: #ddd;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  min-height: 300px;
  position: relative;
  width: 100%;
}

/* Image layer only — content stays in flow so min-height applies with no extra gap. */
.apb-slideshow-row > .apb-slideshow-bg {
  background-color: #ddd;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.apb-slideshow-row .apb-ss-micro,
.apb-slideshow-row .apb-ss-bg-video,
.apb-slideshow-row .apb-ss-bg-video-mob,
.apb-slideshow-row .apb-ss-bg-video-thumb {
  display: none !important;
}

.apb-slideshow-row .apb-ss-content-full {
  position: relative;
  width: 100%;
  z-index: 3;
}

/* Slide min-height on content-full + wrapper (not on .apb-ss-content). */
.apb-slideshow-row.apb-ss-row-fill .apb-ss-content-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.apb-slideshow-row.apb-ss-row-fill .apb-ss-content-wrapper {
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}

/* Boxed / horizontal full: body box is only as tall as text; ver position on wrapper. */
.apb-slideshow-row.apb-ss-row-fill:not(.apb-ss-row-body-fill) .apb-ss-content-wrapper.apb-ss-vertical-top {
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.apb-slideshow-row.apb-ss-row-fill:not(.apb-ss-row-body-fill) .apb-ss-content-wrapper.apb-ss-vertical-center {
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.apb-slideshow-row.apb-ss-row-fill:not(.apb-ss-row-body-fill) .apb-ss-content-wrapper.apb-ss-vertical-bottom {
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.apb-slideshow-row.apb-ss-row-fill:not(.apb-ss-row-body-fill) .apb-ss-content-wrapper > .apb-ss-content {
  -webkit-align-self: auto !important;
  align-self: auto !important;
  -webkit-box-flex: 0 0 auto !important;
  -webkit-flex: 0 0 auto !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
  height: auto;
  min-height: 0;
}

/* Vertical full: body container fills slide min-height; text aligned inside. */
.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper {
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper.apb-ss-vertical-top,
.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper.apb-ss-vertical-center,
.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper.apb-ss-vertical-bottom {
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper > .apb-ss-content {
  -webkit-align-self: stretch !important;
  align-self: stretch !important;
  -webkit-box-flex: 1 1 auto !important;
  -webkit-flex: 1 1 auto !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
  height: auto;
  min-height: 100%;

  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper.apb-ss-vertical-top > .apb-ss-content {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper.apb-ss-vertical-center > .apb-ss-content {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.apb-slideshow-row.apb-ss-row-body-fill .apb-ss-content-wrapper.apb-ss-vertical-bottom > .apb-ss-content {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.apb-slideshow-mobile img {
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  width: 100% !important;
}
.apb-slideshow-mobile {
  background-color: #ddd;
  display: none;
  position: relative;
  z-index: 2;
}
#presentation-region .apb-slideshow-row,
#presentation-region .apb-slideshow-mobile,
#presentation-region .apb-slideshow-bg {
  background-color: transparent;
}
.apb-ss-wrapper-body h2,
.apb-ss-wrapper-body h3,
.apb-ss-wrapper-body h4,
.apb-ss-wrapper-body h5,
.apb-ss-wrapper-body h6 {
  margin: 0 0 1rem 0 !important;
}
.apb-ss-wrapper-body p:last-child {
  margin-bottom: 0 !important;
}
.apb-ss-wrapper-body img {
  display: inline-block !important;
  height: auto !important;
  max-width: 100% !important;
  width: auto !important;
}
.apb-ss-content-inner {
  padding: 0 !important;
}
.apb-slideshow-row .apb-ss-content-full .apb-ss-wrapper-body {
  position: relative;
  z-index: 1;
}

/* SPLIDE JS */
.splide__track--nav > .splide__list > .splide__slide {
  cursor: default;
  border: none !important;
}

/* Bullet over Slides: pagination overlays the slide (Splide default positioning). */
.paragraph--type--apb-pb-slideshow .splide:not(.apb-slideshow-bullets-under) ul.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 4;
}

/* Bullet under Slides: pagination below the track, centered (like thumbnails). */
.apb-ss-splide-wrap.apb-slideshow-bullets-under > ul.splide__pagination,
.apb-ss-splide-wrap.apb-slideshow-bullets-under > .splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0.5rem 0 0 0 !important;
  padding: 0 !important;
  position: static;
  width: 100%;
}

ul.splide__pagination {
  gap: 0.125rem;
  margin: 0 !important;
}
ul.splide__pagination li[role="presentation"] {
  margin: 0;
  padding: 0;
}
ul.splide__pagination li[role="presentation"]::before {
  display: none !important;
}

ul.splide__pagination li[role="presentation"] button {
  padding: 0;
}

.apb-ss-only-one .splide__arrows,
.apb-ss-only-one .splide__pagination {
  display: none !important;
}

.apb-slideshow-thumbs .splide__list {
  gap: 0.5rem !important;
  margin: 0.5rem 0 0 0 !important;
  padding: 0 !important;
}
.apb-slideshow-thumbs .splide__slide {
  margin: 0;
  padding: 0;
}
.apb-slideshow-thumbs .splide__slide::before {
  display: none !important;
}
.apb-slideshow-thumbs .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apb-slideshow-slide-thumbs {
  background-color: #ddd;
  cursor: pointer !important;
  overflow: hidden;
  position: relative;
}

.apb-slideshow-slide-thumbs img {
  height: 100%;
  left: 0;
  position: absolute;
  transform: scale(1);
  width: 100%;
  bottom: 0;
  transform-origin: top center;
}
.apb-slideshow-slide-thumbs:hover img {
  transform: scale(1.5);
}

.apb-slideshow-slide-title {
  background: rgba(0, 0, 0, 0.35);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  left: 0;
  line-height: 120%;
  opacity: 0;
  padding: 0.875rem;
  position: absolute;
  transform: translateY(0.875rem);
  width: 100%;
  z-index: 2;
}
.apb-slideshow-slide-thumbs:hover .apb-slideshow-slide-title {
  opacity: 1;
  transform: translateY(0);
}
.apb-slideshow-slide-marker {
  border: 3px solid #aaaaaa;
  bottom: 0;
  display: block;
  filter: brightness(132%);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}
.splide__arrow {
  position: absolute;
  padding: 0;
  opacity: 0;
}
.apb-slideshow-slide-thumbs.is-active .apb-slideshow-slide-marker,
.splide:hover .splide__arrow {
  opacity: 1;
}
.apb-slideshow-thumbs .splide__arrow,
.view-apb-pi-slideshow .splide__arrow {
  background: transparent;
  height: 2.4rem;
  width: 2.4rem;
}
.apb-slideshow-thumbs .splide__arrow--prev,
.view-apb-pi-slideshow .splide__arrow--prev {
  left: 0;
}
.apb-slideshow-thumbs .splide__arrow--prev:active,
.view-apb-pi-slideshow .splide__arrow--prev:active {
  left: -0.313rem;
}
.apb-slideshow-thumbs .splide__arrow--next,
.view-apb-pi-slideshow .splide__arrow--next {
  right: 0;
}
.apb-slideshow-thumbs .splide__arrow--next:active,
.view-apb-pi-slideshow .splide__arrow--next:active {
  right: -0.313rem;
}
.apb-slideshow-thumbs .splide__arrow svg,
.view-apb-pi-slideshow .splide__arrow svg {
  fill: #ffffff;
  filter: drop-shadow(0 0 0.25rem rgb(0 0 0 / 0.4));
  height: 1.4rem;
  transform-origin: center;
  width: 1.4rem;
}
.apb-slideshow-thumbs .splide__arrow--prev:hover svg,
.view-apb-pi-slideshow .splide__arrow--prev:hover svg {
  transform: scale(-1.3, 1.3);
}
.apb-slideshow-thumbs .splide__arrow--next:hover svg,
.view-apb-pi-slideshow .splide__arrow--next:hover svg {
  transform: scale(1.3);
}

/*----- SLIDESHOW SETUP - Close -----*/

/*----- SLIDESHOW POSITION - Open -----*/
.apb-slideshow-row .apb-ss-horizontal-left .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-horizontal-center .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-horizontal-right .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-vertical-top .apb-ss-vertical-full,
.apb-slideshow-row .apb-ss-vertical-center .apb-ss-vertical-full,
.apb-slideshow-row .apb-ss-vertical-bottom .apb-ss-vertical-full,
.apb-slideshow-row .apb-ss-boxed-wrapper,
.apb-slideshow-row .apb-ss-horizontal-full-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  position: relative;
  z-index: 2;

  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;

  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;

  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;

  -ms-flex-pack: start !important;
}
.apb-slideshow-row .apb-ss-horizontal-full-wrapper {
  max-width: none !important;
}

.apb-slideshow-row .apb-ss-horizontal-left .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-horizontal-left {
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.apb-slideshow-row .apb-ss-horizontal-center .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-horizontal-center {
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.apb-slideshow-row .apb-ss-horizontal-right .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-horizontal-right {
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.apb-slideshow-row .apb-ss-horizontal-center .apb-ss-wrapper-body {
  margin: 0 auto;
}
.apb-slideshow-row .apb-ss-vertical-top .apb-ss-vertical-full,
.apb-slideshow-row .apb-ss-vertical-top {
  -webkit-align-content: flex-start !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;

  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.apb-slideshow-row .apb-ss-vertical-center .apb-ss-vertical-full,
.apb-slideshow-row .apb-ss-vertical-center {
  -webkit-align-content: center !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;

  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.apb-slideshow-row .apb-ss-vertical-bottom .apb-ss-vertical-full,
.apb-slideshow-row .apb-ss-vertical-bottom {
  -webkit-align-content: flex-end !important;
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;

  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.apb-slideshow-row .apb-ss-vertical-full-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  position: relative;
  z-index: 2;

  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;

  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;

  /* Stretch body container to slide height; ver/top/center/bottom live on .apb-ss-vertical-full. */
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;

  -ms-flex-pack: stretch !important;
}

.apb-slideshow-row .apb-ss-content {
  display: none;
  width: 100%;

  -ms-flex-order: 0 !important;
  -webkit-order: 0 !important;
  order: 0 !important;

  -webkit-flex: 0 0 auto !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;

  -ms-flex-item-align: auto !important;
  -webkit-align-self: auto !important;
  align-self: auto !important;
}
.apb-slideshow-row .apb-ss-boxed,
.apb-slideshow-row .apb-ss-horizontal-full,
.apb-slideshow-row .apb-ss-vertical-full {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.apb-slideshow-row .apb-ss-boxed .apb-ss-wrapper-body,
.apb-slideshow-row .apb-ss-horizontal-full .apb-ss-wrapper-body,
.apb-slideshow-row .apb-ss-vertical-full .apb-ss-wrapper-body {
  width: 100%;
}
.apb-slideshow-row .apb-ss-bg-overlay,
.apb-slideshow-row .apb-ss-overlay,
.apb-slideshow-row .apb-ss-full-link,
.apb-slideshow-row .apb-ss-full-link a {
  font-size: 0px;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}
.apb-slideshow-row .apb-ss-full-link a {
  display: block;
}

.apb-slideshow-row .apb-ss-bg-overlay,
.apb-slideshow-row .apb-ss-overlay {
  display: block;
  z-index: 1;
}
.apb-slideshow-row .apb-ss-content-full,
.apb-slideshow-row .apb-ss-slideshow-content {
  position: relative;
  z-index: 3;
}
.apb-slideshow-row .apb-ss-full-link {
  z-index: 4;
}
.apb-slideshow-row .apb-slideshow-bg-video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.apb-slideshow-row .apb-slideshow-bg-video--remote {
  border: 0;
  pointer-events: none;
}
/*----- SLIDESHOW POSITION - Close -----*/

/*----- SLIDESHOW EFFECTS - Open -----*/
.paragraph--type--apb-pb-slideshow .animate__animated {
  --animate-duration: 800ms;
}
.apb-slideshow-row .apb-ss-opacity {
  opacity: 0;
}

.apb-ss-efx-fade-in,
.apb-ss-efx-fade-in-bottom,
.apb-ss-efx-fade-in-left,
.apb-ss-efx-fade-in-right,
.apb-ss-efx-fade-in-top {
  opacity: 0;
}

/* FADE IN - Open */
.apb-ss-efx-fade-in.apb-anime {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* FADE IN - Close */

/* FADE IN BOTTOM - Open */
.apb-ss-efx-fade-in-bottom.apb-anime {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 3) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* FADE IN BOTTOM - Close */

/* FADE IN LEFT - Open */
.apb-ss-efx-fade-in-left.apb-anime {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/* FADE IN LEFT - Close */

/* FADE IN RIGHT - Open */
.apb-ss-efx-fade-in-right.apb-anime {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/* FADE IN RIGHT - Close */

/* FADE IN TOP - Open */
.apb-ss-efx-fade-in-top.apb-anime {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* FADE IN TOP - Close */

/*----- SLIDESHOW EFFECTS - Close -----*/

/*----- MOBILE - Open -----*/
@media all and (max-width: 680px) {
  .apb-slideshow-mobile {
    display: block;
  }
}
/*----- MOBILE - Close -----*/

/*----- IE - Open -----*/

/* SLIDESHOW */
.apb-ie .apb-ss-content-full {
  display: table !important;
  padding: 0 !important;
  width: 100%;
}
.apb-ie .apb-ss-content-wrapper {
  display: table-cell !important;
}
.apb-ie .apb-ss-content-wrapper .apb-ss-content {
  display: block;
}
/* Horizontal */
.apb-ie .apb-ss-content-wrapper.apb-ss-horizontal-center .apb-ss-content {
  margin: 0 auto !important;
}
.apb-ie .apb-ss-content-wrapper.apb-ss-horizontal-left .apb-ss-content {
  float: left !important;
}
.apb-ie .apb-ss-content-wrapper.apb-ss-horizontal-right .apb-ss-content {
  float: right !important;
}
/* Vertical */
.apb-ie .apb-ss-content-wrapper.apb-ss-vertical-bottom {
  vertical-align: bottom !important;
}
.apb-ie .apb-ss-content-wrapper.apb-ss-vertical-center {
  vertical-align: middle !important;
}
.apb-ie .apb-ss-content-wrapper.apb-ss-vertical-top {
  vertical-align: top !important;
}
/*----- IE - Close -----*/

/*----- CSS ANIME - Open -----*/
.splide__arrow,
.apb-slideshow-thumbs .splide__arrow svg,
.view-apb-pi-slideshow .splide__arrow svg {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.apb-slideshow-slide-title,
.apb-slideshow-slide-marker,
.splide__arrows {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.apb-slideshow-slide-thumbs img {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
/*----- CSS ANIME - Close -----*/
