
:root {
    --black: #000000;
    --white: #ffffff;
    --primary: #011083;
    --secondary: #FFD800;
    --border-color: #E1E1E1;
    --gray: #9A9AB0;
    --base-green: #1D7C24;
    --base-red: #D81C1C;
}

/* Style Btn Buttons */
.btn,
.tag {
    padding: 12px 24px;
    border-radius: 10px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:hover, .btn:focus,
.tag:hover, .tag:focus {
    color: white;
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    outline: none;
    box-shadow: none;
}

/********************************************************************navbar************************************************************************/

.navbar {
    height: 80px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding-inline: 45px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

 .navbar-brand img {
    height: 60px;
    object-fit: contain;
}

.navbar button {
    background-color: transparent;
    border: none;
    color: var(--primary);
    font-size: 20px;
}

.nav-user-dropdown .nav-user-header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer !important;
}

.avatar {
    border: 3px solid var(--secondary);
    overflow: hidden;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.avatar img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.navbar .name {
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: var(--primary);
}

.navbar .profissao {
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
}

.navbar .dropdown-menu {
    padding: 30px;
    width: 300px;
    border: 0;
    box-shadow: 0 10px 15px rgb(27 28 32 / 16%);
    margin-top: 15px;
    margin-left: auto;
    right: 0;
    
}

.navbar .dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.navbar .nav-user-dropdown .dropdown-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.navbar .nav-user-dropdown .dropdown-menu ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-user-dropdown .dropdown-menu ul li a {
    color: var(--primary);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0.48px;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.navbar .nav-user-dropdown .dropdown-menu ul li:hover a {
    color: var(--secondary);
}

.navbar .nav-user-dropdown .dropdown-menu ul li a i {
    font-size: 22px;
}

.navbar .nav-user-dropdown .dropdown-menu ul li a img {
    margin-right: 12px;
    height: 22px;
    position: relative;
    top: -2px;
}

.navbar .nav-user-dropdown .dropdown-menu ul li a i {
    font-size: 24px;
    margin-right: 10px;
    position: relative;
}

.dropdown-toggle::after {
    --width: 15px;
    width: var(--width);
    height: var(--width);
    border: none;
    background-image: url('../../img/icons/angle-down.svg');
    background-repeat: no-repeat;
    background-size: var(--width);
    background-position: center center;
}


.card {
    padding: 50px;
    border-radius: 15px;
}

.card .logo img {
    height: 150px;
}

/********************************************************************sidebar************************************************************************/

.sidebar {
    background-color: var(--primary);
    color: var(--white);
    height: calc(100vh - 80px);
    width: 300px !important;
    display: flex !important;
    flex-direction: column;
    position: fixed;
    z-index: 9;
    overflow-x: hidden;
}

.dashboard > .content {
    background-color: #f9f8f8;
    width: calc(100vw - 300px);
    height: calc(100vh - 86px);
    overflow-y: auto;
    z-index: auto;
    margin-left: 300px;
    padding-bottom: 50px;
}


.sidebar-menu ul {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.btn-sidebar {
    color: var(--white);
    font-size: 24px;
    line-height: 120%;
    font-stretch: .5%;
    padding: 20px 50px 20px 25px;
    display: flex;
    align-items: center;
    gap: 10px;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


.btn-sidebar:hover {
    background-color: var(--secondary) !important;
    color: var(--primary) !important;
}

.accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.accordion-item {
    border: none !important;
}

.accordion-body {
    background-color: #264a6d;
    color: var(--white);
    padding: 0;
}

.accordion-body a {
    color: var(--white) !important;
}

.accordion-body:hover a {
    color: var(--primary);
}

.accordion-button::after {
    transform: rotate(270deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(360deg);
}

.accordion-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.btn-sidebar.active {
    background-color: #e2e2ea42;
    color: var(--white);
}

.nav-sidebar {
    height: 80px;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-sidebar img {
    height: 45px;
}

.close-menu {
    font-size: 20px;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    background-color: #E2E2EA;
    color: #323232;
    border: none;
}


.sidebar-max .content {
    padding-top: 40px;
}

main.login {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
}


.btn-excluir,
.btn-editar,
.btn-duplica {
    background-color: transparent;
    padding: 6px 8px;
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    line-height: 18px;
    margin-right: 5px;
}

.btn-editar {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-editar:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-duplica {
    border: 1px solid var(--base-green);
    color: var(--base-green);
}

.btn-duplica:hover {
    background-color: var(--base-green);
    color: var(--white);
}

.btn-excluir {
    border: 1px solid var(--base-red);
    color: var(--base-red);
}

.btn-excluir:hover {
    background-color: var(--base-red);
    color: var(--white);
}

/********************************************************************tabela************************************************************************/


.form-group.bucar-table-responsive {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
}


table {
    background-color: var(--white);
    border-collapse: collapse !important;
    margin-top: 20px !important;
    --bs-table-bg: transparent;
    --bs-table-accent-bg: rgba(0, 0, 0, 0.05);
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

table thead{
    border-bottom: 1px solid #dee2e6;
}

table td {
    border: none;
    border-bottom: 1px solid #dee2e6;
    padding: 20px;
}

table tr.odd:hover,
table tr.even:hover {
    background-color: #f5f5f575;
    /* --bs-table-accent-bg: transparent; */
}



table img.img_tabela_evento {
    width: 96px;
}

/********************************************************************desktop************************************************************************/

@media (min-width: 993px) {
    table td.opcoes div {
        display: flex;
        justify-content: center;
    }

    table td.opcoes,
    table th.opcoes {
        width: 200px !important;
    }

    table td.opcoes-min,
    table th.opcoes-min {
        width: 150px !important;
    }

    table td.opcoes.com_duplicar,
    table th.opcoes.com_duplicar {
        width: 320px !important;
    }
}
.select2-container .select2-selection--multiple{
    min-height: 42px !important;
}
.select2-container .select2-selection--single {
    min-height: 40px !important;
}
.select2-selection__arrow {
    min-height: 40px !important;
}
.select2-container {
    width: 100% !important;
}
/********************************************************************mobile************************************************************************/
@media (max-width: 992px) {
    #aux-sidebar,
    .sidebar-menu {
        display: none !important;
    }

    /********************************************************************navbar mobile************************************************************************/
    nav.mobile {
        height: 76px;
        width: 100vw;
        z-index: 99;
        background-color: var(--white);
        position: fixed;
        top: 0;
        left: 0;
    }

    nav.mobile .container {
        display: flex;
        align-items: center;
        flex-direction: row;
        height: 100%;
        justify-content: space-between;
    }

    nav.mobile .dropdown-mobile {
        background: var(--white);
        z-index: 99;
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: overlay;
        margin-left: 100vw;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        box-shadow: 0 10px 15px rgb(27 28 32 / 16%);
    }

    nav.mobile .dropdown-mobile .accordion-button {
        background: var(--white);
        color: var(--primary);
    }

    nav.mobile .dropdown-mobile ul {
        list-style: none;
        display: inline-block;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav.mobile .dropdown-mobile ul li {
        width: 100%;
    }

    nav.mobile .dropdown-mobile ul li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        color: var(--primary) !important;
        background-color: var(--white);
        padding: 1rem 1.5rem;
    }

    nav.mobile .dropdown-mobile i {
        font-size: 1.6rem;
    }


    nav.mobile.open .dropdown-mobile {
        margin-left: 0;
    }

    
    .dashboard > .content  {
        width: 100vw;
        margin-left: 0;
        padding-top: 100px;
    }

    .card {
        padding: 20px;
    }
}


/* 
.sidebar-menu {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
} */
