/* Guess the picture tiles */
.gtp-tile-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    clear: both;
    transition: opacity .3s ease-in-out;
  }
  
  .gtp-tile {
    background-color: #9595a4;
    border: 1px solid rgba(61, 57, 57, 0.1);
    box-sizing: border-box;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    display: inline-block;
    width: 5%;
    height: 10%;
    float:left;
  }