.disclaimer-alert {
  position: absolute;
  bottom: 10px;
  left: 10px;
  max-width: 30%; /* Default for larger screens */
}

.disclaimer-out {
  animation: moveLeft 3s forwards;
}

/* When the screen width is 768px or smaller (mobile & tablets) */
@media (max-width: 768px) {
  .disclaimer-alert {
    max-width: 80%; /* Increase width on small screens */
  }
}

/* Keyframes for the animation */
@keyframes moveLeft {
  0% {
    left: 10px; /* Starting position */
  }
  100% {
    left: -100%; /* Move the div completely out of the screen */
  }
}
