#dynamic-modal{
position: fixed;
width: 100%;
height: 100%;
display: flex;
z-index: 9999;
top: 0;
justify-content: center;
align-items: center;
background: #00000054;
}
#dynamic-modal .dynamic-modal-inner{
max-width: 600px;
position: relative;
}
#dynamic-modal .dynamic-modal-inner img{
max-width: 100%;
height: auto;
}
#dynamic-modal #close-modal{
border-radius: 100px;
display: flex;
width: 30px;
height: 30px;
justify-content: center;
align-items: center;
border: 2px solid #000000;
position: absolute;
top: -15px;
right: -15px;
cursor: pointer;
}
@media screen and (max-width:767px){
#dynamic-modal .dynamic-modal-inner{
max-width: 90vw;
}
}