
  #carousel_wrapper_custom {
    position: fixed;
    left: 2%;
    top: 60%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    overflow: hidden;
    z-index: 9999;
    animation: .99s ease-in-out 0s infinite normal none running scales;
    -webkit-animation: .99s ease-in-out 0s infinite normal none running scales;    
  }
  
  .carousel-container {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
  }
  
  .carousel-item {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    
  }
  
  .carousel-item img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    object-fit: contain;
  }
  