.custom_modal{
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgb(51, 51, 51, 0.9);
    overflow: scroll;
    transition: 0.3s ease-out;
    opacity: 0;
}
.custom_modal img{
    max-width: 800px;
    width: 98%;
    height: auto;
    /* background-color: white; */
    /* object-fit: contain; */
    margin: 20px auto;
    border: solid 2px #ddd;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(200,200,200,0.3);
}
.custom_modal button{
    display: block;
    width: max-content;
    margin: 10px auto;
    color: #333;
    font-weight: bold;
    background-color: rgb(255, 215, 0);
    border: solid 2px rgb(255, 215, 0);
}
.custom_modal button:hover{
    background-color: rgb(255, 238, 142);    
}
.custom_modal #buttonImg{
  	display:flex; 
  	gap:5px;
  	max-width:max-content;
  	margin:0 auto;
  	flex-wrap: wrap;
}
.custom_modal #buttonImg img{
    background-color:unset;
  	width:auto; height:60px;
  	border:none;
  	box-shadow:none;
  	cursor:pointer;
}
