/* Animation */
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Header animation */
@keyframes fade-up {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

header .navbar {
    animation: fade-up 0.5s ease-in;
}

/* ToolTip */

.tooltip {
    line-height: 1rem;
    border-radius: .5rem !important;
}
.tooltip-inner {
    line-height: 1rem;
}
.tooltip .tooltip-arrow { 
    visibility: hidden !important;
}

.root-click-discover {
    position: absolute; 
    bottom: 0; 
    right: 10px; 
    font-size: x-large;
    padding: 5px;
    color: var(--text-color) !important;
}

.container-root-card-img {
    text-align: center;
}

.container-root-card-img img {
    width: 100px;
    height: 100px;
}



.shadow-sm {
  box-shadow: 0 .125rem .25rem var(--text-color-dark) !important;
}


.slider-wrapper {
  width: 80%;
  margin: auto;
}

.main-card-title {
  border-bottom: 1px solid var(--text-color);
}