/* ===== Layout ===== */

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.hidden {
    display: none;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.border-t {
    border-top: 1px solid #dee2e6;
}

.border {
    border: 1px solid #dee2e6;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* ===== Colors ===== */

.bg-white {
    background-color: #fff;
}

.bg-slate-200 {
    background-color: #e2e8f0;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray-700 {
    color: #374151;
}

/* ===== Border Radius ===== */

.rounded {
    border-radius: 0.375rem;
}

.rounded-l {
    border-radius: 0.375rem 0 0 0.375rem;
}

.rounded-r {
    border-radius: 0 0.375rem 0.375rem 0;
}

/* ===== States ===== */

.cursor-not-allowed {
    cursor: not-allowed;
    opacity: 0.65;
}

.-space-x-px > * + * {
    margin-left: -1px;
}

/* ===== Links ===== */

nav a,
nav span {
    text-decoration: none;
    color: #212529;
    display: inline-block;
    line-height: 1.5;
}

nav a:hover {
    background-color: #f8f9fa;
}

/* ===== Bootstrap-like active page ===== */
/* Caso active_css seja "active" */

.active {
    background-color: #0d6efd;
    color: #fff !important;
    border-color: #0d6efd;
}

/* ===== Responsive ===== */

@media (min-width: 768px) {

    .md\:hidden {
        display: none !important;
    }

    .md\:flex {
        display: flex !important;
    }

    .md\:flex-1 {
        flex: 1 1 0%;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:justify-between {
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {

    .md\:hidden {
        display: flex;
    }

    .md\:flex {
        display: none !important;
    }
}