@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}


::-webkit-scrollbar {
    -webkit-appearance: none;
    appearance: none
}

::-webkit-scrollbar:horizontal {
    background: #dee2e6;
    height: .7rem
}

::-webkit-scrollbar:vertical {
    background: #dee2e6;
    width: .7rem
}

::-webkit-scrollbar-thumb {
    background: #343a40;
    border: 0;
    border-radius: 0
}
