body {
    /* background: #6c757d; */
    overflow: hidden;
}

a.btn.btn-primary.enter-button {
    background-color: #0970a7;
    color: white;
}

.hidden {
    display: none;
}

.body-content-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

/* .center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    margin-bottom: 100px;
} */

a.btn.btn-primary {
    background: white;
    color: #53893d;
}

a.btn-primary:hover {
    text-decoration: none;
}

.footer {
    background-color: #1b4962;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

.copy-right-text {
    color: white;
    /* position: absolute; */
    bottom: 20;
    left: 20;
}

.form-container {
    max-height: 90vh;
    background-color: white;
}

.stepwizard {
    margin-top: 40px;
}

.form-inputs-container {
    margin: 20px 30px;
}

.form-header.text-center {
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 4px;
    /* background: #ced4da; */
    margin-bottom: 6px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem white;
    border-color: #6c757d;
}

.btn.btn-primary {
    background-color: #53893d;
    border-color: #ffffff;
}
.width-auto {
    width: auto;
}

span.help-block.form-error {
    color: #b94a48;
}

.action_buttons {
    /* margin-top: 40px !important; */
    padding: 0px !important;
}

input.manual_input_box {
    border: none;
    border-bottom: 1px dashed #495057 !important;
    margin-left: 5px;
}

input.manual_input_box:focus-visible {
    outline: none;
}

input[type="radio"],
input[type="checkbox"] {
    /* Hide original inputs */
    visibility: hidden;
    position: absolute;
}
input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
    height: 12px;
    width: 12px;
    margin-right: 2px;
    content: " ";
    display: inline-block;
    vertical-align: baseline;
    border: 1px solid #100f0f;
}
input[type="radio"]:checked + label:before,
input[type="checkbox"]:checked + label:before {
    background: #ced4da;
}

/* CUSTOM RADIO AND CHECKBOX STYLES */
input[type="radio"] + label:before {
    border-radius: 0px !important;
}
input[type="checkbox"] + label:before {
    border-radius: 2px !important;
}

.form-check {
    position: relative;
    display: block;
    /* padding-left: 0.1rem; */
    padding:5px;
}

.row.applicant_type_box {
    border: 1px solid #6c757d;
    border-bottom: none;
    margin: 0px;
}
.row.applicant_type_box_last {
    border: 1px solid #6c757d;
    margin: 0px;
}
.form-row {
    /* margin-top: 10px; */
}

.box_border {
    border: 1px solid #6c757d;
}

.form-row table tr,
td,
th {
    /* border: 1px solid #6c757d; */
    /* padding: 4px; */
}

.content-title span {
    font-size: 14px;
    font-weight: bold;
    padding: 4px 10px 4px 4px;
    border: 1px solid #6c757d;
}

.step-form-container {
    /* margin-top: 40px; */
    border: 1px solid #6c757d;
    border-radius: 4px;
    max-height: 80vh;
    overflow: hidden;
}

.form-title {
    padding: 5px;
    border-bottom: 1px solid #6c757d;
}

.form-row.action_button {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
    padding: 5px 5px;
    /* border-top: 1px solid #6c757d; */
}

.setup-content {
    /* width: 850px; */
    padding: 10px;
}

.nextBtn.btn {
    padding: 6px 20px;
    /* margin-right: 10px; */
}

td.first,
th.first {
    width: 180px;
    padding: 4px;
}

.border-none {
    border: none !important;
}

tr.border-bottom-only {
    /* border: none !important;
    border-bottom: 1px solid #6c757d !important; */
}

td.second,
th.second {
    width: 100px;
    padding: 4px;
}

.applicant_type_box input[type="text"] {
    border: none;
    border-bottom: 1px solid #0f0f0f;
}

.applicant_type_box input[type="text"]:focus-visible {
    outline: none;
}

.applicant_type_box input[type="date"] {
    border: none;
    border-bottom: 1px solid #0f0f0f;
}

.applicant_type_box input[type="date"]:focus-visible {
    outline: none;
}

#stating_confirmation input {
    border: none;
    font-weight: 600;
    width: 275px;
    border-bottom: 1px solid #212529;
}

#stating_confirmation input:focus {
    outline: none;
}

td.action-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-buttons button.button {
    font-size: 10px;
    margin-top: 4px;
}

/* Style the loader wrapper to cover the entire screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's above other content */
}

/* Style the loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Animation for the loader */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Style the loading text */
.loader-wrapper p {
    color: white;
    font-size: 20px;
    margin-top: 10px;
}

span#statement_value {
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 1px;
}



.form-fields-container {
    overflow-y: auto;
    max-height: 40vh;
    overflow-x: hidden;
    margin-right: 0px;
    padding: 0px 10px;
    /* margin-bottom: 30px; */
}

.form-row.action_buttons {
    /* margin: 20px 30px; */
}

.action_buttons .form-group.col-md-12 {
    padding: 0px;
}

div#errorMessage {
    margin-left: 20px;
}

button#apply_code {background-color: #1c4962;}


button.btn.btn-danger.remove_coupon {
    font-size: 10px;
    padding: 4px;
}


p.coupon_success {color: green;font-size: 11px;}


p#coupon_error_text {
    color: red;
}