#modal-background {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; 
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 999;
    }
    #modal-box {
      position: fixed;
      top: 40%; 
      left: 50%;
      transform: translate(-50%, -50%);
      background: #F2BE02;
      padding: 20px;
      max-width: 500px;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      text-align: left;
    }
    #modal-box h2{
    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    color: #000!important;
    border: 2px dotted #000;
    padding: 10px;
    }
    .lista-modal ul{
      padding: 0;
      margin: 0;
    }
    .lista-modal li{
    list-style-type: none;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    color: #000!important;
    cursor: pointer;
    }
    #close-modal {
      float: right;
      cursor: pointer;
      color: red;
      font-size: 35px;
    }