<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

{
  padding: 0;
  margin: 0;
}
.modal {
  position: fixed;
  display: none;
  padding: 20px;
  box-shadow: 0 0 10px 10px #ccc;
  z-index: 100;
  width: 400px;
  height: 400px;
  left: 50%;
  margin-left: -200px;
  background: #000;
  top: 50%;
  margin-top: -200px; 
  border-radius: 10px;
  transition: all 0.5s ease-in;  
}

.ImageBorder
{
    border:1px solid #021a40;
}</pre></body></html>