:root {
    --cor-primaria-proposta: #024873;
    --cor-primaria-leve-proposta: #0248734d;
    --cor-secundaria-proposta: #f28705;
    --cor-secundaria-leve-proposta: #f287054d;
    --light-color: #f5f7fa;
    --animate-duration: 400ms !important;
    --animate-delay: 0.4s !important;
}

button:focus,
button:active {
    outline: none;
    box-shadow: none !important;
}

html,
body {
    font-size: 16px;
    background-color: var(--light-color);
}

@media (min-width: 1367px) {
    html,
    body {
        font-size: 100%;
    }
}

@media (max-width: 1366px) {
    html,
    body {
        font-size: 90%;
    }
}

.scroll-to-top {
    z-index: 10;
}

body,
input,
textarea,
button {
    font-family: Inter, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Lexend, sans-serif;
}

/* Load */

.pj-load {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    color: var(--cor-primaria-proposta);
}

.pj-load p {
    font-size: 16pt;
    font-weight: 500;
    margin-top: 1rem;
}
/* Load */

/* skeletron */
.skl-item {
    direction: ltr;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.skl-item,
.skl-item *,
.skl-item :after,
.skl-item :before {
    box-sizing: border-box;
}
.skl-item:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 500%;
    margin-left: -250%;
    -webkit-animation: sklAnimation 0.8s linear infinite;
    animation: sklAnimation 0.8s linear infinite;
    background: linear-gradient(
            90deg,
            hsla(0, 0%, 100%, 0) 46%,
            hsla(0, 0%, 100%, 0.35) 50%,
            hsla(0, 0%, 100%, 0) 54%
        )
        50% 50%;
}
.skl-item > * {
    flex: 1 1 auto;
    display: flex;
}
@-webkit-keyframes sklAnimation {
    0% {
        transform: translate3d(-30%, 0, 0);
    }

    to {
        transform: translate3d(30%, 0, 0);
    }
}

@keyframes sklAnimation {
    0% {
        transform: translate3d(-30%, 0, 0);
    }

    to {
        transform: translate3d(30%, 0, 0);
    }
}
/* skeletron */

/* cursor */
.cursor-pointer {
    cursor: pointer !important;
}
/* cursor */

/* gap */
.gap-3 {
    gap: 1rem;
}

/* content */
.content-data.hide {
    animation: fadeOut 0.5s ease-in-out;
}
#content {
    height: 100%;
}
#content .navbar {
    height: 7.5vh;
}
#content .container-fluid {
    height: 92.5vh;
    overflow-y: auto;
}
/* content */

/* navbar */
.collapse-inner {
    position: relative;
    padding: 0.5rem !important;
}

.collapse-item {
    background-color: transparent;
    border: 1px solid transparent;
    text-align: left !important;
    margin: 0 !important;
    width: 100%;
}

.navbar input:focus,
input:active {
    outline: none;
    box-shadow: none !important;
}
/* navbar */

/* inputs */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #333333 !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0) inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:read-only {
    cursor: not-allowed;
}

select {
    cursor: pointer;
}

select[readonly] {
    pointer-events: none;
    touch-action: none;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        width: 100%;
        z-index: 10;
    }
    .d-md-inline {
        display: inline !important;
    }
    .sidebar {
        position: fixed;
        z-index: 1000;
    }
    .container-fluid {
        padding-top: 70px;
        min-height: 100vh;
    }
}

.form-login label {
    margin: 0 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--cor-primaria-proposta);
    line-height: 19px;
}

.pj-fieldset label {
    margin: 0 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--cor-primaria-proposta);
    line-height: 19px;
}

.modal-body label {
    margin: 0 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--cor-primaria-proposta);
    line-height: 19px;
}

.input-field {
    width: 100%;
    background-color: #f0f0f0;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
    margin-bottom: 1rem;
    transition: border 400ms;
}

.form-control {
    width: 100%;
    min-width: 70px;
    background-color: #f0f0f0;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
    margin-bottom: 1rem;
    transition: border 400ms;
}

.input-field.pj-grid {
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
}

.input-field.pj-grid-reverso {
    display: grid;
    grid-template-columns: 85% 15%;
    padding: 0 1rem;
}

.input-field .input-load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.form-check {
    margin-bottom: 1rem;
}

.form-check-input {
    cursor: pointer !important;
}

.form-check-label {
    cursor: pointer !important;
    line-height: 1 !important;
    margin-top: 4px !important;
}

@media (max-width: 1336px) {
    .form-check {
        margin-bottom: 1.5rem;
    }
}

.pj-copia-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pj-copia-link i {
    font-size: 18pt !important;
    color: var(--cor-primaria-proposta) !important;
    cursor: pointer;
}

.pj-btn-ver-proposta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pj-btn-ver-proposta a {
    background-color: var(--cor-primaria-proposta);
    color: #ffffff;
    transition: 400ms;
}

.pj-btn-ver-proposta a:hover {
    color: #ffffff !important;
    opacity: 0.7;
}

.input-field.invalido {
    border: 1px solid red !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}

.input-field .input-field-img {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-field .input-field-img img {
    width: 25px;
}

.input-field input,
select {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    width: 100%;
}

.input-field-textarea {
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    margin-bottom: 1rem;
    transition: border 400ms;
}

select {
    appearance: none;
    -webkit-appearance: none;
    background: url("../../public/seta_preta.png") no-repeat;
    background-position: right;
    background-color: #f0f0f0;
}

.pj-btn {
    background-color: var(--cor-primaria-proposta);
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem !important;
    font-weight: 500 !important;
    transition: 400ms;
}

.pj-btn:disabled {
    pointer-events: none;
}

a.pj-btn:not([href]):not([tabindex]) {
    color: #ffffff;
    pointer-events: none;
    opacity: 0.7;
}

.pj-btn:hover {
    opacity: 0.8;
    background-color: var(--cor-secundaria-proposta);
    color: var(--cor-primaria-proposta);
}

.pj-btn.outline {
    background-color: transparent;
    border: 1px solid var(--cor-primaria-proposta);
    color: var(--cor-primaria-proposta);
    font-weight: 500;
    transition: all 400ms;
}

.pj-btn.outline:hover {
    border: 1px solid var(--cor-secundaria-proposta);
    color: var(--cor-secundaria-proposta);
}

.btn-icon-split .icon .loading {
    height: 1rem;
    width: 1rem;
    animation: loading 1s linear infinite;
}

.btn-icon-split.btn-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-icon-split.btn-block .text {
    flex: 1;
    text-align: center;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom-control-label::before {
    top: 1px;
}

.custom-control-label::after {
    top: 2px;
}
/* inputs */

/* navbar */
.navbar-nav {
    position: relative;
}
.sidebar .sidebar-brand {
    height: 7.5vh !important;
}
.sidebar:not(.toggled) .nav-item .nav-link {
    display: grid !important;
    grid-template-columns: 10% 80% 10%;
    align-items: center;
    justify-content: center;
}
.sidebar:not(.toggled) .nav-item .nav-link div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar:not(.toggled) .nav-item .nav-link div i {
    margin: 0;
}
.sidebar:not(.toggled) .nav-item .nav-link span {
    margin-left: 5px;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#navbar-menu::-webkit-scrollbar {
    width: 4px;
}
#navbar-menu::-webkit-scrollbar-track {
    background-color: #024873;
    background-image: linear-gradient(180deg, #024873 10%, #224abe 100%);
}
::-webkit-scrollbar-thumb {
    background: var(--cor-secundaria-proposta);
    border-radius: 8px;
}
/* navbar */

/* card */
.pj-card {
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 6px;
}
/* card */

/* suporte */
.pj-suporte {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
    width: 100%;
}
.pj-suporte button {
    background-color: transparent;
    border: none;
    width: 80%;
    max-width: 74px;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 1rem 0;
    border-radius: 6px;
    transition: display, background-color 400ms;
    cursor: pointer !important;
}

.sidebar.toggled .pj-suporte button {
    font-size: 0.65rem;
}

.pj-suporte button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
.pj-suporte button img {
    width: 25%;
    object-fit: cover;
    opacity: 0.6;
}
.pj-suporte button p {
    margin: 0;
}

/* modal-suporte */
#modalSuporte .modal-content {
    border: none !important;
    border-radius: 6px !important;
}

#modalSuporte .modal-header {
    border-bottom: none !important;
    align-items: center !important;
}

#modalSuporte .modal-title {
    font-size: 1.4rem;
    font-weight: bold;
}

#modalSuporte .modal-title span {
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    display: flex;
    flex-direction: column;
    opacity: 0.8;
}

.pj-body-suporte .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pj-card-contato {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    max-width: 160px;
}

.pj-card-contato a {
    color: var(--cor-primaria-proposta) !important;
    transition: color 400ms;
}

.pj-card-contato a:hover {
    color: var(--cor-secundaria-proposta);
}

.pj-body-suporte h5 {
    margin: 1rem 0 0 !important;
    font-weight: bold;
}

.pj-body-suporte h5 span {
    font-weight: 500 !important;
}

.pj-body-suporte p {
    margin: 1rem 0 0 !important;
}

.pj-body-suporte p a {
    color: var(--cor-primaria-proposta) !important;
}

.pj-copyright * {
    margin: 0;
    padding: 0;
}

.pj-copyright p {
    font-size: 1rem;
}

.pj-copyright p i {
    color: var(--cor-primaria-proposta);
}

.pj-copyright a {
    font-size: 1.1rem;
    color: var(--gray-800);
}
/* modal-suporte */
/* suporte */

/* popup-apple */

.pj-popup-apple {
    box-sizing: border-box;
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100vw;
    z-index: 10000000;
}

.pj-popup-apple * {
    margin: 0;
    padding: 0;
}

.pj-popup-apple.mostrar {
    display: flex;
}

.mostrar .pj-popup-body {
    animation: pj-popup 1000ms;
}

@keyframes pj-popup {
    from {
        transform: translate3d(0, -35px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.pj-popup-body {
    background-color: #ffffff !important;
    display: flex;
    position: relative;
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.pj-popup-body * {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.pj-popup-body:after {
    background-color: #ffffff;
    bottom: -8px;
    box-shadow: 0px 1px rgba(0, 0, 0, 0.1);
    content: "";
    display: block;
    height: 16px;
    left: 50%;
    margin-left: -6px;
    position: absolute;
    transform: rotate(45deg);
    width: 16px;
}

.pj-popup-imagem {
    width: 20%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pj-popup-imagem img {
    height: 8vh;
    max-height: 53px;
    border-radius: 15%;
}

.pj-popup-descricao {
    width: 80%;
    float: right;
}

.pj-popup-descricao h4 {
    font-size: 14pt;
    margin-bottom: 2px;
}

.pj-popup-descricao p {
    font-size: 10pt;
    margin-bottom: 3px;
    opacity: 0.8;
}

.pj-popup-descricao p img {
    height: 20px;
}

.pj-popup-fechar {
    position: absolute;
    top: 0px;
    right: 10px;
}

.pj-popup-fechar button {
    background-color: transparent;
    border: none;
    color: #8995a0;
    font-weight: 600;
    font-size: 15pt;
}

.pj-popup-fechar button:focus,
.pj-popup-fechar button:active {
    outline: none;
    box-shadow: none !important;
}

@media (max-width: 320px) {
    .pj-popup-descricao h4 {
        font-size: 13pt;
    }
    .pj-popup-descricao p {
        font-size: 9pt;
        margin-bottom: 3px;
        opacity: 0.8;
    }
    .pj-popup-descricao p img {
        height: 15px;
    }
}
/* popup-apple */

/* cursor */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}
/* cursor */

/* modal notificacoes */

#carregando-modal {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#img-status-conexao {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    margin: 0 auto;
}

/* modal notificacoes */
