/* CSS Document */

#objectGallery{

    margin-bottom:20px;

}

.gallery-wrapper{

    position:relative;

    width:100%;

}

.gallery-image{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:10px;

    display:block;

}

.gallery-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:20;

}

.gallery-left{

    left:10px;

}

.gallery-right{

    right:10px;

}

.gallery-arrow:hover{

    background:rgba(0,0,0,.75);

}

.gallery-counter{

    position:absolute;

    top:10px;

    right:10px;

    background:rgba(0,0,0,.55);

    color:white;

    padding:5px 10px;

    border-radius:20px;

    font-size:14px;

}

.gallery-dots{

    position:absolute;

    bottom:12px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:8px;

}

.gallery-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:white;

    opacity:.45;

    cursor:pointer;

}

.gallery-dot.active{

    opacity:1;

}