/*
Informações baseada da SB Admin 2
Elison Shoiti Okabayashi
*/

.text-gray-300 {
    color: #dddfeb!important;
}

.text-gray-800 {
    color: #5a5c69!important;
}

.text-xs {
    font-size: .7rem;
}

.border-left-success {
    border-left: .25rem solid #28a745!important;
}
.border-left-info {
    border-left: .25rem solid #17a2b8!important
}
.border-left-warning {
    border-left: .25rem solid #ffc107!important
}
.border-left-primary {
    border-left: .25rem solid #007bff!important;
}
.border-left-danger {
    border-left: .25rem solid #dc3545!important;
}
.border-left-secondary {
    border-left: .25rem solid #6c757d!important;
}
.border-left-dark  {
    border-left: .25rem solid #343a40!important;
}


.border-bottom-success {
    border-bottom: .25rem solid #28a745!important;
}
.border-bottom-info {
    border-bottom: .25rem solid #17a2b8!important
}
.border-bottom-warning {
    border-bottom: .25rem solid #ffc107!important
}
.border-bottom-primary {
    border-bottom: .25rem solid #007bff!important;
}

.border-bottom-danger {
    border-bottom: .25rem solid #dc3545!important;
}
.border-bottom-secondary {
    border-bottom: .25rem solid #6c757d!important;
}
.border-bottom-dark  {
    border-bottom: .25rem solid #343a40!important;
}

@-webkit-keyframes growIn {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes growIn {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.animated--grow-in, .sidebar .nav-item .collapse {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}
