
.form-multstep {
    max-width: 100%;
    margin: 20px auto;
    padding: 60px;
    background: #fff;
}

.form-multstep .top-text{
	font-size: 20px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 300;
    color: #000;
}

.form-multstep .top-text strong{
    font-weight:700;
}

.form-multstep .progress{
    height:4px;
    background:#ff8300;
    margin-bottom:20px;
}

.form-multstep .progress-bar{
    background:#000;
}

.form-multstep .step{
    display:none;
    animation:fade .3s ease;
}

.form-multstep .step.active{
    display:block;
}

@keyframes fade{
    .form-multstep from{
        opacity:0;
        transform:translateX(15px);
    }

    .form-multstep to{
        opacity:1;
        transform:translateX(0);
    }
}

.form-multstep label{
    margin-bottom:10px;
    font-size:16px;
    color:#000;
}

.form-multstep .form-control{
    border:1px solid #000;
    color:#000;
    height:55px;
    border-radius:8px;
    padding:15px;
    font-size:16px;
}

.form-multstep .form-control:focus{
    color:#000;
    border-color:#ff8300;
    box-shadow:none;
}

.form-multstep select.form-control{
    color:#000;
}

.form-multstep textarea.form-control{
    height:120px;
    resize:none;
}

.form-multstep .form-buttons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.form-multstep .btn-back{
    width:120px;
    height:55px;
    border:1px solid #666;
    background:#000;
    color:#fff;
    border-radius:8px;
    font-weight:bold;
}

.form-multstep .btn-back:hover{
    border-color:#fff;
}

.form-multstep .btn-next{
    flex:1;
	width:100%;
    height:55px;
    border:none;
    border-radius:8px;
    background:#ef7f09;
    color:#fff;
    font-weight:bold;
    font-size:16px;
    transition:.2s;
}

.form-multstep .btn-next:hover{
    background:#d1700a;
}

.form-multstep .success-message{
    display:none;
    text-align:center;
    font-size:22px;
    margin-top:40px;
}
#loadingMessage h4 {
    color: #000;
}
#loadingMessage p {
    color: #000;
}


/* SEGUNDA ETAPA */
/* =========================================================
   RADIO E CHECKBOX
   ========================================================= */

.form-multstep .checkbox-group,
.form-multstep .radio-group{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
    margin-bottom:20px;
}


/* Cada opção */

.form-multstep .checkbox-group label,
.form-multstep .radio-group label{
    display:flex;
    align-items:center;
    gap:12px;

    width:100%;
    min-height:52px;

    padding:13px 16px;
    margin:0;

    border:1px solid #d6d6d6;
    border-radius:8px;

    background:#fff;
    color:#000;

    font-size:15px;
    font-weight:400;

    cursor:pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}


/* Hover */

.form-multstep .checkbox-group label:hover,
.form-multstep .radio-group label:hover{
    border-color:#ef7f09;
    background:#fff8f1;
}


/* =========================================================
   INPUT
   ========================================================= */

.form-multstep .checkbox-group input[type="checkbox"],
.form-multstep .radio-group input[type="radio"]{
    appearance:none;
    -webkit-appearance:none;

    width:20px;
    height:20px;

    min-width:20px;

    margin:0;

    border:2px solid #999;

    background:#fff;

    cursor:pointer;

    position:relative;

    transition:.2s;
}


/* Checkbox quadrado */

.form-multstep .checkbox-group input[type="checkbox"]{
    border-radius:5px;
}


/* Radio redondo */

.form-multstep .radio-group input[type="radio"]{
    border-radius:50%;
}


/* =========================================================
   SELECIONADO
   ========================================================= */

.form-multstep .checkbox-group input[type="checkbox"]:checked,
.form-multstep .radio-group input[type="radio"]:checked{
    border-color:#ef7f09;
    background:#ef7f09;
}


/* Check do checkbox */

.form-multstep .checkbox-group input[type="checkbox"]:checked::after{
    content:"";
    position:absolute;

    left:5px;
    top:2px;

    width:6px;
    height:10px;

    border:solid #fff;
    border-width:0 2px 2px 0;

    transform:rotate(45deg);
}


/* Bolinha do radio */

.form-multstep .radio-group input[type="radio"]:checked::after{
    content:"";

    position:absolute;

    width:8px;
    height:8px;

    background:#fff;

    border-radius:50%;

    top:4px;
    left:4px;
}


/* =========================================================
   CARD SELECIONADO
   ========================================================= */

.form-multstep .checkbox-group label:has(input:checked),
.form-multstep .radio-group label:has(input:checked){
    border-color:#ef7f09;
    background:#fff8f1;
}


/* =========================================================
   DESABILITADO
   ========================================================= */

.form-multstep .checkbox-group label:has(input:disabled),
.form-multstep .radio-group label:has(input:disabled){
    opacity:.45;
    cursor:not-allowed;
}


/* =========================================================
   TEXTO AUXILIAR
   ========================================================= */

.form-multstep .step > small{
    display:block;

    margin-top:-5px;
    margin-bottom:15px;

    color:#777;
    font-size:13px;
}
.form-multstep .success-message h3 {
    color: #e77d0f;
    font-weight: 800;
}
.form-multstep .success-message {
    text-align: center;
    font-size: 22px;
    margin-top: 40px;
    color: #000;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

    .form-multstep .checkbox-group label,
    .form-multstep .radio-group label{
        padding:12px 14px;
        font-size:14px;
        min-height:50px;
    }

}
