input.mga-meta-gen-fields, select.mga-meta-gen-fields {
    width: 50%;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    background: #666;
    width: 13px;
    border-radius: 50%;
    margin-left: 0px;
    text-align: center;
    height: 13px;
    font-size: 10px;
    color: #fff;
  }
  
  .tooltip:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    top: 18px;
    left: -85px;
    background-color: #666;
    color: #fff;
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 12px;
    z-index: 9999;
    width: 200px;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover {
    color: black;
    text-decoration: none;
  }