
#sticky {
    z-index: 1;
}

    #sticky {    
       /* width: 243px; */
       position: sticky;
       /*top: 85px;*/
       top:30px;
       left: 0;
       margin-top: 4px;
       height: calc(100% - 50px)			
   }
       
   .sticky_container{
       display: flex;
       
   }
   

 @media (max-width: 768px) {
      .sticky {
        position: static; /* Set position to static on mobile */
        width: 100%; /* Adjust width as needed for mobile layout */
      }
    }
    
/*#sticky{
    min-height: 537px;
}

@media (max-width: 89.9375em) {
    #sticky{
    min-height: 750px;

}
    }*/