.galerijaMain{
    width: 80%;
    margin: auto;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    justify-content: left;
    overflow: hidden;
}
.galerijaMainCol{
    width: 25%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; 
    justify-content: left;
    overflow: hidden;
}
.galerijaImg{
    width: 100%;
    height: 100%;
    margin: 5px;
    object-fit: cover;
    transition: all ease-in-out 0.2s;
}
.galerijaImg:hover {

}
.preview {
    position: relative;
    height: inherit;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    height: 70vh;
    max-height: none !important;
}
.close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    min-width: 0 !important;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
    transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 1080px) {
    .galerijaMain{
        width: 90%;
    }
}
@media screen and (max-width: 800px) {
    .galerijaMain{
        flex-direction: column;
    }
    .galerijaMainCol{
        width: 100%;
    }
    .galerijaImg{
        margin: 10px 5px;
    }
}
@media screen and (max-width: 660px) {
    
}