 body{
  overflow: hidden !important;
  -webkit-user-select: none; /* For Safari and Chrome */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For IE */
  user-select: none;         /* Standard Property */
 }
 html, body {
  height: 100%;
  overflow: hidden; /* Prevent native scrolling */
}
[data-scroll-section] {
  position: relative;
}
[data-scroll-container] {
  overflow: hidden; 
  display: inline-flex;
  
}
[data-scroll-direction=horizontal] [data-scroll-section]{
  display: inline-flex;
}
  .c-scrollbar {
    position: absolute;
    left: 0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    top: 0;
    background-color: #ECEFFB !important;
    width: 11px;
    height: 100%;
    border-radius: 3px;
    opacity: 0; }

    .c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
      opacity: 1; }
    [data-scroll-direction="horizontal"] .c-scrollbar {
      width: calc(var(--vw, 1vw)* 30) !important;
      height: 7px;
      top: auto;
      bottom: 1rem;
     }

    
  
  .c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: black;
    opacity: 0.5;
    min-width: 20px;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab; }
    .has-scroll-dragging .c-scrollbar_thumb {
      cursor: -webkit-grabbing;
      cursor: grabbing; }
    [data-scroll-direction="horizontal"] .c-scrollbar_thumb {
        right: auto;
        bottom: 0;
        margin: 0 !important;
        background-color: var(--black) !important;
        cursor: none !important; }

        @media only screen and (max-width: 640px) {
          .horizontal-section{
            width: 100% !important;
            display: flex !important;
            flex-direction: column;
          }
          [data-scroll-container] {
            overflow: hidden; 
            display: flex;
            flex-direction: column;
          }
          .c-scrollbar{
            opacity: 0 !important;
          }
       
          .header-right{
            display: flex;
          }
          
        }