body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none; /* For IE and Edge */
}
html {
  scrollbar-width: none; /* For Firefox */
}

.twist-scrollbar {
  position: fixed;
  top: var(--gap);
  right: calc( var(--gap) * 0.25 );
  bottom: var(--gap);
  width: var(--textoMenor);
  display: flex;
  justify-content: center;
  z-index: 990;
  transition: all 0.2s ease-in-out;
}

.twist-scrollbar .twist-scrollbar-thumb {
  width: 100%;
  display: flex;
  min-height: 2rem;
  cursor: grab;
}
.twist-scrollbar .twist-scrollbar-thumb:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: black;  
  clip-path: inset(0 0 0 0.8rem round 1rem);
  transition: all 0.2s ease-in-out;
}

.twist-scrollbar:hover .twist-scrollbar-thumb:after {
  clip-path: inset(0 0 0 0.6rem round 1rem);
}

@media only screen and (max-width: 767px) {
  .twist-scrollbar {
    display: none !important;
  }
}
