*,
:after,
:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root,
:root,
[data-bs-theme=light],
body,
html,
main {
    --bs-primary-rgb: 5, 104, 34;
    --bs-link-color: rgb(5, 104, 34);
    --bs-link-hover-color: rgb(5, 104, 34);
    --bs-link-hover-color: rgb(5, 104, 34);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--primaryColor);
    --bs-pagination-active-color: #fff;
    --primaryColor: rgb(5, 104, 34);
    --primaryColorText: rgb(255, 255, 255);
    font-family: Roboto, Segoe UI, Helvetica Neue, Arial, sans-serif;
    overflow: auto;
    height: 100%;
}

@media (max-width: 768px) {
    .w-sm-100 {
        width: 100%;
    }
}

.modal {
    font-family: Roboto, Segoe UI, Helvetica Neue, Arial, sans-serif;
}

.modal #registroForm {
    height: 100%;
}

.main {
    background-color: #fff;
    color: rgb(60, 60, 60);
    height: 100%;
    overflow: auto;
    width: 100%;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--primaryColorText) !important;
    background-color: var(--primaryColor) !important;
}

.btn-primary {
    background-color: var(--primaryColor) !important;
    color: var(--primaryColorText) !important;
    --bs-btn-color: var(--primaryColorText) !important;
    --bs-btn-bg: var(--primaryColor) !important;
    --bs-btn-border-color: var(--primaryColor) !important;
    --bs-btn-hover-color: var(--primaryColorText) !important;
    --bs-btn-hover-bg: var(--primaryColor) !important;
    --bs-btn-hover-border-color: var(--primaryColor) !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--primaryColorText) !important;
    --bs-btn-active-bg: var(--primaryColor) !important;
    --bs-btn-active-border-color: var(--primaryColor) !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primaryColorText) !important;
    --bs-btn-disabled-bg: var(--primaryColor) !important;
    --bs-btn-disabled-border-color: var(--primaryColor) !important;
}

.btn-outline-primary {
    --bs-btn-color: var(--primaryColor) !important;
    --bs-btn-border-color: var(--primaryColor) !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primaryColor) !important;
    --bs-btn-hover-border-color: var(--primaryColor) !important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primaryColor) !important;
    --bs-btn-active-border-color: var(--primaryColor) !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primaryColor) !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primaryColor) !important;
    --bs-gradient: none;
}

.btn-primary {
    color: var(--bs-btn-color) !important;
    background-color: var(--bs-btn-bg) !important;
    border-color: var(--bs-btn-border-color) !important;
}

.pointer {
    cursor: pointer;
}

#globalConfirmationModal {
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
}

/* Page header */
.top-menu-header-btn-placeholder {
    width: 40px;
}

.top-menu-header h4 {
    text-transform: uppercase;
    font-family: Poppins, Segoe UI, Helvetica Neue, Arial, sans-serif;
    margin: 0rem 1rem;
}

.top-menu-header-btn-placeholder a {
    width: 40px;
    height: 40px;
    position: relative;
}

.top-menu-header-btn-placeholder a i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.btn-round i {
    color: white;
    font-size: 1.7rem;
}

/* Navbar + footer */
.navbar {
    background: var(--primaryColor) !important;
    color: var(--primaryColorText) !important;
    box-shadow: 0 .25rem .5rem #00000026;
    display: flex !important;
    height: 70px;
    padding: .5rem 1rem !important;
    position: static;
    width: 100%;
    z-index: 101;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .logo {
    cursor: pointer;
    max-height: 50px;
    max-width: 150px;
    width: 100%;
    pointer-events: inherit !important;
}

.navbar .iconButton {
    border: 1px solid #fff !important;
    border-radius: 50%;
    box-shadow: none !important;
    color: white;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent
}

.navbar .dropdown-perfil,
.navbar .dropdown-perfil.active,
.navbar .dropdown-perfil.show {
    box-shadow: none !important;
    padding: 0;
    border-radius: 50%;
    background-color: #fff;
    height: 50px;
    width: 50px;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.176);
}

.navbar .iconContainer {
    width: 40px;
    height: 40px;
    position: relative;
}

.navbar .iconContainer i {
    color: var(--primaryColorText);
    font-size: 1rem;
}

.navbar .dropdown-menu .perfilData {
    width: 100%;
    max-width: 250px;
}

.navbar .dropdown-menu .perfilData p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Estilização do loading */
.page-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 1);
    z-index: 999999999999999999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.page-loader__spinner {
    position: relative;
    width: 50px;
    height: 50px;
}

.page-loader__spinner svg {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-loader__spinner svg circle {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

.page-loaderAjax {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.page-loader__spinnerAjax {
    position: relative;
    width: 100px;
    height: 100px;
}

.page-loader__spinnerAjax svg {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-loader__spinnerAjax svg circle {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

.remove {
    display: none !important;
    z-index: 1 !important;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {

    100%,
    0% {
        stroke: #dc3545;
    }

    40% {
        stroke: #007bff;
    }

    66% {
        stroke: #28a745;
    }

    80%,
    90% {
        stroke: #ffc107;
    }
}

@keyframes color {

    100%,
    0% {
        stroke: #dc3545;
    }

    40% {
        stroke: #007bff;
    }

    66% {
        stroke: #28a745;
    }

    80%,
    90% {
        stroke: #ffc107;
    }
}

@keyframes ldio-x2uulkbinbj-o {
    0% {
        opacity: 1;
        transform: translate(0 0)
    }

    49.99% {
        opacity: 1;
        transform: translate(80px, 0)
    }

    50% {
        opacity: 0;
        transform: translate(80px, 0)
    }

    100% {
        opacity: 0;
        transform: translate(0, 0)
    }
}

@keyframes ldio-x2uulkbinbj {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(80px, 0)
    }

    100% {
        transform: translate(0, 0)
    }
}

.ldio-x2uulkbinbj div {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 20px;
}

.ldio-x2uulkbinbj div:nth-child(1) {
    background: #056822;
    animation: ldio-x2uulkbinbj 1s linear infinite;
    animation-delay: -0.5s;
}

.ldio-x2uulkbinbj div:nth-child(2) {
    background: #d3d3d3;
    animation: ldio-x2uulkbinbj 1s linear infinite;
    animation-delay: 0s;
}

.ldio-x2uulkbinbj div:nth-child(3) {
    background: #056822;
    animation: ldio-x2uulkbinbj-o 1s linear infinite;
    animation-delay: -0.5s;
}

.loadingio-spinner-dual-ball-nq4q5u6dq7r {
    width: 200px;
    height: 125px;
    display: inline-block;
    overflow: hidden;
    background: #ffffff;
}

.ldio-x2uulkbinbj {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
}

.ldio-x2uulkbinbj div {
    box-sizing: content-box;
}

/* [ldio] generated by https://loading.io */

/* qrcode */


/* Qrcode */
#qrcode {
    width: 225px;
    height: 225px;
    margin: auto;
    display: flex;
    margin: 2rem auto;
}

#reader {
    margin: 2rem auto !important;
}

#leitorQrcodeContainer {
    padding: 2rem 0rem;
}

/* Networking */

.profile-section .card .card-img-top {
    height: 150px;
    object-fit: contain;
    border-bottom: 1px solid rgba(0, 0, 0, 0.176);
}

.networkingFilters button {
    width: 50%;

}

.expositor-grid .card {
    position: relative;
    background-color: transparent !important;
}

.expositor-grid .card .card-body {
    background-color: rgb(247, 247, 247);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.expositor-grid .card .checkInBadge {
    position: absolute;
    top: 10px;
    right: 10px;

}

.participant-grid {
    display: grid;
    text-align: center;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.participant-card-relatorios {
    height: 250px !important;
}

.participant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 240px;
}

.participant-card .no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 150px;
}

.participant-card .photo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.176);
}

.participant-photo-container-big img,
.participant-card .photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.participant-card-details p {
    margin-bottom: 0.5rem;
}

.participant-photo-container-big {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.176);
}

/* Expositores */

.expositor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 240px;
}

.expositor-card .no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 150px;
}

.expositor-card .photo-container {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 0, 0, 0.176);
}

.expositor-photo-container-big img,
.expositor-card .photo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.expositor-card-details p {
    margin-bottom: 0.5rem;
}

.expositor-photo-container-big {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.176);
}


.photo-gallery-admin img {
    object-fit: contain;
    height: 180px;
    width: 100%;
}

.photo-gallery-admin col-6 {
    height: 100%;
    height: 280px;
}

/* Datatable */
.dt-layout-table {
    overflow: auto;
}

.dataTable td:last-child {
    width: 125px;
    text-align: right;
}

.table {
    --bs-table-bg: transparent !important;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--primaryColor);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--primaryColor) !important;
    --bs-pagination-active-border-color: var(--primaryColor) !important;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

/* Global classes */
.horizontally-centered {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.vertically-centered {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

textarea.form-control {
    min-height: 100px !important;
}

.btn-round {
    border-radius: 50% !important;
}

.toast {
    background-color: #fff !important;
}

.dropdown-item {
    cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--primaryColorText) !important;
    text-decoration: none;
    background-color: var(--primaryColor) !important;
}

.opacity-1 {
    opacity: 1 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.card {
    background-color: #f7f7f7 !important;
    color: rgb(60, 60, 60);
}

.card-custom {
    height: 165px !important;
    border-radius: 1rem !important;
    transition: transform 0.2s;
    cursor: pointer;
}

.card-custom:hover {
    transform: scale(1.05);
}

.card-custom h5 {
    color: var(--primaryColor);
}

.card-custom i {
    font-size: 2rem;
    color: var(--primaryColor);
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}



.cardImageRound {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    border: 2px solid rgba(0, 0, 0, 0.176) !important;
}

.cardImageBig {
    height: 75px !important;
    width: 75px !important;
}

.cardImageRound img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cardImageSquare {
    height: 50px;
    width: 50px;
    border: 2px solid rgba(0, 0, 0, 0.176) !important;
}

.cardImageSquare img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.perfilFoto {
    cursor: pointer;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-upload-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 1.5rem 0;
}

.photo-upload-section .upload-container {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.176) !important;
}

.upload-container-square {
    border-radius: 0% !important;
}

.upload-container-square .upload-preview {
    object-fit: contain !important;
}

.photo-upload-section .upload-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

#hidden-file-input {
    display: none;
}