/** 
    * Common External Pagination Styles
*/

.wdt-external-pagination-wrapper { text-align: center; margin: 0; }
.wdt-external-pagination-wrapper .wdt-swiper-pagination { text-align: center; margin: 0; }


/** 
    * Dots Pagination Styles
*/
.wdt-external-pagination-wrapper .wdt-swiper-pagination{
    position: relative;
}
.wdt-external-pagination-wrapper .wdt-swiper-pagination .swiper-pagination-bullet { background-color: var(--wdtBorderColor);
    background-image: none !important;
    display: inline-flex;
    place-content: center;
    place-items: center;
    letter-spacing: 0;
    height: 20px;
    line-height: normal;
    margin: 5px 8px;
    opacity: 1;
    padding: 0;
    position: relative;
    text-decoration: none;
    text-transform: none;
    vertical-align: top;
    width: 20px;
    z-index: 1;
    -webkit-border-radius: var(--wdtRadius_Part);
    border-radius: var(--wdtRadius_Part);
    -webkit-transition: var(--wdt-elementor-base-transition);
    transition: var(--wdt-elementor-base-transition); }
.wdt-dark-bg .wdt-external-pagination-wrapper .wdt-swiper-pagination .swiper-pagination-bullet {
    background: rgba(var(--wdtBorderColorRgb), 0.25);
}
    
.wdt-external-pagination-wrapper .wdt-swiper-pagination .swiper-pagination-bullet::before {
    background: var(--wdt-elementor-color-accent);
    content: "";
    height: 10px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 10px;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    transform: scale(0);
    -webkit-transition: inherit;
    transition: inherit;
}
.wdt-external-pagination-wrapper .wdt-swiper-pagination .swiper-pagination-bullet:hover:before,
.wdt-external-pagination-wrapper .wdt-swiper-pagination .swiper-pagination-bullet-active:before
 {
    background-color: var(--wdt-elementor-color-accent);
    transform: scale(1);
}
.wdt-external-pagination-wrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 5px 8px;
}
.wdt-external-pagination-wrapper .swiper-pagination-horizontal.swiper-pagination-bullets{
    bottom: 0;
}

/** 
    * Arrow Pagination Styles
*/

.wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination { width: auto; margin: -5px; }
.wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination > div[class*="wdt-arrow-pagination-"] {
  padding: 10px; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; margin: 10px; font-size:20px; 
  background-color:transparent; border:1px solid var(--wdtHeadAltColor); color:var(--wdtHeadAltColor); }

.wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination > div[class*="wdt-arrow-pagination-"]:hover{
    background-color:var(--wdtHeadAltColor); border:1px solid var(--wdtHeadAltColor); color:var(--wdtAccentTxtColor); }

.wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination > div[class*="wdt-arrow-pagination-"]:first-child{ margin-left:0; }
.wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination > div[class*="wdt-arrow-pagination-"]:last-child{ margin-right:0; }

.wdt-dark-bg .wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination > div[class*="wdt-arrow-pagination-"]{
    background-color:transparent; border:1px solid var(--wdtAccentTxtColor); color:var(--wdtAccentTxtColor); }
.wdt-dark-bg .wdt-external-pagination-wrapper .wdt-carousel-arrow-pagination > div[class*="wdt-arrow-pagination-"]:hover{
    background-color:var(--wdtPrimaryColor); border:1px solid var(--wdtPrimaryColor); color:var(--wdtAccentTxtColor); }

/** 
    * Progress Bar & Scroll Bar - Pagination Styles
*/

.wdt-external-pagination-wrapper .wdt-swiper-pagination-progressbar,
.wdt-external-pagination-wrapper .wdt-swiper-scrollbar { position: relative; 
    background-color: var(--wdtBorderColor); height: 2px; }

.wdt-external-pagination-wrapper .wdt-swiper-pagination-progressbar .swiper-pagination-progressbar-fill,
.wdt-external-pagination-wrapper .wdt-swiper-scrollbar .swiper-scrollbar-drag { width: 100%;
    top: -2px; height: calc(100% + 4px); background-color: var(--wdtPrimaryColor); border-radius: 0px; }