.fblock_image {
	position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: White;
    opacity: 0.8;
	display: none;
}

.fblock_image_container {
	position: fixed;
    left: 20px;
    top: 20px;
    bottom: 20px;
    right: 20px;
    width: 100%;
    z-index: 2001;
    text-align: center;
	display: none;
}

.fblock_image_container button {
    position: absolute;
    top: 20px;
    right: 70px;
    height: 50px;
    width: 45px;
    border: 0px;
    color: #2d2d2d;
    cursor: pointer;
    background-color: #cfcfcf;
    opacity: 0.7;
    z-index: 2002;
}

.fblock_image_container button:hover {
	opacity: 1;
}

.fblock_image_container img {
	width: calc(100% - 10px); 
	margin: 5px;
	height: calc(100% - 30px); 
	object-fit: contain; 
	border: 0px;
	z-index: 2002;
}

@media screen and (max-width: 1215px) {
    .fblock_image_container {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 10px;
        right: inherit;
        width: 100%;
        z-index: 2001;
        text-align: center;
        display: none;
    }

    .fblock_image_container button {
        position: absolute;
        top: 0px;
        right: 10px;
        height: 40px;
        width: 35px;
        border: 0px;
        color: #2d2d2d;
        cursor: pointer;
        background-color: #cfcfcf;
        opacity: 0.7;
        z-index: 2002;
    }
}

