
.gallery-view-inner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(auto,295px));
    justify-content: center;
    gap: 0.5rem;
}
.gallery-view-box {
    background: var(--bg-color);
    box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
    border-radius: 0.5rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 230px;
    cursor: pointer;

}
.gallery-view-box-name{
    width: fit-content;
    padding: 5px;
    font-size: 20px;
    color: var(--second-color);
    border-radius: 10px;
}
.gallery-view-box-img{
    width: 100%;
    height: 100%;
}
.gallery-media-viewer-img{
    width: 100%;
    height:fit-content;
}
.media-viewer-pop-up-container{
    display: none;
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.media-viewer-pop-up-content {
    background-color: #fefefe;
    margin: auto;
    position: fixed;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
    height: 100%;
    overflow: auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}
.media-viewer-pop-up-middle {
    background-color: #fefefe;
    /* padding: 20px; */
    width: 100%;
    overflow: auto;
    animation-name: animatetop;
    animation-duration: 0.4s;
}
.media-viewer-pop-up-header {
    width: 100%;
    display: flex;
    color: var(--bg-color);
    justify-content: space-between;
    font-weight: bold;
    font-size: 30px;
    position: fixed;
    padding: 20px;
    /* background: rgba(0, 0, 0, 1.5); */
    /* opacity: 39%; */
    /* margin-left: 20px; */
    /* margin-right: 85px; */
}
.media-viewer-pop-up-close-button{
    background: var(--text-color);
    border: 2px white solid;
    /* border-radius: 52%; */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 69%;    
    display: flex;
    cursor: pointer;
}
.gallery-view-box-bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.gallery-view-box-video-over-lay{
    position: absolute;
    background-color: var(--bg-color);
    opacity: 0%;
    cursor:  zoom-in;
    width: 100%;
    height: 100%;
    max-height: 256px;
}
.gallery-view-box iframe{
    width: 100%;
    height: 269px;
    max-height: 255px;
}


@media(max-width:425px){
    .gallery-view-inner-container {
        grid-template-columns: repeat(4,minmax(auto,295px));
    }
    .gallery-view-box {
        height: 125px;
    }
}

@media(max-width:375px){
    .gallery-view-inner-container {
        grid-template-columns: repeat(2,minmax(auto,295px));
    }
    .gallery-view-box {
        height: 125px;
    }
}