body {
    font-family: 'Montserrat', sans-serif;
    background-color: #012E40;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1040;
    background-color: #081e27;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    padding-top: 5px;
}

.navbar-collapse {
    flex-grow: 0;
}

.containerNav {
    display: flex;
    max-width: 100%;
    height: 75px;
    align-items:center;
    gap: 40px;
    justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

.navbar-brand {
    transition: opacity 0.3s ease;
}

.navbar-brand.inactive {
    opacity: 0.5;
}

.navbar-brand:hover {
    opacity: 1;
}

.offcanvas.offcanvas-start {
    border-right: none;
}

.offcanvas-header {
    background-color: #081e27;
}

.offcanvas-body {
    background-color: #081e27;
}

#menuLateral {
  top: 70px;
  height: calc(100% - 70px);
  border-top: none;
  width: 250px; /* <-- largura ajustada */
}

button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
  transition: transform 0.15s ease-in-out;
  outline: none; /* remove outline padrão */
}

.navbar-toggler:active {
  transform: scale(0.80);
  opacity: 0.5;
}

.navbar-toggler.active-click {
  transform: scale(0.80);
  opacity: 0.5;
}

.divpai {
    display: flex;
    flex-direction: column;
    width: 83%;
    max-width: 1200px;
    margin-top: 2px;
    padding-top: 100px;
}

#consultaForm {
    width: 100%;
}

.pagina1 {
    width: 100%;
}

@media (min-width: 768px) {
    .card-header {
        padding-left: 90px;
        padding-right: 90px;
    }
}

@media (min-width: 1200px) {
    .card-header {
        padding-left: 100px;
        padding-right: 100px;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

textarea.form-control {
    min-width: 300px;
    min-height: 140px;

    box-sizing: border-box;
    margin: 0 auto;
    display: block;
}

.form-group {
    margin-bottom: 1rem;
    background-color: #1A4D5C;
    border-radius: 5px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    display: flex;
    flex-direction: column;
}

.titulo {
    background-color: #081e27;
    border-radius: 5px;
    padding: 10px;
    font-weight: lighter;
}

.modal-dialog-index {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

@media (max-width: 596px) {
    .modal-dialog-index {
        max-width: 100vw;
        margin: 1.75rem auto;
    }
}

@media (min-width: 596px) {
    .modal-dialog-index {
        max-width: 50vw;
        margin: 1.75rem auto;
    }
}

.modal-content {
    overflow-y: auto;
    border-radius: 35px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#reportArea {
    height: 50vh;
    min-height: 200px;
    overflow-y: auto;
}

#reportAreaExames {
    height: 50vh;
    min-height: 200px;
    overflow-y: auto;
}

.modal-title {
    text-align: center;
    width: 100%;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    color: black;
    font-weight: bold;
}

.modal-footer {
    justify-content: space-between;
    border-top: none;
}

.modal-footer-descritivo {
    justify-content: center;
}

@media (max-width: 1246px) {

    .modal-footer-2 {
        display: flex;
        flex-direction: column;
    }
}

.close {
    border: none;
    border-width: 0;
    color: black;
    text-shadow: none;
    background-color: transparent;
}

.close:hover {
    color: rgb(185, 54, 54);
}

.btn:disabled {
    background-color: gray;
}

.botoesbaixo2 {
    display: flex;
    width: 100%;
    padding-bottom: 10px;
}

.nextPage {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Estilizar a barra de rolagem */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

label {
    margin-bottom: 0.5rem;
    color: white;
}

/*INPUT NUMBER*/
.input-personalizado {
    font-size: 16px;
    padding: 10px 10px 5px 5px;
    display: block;
    width: 100px;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: #1A4D5C;
    color: white;
}

.input-personalizado2 {
    font-size: 16px;
    padding: 10px 10px 5px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: #1A4D5C;
    color: white;
}

.input-personalizado2::placeholder {
    font-size: 18px;
}

.input-personalizado-anamnese::placeholder {
    font-size: 18px;
}

.input-personalizado-3::placeholder {
    font-size: 18px;
}

.input-personalizado-anamnese {
    font-size: 16px;
    padding: 5px 10px 5px 1px;
    display: block;
    width: 99%;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: #1A4D5C;
    color: white;
    margin-left: 7px;
}

.input-personalizado-3 {
    font-size: 16px;
    padding: 10px 10px 5px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: #1A4D5C;
    color: white;
}

.input-personalizado:focus {
    outline: none;
}

.input-personalizado2:focus {
    outline: none;
}

.input-personalizado-anamnese:focus {
    outline: none;
}

.input-personalizado-3:focus {
    outline: none;
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100px;
}

.bar-2 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-anamnese {
    position: relative;
    display: block;
    width: 100%;
}

.bar-3 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-4 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-5 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-6 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-7 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-8 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-9 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-10 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-11 {
    position: relative;
    display: block;
    width: 100%;
}

.bar-12 {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-2:before,
.bar-2:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-2-obrigatorio:before,
.bar-2-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-anamnese:before,
.bar-anamnese:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-3:before,
.bar-3:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-3-obrigatorio:before,
.bar-3-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-4:before,
.bar-4:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-4-obrigatorio:before,
.bar-4-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-5:before,
.bar-5:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-5-obrigatorio:before,
.bar-5-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-6:before,
.bar-6:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-6-obrigatorio:before,
.bar-6-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-7:before,
.bar-7:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-7-obrigatorio:before,
.bar-7-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-8:before,
.bar-8:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-8-obrigatorio:before,
.bar-8-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 31px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-9:before,
.bar-9:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 9px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-9-obrigatorio:before,
.bar-9-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 41px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-10:before,
.bar-10:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-10-obrigatorio:before,
.bar-10-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 31px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-11:before,
.bar-11:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-11-obrigatorio:before,
.bar-11-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 30px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-12:before,
.bar-12:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #081e27;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar-12-obrigatorio:before,
.bar-12-obrigatorio:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 31px;
    position: absolute;
    background: rgb(185, 55, 55);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar-2:before {
    left: 50%;
}

.bar-anamnese:before {
    left: 50%;
}

.bar-3:before {
    left: 50%;
}

.bar-4:before {
    left: 50%;
}

.bar-5:before {
    left: 50%;
}

.bar-6:before {
    left: 50%;
}

.bar-7:before {
    left: 50%;
}

.bar-8:before {
    left: 50%;
}

.bar-9:before {
    left: 50%;
}

.bar-10:before {
    left: 50%;
}

.bar-11:before {
    left: 50%;
}

.bar-12:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

.bar-2:after {
    right: 50%;
}

.bar-anamnese:after {
    right: 50%;
}

.bar-3:after {
    right: 50%;
}

.bar-4:after {
    right: 50%;
}

.bar-5:after {
    right: 50%;
}

.bar-6:after {
    right: 50%;
}

.bar-7:after {
    right: 50%;
}

.bar-8:after {
    right: 50%;
}

.bar-9:after {
    right: 50%;
}

.bar-10:after {
    right: 50%;
}

.bar-11:after {
    right: 50%;
}

.bar-12:after {
    right: 50%;
}

/* active state */
.input-personalizado:focus~.bar:before,
.input-personalizado:focus~.bar:after {
    width: 50%;
}

.input-personalizado2:focus~.bar-2:before,
.input-personalizado2:focus~.bar-2:after {
    width: 50%;
}

.input-personalizado-anamnese:focus~.bar-anamnese:before,
.input-personalizado-anamnese:focus~.bar-anamnese:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-3:before,
.input-personalizado-3:focus~.bar-3:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-4:before,
.input-personalizado-3:focus~.bar-4:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-5:before,
.input-personalizado-3:focus~.bar-5:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-6:before,
.input-personalizado-3:focus~.bar-6:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-7:before,
.input-personalizado-3:focus~.bar-7:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-8:before,
.input-personalizado-3:focus~.bar-8:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-9:before,
.input-personalizado-3:focus~.bar-9:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-10:before,
.input-personalizado-3:focus~.bar-10:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-11:before,
.input-personalizado-3:focus~.bar-11:after {
    width: 50%;
}

.input-personalizado-3:focus~.bar-12:before,
.input-personalizado-3:focus~.bar-12:after {
    width: 50%;
}

/* Remove as flechas para Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove as flechas para Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {

    .checkbox-group {
        display: flex;
        flex-direction: column;
    }
}

.checkbox-group-comorb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 690px) {

    .checkbox-group-comorb {
        display: flex;
        flex-direction: column;
    }
}

.checkbox-group-proced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 610px) {

    .checkbox-group-proced {
        display: flex;
        flex-direction: column;
    }
}

.checkbox-group-drogas {
    display: flex;
    flex-direction: column;
}

.checkbox-group-conduta {
    display: flex;
    flex-direction: column;
}

.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-group label,
.checkbox-group label .checkbox-group-drogas label .checkbox-group-conduta {
    display: flex;
    align-items: center;
}

input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}

.radio-item,
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-item label,
.checkbox-item label {
    margin-top: 10px;
    display: flex;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] .checkbox-group-drogas input[type="checkbox"] .checkbox-group-conduta input[type="checkbox"] {
    margin-right: 0.5rem;
}

#outrosText {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 50%;
}

.sugestoes-exames {
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.confirmo-li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-left: 5px;
}

.copiarExames {
    display: flex;
    margin-top: 10px;
}

/* CHECKBOX */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-13 input[type=checkbox] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    .checkbox-wrapper-13 input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    .checkbox-wrapper-13 input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }

    .checkbox-wrapper-13 input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    .checkbox-wrapper-13 input[type=checkbox]:disabled+label {
        cursor: not-allowed;
    }

    .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    .checkbox-wrapper-13 input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        width: 21px;
        min-width: 21px;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }

    .checkbox-wrapper-13 input[type=checkbox]+label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
}

.checkbox-wrapper-13 * {
    box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
    box-sizing: inherit;
}

/*RADIO*/
.radio-wrapper-6 {
    display: flex;
    align-items: center;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .radio-wrapper-6 input[type=radio] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    .radio-wrapper-6 input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    .radio-wrapper-6 input[type=radio]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }

    .radio-wrapper-6 input[type=radio]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    .radio-wrapper-6 input[type=radio]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    .radio-wrapper-6 input[type=radio]:disabled+label {
        cursor: not-allowed;
        color: #8A91B4;
    }

    .radio-wrapper-6 input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    .radio-wrapper-6 input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    .radio-wrapper-6 input[type=radio]:not(.switch) {
        width: 21px;
        min-width: 21px;
    }

    .radio-wrapper-6 input[type=radio]:not(.switch):after {
        opacity: var(--o, 0);
    }

    .radio-wrapper-6 input[type=radio]:not(.switch):checked {
        --o: 1;
    }

    .radio-wrapper-6 input[type=radio]+label {
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: .5em;
    }

    .radio-wrapper-6 input[type=radio] {
        border-radius: 50%;
    }

    .radio-wrapper-6 input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }

    .radio-wrapper-6 input[type=radio]:checked {
        --s: .5;
    }
}

/*Deixar responsivo o input em baixo da tela*/
.input-motivos {
    margin-top: 5px;
}

.input-motivos-2 {
    margin-top: 5px;
}

.div-anamnese{
    margin-top: 5px;
    border-width: 5px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 0;
    border-left: 3px dotted #081e27;
}

.label-anamnese{
    border-radius: 5px;
    padding: 8px;
}

.label-e-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-e-check-2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.down-motivos {
    display: flex;
    flex-direction: column;
    align-items: normal;
}

.down-motivos-2 {
    display: flex;
    flex-direction: column;
    align-items: normal;
}

/* BREADCRUMB */

.historiamedicapregressa {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background-color: #acd4e6;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: larger;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.avaliacaoobjetiva {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background-color: #acd4e6;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: larger;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.avaliacaodiagnostica {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background-color: #acd4e6;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: larger;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/*
.breadcrumb {
    font-size: 0px;
    background-color: #012E40;
    margin-bottom: 0;
    margin-top: 5px;
}

.breadcrumb>* {
    font-size: 16px;
    color: #253e6a;
    background: #c8f1fe;
    display: inline-block;
    padding: 0 8px 0 30px;
    margin: 0 10px 10px 0;
    height: 40px;
    line-height: 40px;
    position: relative;
}

.breadcrumb>span {
    background: #76cae6;
    color: #fff;
}

.breadcrumb>span:after {
    border-color: transparent transparent transparent #76cae6;
}

.breadcrumb> :before {
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #9ad4e2;
    z-index: 1;
}

.breadcrumb> :after {
    position: absolute;
    top: 0;
    content: '';
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #c8f1fe;
    z-index: 2;
}

.breadcrumb :first-child {
    padding-left: 20px;
}

.breadcrumb :first-child:before {
    border: none
}

.breadcrumb a {
    transition: color 0.3s, transform 0.3s;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.breadcrumb a::before {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.breadcrumb span {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.breadcrumb span::before {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}


.breadcrumb a.active {
    font-weight: bold;
    color: #111827;
    font-size: 18px;
    text-decoration: none;
    transform: translateY(-5px);
    z-index: 3;
}

.breadcrumb a::after {
    z-index: 4;
}

.breadcrumb a:hover {
    text-decoration: none;
    cursor: default;
    color: none;
}

.breadcrumb span:hover {
    cursor: default;
    color: none;
}
*/

/* BOTOES */

.button-40 {
    background-color: #111827;
    border: 1px solid transparent;
    border-radius: .75rem;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 1.125rem;
    line-height: 1.5rem;
    padding: .75rem 1.2rem;
    text-align: center;
    text-decoration: none #6B7280 solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
}

.button-40:hover {
    background-color: #374151;
}

.button-40:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .button-40 {
        padding: .75rem 1.5rem;
    }
}

.button-40:disabled {
    background-color: gray;
    cursor: not-allowed;
}

.button-40-evolucao {
    background-color: #111827;
    border: 1px solid transparent;
    border-radius: .75rem;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.5rem;
    padding: .75rem 1.2rem;
    text-align: center;
    text-decoration: none #6B7280 solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
}

.button-40-evolucao:hover {
    background-color: #374151;
}

.button-40-evolucao:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .button-40-evolucao {
        padding: .75rem 1.5rem;
    }
}

.button-40-evolucao:disabled {
    background-color: gray;
    cursor: not-allowed;
}

.italico {
    color: rgb(180, 63, 63);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* RELATORIO GERAL */

.button-40-mes {
    background-color: #111827;
    border: 1px solid transparent;
    border-radius: .75rem;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: .60rem 0.5rem;
    text-align: center;
    text-decoration: none #6B7280 solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 200px;
}

.button-40-mes:hover {
    background-color: #374151;
}

.button-40-mes:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.input-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
  }

  @media (max-width: 836px) {

    .input-group {
        display: flex;
        flex-direction: column;
    }
}
  
  .input-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  @media (max-width: 450px) {

    .input-item {
        display: flex;
        flex-direction: column;
    }
}
  
  .input-item input {
    width: 100px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.2s ease;
  }
  
  .input-item label {
    margin-left: 5px;
    flex: 0.7;
  }

  .input-item input:focus {
    border-color: #081e27;
    border-width: 1.5px;
    outline: none;
  }

  .modal-dialog-relat {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

@media (max-width: 576px) {
    .modal-dialog-relat {
        max-width: 100vw;
        margin: 1.75rem auto;
    }
}

@media (min-width: 576px) {
    .modal-dialog-relat {
        margin: 1.75rem auto;
    }
}

  .modal-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .radio-group-cirurgias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 690px) {

    .radio-group-cirurgias {
        display: flex;
        flex-direction: column;
    }
}

.navbar-title {
  color: white;
  font-weight: 500;
}

.divCirurgiaSecundaria {
    color: rgb(185, 54, 54);
}