@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ROOTS */
:root {
    --color-primary: var(--bs-success);
    --color-danger: var(--bs-danger);
    --color-warning: var(--bs-warning);
    --color-info: var(--bs-info);
    --color-info-transparent: rgba(var(--bs-info-rgb), 0.2);

    --color-bg-primary: var(--bs-body-bg);
    --color-bg-secondary: var(--bs-secondary-bg);
    --color-bg-blur: rgba(var(--bs-body-bg-rgb), 0.6);

    --color-text-primary: var(--bs-body-color);
    --color-text-secondary: var(--bs-secondary-color);

    --color-light: var(--bs-light);
    --color-inverse: var(--bs-dark);

    --shadow: var(--bs-box-shadow);
    --shadow_modal: var(--bs-box-shadow-lg);
}

/* FIM ROOTS */

/* 🖱️ Barra de rolagem personalizada */
/* Chrome, Edge e Safari */
*::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

*::-webkit-scrollbar-track {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

*::-webkit-scrollbar-thumb:active {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
}

/* 📝 Seleção de texto */
::selection {
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
}

/* Reset global */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Inter', sans-serif;
    scroll-behavior: smooth;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Melhor legibilidade */
body {
    background-color: var(--color-bg-primary, #fff);
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100vw;
    width: 100dvw;
}

p {
    margin-bottom: 0;
}


/* Remover seleção apenas de elementos específicos */
button,
a {
    -webkit-user-select: none;
    user-select: none;
}

.main--expanded {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    margin-left: 250px;
    transition: all 0.3s ease-in-out;
}

.main--collapsed {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.topbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 8px 5px;
    background: var(--bs-body-bg);
    border-radius: 0 0 4px 4px;
    box-shadow: var(--shadow-thin);
    z-index: 100;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-user-select: none;
    user-select: none;
    color: var(--color-text-primary);
}

.topbar p {
    font-size: .9rem;
}

.topbar .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 10px;
}

.navbar--expanded {
    position: fixed;
    left: 0;
    background: var(--bs-body-bg);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 100vh;
    height: 100dvh;
    width: 250px;
    z-index: 200;
    box-shadow: var(--shadow-thin);
    user-select: none;
    color: var(--color-text-primary);
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: var(--color-bg-secondary) var(--color-bg-primary);
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
}

.navbar--collapsed {
    position: fixed;
    left: -250px;
    background: var(--bs-body-bg);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    height: 100dvh;
    width: 250px;
    z-index: 200;
    box-shadow: var(--shadow-thin);
    user-select: none;
    color: var(--color-text-primary);
    overflow-y: hidden;
    transition: all 0.3s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: var(--color-bg-secondary) var(--color-bg-primary);
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
}

.container--expanded {
    position: relative;
    padding: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    height: 100%;
    background: var(--bs-body-bg);
    transition: all 0.3s ease-in-out;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.ag-theme-bootstrap {
    /* Fonte */
    --ag-font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    --ag-font-size: 0.9rem;

    /* Fundo geral */
    --ag-background-color: var(--color-bg-primary);
    --ag-foreground-color: var(--color-text-primary);

    /* Bordas */
    --ag-border-color: var(--color-bg-secondary);

    /* Cabeçalho (claro, minimalista) */
    --ag-header-background-color: var(--color-bg-primary);
    --ag-header-foreground-color: var(--color-text-primary);
    --ag-header-cell-hover-background-color: var(--color-bg-blur);
    --ag-header-height: 40px;

    /* Linhas */
    --ag-odd-row-background-color: var(--color-bg-secondary);
    --ag-row-hover-color: var(--color-info-transparent);

    /* Seleção */
    --ag-selected-row-background-color: var(--color-info-transparent);
    --ag-row-border-color: var(--color-bg-secondary);

    /* Foco / Range Selection */
    --ag-range-selection-border-color: var(--color-info);

    /* Painéis (paginação, filtros, etc.) */
    --ag-control-panel-background-color: var(--color-bg-secondary);
    --ag-control-panel-border-color: var(--color-bg-secondary);

    --ag-input-background-color: var(--color-bg-secondary);
    --ag-input-foreground-color: var(--color-text-primary);
    --ag-input-border-color: var(--color-bg-secondary);
    --ag-input-border-radius: 4px;
    --ag-input-focus-border-color: var(--color-primary);
    --ag-input-focus-background-color: var(--color-bg-secondary);
}

.grid-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    height: 100%;
}

.divLogo {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5px;
    width: 100%;
    overflow: hidden;
}

.divLogo:after {
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--color-bg-secondary);
    border-radius: 4px;
    margin: 5px 0;
}

.logo {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin-bottom: 10px;
    color: var (--color-text-primary);
}

.listaNavBar {
    display: flex;
    align-items: center;
    background-color: var(--color-bg-primary);
    margin: 0;
    width: 100%;
    min-height: 40px;
    border-radius: 4px;
    gap: 10px;
    cursor: pointer;
    outline: none;
    list-style-type: none;
    overflow: hidden;
    padding: 0;

    &&:hover {
        background-color: var(--color-bg-secondary) !important;
    }
}

button.listaNavBar.accordion-button {
    min-height: 40px;
    transition: none;
}

.listaNavBar.active {
    background: var(--color-bg-secondary) !important;
    border: 1px solid var(--bs-gray-400);
}

[data-bs-theme="dark"] .listaNavBar.active {
    border: 1px solid var(--bs-gray-900);
}

.listaNavBar.active p,
.listaNavBar.active svg {
    font-weight: 500;
    color: var(--color-text-primary);
}

.listaNavBar a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    outline: none;
    width: 100%;
    height: 40px;
}

.listaNavBar p {
    text-decoration: none;
    font-size: .9rem;
    color: var(--bs-secondary-text-emphasis);
    text-align: left;
    width: 100%;
}

.listaNavBar svg {
    color: var(--bs-secondary-text-emphasis);
    width: 30px;
    height: 30px;
    min-width: 24px;
    min-height: 24px;
    margin: 0 12px;
}

.listaNavBar img {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    margin: 3px 5px 3px 5px;
    filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.2));
}

.usernameEcpf {
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .9rem;
    transition: all 0.3s ease-in-out;
}

.usernameEcpf .username {
    font-weight: 500;
    color: var(--color-text-secondary);
    margin: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.usernameEcpf .funcao,
.usernameEcpf .cpf {
    font-weight: 300;
    color: var(--color-text-secondary);
    margin: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.btnToogleNavBar {
    position: fixed;
    top: 8px;
    left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: rgba(var(--bs-body-bg-rgb), 1);
    transition: all 0.3s ease-in-out;
    box-shadow: var(--shadow);
    color: var(--color-text-primary);
    outline: none;
    z-index: 1000;
}

.btnToogleNavBar i {
    font-size: .9rem;
    width: auto;
    height: auto;
    transition: all 0.3s ease-in-out;
    color: var(--color-text-primary);
}

.btnToogleNavBar:hover {
    background-color: var(--color-bg-secondary);
}

.user-data {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: auto;
    position: relative;
}

.nameleveluser {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: auto;
    margin: 0 10px 0 10px;
    cursor: pointer;
}

.nameuser {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
    text-align: right;
}

.nameuser p {
    line-height: 1rem;
}

.nameuser p:first-child {
    font-size: 0.8rem;
}

.nameuser p:last-child {
    font-size: 0.7rem;
    opacity: 0.7;
}


#btnModalUser {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-inverse);
}

.backdropModalUser {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modalUser {
    position: fixed;
    top: 0;
    right: -300px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    width: 300px;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 4px 0 0 4px;
    padding: 20px;
    z-index: 10000;
    overflow-y: auto;
    overflow-X: hidden;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    transition: transform 0.3s ease-in-out;
}

.modalUser.open {
    transform: translateX(-300px);
}

.modalUser.close {
    transform: translateX(0);
}

.headerModalUser {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.contentModalUser::before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--color-bg-secondary);
    margin: 5px 0;
    border-radius: 4px;
}

.contentModalUser {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    margin: 5px 0;
}

.contentModalUser:after {
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--color-bg-secondary);
    margin: 5px 0;
    border-radius: 4px;
}

.footerModalUser::before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--color-bg-secondary);
    margin: 5px 0;
    border-radius: 4px;
}

.footerModalUser {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.footerModalUser p {
    text-align: center;
    font-size: .7em;
    color: var(--color-text-primary);
}

.backdropModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

#divdarkmode {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    cursor: pointer !important;
}

.checkboxdarkmode {
    opacity: 0;
    position: absolute;
    height: 40px;
    width: 100%;
    cursor: pointer !important;
}

.labeldarkmode {
    transform: scale(.8);
    background-color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    position: relative;
    height: 25px;
    width: 60px;
    overflow: hidden;
    border-radius: 50px;
}

.labeldarkmode .ball {
    background-color: var(--color-bg-secondary);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    height: 23px;
    width: 23px;
    transform: translateX(0px);
    transition: transform 0.3s ease-in-out;
}

.checkboxdarkmode:checked+.labeldarkmode .ball {
    transform: translateX(21px);
}


@media print {
    @page {
        size: A4;
        margin: 0;
        padding: 0;
    }

    .navbar--expanded,
    .navbar--collapsed,
    .topbar {
        visibility: hidden;
    }

    .btnPrincipalVerde {
        display: none;
    }

    .btnPrincipalAmarelo {
        display: none;
    }

    #modalUser {
        display: none;
        visibility: hidden;
    }

    *:not(html) {
        opacity: 0;
    }

    html {
        /* opacity: 1; */
        height: auto;
        width: auto;
    }

    html::after {
        content: "Não imprima esta página!";
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #838383;
        z-index: 9999;
    }

    body {
        height: 100%;
        width: 100%;
        color: #000000;
        padding: 10px;
    }

    .container--expanded,
    .container--collapsed {
        margin: 0 !important;
        padding: 0 !important;
        height: 100%;
        width: 100%;
        color: #000000;
    }

    table {
        page-break-after: always;
    }
}

.imgUserPequeno {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--color-inverse);
}

.imgModalUser {
    width: 120px;
    border-radius: 4px;
    object-fit: cover;
}

.container-swal {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: .5rem;
    box-shadow: var(--shadow);
}

.swal-right-buttons .swal2-actions {
    width: 100%;
    padding-right: 1rem !important;
    justify-content: flex-end !important;
}


.card-elogio {
    border-left: 5px solid #198754 !important;
}

.card-certificado {
    border-left: 5px solid #0d6efd !important;
}

.card-punicao {
    border-left: 5px solid #dc3545 !important;
}

.card-recurso {
    border-left: 5px solid #ffc107 !important;
}

.card-medalha {
    border-left: 5px solid #fd7e14 !important;
}

.tableDefault {
    width: clamp(50%, 100%, 100%);
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 4px;
    margin: 5px auto;
    background-color: var(--color-primary);
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

/* TH são as linhas de cabeçalho TH = Table Header */
.tableDefault th {
    text-align: center;
    font-weight: 500;
    padding: 6px;
    color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-secondary);
}

.tableDefault tbody tr {
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    vertical-align: middle !important;
    height: fit-content;
}

.tableDefault tbody tr:hover {
    background-color: var(--color-bg-secondary);
}

.tableDefault tfoot tr {
    border-top: 1px solid var(--color-bg-secondary);
    color: var(--color-bg-primary);
    border-bottom: none;
}

/* TD são as linhas de conteúdo TD = Table Data */
.tableDefault td {
    padding: 6px;
    text-align: left;
    vertical-align: middle !important;
}

/* TR são as linhas de conteúdo TR = Table Row */
.tableDefault tr:not(:last-child) {
    border-bottom: 1px solid var(--color-bg-primary);
}

.acoes {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    flex-wrap: wrap;
    overflow-wrap: break-word;
    align-items: center;
    text-align: center;
    gap: 5px;
    min-width: 80px;
    max-width: 110px;
}

.tituloTabela {
    width: fit-content;
    max-width: 100%;
    min-width: fit-content;
    height: auto;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    text-align: center;
    margin: 20px auto 5px auto;
    user-select: none;
    -webkit-user-select: none;
}

.alunoElogioColetivo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    padding: 5px;

    &:hover {
        background-color: var(--color-bg-secondary);
    }
}

.descricaoAluno {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: fit-content;
    height: auto;
}

.acoesAluno {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    height: auto;
    gap: 5px;
}

.nowrap {
    text-wrap: nowrap;
}

.barra {
    height: 100%;
    width: 0%;
    background-color: var(--cor-normal);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.alerta {
    color: var(--cor-alerta);
}

.lista {
    width: clamp(200px, 100%, 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.cada {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

.cada i {
    position: absolute;
    top: 0;
    right: -90px;
    font-size: 24px;
    color: var(--color-primary);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.cada input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    opacity: 0;
    cursor: pointer;
    z-index: 100;
}

.cada img {
    border: 4px solid transparent;
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
}

.cada input:checked~img {
    opacity: 1;
    border: 4px solid var(--color-primary);
}

.cada input:checked~i {
    opacity: 1;
}

.accordion-collapse .bg-transparent {
    margin-left: 15px !important;
}

.accordion-collapse .bg-transparent .listaNavBar {
    min-height: 34px !important;
}

.accordion-collapse .bg-transparent .listaNavBar a {
    height: auto !important;
}

.accordion-collapse .bg-transparent .listaNavBar p {
    font-size: .85rem !important;
}

.accordion-collapse .bg-transparent .listaNavBar svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0 4px !important;
}

.card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-horizontal img {
    width: clamp(100px, 10vw, 120px);
    height: clamp(100px, 10vw, 120px);
    object-fit: cover;
    border-radius: 0.375rem;
}

.card-horizontal .card-body {
    flex: 1;
}

.card-horizontal .card-aside {
    max-width: 250px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.card-aside span {
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-horizontal .card-footer {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 145px;
}

.dropzone {
    cursor: pointer;
    border-style: dashed !important;
    transition: all 350ms ease-in-out;
}

.dropzone.is-dragover {
    background-color: var(--bs-body-bg) !important;
    border-color: var(--bs-success) !important;
}

.dropzone:hover {
    background-color: var(--bs-body-bg) !important;
    border-color: var(--bs-success) !important;
}

.dropzone:focus {
    background-color: var(--bs-body-bg) !important;
    border-color: var(--bs-success) !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.image-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* ~gap-2 */
}

.image-actions .btn {
    line-height: 1;
}

.badge-changed {
    font-weight: 600;
}

.image-select-label {
    transition: transform 0.2s, border-color 0.2s;
}

.btn-check:checked+.image-select-label {
    border: 1px solid #198754 !important;
    /* verde do Bootstrap */
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.2);
}

.image-option {
    border-radius: 4px;
}

input.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e53935'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e53935' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

input.is-valid {
    border-color: var(--bs-form-valid-border-color);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23157347' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-success) !important;
    box-shadow: 0;
}

@media (prefers-reduced-motion: reduce) {
    .dropzone {
        transition: none;
    }
}

.gradient-overlay {
    background-image:
        radial-gradient(circle at center,
            rgba(var(--bs-primary-rgb), 0.06) 0%,
            rgba(var(--bs-primary-rgb), 0.03) 30%,
            transparent 70%),

        radial-gradient(circle at top left,
            rgba(var(--bs-success-rgb), 0.08) 0%,
            rgba(var(--bs-success-rgb), 0.04) 40%,
            transparent 75%),

        radial-gradient(circle at bottom right,
            rgba(var(--bs-info-rgb), 0.08) 0%,
            rgba(var(--bs-info-rgb), 0.03) 40%,
            transparent 75%);

    background-repeat: no-repeat;
}

/* Responsivo */
@media (max-width: 768px) {
    .card-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .card-horizontal img {
        width: 100%;
        height: auto;
    }

    .card-horizontal .card-footer {
        justify-content: center;
    }

    .card-horizontal .card-aside {
        max-width: 100%;
        flex-direction: row;
    }

    .card-aside span {
        width: auto;
    }

    .card-horizontal .card-footer {
        max-width: 100%;
    }

    .footer {
        display: none;
    }

    .topbar .title {
        display: none;
    }

    .documentos-container .documento {
        flex-direction: column;
    }

    .documentos-container .acoesFlex {
        flex-direction: row;
    }

    .colunasRecursos {
        flex-direction: column;
    }

    footer#footer {
        display: none;
    }

    div#divContadorToken {
        display: none !important;
    }

    p#title {
        display: none;
    }

    div#divColegioLogado {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .containerRelatorio {
        flex-direction: column;
        align-items: center;
    }

    .cardRelatorio {
        width: 90%;
    }

    .containerContraturnos {
        flex-direction: column;
        align-items: center;
    }

    .cardContraturno {
        width: 100%;
    }

}

/* FIM MEDIA QUERIES */