.eib-ismark-showcase {
  --eib-background-color: #17375f;
  --eib-overlay-color: #17375f;
  --eib-overlay-opacity: .78;
  --eib-top-bar-color: #244f80;
  --eib-top-bar-height: 6px;
  --eib-bottom-bar-color: #244f80;
  --eib-bottom-bar-height: 6px;
  --eib-padding-top: 24px;
  --eib-padding-bottom: 24px;
  --eib-padding-mobile-top: 22px;
  --eib-padding-mobile-bottom: 22px;
  --eib-container-width: 1180px;
  --eib-title-color: #fff;
  --eib-title-size-desktop: 15px;
  --eib-title-size-mobile: 14px;
  --eib-title-align: center;
  --eib-gap-desktop: 22px;
  --eib-gap-tablet: 20px;
  --eib-gap-mobile: 16px;
  --eib-columns-desktop: 5;
  --eib-columns-tablet: 3;
  --eib-columns-mobile: 2;
  --eib-logo-height-desktop: 42px;
  --eib-logo-height-tablet: 38px;
  --eib-logo-height-mobile: 34px;
  --eib-item-min-height: 48px;
  --eib-logo-opacity: 1;
  --eib-transition-speed: 500ms;
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background-color: var(--eib-background-color);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc(var(--eib-padding-top) + var(--eib-top-bar-height)) 20px calc(var(--eib-padding-bottom) + var(--eib-bottom-bar-height));
}

.eib-ismark-showcase.eib-transparent-background {
  background-color: transparent;
  background-image: none !important;
}

.eib-ismark-showcase.eib-transparent-background .eib-ismark-overlay {
  display: none;
}

.eib-ismark-showcase *,
.eib-ismark-showcase *::before,
.eib-ismark-showcase *::after {
  box-sizing: border-box;
}

.eib-ismark-overlay,
.eib-ismark-top-bar,
.eib-ismark-bottom-bar {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.eib-ismark-overlay {
  z-index: -2;
  inset: 0;
  height: 100%;
  background: var(--eib-overlay-color);
  opacity: var(--eib-overlay-opacity);
}

.eib-ismark-top-bar,
.eib-ismark-bottom-bar {
  z-index: -1;
}

.eib-ismark-top-bar {
  top: 0;
  height: var(--eib-top-bar-height);
  background: var(--eib-top-bar-color);
}

.eib-ismark-bottom-bar {
  bottom: 0;
  height: var(--eib-bottom-bar-height);
  background: var(--eib-bottom-bar-color);
}

.eib-ismark-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--eib-container-width);
  margin: 0 auto;
}

.eib-ismark-title {
  margin: 0 0 14px;
  padding: 0;
  color: var(--eib-title-color);
  font: inherit;
  font-size: var(--eib-title-size-desktop);
  font-weight: 600;
  line-height: 1.25;
  text-align: var(--eib-title-align);
  letter-spacing: 0;
}

.eib-ismark-stage {
  position: relative;
  width: 100%;
}

.eib-ismark-viewport {
  width: 100%;
  overflow: visible;
}

.eib-ismark-track {
  display: grid;
  grid-template-columns: repeat(var(--eib-columns-desktop), minmax(0, 1fr));
  align-items: center;
  gap: var(--eib-gap-desktop);
  width: 100%;
  transform: translate3d(0, 0, 0);
}

.eib-ismark-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: var(--eib-item-min-height);
  padding: 2px 4px;
}

.eib-ismark-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  text-decoration: none;
}

.eib-ismark-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: var(--eib-logo-height-desktop);
  margin: 0 auto;
  border: 0;
  object-fit: contain;
  opacity: var(--eib-logo-opacity);
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}

.eib-logos-grayscale .eib-ismark-logo {
  filter: grayscale(1);
}

.eib-ismark-link:hover .eib-ismark-logo,
.eib-ismark-link:focus-visible .eib-ismark-logo {
  opacity: 1;
  transform: translateY(-1px) scale(1.015);
}

.eib-ismark-link:focus-visible,
.eib-ismark-arrow:focus-visible,
.eib-ismark-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.eib-ismark-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(9, 33, 62, .72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease;
}

.eib-ismark-arrow:hover {
  background: rgba(9, 33, 62, .95);
  border-color: rgba(255, 255, 255, .8);
}

.eib-ismark-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.eib-ismark-prev { left: -12px; }
.eib-ismark-next { right: -12px; }

.eib-ismark-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 8px;
  margin-top: 13px;
}

.eib-ismark-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.eib-ismark-dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: #fff;
}

/* Slider mode is enabled by JS according to the active breakpoint. */
.eib-ismark-showcase.is-slider .eib-ismark-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.eib-ismark-showcase.is-slider .eib-ismark-track {
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform var(--eib-transition-speed) cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.eib-ismark-showcase.is-slider .eib-ismark-item {
  flex: 0 0 calc(100% / var(--eib-items-per-view, 5));
  padding-left: calc(var(--eib-active-gap, var(--eib-gap-desktop)) / 2);
  padding-right: calc(var(--eib-active-gap, var(--eib-gap-desktop)) / 2);
}

.eib-ismark-showcase.is-slider.eib-show-arrows .eib-ismark-arrow {
  display: flex;
}

.eib-ismark-showcase.is-slider.eib-show-dots .eib-ismark-dots {
  display: flex;
}

.eib-ismark-showcase:not(.is-slider) .eib-ismark-arrow,
.eib-ismark-showcase:not(.is-slider) .eib-ismark-dots,
.eib-ismark-showcase.is-single-page .eib-ismark-arrow,
.eib-ismark-showcase.is-single-page .eib-ismark-dots {
  display: none !important;
}

.eib-ismark-empty {
  padding: 12px 16px;
  border: 1px dashed #c3c4c7;
  background: #fff;
  color: #50575e;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1024px) {
  .eib-ismark-track {
    grid-template-columns: repeat(var(--eib-columns-tablet), minmax(0, 1fr));
    gap: var(--eib-gap-tablet);
  }

  .eib-ismark-logo {
    max-height: var(--eib-logo-height-tablet);
  }

  .eib-ismark-showcase.is-slider .eib-ismark-item {
    padding-left: calc(var(--eib-active-gap, var(--eib-gap-tablet)) / 2);
    padding-right: calc(var(--eib-active-gap, var(--eib-gap-tablet)) / 2);
  }
}

@media (max-width: 767px) {
  .eib-ismark-showcase {
    padding: calc(var(--eib-padding-mobile-top) + var(--eib-top-bar-height)) 16px calc(var(--eib-padding-mobile-bottom) + var(--eib-bottom-bar-height));
  }

  .eib-ismark-title {
    margin-bottom: 14px;
    font-size: var(--eib-title-size-mobile);
  }

  .eib-ismark-track {
    grid-template-columns: repeat(var(--eib-columns-mobile), minmax(0, 1fr));
    gap: var(--eib-gap-mobile);
  }

  .eib-ismark-logo {
    max-height: var(--eib-logo-height-mobile);
  }

  .eib-ismark-showcase.is-slider .eib-ismark-item {
    padding-left: calc(var(--eib-active-gap, var(--eib-gap-mobile)) / 2);
    padding-right: calc(var(--eib-active-gap, var(--eib-gap-mobile)) / 2);
  }

  .eib-ismark-prev { left: -8px; }
  .eib-ismark-next { right: -8px; }
  .eib-ismark-arrow { width: 31px; height: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  .eib-ismark-track,
  .eib-ismark-logo,
  .eib-ismark-arrow,
  .eib-ismark-dot {
    transition-duration: .001ms !important;
  }
}
