.info-body {
    margin: 5px;
    padding: 20px;
    height: 85vh;
}

#modalFaceCapture {
    z-index: 1060;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.container-center {
    margin-top: 35px;
    height: 100%;
}

.bio-panel {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 5px;
    width: 100%;
}

.bio-title {
    color: #2575c8;
    font-weight: bold;
    border-bottom: 1px solid #dfdede;
    font-size: 16px;
}

.bio-stitle {
    font-weight: bold;
}

.bio-stitle-ok {
    color: rgb(0, 167, 0);
}

.bio-stitle-nok {
    color: rgb(192, 0, 0);
}

.bio-marcadores ul {
    list-style-type: square;
    color: #333;
    padding-left: 20px;
}

.bio-marcadores li {
    margin-bottom: 10px;
}

.container-footer-capture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnPersonal {
    border-radius: 4px !important;
    border: none;
    padding: 10px;
    height: 50px !important;
}
.disabled {
    cursor: not-allowed;
    background-image: linear-gradient( 135deg, #757575 10%, #cacbcc 100%) !important;
}

.btn-close-capture {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.captura {
    height: 90%;
}

.bio-face-capture {
    position: relative;
    top: 5%;
    width: 70%;
    height: 80%;
    overflow: hidden;
    border-radius: 50% / 50%;
    overflow: hidden;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #757575;
}

.video-face-capture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.bio-face-capture::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center;
    z-index: 2; 
}

.bio-face-capture::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    z-index: 1;
    background: inherit;
    pointer-events: none;
}

.container-center-capture {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    width: 100%;
    margin-top: 25px;
}

.alert-capture-panel {
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
}

.alert-capture {
    font-size: 14px;
    width: 400px !important;
    text-align: center;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    border: 1px solid #dfdede;
}

.bio-panel-alert {
    top: 50%;
    display: flex;
    color: #2575c8;
    font-size: 24px;
    background-color: rgba(47, 62, 77, 0.3);
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 80%;
    z-index: 1;
}

.bio-steps {
    width: 80%;
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.bio-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
}

.bio-step-number {
    background-color: #e0e0e0;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.bio-step-title {
    font-size: 12px;
    color: #666;
    height: 15px;
}

.bio-active .bio-step-number {
    background-color: #4CAF50;
    color: white;
}

.bio-active .step-title {
    color: #4CAF50;
}

.bio-error .bio-step-number {
    background-color: #a14242;
    color: white;
}

.bio-error .step-title {
    color: #a14242;
}

/* Linha entre os steps */
.bio-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: -1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #acbaff;
    border-top: 3px solid #606dad;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading .bio-step-number {
    background-color: transparent;
    color: transparent;
}

.img-success{
    width: 200px;
    height: 200px;
}

.img-warning {
    width: 300px;
    height: 300px;
}

.img-success-panel {
    margin-top: 10px;
    align-items: center;
    text-align: center;
}

.success-message {
    align-items: center;
    text-align: center;
    margin-top: 10px;
}
    .success-message .message-text {
        text-align: center;
        font-size: 35px;
        font-weight: bold;
        color: dimgray;
    }

.warning-message {
    align-items: center;
    text-align: center;
    margin-top: 10px;
}
    .warning-message .message-text {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: dimgray;
    }

    .warning-message .description-text {
        text-align: center;
        font-size: 16px;
        color: dimgray;
    }

.container-bio-signature {
    margin-top: 20px;
    width: 100%;
}

.bio-signature {
    width: 450px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.bio-signature-report-container {
    width: 750px;
    height: 150px;
    border-radius: 20px;
    margin-bottom: 10px;
}


.info-bio-signature-report label {
    display: inline-block;
    width: 150px;
    font-weight: bold;
    vertical-align: top;
}

.info-bio-signature-report span {
    display: inline-block;
    font-size: .8rem;
    width: 250px;
}

.info-bio-signature-report small {
    bottom: 0;
    left: 0;
    width: 90%;
    font-size: .7rem;
    font-style: italic;
    color: gray;
}

.bio-info-report-title {
    width: 400px !important;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 5px;
}

.facial-image {
    margin: 20px;
    width: 90px;
    height: 125px;
}

.panel-image-bio-signature {
    justify-content: center;
    align-items: center;
    display: flex;
}

.foto-bio-face {
    margin: 20px;
    width: 100px;
    height: 50px;
}

.info-bio-signature label {
    display: inline-block;
    width: 100px;
    font-weight: bold;
    vertical-align: top;
}

.info-bio-signature span {
    display: inline-block;
    font-size: .9rem;
    width: 180px;
}

.bio-info-name {
    display: block !important;
    width: 280px !important;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.info-bio-signature small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    font-size: .7rem;
    font-style: italic;
    color: gray;
}

.loading-modal {
    position: absolute;
    top: 50%;
    display: flex;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    left: 50%;
    z-index: 1050;
}

    .loading-modal img {
        display: block;
        margin: 0 auto;
        width: 50px;
    }

.bio-panel-warning {
    position: absolute;
    width: 82%;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid #96722E;
    background-color: #F8F4D5;
    color: #96722E;
}

.bio-warning{
    margin-left: 10px;
}