.payment {
    border-left: 5px solid #47db34;
}

.resumoPrestacao {
    border-left: 5px solid #db347a;
}

.resumoAnexos {
    border-left: 5px solid #34dba9;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#loader.hidden {
    display: none;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loader p {
    color: #fff;
    font-size: 1.2em;
    margin-left: 20px;
}

.is-invalid,
.campo-erro {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback,
.mensagem-erro {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 4px;
}

.campo-obrigatorio-erro {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.campo-obrigatorio-label::after {
    content: " *";
    color: #dc3545;
}

@media (max-width: 1199px) {
    .table-responsive-stack tr {
        display: block;
        border: 1px solid #ccc;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 8px;
        background-color: #f8f9fa;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .table-responsive-stack td {
        display: block;
        border: none;
        padding: 8px 0;
        position: relative;
        text-align: left;
    }

    .table-responsive-stack td:before {
        content: attr(data-label) ": ";
        font-weight: bold;
        color: #495057;
        display: block;
        margin-bottom: 5px;
        font-size: 0.9em;
    }

    .table-responsive-stack th {
        display: none;
    }

    .table-responsive-stack input,
    .table-responsive-stack select {
        width: 100%;
        margin-top: 3px;
    }

    .table-responsive-stack .btn {
        width: 100%;
        margin-top: 3px;
    }

    .table-responsive-stack td:not(:last-child) {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
}













.token-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    /*border: 2px solid #dee2e6;
    border-radius: 8px;*/
    margin: 0 5px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .token-input {
        width: 40px;
        height: 50px;
        font-size: 20px;
        margin: 0 2px;
    }
}