.woo-gallery-slider{
    width:100%;
}

/* MAIN IMAGE */

.woo-gallery-main{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:
        0 25px 60px rgba(0,0,0,.08),
        0 6px 18px rgba(0,0,0,.04);
}

.woo-gallery-main .swiper-slide{
    overflow:hidden;
}

.woo-gallery-main img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.woo-gallery-main:hover img{
    transform:scale(1.03);
}

/* ARROWS */

.woo-gallery-prev,
.woo-gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:40px;
    height:40px;
    z-index:20;
    padding: 10px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:100%;

    color:#306EB4;

    transition:all .3s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);
}

.woo-gallery-prev:hover,
.woo-gallery-next:hover{
    background:#306EB4;
    color:#fff;
    transform:translateY(-50%) scale(1.08);
}

.woo-gallery-prev{
    left:24px;
}

.woo-gallery-next{
    right:24px;
}

/* THUMBNAILS */

.woo-gallery-thumbs{
    margin-top:20px;
}

.woo-gallery-thumbs .swiper-slide{
    position:relative;
    overflow:hidden;

    border-radius:16px;

    cursor:pointer;

    border:2px solid transparent;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.woo-gallery-thumbs .swiper-slide img{
    width:100%;
    height:100px;
    object-fit:cover;
    display:block;
}

/* ACTIVE */

.woo-gallery-thumbs .swiper-slide-thumb-active{
    border-color:#306EB4;

    box-shadow:
        0 0 0 3px rgba(48,110,180,.12);
}

/* BỎ DẤU TÍCH */

.woo-gallery-thumbs .swiper-slide-thumb-active::after{
    display:none !important;
}

/* SCROLLBAR SWIPER */

.woo-gallery-thumbs::-webkit-scrollbar{
    height:6px;
}

.woo-gallery-thumbs::-webkit-scrollbar-thumb{
    background:#d9d9d9;
    border-radius:999px;
}

/* MOBILE */

@media(max-width:1024px){

    .woo-gallery-main img{
        height:420px;
    }

    .woo-gallery-thumbs .swiper-slide img{
        height:95px;
    }

}

@media(max-width:767px){

    .woo-gallery-main{
        border-radius:20px;
    }

    .woo-gallery-main img{
        height:300px;
    }

    .woo-gallery-prev,
    .woo-gallery-next{
        width:42px;
        height:42px;
        border-radius:100%;
    }

    .woo-gallery-prev{
        left:12px;
    }

    .woo-gallery-next{
        right:12px;
    }

    .woo-gallery-thumbs .swiper-slide{
        border-radius:14px;
    }

    .woo-gallery-thumbs .swiper-slide img{
        height:70px;
    }

}