.ppb-root { width: 100%;     position: relative;}

.ppb-status {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.ppb-swiper {
  position: relative;
    width: 100%;
    aspect-ratio: 7 / 5;
    overflow: hidden;
}

.ppb-swiper .swiper-wrapper,
.ppb-swiper .swiper-slide {
  height: 100%;
}

.ppb-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppb-canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.ppb-pagination {
    display: flex !important;
    gap: 3px;
    align-items: center  !important;
    justify-content: center  !important;
    margin-top: 15px;
}


.ppb-root .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #000;   
}


.ppb-root .swiper-pagination-bullet{
    background: #707070;   
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}

.ppb-counter {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    user-select: none;
  }

  
  .ppb-prev {
    padding: 5px;
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    background: #fff;
    aspect-ratio: 1 / 1;
    z-index: 10;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotate(180deg) translate(0%,50%);
}

  .ppb-next{
    padding: 5px;
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    background: #fff;
    aspect-ratio: 1 / 1;
    z-index: 10;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translate(0%,-50%);
  }

  .ppb-prev.swiper-button-disabled, .ppb-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
  }

  
.ppb-swiper,
.ppb-swiper * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.ppb-prev,
.ppb-next {
  touch-action: manipulation;
}