.fade-out {
  animation: fadeOut .3s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn .3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hidden {
  opacity: 0;
  display: none;
}

.my_request, 
.create_vizitine, 
.gauti_ivertinimus, 
.create_vizitine,
.user_profile_details {
  opacity: 0;
  transform: translateY(10px);
  animation-name: my_request;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

@keyframes my_request {
  to {
    opacity: 1;
    transform: translateY(0); 
  }
}


.user-categories-list li {
  opacity: 0;
  transform: translateY(10px);
  animation: listFadeIn 0.6s ease-out forwards;
}

.user-categories-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.user-categories-list li:nth-child(2) {
  animation-delay: 0.3s;
}
.user-categories-list li:nth-child(3) {
  animation-delay: 0.5s;
}
.user-categories-list li:nth-child(4) {
  animation-delay: 0.7s;
}
.user-categories-list li:nth-child(5) {
  animation-delay: 0.9s;
}
.user-categories-list li:nth-child(6) {
  animation-delay: 1.1s;
}
.user-categories-list li:nth-child(7) {
  animation-delay: 1.3s;
}

@keyframes listFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
