.scroller-section-wrapper {
  max-width: 1080px;
  margin: auto;
}



.productSlider-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}





/*****************************************/
/* Product container 
/*****************************************/

.productContainer{
    background-color: #E2E2E2; 
    border-radius: 8px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  
  .productContainerText{
    padding: 16px;
  }
  
  .productContainerImage{
    padding: 0px;
  }
  
  
  
  .productCardLabel {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    margin-bottom: 12px;
    display: none;
  }
  
  .productCardHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
  }
  
  .productCardHeader h2 {
    margin: 0;
  }
  
  
  .demo-button {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .demo-button .arrow {
    font-size: 18px;
  }
  
  
  /*****************************************/
  /* Layout Desktop  */
  /*****************************************/
  
      .container {
        display: flex;
        flex-direction: row;
        position: relative;
      }
  
      .scroller-text-sections {
        flex: 1;
        padding: 0;
      }
  
      .scroller-text-section {
  scroll-margin-top: 50vh;
      min-height: 50vh;
      padding: 0;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      max-width: 40rem;
      padding-right: 2rem;
      display: flex;
    top:25vh;
        
        
      }
  
/* BEFORE ADDING Background to image
      .scroller-image-panel {
        flex: 1;
        position: sticky;
        top: 25vh;
        height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        min-height: 50vh;
      }

*/



.scroller-image-panel {
    flex: 1;
    position: sticky;
    top: 25vh;
    height: 50vh;
    display: flex;
  /*  justify-content: center; */
  justify-content: flex-end;
    align-items: center;
    padding: 0;
    min-height: 50vh;
    background-color: #FFFFFF00;
    border-radius: 1.5rem;
  padding: 0px;
 /*   padding: 2rem;  */
    /* overflow: hidden; */
}




  
  
      .scroller-image-panel img {
        max-width: 100%;
        max-height: 100%;
        opacity: 1;
        transition: opacity 0.6s ease-in-out;
        border-radius: 12px;
        
      }
  
      .scroller-image-panel img.fade-out {
        opacity: 0;
      }
  
  
  
   .scroller-image-panel-mobile {
        display: none;
      }
  
  
      .scroller-image-panel-mobile img {
        max-width: 100%;
        max-height: 100%;
        opacity: 1;
        transition: opacity 0.6s ease-in-out;
        border-radius: 12px;
        
      }
  
      .scroller-image-panel-mobile img.fade-out {
        opacity: 0;
      }
  

  .productCardBody{
  max-width: 85%;
      }
  
  /*****************************************/
  /* Layout Mobile  */
  /*****************************************/
  
  
  
  
  
      @media (max-width: 768px) {
        .container {
          flex-direction: column;
        }
  
  
        .productCard{
          background-color: white;
          border-radius: 12px;
          padding: 0;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          margin: 0px;
          margin-bottom: 64px;
          padding-bottom: 16px;
        }
  
        .scroller-image-panel {
          position: relative;
          background-color: #EFF6FD;
          display: none;
          height: auto;
          order: -1;
          padding: 0;
        }
        
        
        
        
        
        
        
        
  
        .scroller-image-panel img {
          width: 100%;
          max-width: 100%;
          height: auto;
          margin-bottom: 0;
        }
  
        .scroller-text-section {
          scroll-margin-top: 0;
      min-height: 0vh;
      margin: 0;
      width: 100%;
      max-width: 100%;
      padding: 0;
      
  ;
  
        }
        
        
        .scroller-image-panel-mobile {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0px 0px 32px 0px;
      }
  
  
      .scroller-image-panel-mobile img {
        max-width: 100%;
        max-height: 100%;
        opacity: 1;
        transition: opacity 0.6s ease-in-out;
        border-radius: 12px 12px 0px 0px;
        
      }
  
      .scroller-image-panel-mobile img.fade-out {
        opacity: 0;
      }
  
      .productCardBody{
  max-width: 100%;
      }
      .productCardLabel, .productCardHeader, .productCardBody{
  padding-left: 16px;
        padding-right: 16px;
  
      }
        
        
        
        
        
        
      }


.scroller-image-panel,
.scroller-image-panel-mobile {
  transition: background-color 0.6s ease;
}

#display-image {
  transition: opacity 0.6s ease;
  opacity: 1;
}

#display-image.fade-out {
  opacity: 0;
}


  