.user-comments {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 15px;
    background-color: #f9f9f9;
    opacity: 0;  /* Start with invisible */
    transform: translateY(20px);  /* Slide from bottom */
    transition: all 0.4s ease-in-out;
}
.user-comments:nth-child(even) {
    background-color: #e6f7ff;
}
.user-comments.visible {
    opacity: 1;  /* Fade in */
    transform: translateY(0);
}
body.path-request-appointment #backtotop {
  display: none !important;
}

