﻿.card-body.maximo {
    max-height: 570px;
    min-height: 500px;
    overflow-y: scroll;
}

.colorDefault {
    background-color: #268DC2 !important;
    color: white;
}

/* Estilos para WebKit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 4px;
    /* Ancho del scroll */
}

::-webkit-scrollbar-track {
    background: white;
    /* Color del fondo del scroll */
}

::-webkit-scrollbar-thumb {
    background: #268DC2 !important;
    /* Color del scroll */
}

/* Estilos para Gecko (Firefox) */
::-moz-scrollbar {
    width: 4px;
    /* Ancho del scroll */
}

::-moz-scrollbar-track {
    background: white;
    /* Color del fondo del scroll */
}

::-moz-scrollbar-thumb {
    background: #268DC2 !important;
    /* Color del scroll */
}

.animation {
    /*animation: animates ease-in-out 10s alternate infinite 0.5s;
    -webkit-animation: animates ease-in-out 10s alternate infinite 0.5s;*/
}

@keyframes animates{
    from {
        
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
    }
    to {
        transform: translateY(-60%);
        -webkit-transform: translateY(-60%);
    }
}