.jqmWindow {
     display: none;
     
     position: absolute;
     top: 17%;
     left: unset !important;
     
     background-color: #EEE;
     color: #333;
     border: 1px solid black;
     padding: 12px;
 
     font-size: 16px;
     line-height: 20px;
     width: 96% !important;
     max-width: 420px;
     background: #fff;
     border-radius: 12px;
     padding: 24px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
     text-align: center;
     margin-left: 25% !important; 
 }
 
 
 
 .jqmOverlay { background-color: #000;
      position: fixed;
      inset: 0;
      z-index: 9999;
    
      display: flex;
      align-items: center;
      justify-content: center;
    
      padding: 20px; }
 
 /* Fixed posistioning emulation for IE6
      Star selector used to hide definition from browsers other than IE6
      For valid CSS, use a conditional include instead */
 * html .jqmWindow {
      position: absolute;
      top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
 }	
 
 .jqmWindow .close{
      text-align: center;
      background: #FFF;
      padding: 0;
      margin: 10px 0;
 }
 
 .jqmWindow .close a{
      color: #000;
 }
 
 #modal_popup {
      position: fixed;
 }
 
 #modal_dd_info {
      position: fixed;
 }
 
 #modal_dd_info ul {
      list-style-type: disc;
 }
 
 #modal_dd_info ul li {
      margin-left: 20px;
      margin-bottom: 10px;
 }
 
 @media (max-width: 500px) {
      .jqmWindow {
           margin-left: 4px !important;
       }
      
      }
 
 
 
