.wb-swiper-wrap {
    position: relative;
}

.wb-swiper-card {
    height: 150px;
    width: auto;
    background: #000;

    padding: 12px;
    border: 1px solid #F46C21;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.wb-swiper-logo {
    display: block;
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.wb-swiper-name {
    font-weight: 600;
    font-size: 14px;
}

.wb-swiper-btn-prev,
.wb-swiper-btn-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

.wb-swiper-btn-prev { left: -12px; }
.wb-swiper-btn-next { right: -12px; }
  



.wb-swiper-pagination {
    position: relative;
    margin-top: 40px;
    padding-top: 10px;
    text-align: center;
    width: 100%;
}
  
.wb-swiper-pagination.swiper-pagination-bullets-dynamic {
    overflow: hidden;      
    font-size: 0;         
    white-space: nowrap;
    width: 120px;          
}
  
.wb-swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    margin: 0 4px;
    display: inline-block; 
    transition: transform .25s ease, background .25s ease;
}
  
.wb-swiper-pagination .swiper-pagination-bullet-active {
    transform: scale(1.15);
    position: relative;
}

.wb-swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F46C21;
}