.wrapper{
    position: relative;
    margin: 0 auto;
    width: 550px;
  }
  
  .img-selection{
    position: relative;
    margin-top: 20px; /* Adjust as needed */
    display: flex;
    justify-content: left; /* Center the thumbnails horizontally */
  }
  
  .img-thumbnail{
    margin: 0 5px; /* Adjust spacing between thumbnails */
    width: 100px; /* Adjust thumbnail width */
    height: 100px; /* Adjust thumbnail height */
    border: 1px solid #ddd;
    cursor: pointer;
    transition: .3s ease;
    opacity: .5;
  }
  
  .img-thumbnail:hover{
    opacity: 1;
  }
  
  .img-thumbnail.selected{
    opacity: 1;
  }
  
  .big-img{
    position: relative;
    width: 445px;
    height: 445px;
    border: 1px solid #ddd;
    object-fit: contain;
    cursor: zoom-in;
    overflow: hidden;
  }
  
  .big-img img.zoom{
    position: absolute;
    transition: width 0.2s ease-out, opacity 0.2s ease-out 0.2s; 
  }
  
  .display-img{
    width: 100%;
    height:100%;
  }
  