body
{
    background-color: #121212;
    color: #ffffff;
}
.btn-success
{
    background-color: #6acb4b;
}

.animated
{
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite
{
    animation-iteration-count: infinite;
}

.animated.delay-1s
{
    animation-delay: 1s;
}

.animated.delay-2s
{
    animation-delay: 2s;
}

.animated.delay-3s
{
    animation-delay: 3s;
}

.animated.delay-4s
{
    animation-delay: 4s;
}

.animated.delay-5s
{
    animation-delay: 5s;
}

.animated.fast
{
    animation-duration: 800ms;
}

.animated.faster
{
    animation-duration: 500ms;
}

.animated.slow
{
    animation-duration: 2s;
}

.animated.slower
{
    animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce)
{

    .animated
    {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }

}
@keyframes fadeInUp {

  from {
    opacity: 0;
    transform:  translate3d(0, 100%, 0);
  }



  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;

}
/*
Ombre
*/
.bx 
{
    box-shadow: 0px 2px 50px rgba(0,0,0, .5);
    border-radius: 15px;
    border:1px solid;
}

.boxrm
{
    font-size:30px;
    line-height: 150px; /* verticale */
}

.panel-title
{
    font-size:45px;    
}
.csspager td
 {
     padding-left:10px;
     padding-right:10px;
    
 }