.image-view{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0);
    display: flex;
}

/*.img_block img{*/
/*    !*object-fit: contain;*!*/
/*    !*block-size: 100%;*!*/
/*}*/

.img_block{
    width: 100vw;
    height: 90vh;
    display: flex;
    margin: auto;
}

.full_size_img{
    /*block-size: 70%;*/
    block-size: 90%;
    width: 100%;
    margin: auto;
    object-fit: contain
}

.image-title{
    width: 100%;
    top: 12px;
    text-align: center;
    /*margin: auto;*/
    color: #888;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    position: absolute;
    background-color: rgba(0,0,0, 0.75);
}

.image__title::after{
    content: ", \00a0";
}

.image__author::after{
    content: " \00a0";
}


.image__sig{
    display: flex;
    margin: auto;
    max-width: fit-content;
}

.albums_block .description{
    font-size: 12px;
    padding: 5px;

}

.albums_block .thumbnail{
    margin-bottom: 10px;
}

.thumbnail img{
    width: 250px;
    height: 180px;
    object-fit: contain;
}

.album_signature{
    padding: 10px;
}

.photo_signature{
    padding: 10px;
    text-align: center;
}

.resetImg{
    width: 15px;
}


.gal_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 50px;
    /*background-color: red;*/
}

.album_block{
    width: 250px;
    font-size: 14px;
    margin-right: auto;
    margin-left: auto;
}

.album_block a{
    text-decoration: none;
    color: #3B4256;
}

.pub-date{
    color: #b3bbc3;
}

.album_detail .pub-date{
    text-align: right;
    margin-bottom: 10px;
    font-size: 14px;
}

.gal_wrapper .pub-date{
    margin-bottom: 10px;
}


.album_detail h1{
    margin-bottom: 40px;
}

.album_detail .album-description{
    margin-bottom: 40px;
}


.back{
    display: flex;
    position: absolute;
    float: right;
    right: 2rem;
    top:2rem;
    z-index: 10;
}

/*.back a{*/
/*    color: #fff;*/
/*    !*text-decoration: none;*!*/
/*    !*font-family: 'Roboto', 'Open Sans', Arial, sans-serif;*!*/
/*}*/

.flipping a{
    /*color: white;*/
    /*text-decoration: none;*/
}

.flipping{
    display: flex;
}

.previous{
    position: absolute;
    /*top:50%;*/
    top: calc(50% - 22px );
    left: 0;
    z-index: 50;
}

.next{
    position: absolute;
    top: calc(50% - 22px );
    right: 0;
    z-index: 50;
}

.next img{
    width: 50px;
    height: 45px;
}

.test{
    background-color: black;
    width: 100vw;
    height: 100vh;
}

@media (max-width: 992px) {
    .gal_wrapper{
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
    .img_block{
        width: 90%;
    }

}


@media (max-width: 768px){
    .image__sig{
        display: block;
    }

    .image__title::after, .image__author::after{
        content: none;
    }
}


@media (max-width: 576px){
    .image-view{
        font-size: 2rem;
    }
}


@media (max-width: 393px) {
    .gal_wrapper{
        grid-template-columns: 1fr ;
        gap: 40px 20px;
    }
}