
  .product__images {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  
  .product__main-image {
    max-height: 100%;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .main-image-wrapper {
    position: relative;
    width: 100%;
    height: 25vw;
    
  }
  
  .product__slider-wrap {
    max-width: 500px;
    min-height: 100px;
    display: flex;
    align-items: center;
    margin-top: 5em;
  }
  
  .product__slider {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .product__image {
    max-width: 180px;
    max-height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    margin: 0.25rem;
  }
  
  .product__image:first-child {
    margin-left: 0;
  }
  
  .product__image:last-child {
    margin-right: 0;
  }
  
  .product__image:hover {
    opacity: 1;
  }
  

  
  .product__slider::-webkit-scrollbar {
    height: 10px;
  }
  
  .product__slider::-webkit-scrollbar-thumb {
    background-color: hsl(12, 88%, 45%);
  }
  
  @keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}