﻿.pd2-hero[data-pd2-gallery] {
  position: relative !important;
  overflow: hidden !important;
  touch-action: pan-y !important;
}

.pd2-hero-image[data-pd2-gallery-image] {
  cursor: pointer !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

.pd2-gallery-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 8 !important;

  width: 40px !important;
  height: 40px !important;

  display: grid !important;
  place-items: center !important;

  transform: translateY(-50%) !important;

  padding: 0 !important;

  border:
    1px solid rgba(255,255,255,.18) !important;

  border-radius: 999px !important;

  background:
    rgba(5,7,6,.72) !important;

  backdrop-filter:
    blur(10px) !important;

  color: #ffffff !important;

  font-size: 30px !important;
  line-height: 1 !important;

  cursor: pointer !important;
}

.pd2-gallery-prev {
  left: 12px !important;
}

.pd2-gallery-next {
  right: 12px !important;
}

.pd2-gallery-dots {
  position: absolute !important;

  left: 50% !important;
  bottom: 14px !important;

  z-index: 8 !important;

  transform:
    translateX(-50%) !important;

  display: flex !important;
  align-items: center !important;

  gap: 6px !important;
}

.pd2-gallery-dot {
  width: 7px !important;
  height: 7px !important;

  padding: 0 !important;
  border: 0 !important;

  border-radius: 999px !important;

  background:
    rgba(255,255,255,.45) !important;

  transition:
    width .18s ease,
    background .18s ease !important;
}

.pd2-gallery-dot.active {
  width: 20px !important;

  background:
    #ff5a32 !important;
}

@media (max-width: 768px) {

  .pd2-gallery-arrow {
    width: 34px !important;
    height: 34px !important;

    font-size: 26px !important;
  }

  .pd2-gallery-prev {
    left: 8px !important;
  }

  .pd2-gallery-next {
    right: 8px !important;
  }

  .pd2-gallery-dots {
    bottom: 10px !important;
  }
}
