#animationCard {
  width: 100%;
  height: auto;
}

#treeMoney {
  width: 150px;
  height: auto;
  position: absolute;
  right: -10px;
  bottom: -13px;
}

.loaderSmall {
  width: 75px;
  height: 75px;
}

#settlement-wallet {
  width: 190px;
}

.navigation-container .nav .nav-link:hover .divide svg {
  animation: zoomIn 0.5s ease-in 1;
}

.navigation-container .nav .nav-link:nth-child(2):hover .divide svg {
  /* animation: zoomIn 0.5s ease-in-out 1;
  animation: zoomIn 0.5s ease-in-out 1; */
  /* animation: dropIn 0.5s ease-out 1; */
  animation: iconAnimate 0.5s ease-in 1;
}

.navigation-container .nav .nav-link:nth-child(3):hover .divide svg {
  animation: iconAnimate 0.5s ease-in 1;
}

.navigation-container .nav .nav-link:nth-child(4):hover .divide svg {
  animation: getIn 0.5s ease-in 1;
}

.navigation-container .nav .nav-item .nav-link:hover .divide svg,
.navigation-container .nav .nav-link:nth-child(6):hover .divide svg {
  animation: spin 0.5s linear 1;
}

.navigation-container .nav .nav-link:nth-child(8):hover .divide svg {
  animation: getIn 0.5s ease-in 1;
}

.navigation-container .nav .nav-link:nth-child(10):hover .divide svg {
  animation: dropIn 0.5s ease-out 1;
}

@keyframes iconAnimate {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-14deg);
  }

  40% {
    transform: rotate(14deg);
  }

  60% {
    transform: rotate(-14deg);
  }

  80% {
    transform: rotate(14deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes dropIn {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  60% {
    transform: translateY(10px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes getIn {
  0% {
    transform: translatex(-10px);
    opacity: 0;
  }

  60% {
    transform: translateX(10px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
  }
}