body{
    overflow-x: hidden;
}
.carousel-cell {
    width: 100%; /* full width */
    height: 130px;
    background: #d4d4d400;
    /* center images in cells with flexbox */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel.is-fullscreen .carousel-cell {
    height: 100%;
  }
  
  .carousel-cell img {
    display: block;
    max-height: 120px;
    cursor: pointer;

}
.carousel{
    margin-bottom: 20px;

}

.img-magnifier-container {
    position: relative;
  }
  
.img-magnifier-glass {
    position: absolute;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: none;
    width: 140px;
    height: 140px;
    z-index: 2;
    visibility: hidden;
}




