		.image_preview{
		 position: fixed;
		 top: 50%;
		 left: 50%;
		 transform:translate(-50%,-50%);
		 height: 100%;
		 width: 100%;
		 box-shadow: 0px 0px 5px 1px lightgray;
		 z-index: 9999999999;
		 overflow: hidden;
		 display: none;
	 }
	 .image_preview div{
		 height: 100%;
		 width: 100%;
		 position: relative;
		 margin:auto;
		 overflow-y:auto;

	 }
	 .image_preview .preview_content{
        width:100%;
        display:flex;
        flex-direction:column;
        background:#fff;
        padding:10px 0px;
        background:rgba(255,255,255,.6);
        backdrop-filter: blur(10px);
        padding-bottom:20px;
	 }
	 .image_preview .preview_content img{
        width:250px;
        height:auto;
        margin-left:auto;
        margin-right:auto;
        margin-top:50px;
        margin-bottom:30px;
        border-radius:10px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	 }
	 .image_preview .preview_content .preview_title{
       font-weight:bold;
       font-size:16px;
       line-height:18px;
       margin-bottom:20px!important;
       padding:0px 15px;
	 }
	 .image_preview .preview_content .preview_desc{
       padding:0px 15px;
       text-align:justify;
	 }
	 .image_preview #preview_cancel{
	    position:fixed;
	     top:10px;
	     right:10px;
		 display:flex;
		 align-items:center;
		 justify-content:center;
		 height:50px;
		 width:50px;
		 background: rgb(255,255,255);
		 border-radius:50%;
		 text-align: center;
		 color: #000;
		 font-size: 25px;
		 transition: .3s;
		 cursor: pointer;
		 box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
		 z-index: 9999999999;
	 }
	 img{
		 cursor: pointer;
	 }
	 .image_preview #preview_cancel:hover{
		 background: #e8524a;
		 transition: .3s;
	 }
	 @media only screen and (max-width:700px){
	 /*    .image_preview img{*/
		/* width: 90%;*/
		/* top:80px;*/
		/* height: auto;*/
		/* position: absolute;*/

	 /*}*/
	 }