 /* Style the image */
    .thumbnail {
      width: 200px;
      cursor: pointer;
      transition: 0.3s;
    }

    /* The Modal (background) */
    .custom-modal {
      display: none; /* Hidden by default */
      justify-content: center;
      position: fixed;
      z-index: 999999999999999999999999;
      padding: 10rem 10% 10% 10%;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: scroll;
      background-color: rgba(0,0,0,0.8);
    }

    /* Modal Content (Image) */
    .custom-modal-content {
      margin: 5px;
      height:60rem;
      width:70rem;
      display: block;      
      background-color: rgb(187, 187, 187);
    }

    .showModal{
      display: flex;
    }
    @media (max-width:992px){
        .modal{
          display: none;
          visibility: hidden;
        }
        .custom-modal-content {
            margin: 5px;
            display: block;
            
          }
        .showModal{
          display: none;
        }
    }

    #modal-image{
      height: 100%;
    }
    /* Close button */
    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    .close:hover {
      color: #bbb;
    }