.iterapic-modal 
{ 
    position: fixed; 
    top:0; 
    left:0; 
    right:0; 
    bottom:0; 
    z-index:9999; 
}
.iterapic-modal-backdrop 
{ 
    position: absolute; 
    top:0; 
    left:0; 
    right:0; 
    bottom:0; 
    background: rgba(0,0,0,0.5); 
}
.iterapic-modal-panel 
{ 
    position: absolute; 
    left:50%; 
    top:50%; 
    transform: translate(-50%,-50%); 
    background:#fff; 
    padding:20px; 
    max-width:600px; 
    width:90%; 
    box-shadow:0 8px 30px rgba(0,0,0,0.3); 
    border-radius:6px; 
}
.iterapic-modal-close 
{ 
    position:absolute; 
    right:10px; 
    top:6px; 
    background:none; 
    border:none; 
    font-size:22px; 
}

#iterapic-send 
{
    transition: background-color 0.3s ease, opacity 0.3s ease;
}