/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

body {
    background-color: #f8f9fa;
    font-family: "Canva Sans", "Noto Sans Variable", "Noto Sans", -apple-system,
        BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
h3.text-muted {
    font-size: 30px !important;
}

.form-check-input {
    border: 2px solid #505050;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
}

.form-check-input .large-label {
    font-size: 1.3rem;
}

.form-check-input:checked {
    background-color: #4289bf;
    border-color: #4289bf;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #4cc4f8;
    border-radius: 0.5rem;
    color: white;
}

.step-indicator .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    color: #60686f;
    text-align: center;
}

.step-indicator .step.active {
    color: #ffffff;
    font-weight: bold;
}

.step-indicator .circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4289bf;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.step-indicator .step.active .circle {
    background-color: #1e557f;
}

.form-check.disabled-item {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-check.disabled-item input[type="radio"] {
    cursor: not-allowed;
}

.accordion-button {
    font-size: large;
    font-weight: 500;
}

.btn-primary {
    background-color: #4289bf !important;
    border-color: #4289bf !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2d6c9c !important;
    border-color: #2d6c9c !important;
}

@media screen and (max-width: 768px) {
    h3.text-muted {
        margin-top: 14px;
        font-size: 14px !important;
    }
}
