    .rotovz-simple-gallery-wrap{
    width:100%;
}

/* GRID */

.rotovz-simple-gallery{
    display:grid;
    width:100%;
    gap:4px;
}

.rotovz-simple-gallery.view-1{
    grid-template-columns:1fr;
}

.rotovz-simple-gallery.view-2{
    grid-template-columns:repeat(2,1fr);
}

.rotovz-simple-gallery.view-4{
    grid-template-columns:repeat(4,1fr);
}

/* IMAGES */

.rotovz-gallery-item{
    display:block;
    width:100%;
    overflow:hidden;
    text-decoration:none;
    aspect-ratio:3/2;
}

.rotovz-gallery-item img{
    width:100% !important;
    height:100% !important;
    min-height:100% !important;
    display:block !important;
    object-fit:cover !important;
    object-position:center center !important;
}

/* SWITCHER */

.gallery-switcher{
    display:flex;
    align-items:center;
    gap:8px;

    font-size:30px;
    margin-bottom:20px;

    font-family:"neueSeries57", Sans-serif;
}

.gallery-switcher-text{
    margin-right:10px;
}

.gallery-switcher button{
    border:1px solid #000;
    background:none;

    width:40px;
    height:40px;

    padding:0;

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

    cursor:pointer;

    border-radius:50% !important;

    font-size:30px;
    line-height:1;

    color:#000;

    transition:all .2s ease;
}

.gallery-switcher button:hover{
    background:#000;
    color:#fff;
    border-radius:50% !important;
}

.gallery-switcher button.active{
    background:#000;
    color:#fff;
    border-radius:50% !important;
}

/* LOAD MORE */

.gallery-more{
    text-align:center;
    margin-top:30px;
}

.gallery-more button{
    border:0;
    padding:0;
    background:none;
    color:#000;
    font-size:32px;
    font-family:"neueSeries57", Sans-serif;
    text-decoration:underline;
    font-weight:300;
    cursor:pointer;
}

.gallery-more button:hover,
.gallery-more button:focus{
    background:none !important;
    color:#111 !important;
    text-decoration:underline!important;
    transform:none !important;
    box-shadow:none !important;
    opacity:1 !important;
}

/* MOBILE */

@media (max-width:767px){

    .gallery-switcher{
        font-size:16px;
        margin-bottom:20px;
        gap:6px;
    }

    .gallery-switcher-text{
        margin-right:6px;
    }

    .gallery-switcher button{
        width:30px;
        height:30px;

        font-size:16px;
        line-height:1;

        border-radius:50% !important;
    }

    .gallery-switcher button.active{
        width:30px;
        height:30px;
        border-radius:50% !important;
    }

    .gallery-more button{
        font-size:20px;
    }

    .rotovz-simple-gallery{
        gap:3px;
    }

    .rotovz-simple-gallery.view-1{
        grid-template-columns:1fr;
    }

    .rotovz-simple-gallery.view-2{
        grid-template-columns:repeat(2,1fr);
    }

    .rotovz-simple-gallery.view-4{
        grid-template-columns:repeat(4,1fr);
    }
}

}