
.centralizar-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card-wrapper {
    padding-bottom: 24px;
}

button:disabled {
    background-color: #cccccc;
    color: #ffffff;
    border:2px solid #bbbbbb;
    cursor: not-allowed;
}

button:disabled:hover{
    background-color: #cccccc;
    color: #ffffff;
    border:2px solid #bbbbbb;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border-left-color: #ffffff;
    animation: spin 1s ease infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.etapa-selection .title-box{
    position:relative;
    text-align:center;
}

.etapa-selection .title-box .title{
    position:relative;
    color:#777777;
    font-size:16px;
    font-weight: 600;
    letter-spacing:1px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.etapa-selection .title-box h2{
    position:relative;
    color:#34322d;
    font-size:36px;
    font-weight:600;
    margin-bottom:15px;
}

.etapa-selection .title-box .text{
    position:relative;
    color:#888888;
    font-size:16px;
    font-weight:400;
    line-height:1.8em;
    margin-bottom:40px;
}

.etapa-selection .title-box .btns-box{
}

.etapa-selection .title-box .btns-box .theme-btn{
    margin:8px 8px;
}

.etapa-selection .title-box .separator{
    position: relative;
    width: 60px;
    height: 15px;
    text-align: center;
    margin: 0 auto 30px;
}

.etapa-selection .title-box .separator:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 6px;
    width: 60px;
    height: 2px;
    background-color: #c8b499;
}