:root {
    --bg-disable: #751414;
    --bg-disable-hover: #751414b0;
}

body{
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

#pagination{
    margin-top: auto;
}

.breadcrumb {
    justify-content: center;
}

.bg-disable,
.bg-disable:focus {
    background-color: var(--bg-disable);
}

.bg-disable:hover {
    background-color: var(--bg-disable-hover)
}

.pagination {
    justify-content: center;
}

.fade-item {
    transition: .2s all ease-in-out;
    opacity: 0;
}

.fadein {
    transition: .2s all ease-in-out;
    opacity: 0;
    animation: fadeIn 0.9s 1;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}