/* relevant styles */
.locatePage{
  min-width: 1200px;
}

.img_wrap {
    position: relative;
    height: 200px;
    width: 257px;
}

.img_description {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(29, 106, 154, 0.72);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    /* transition effect. not necessary */
    /* transition: opacity .2s, visibility .2s; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img_wrap:hover .img_description {
    visibility: visible;
    opacity: 1;
}

.img_VGimg {
    width: 100%;
    height: 100%;
}

.img_BOOKimg {
    width: 130px;
    /* max-height: 100%; */
}

.customForm {
    display: inline;
}

/* W3 Schools provided Code */

.tooltip {
    position: relative;
    display: inline-block;
    opacity: 100 !important;
    z-index: 0;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

/* Lightbox */

.rowPuzzle > .columnPuzzle {
    padding: 0 8px;
  }
  
  .rowPuzzle:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Create four equal columns that floats next to eachother */
  .columnPuzzle {
    float: left;
    width: 25%;
  }
  
  /* The Modal (background) */
  .modalPuzzle {
    display: none;
    position: fixed;
    z-index: 5000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-contentPuzzle {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .closePuzzle {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .closePuzzle:hover,
  .closePuzzle:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlidesPuzzle {
    display: none;
  }
  
  img.demoPuzzle {
    opacity: 0.6;
  }
  
  .activePuzzle,
  .demoPuzzle:hover {
    opacity: 1;
  }
  
  img.hover-shadowPuzzle {
    transition: 0.3s;
  }
  
  .hover-shadowPuzzle:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }