﻿.bs-stepper-header {
    justify-content: center;
    gap: 0;
    display: flex;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
}

.bs-stepper-label {
    font-size: 12px;
    text-transform: initial;
}

.preview-container,
.preview-container .preview-image {
    width: 100%;
}


.dropzone {
    border: 2px dashed;
    border-radius: 21px;
    background: #56575B;
    padding: 2px;
    cursor: pointer;
    color: white;
    width: 100%;
    min-height: 190px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-content {
    border: 1px solid #2222228a;
    box-shadow: 2px 2px 4px #0000007a;
}

.buttons-container {
    display: flex;
    padding: 1rem 0rem 0rem 0rem;
    justify-content: flex-end;
    align-items: center;
}

.btn.delete-image {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 100;
    color: white;
    background-color: rgba(44, 44, 44, 0.7);
    border: none;
    cursor: pointer;
    border-radius: 14px;
}

.bs-stepper .line, .bs-stepper-line {
    background-color: rgb(113 113 113);
    margin: 5px;
}

.dz-preview.dz-image-preview .dz-progress {
    display: none !important;
}

.dz-preview.dz-image-preview {
    background: transparent !important;
    border: 2px solid #CCC;
    border-radius: 8px;
    width: 100%;
    margin: 0;
    /*height: 250px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dz-preview.dz-image-preview .dz-image {
        width: 100% !important;
        height: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none !important;
    }

        .dz-preview.dz-image-preview .dz-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
        }

.dz-preview .dz-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Estilo para la línea entre los círculos */
.step {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    width: 110px;
}

    .step button span.bs-stepper-circle {
        background-color: #212121;
        color: white;
        width: 3em;
        height: 3em;
        padding: 0.9em 0;
        border-radius: 9em;
    }

    /* Primera línea (entre círculo 1 y 2) */
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 34%;
        left: 68%;
        width: 65%;
        height: 5px;
        background-color: #212121;
    }


    .step.active button span.bs-stepper-circle {
        background-color: #4fb15f;
        color: white;
    }

.alert-primary {
    color: #052c65;
    background-color: #cfe2ff !important;
    border-color: #9ec5fe;
}

.alert-success {
    color: #0a3622;
    background-color: #d1e7dd;
    border-color: #a3cfbb;
}

.alert {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
}

#openValidationIdentityModal, #identity-validated-alert, #identity-not-validated-alert {
    display: none;
}

.example-upload {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    width: 20rem;
}

.explanation-text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    color: white;
}

.title-step {
    font-size: 22px!important;
    margin-bottom: 10px!important;
    color: white;
    font-weight: 700;
}

    .example-upload .explanation {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
    }

        .example-upload .explanation .image img {
            width: 100%;
          /*  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);*/
        }


.btn-steps {
    text-transform: none;
    padding: 10px 40px;
}
.dropzone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    width: 100%;
}

    .dropzone-container .desktop {
        display: block;
        flex: 1;
        width: 75%;
    }

.open-camera {
    margin-top: 1rem;
    border: 1px solid;
    border-radius: 6px;
    padding: 1rem;
    display: none !important;
}

#camera-shoot .buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

    #camera-shoot .buttons button {
        font-size: 0.9rem;
    }

.dropzone-button .dropzone {
    border: 1px solid;
    min-height: auto !important;
}


    .dropzone-button .dropzone .dz-message {
        margin: 0;
    }

@media(width < 768px) {
    .example-upload .explanation .image {
        width: 100%;
    }

    .dropzone-container .desktop {
        min-width: 312px !important;
    }
    .dropzone {
        min-height: 175px!important;
    }
    .dropzone-container .mobile {
        display: block;
    }

    .open-identity-container {
        align-items: center;
    }

        .open-identity-container button {
            width: 100%;
        }

    .dz-default.dz-message {
        font-size: 0.8rem;
    }

    .dropzone-container {
        flex-direction: column !important;
    }
}

@media(width < 400px) {
    .example-upload .explanation .image {
        width: 90%;
    }

    .dropzone-container .desktop {
        min-width: 280px!important;
    }
    .dropzone {
        min-height: 169px!important;
    }
}

    .message-modal-body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* text-transform: uppercase;*/
    }

        .message-modal-body .verify-icon {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
            color: white;
            font-size: 4rem;
            width: 7rem;
            height: 7rem;
            border-radius: 50%;
        }

        .message-modal-body.error .verify-icon {
            background: #c12626;
        }

        .message-modal-body.success .verify-icon {
            background: green;
        }

    .verify-icon img {
        width: 7rem;
    }

    #camera-mobile, #camera-mobile video {
        width: 100% !important;
        height: auto !important;
    }

    .mobile .preview-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        display: none;
        flex-direction: column;
        position: relative;
    }

        .mobile .preview-container .image-wrapper {
            width: 150px;
            height: 150px;
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .mobile .preview-container .image-wrapper img {
                height: 100%;
                border: 1px solid #333;
                border-radius: 15px;
            }

        .mobile .preview-container button {
            position: absolute;
            right: 20%;
        }

    .open-identity-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

        .open-identity-container button {
            min-width: 300px;
            margin-bottom: 1rem;
        }

    .validation-container {
        border: 1px solid #e3e3e3;
        border-left: none;
        border-right: none;
        padding-top: 1rem;
        margin-bottom: 1rem;
    }

    .btn-steps:not(:disabled) {
        background-color: #4fb15f !important;
    }