ul > li.nav-item {

    padding: 1px 0;
    display: contents;
}

.noUi-connect {
    text-align: center;
}

#display-image {

    width: 320px;
    margin: auto;
    height: 240px;
    border: 1px solid black;
    background-position: center;
    background-size: cover;
    position: absolute;
}

.btn-file {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 0.25rem 0.5rem;
    font-size: .7875rem;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

#face-finder {
    width: 320px;
    margin: auto;

    height: 260px;
}

#canvas {
    display: block;
}

#canvas_face {
    z-index: 99;
    margin-left: -160px;
    position: absolute;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#status {
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    margin: 0;
    padding: 1em 0;
    font-family: sans-serif;
}

.header-color {
    color: #6c757d
}

.text-color {
    color: #4a5977
}


.checkout {
    border-radius: 20px;
    overflow: hidden;
}

.checkout .bs-stepper-header {
    background-color: #efeef5;
    border-radius: 20px 20px 0 0;
}

.checkout .bs-stepper-content {
    padding: 30px;
}

.checkout .step {
    text-align: center;
}

.checkout .step.active,
.checkout .step.completed {
    /*background: var(--container-color);*/
}

.checkout .step.active:last-child {
    /*background: var(--container-color);*/
    border-radius: 0px 60px 60px 0px;
}

.checkout .active .bs-stepper-circle,
.checkout .completed .bs-stepper-circle {
    background-color: var(--header_text_color);
    color: var(--header_color);
}

.checkout .active .bs-stepper-label,
.checkout .completed .bs-stepper-label {
    color: var(--header_text_color);
}

.checkout .bs-stepper .step-trigger {
    padding: 10px;
    font-weight: 200;
}


/* Define o contêiner dos steps com o degradê */
.bs-stepper-header {
    display: flex;
    position: relative;
}

.bs-stepper-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: width 0.5s;
}

/* Configurações individuais para os steps */
.bs-stepper-header .step {
    flex: 1;
    position: relative;
    z-index: 1; /* Para garantir que o step fique sobre o degradê */
    text-align: center;
}

.bs-stepper-header .step.completed .step-trigger,
.bs-stepper-header .step.active .step-trigger {
    color: white; /* Cor do texto, pode ajustar conforme necessário */
    background-color: transparent; /* Mantém o fundo transparente para deixar o degradê aparecer */
    border: none;
}

.bs-stepper-header .line {
    background-color: transparent; /* Remove a cor da linha entre os steps */
}

/* Configurar o degradê a se estender apenas sobre os steps ativos/completados */
.bs-stepper-header.active-step-1::before {
    width: calc(100% / 4);
    background: var(--container-color);
}

.bs-stepper-header.active-step-2::before {
    width: calc(100% * 2 / 4);
    background: var(--container-color);
}

.bs-stepper-header.active-step-3::before {
    width: calc(100% * 3 / 4);
    background: var(--container-color);
}

.bs-stepper-header.active-step-4::before {
    width: 100%;
    background: var(--container-color);
}

@media screen and (max-width: 767px) {
    .checkout .bs-stepper .step-trigger {
        padding: 10px 0px !important;
    }
}

@media (max-width: 520px) {
    .checkout .bs-stepper .step-trigger {
        -ms-flex-direction: column;
        /* flex-direction: column; */
        padding: 10px;
    }

    .checkout .nav-link {
        width: 100% !important;
        border-bottom: 0px !important;
        margin-bottom: -7px !important;

    }

    li.nav-item:not(:first-child) .nav-link {
        border-radius: 20px 20px 0px 0px !important;
        border-left: 1px !important;
        border-bottom: 0px !important;
        margin-left: 0px !important;
        padding-left: 20px !important;
    }
}

@media screen and (max-width: 767px) {
    .checkout .step {
        margin: 0px 0px 0px 0px !important;
        padding: 0px !important;
        margin-bottom: 20px;
    }

    .checkout .bs-stepper-content {
        padding: 10px;
    }
    .checkout .card-body{
        padding:10px
    }

}

.checkout .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: #efeef5;
    border-bottom: 0 solid #f6f6f6;
    border-radius: 10px 10px 0px 0px;
}

.checkout .card-secondary {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 20px;
    background-color: #f5f6f8;
}


.radio-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow: scroll;
}

.radio-div {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    text-align: center;
}

.radio-div:hover {
    background-color: #f0f0f0;
}

input[type="radio"]:checked + .radio-div {
    background-color: #5b73e8;
    color: white;
    border-color: #5b73e8;
}

.conteudo {
    text-align: left;
    display: block;
    font-size: 16px;
}

.conteudo .large {
    font-size: 22px;
}

.area_login {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.area_login label {
    display: block;
    text-align: left;
}

.checkout .nav-tabs {
    border-bottom: none;
}

.nav-link {
    margin-bottom: -2px;
    background: 0 0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.checkout .nav-link {
    height: 74px;
    border-radius: 20px 20px 0px 0px;
    width: 200px;
    text-align: justify;
    padding: 10px 0px 0px 18px;
    border: 1px solid #ccc;
}

.checkout .nav-link.nav-link-add {
    width: 70px;
}


li.nav-item:not(:first-child) .nav-link {
    border-radius: 0px 20px 0px 0px;
    border-left: 0px;
    border-bottom: 0px;
    margin-left: -13px;
    padding-left: 20px;
}

li.nav-item:not(:first-child) .nav-link.active {
    border-radius: 20px 20px 0px 0px;
    border-left: 1px;
    border-bottom: 0px;
    margin-left: -15px;
    padding-left: 20px;
    border: 1px solid #ccc;
}

.border-left-ccc {
    border-right: 1px solid #ccc;
}

.large-modal {
    max-width: 80%; /* Define a largura máxima como 80% da tela */
    width: 80%; /* Define a largura do modal */
}

@media (min-width: 768px) {
    .large-modal {
        max-width: 60%; /* Largura para telas maiores */
    }

}

#cartao-botao-0 .button-remove-card {
    display: none;
}

.button-remove-card {
    color: #444;
    float: right;
    margin-right: 11px;
}


.adicionarcartao .form-check-label {
    display: block;
    font-size: 18px;
    color: #495057 !important;
    text-align: left;
}

.area_register .card {
    text-align: left;

}

.area_register .card label {
    font-weight: bold;

}