.teste {
    color: red;
}

.d-none-imp {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.steps-indicator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.steps-indicator-container .step-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 10px;
    cursor: pointer;
}

.steps-indicator-container .step-indicator.active {
    background-color: #9c27b0;
}

.flex {
    display: flex;
}

.w-full {
    width: 100%;
}

.w-45 {
    width: 45%;
}

.container-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Style the radio container */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px; /* Adjust the left padding to change the space for the radio button */
    margin-bottom: 10px;
    cursor: pointer;
    color: black;
}

/* Hide the default radio input */
.radio-container input {
    position: absolute;
    opacity: 0;
}

/* Style the radio button itself */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px; /* Adjust the height and width to change the radio button size */
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* When the radio input is checked, change the background color of the radio button */
.radio-container input:checked + .checkmark {
    background-color: #9c27b0;
}

/* Create a dot in the center of the radio button */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the dot when the radio input is checked */
.radio-container input:checked + .checkmark::after {
    display: block;
}

/* Style the dot */
.radio-container .checkmark::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}


