/*
--- This is a php library for Database Oriented tasking.
@Author    : Shivam S Bharati
@version   : 1.4
@Published : Since: 28.Aug.2020 
--------------------------------------------------------------------------!
*/
.bcw-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
  }

  .bcw-marquee-content {
    display: inline-block;
    padding-left: 110%; /* Start off-screen */
    animation: bcw-marquee-animation 25s linear infinite;
    will-change: transform; /* Optimize for smooth animation */
  }

  @keyframes bcw-marquee-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }

  /* Smooth slowdown on hover */
  .bcw-marquee:hover .bcw-marquee-content {
    animation-play-state: paused;
    transition: transform 0.5s ease-out; /* Smooth deceleration */
    transform: translateX(var(--hover-progress)); /* Dynamically calculated */
  }



/* ---------- Overload Bootstrap -------------  */
.btn.disabled,
.btn:disabled,
.btn[disabled],
a.btn.disabled {
    cursor: not-allowed !important;
}

