/* The Modal (background) */

        .modal-container {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 99999;
          background-color: rgb(255, 255, 255);
          justify-content: center;
          align-items: center;
          pointer-events: none;
          transition: all 0.3s;
          overflow-y: initial !important
        }
      
        .modal-container .close {
          position: absolute;
          top: 3%;
          right: 10px;
          font-size: 30px;
          cursor: pointer;
          color: rgb(0, 0, 0);
          pointer-events: visible;
        }
      
      .modal-container .close:hover {
          color: gray;}
      


      .quiz-frame {
        width: 90%;
        max-width: 960px;
        min-width: 960px;
        height: 100%;
        pointer-events: visible; 
       border: solid 1px;
       overflow-y: auto;
      }

      