.sgc-featured-slideshow .sgc-hidden-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sgc-featured-slideshow .sgc-hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.sgc-featured-slideshow .sgc-button:hover {
  color: rgb(var(--sgc-button-text-color, revert));
}

.sgc-featured-slideshow .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.sgc-featured-slideshow .sgc-button.loading::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin-block-start: -8px;
  margin-inline-start: -8px;
  content: "";
  border: 2px solid rgb(var(--sgc-button-text-color, revert));
  border-block-start-color: transparent;
  border-radius: 50%;
  animation: sgc-loading-spin 1s linear infinite;
}

.sgc-featured-slideshow .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-scan::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    hsl(0deg 0% 100% / 25%),
    transparent
  );
  transform: skew(-20deg) translateX(200%);
  transition: transform 0.5s cubic-bezier(0.01, 0.56, 1, 1);
}

.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-scan:focus::after,
.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

.sgc-featured-slideshow .sgc-button--style-normal.sgc-button--effect-shadow {
  transition: box-shadow 0.2s;
}

.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-shadow:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.sgc-featured-slideshow .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-scale::after {
  position: absolute;
  inset-block-start: calc(-1 * var(--sgc-button-border-thickness));
  inset-inline-start: calc(-1 * var(--sgc-button-border-thickness));
  display: block;
  width: calc(100% + var(--sgc-button-border-thickness) * 2);
  height: calc(100% + var(--sgc-button-border-thickness) * 2);
  pointer-events: none;
  content: "";
  border-radius: calc(var(--sgc-button-border-radius) + 1px);
  box-shadow: none;
  transition: box-shadow 0.2s;
}

.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.sgc-featured-slideshow
  .sgc-button--style-normal.sgc-button--effect-scale:hover::after {
  box-shadow: 0 0 0 1px
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
}

.sgc-featured-slideshow .sgc-button--style-link {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  background-color: transparent;
  border: none;
}

.sgc-featured-slideshow .sgc-button--style-link .sgc-button__text {
  position: relative;
}

.sgc-featured-slideshow .sgc-button--style-link .sgc-button__text::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  display: inline-block;
  width: 100%;
  line-height: 1;
  line-height: clamp(0.8, var(--sgc-button-line-height, revert), 1);
  color: transparent;
  content: "1";
  border-block-end: 1px solid rgb(var(--sgc-button-text-color, revert));
  transform: translateY(-50%);
}

.sgc-featured-slideshow .sgc-button--style-link:hover .sgc-button__text::after {
  border-block-end-width: 2px;
}

.sgc-featured-slideshow .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  gap: 4px;
  background-color: transparent;
  border: none;
}

.sgc-featured-slideshow .sgc-button--style-arrow-button .sgc-icon {
  width: var(--sgc-button-font-size, revert);
  height: var(--sgc-button-font-size, revert);
}

@media (max-width: 959px) {
  .sgc-featured-slideshow .sgc-button--style-arrow-button .sgc-icon {
    width: var(--sgc-button-mobile-font-size, revert);
    height: var(--sgc-button-mobile-font-size, revert);
  }
}

@keyframes sgc-featured-slideshow-processbar-animation {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Rotate the right side of the progress bar from 0 to 180 degrees */

@keyframes sgc-featured-slideshow-right-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

/* Rotate the left side of the progress bar from 0 to 360 degrees */

@keyframes sgc-featured-slideshow-left-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Set the wrapper clip to auto, effectively removing the clip */

@keyframes sgc-featured-slideshow-close-wrapper {
  to {
    clip-path: rect(auto auto auto auto);
  }
}

.sgc-featured-slideshow .sgc-featured-slideshow__pagination {
  --sgc-dot-size: 6px;
  --sgc-dot-position-bottom: 20px;
}

@media (max-width: 959px) {
  .sgc-featured-slideshow .sgc-featured-slideshow__pagination {
    --sgc-dot-size: 6px;
    --sgc-dot-position-bottom: 20px;
  }
}

.sgc-featured-slideshow .sgc-featured-slideshow__pagination {
  position: absolute;
  inset-block-end: var(--sgc-dot-position-bottom);
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__pagination
  button[name="pager"] {
  position: relative;
  display: block;
  width: var(--sgc-dot-size);
  height: var(--sgc-dot-size);
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__pagination
  button[name="pager"].is-active {
  opacity: 1;
  transform: scale(1.5);
}

.sgc-featured-slideshow .sgc-featured-slideshow__progressbar {
  position: absolute;
  inset-block-end: 0;
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10%;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__progressbar
  button[name="pager"] {
  position: relative;
  display: block;
  flex: 1 0 0;
  max-width: 120px;
  height: 6px;
  padding: 0;
  overflow: hidden;
  outline: none;
  background-color: hsl(0deg 0% 75% / 30%);
  border: none;
  border-radius: 0;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__progressbar
  button[name="pager"].is-active::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transform: translateX(-100%);
  animation: sgc-featured-slideshow-processbar-animation
    var(--sgc-transition-animation-time) linear forwards;
}

.sgc-featured-slideshow .sgc-featured-slideshow__left-right-arrows {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 2;
  display: none;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__left-right-arrows
  button[name="prev"],
.sgc-featured-slideshow
  .sgc-featured-slideshow__left-right-arrows
  button[name="next"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 15%;
  padding: 30px;
  pointer-events: auto;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: none;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__left-right-arrows
  button[name="next"] {
  align-items: flex-end;
}

@media (min-width: 960px) {
  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="prev"],
  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="next"] {
    pointer-events: none;
  }

  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="prev"]
    svg,
  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="next"]
    svg {
    pointer-events: auto;
  }
}

@media (max-width: 959px) {
  .sgc-featured-slideshow .sgc-featured-slideshow__left-right-arrows {
    justify-content: center;
  }

  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="prev"],
  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="next"] {
    position: absolute;
    inset-block-start: 50%;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: rgb(255 255 255 / 90%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    transform: translateY(-50%);
  }

  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="prev"]
    svg,
  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="next"]
    svg {
    width: 18px;
    height: 18px;
  }

  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="prev"] {
    inset-inline-start: 16px;
    align-items: center;
  }

  .sgc-featured-slideshow
    .sgc-featured-slideshow__left-right-arrows
    button[name="next"] {
    inset-inline-end: 16px;
    align-items: center;
  }
}

.sgc-featured-slideshow .sgc-featured-slideshow__bottom-arrow {
  --sgc-arrow-position-bottom: 60px;
  --sgc-arrow-position-right: 60px;
  --sgc-arrow-button-size: 56px;
  --sgc-arrow-icon-size: 8px;
  --sgc-arrow-gap: 20px;
}

@media (max-width: 959px) {
  .sgc-featured-slideshow .sgc-featured-slideshow__bottom-arrow {
    --sgc-arrow-position-bottom: 20px;
    --sgc-arrow-position-right: 20px;
    --sgc-arrow-button-size: 40px;
    --sgc-arrow-icon-size: 5px;
    --sgc-arrow-gap: 10px;
  }
}

.sgc-featured-slideshow .sgc-featured-slideshow__bottom-arrow {
  position: absolute;
  inset-block-end: var(--sgc-arrow-position-bottom);
  inset-inline-end: var(--sgc-arrow-position-right);
  z-index: 2;
  display: none;
  gap: var(--sgc-arrow-gap);
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="prev"],
.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="next"] {
  position: relative;
  display: flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: var(--sgc-arrow-button-size);
  height: var(--sgc-arrow-button-size);
  color: #fff;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid;
  border-radius: 50%;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="prev"]
  .sgc-icon,
.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="next"]
  .sgc-icon {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: var(--sgc-arrow-icon-size);
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="prev"]::after,
.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="next"]::after {
  box-sizing: border-box;
  display: block;
  width: calc(var(--sgc-arrow-icon-size) * 2);
  height: 2px;
  content: "";
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="prev"]:hover::after,
.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="next"]:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="prev"]:hover
  .sgc-icon {
  transform: translate(calc(-50% - var(--sgc-arrow-icon-size) / 2), -50%);
}

.sgc-featured-slideshow
  .sgc-featured-slideshow__bottom-arrow
  button[name="next"]:hover
  .sgc-icon {
  transform: translate(calc(-50% + var(--sgc-arrow-icon-size) / 2), -50%);
}

@media (min-width: 960px) {
  .sgc-featured-slideshow
    sgc-featured-slideshow:hover
    .sgc-featured-slideshow__progressbar
    button[name="pager"].is-active::after {
    transform: translateX(0);
    animation-name: none;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-desktop-pagination-type="left-right-arrow"]
    .sgc-featured-slideshow__left-right-arrows {
    display: flex;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-desktop-pagination-type="left-right-arrow-dots"]
    .sgc-featured-slideshow__pagination,
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-desktop-pagination-type="left-right-arrow-dots"]
    .sgc-featured-slideshow__left-right-arrows {
    display: flex;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-desktop-pagination-type="bottom-arrow"]
    .sgc-featured-slideshow__bottom-arrow {
    display: flex;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-desktop-pagination-type="progressbar"]
    .sgc-featured-slideshow__progressbar {
    display: flex;
  }
}

@media (max-width: 959px) {
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-mobile-pagination-type="touch"]
    .sgc-featured-slideshow__pagination {
    display: flex;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-mobile-pagination-type="simple"]
    .sgc-featured-slideshow__pagination {
    display: flex;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-mobile-pagination-type="bottom-arrow"]
    .sgc-featured-slideshow__bottom-arrow {
    display: flex;
  }
  .sgc-featured-slideshow
    sgc-featured-slideshow[data-mobile-pagination-type="progressbar"]
    .sgc-featured-slideshow__progressbar {
    display: flex;
  }
}

.sgc-featured-slideshow
  sgc-featured-slideshow[data-scroll-parallax-effect="true"]
  .sgc-featured-slideshow__image-wrapper {
  inset-block-start: -30%;
  height: 160%;
}
