
/* ---------------------------- */
/* ----- BUTTON POSITION ------ */
/* ---------------------------- */

#step_previous_and_next_block {
    padding: 10px 5% !important;
    display: flex !important;
    flex-direction: row;
    width: 100% !important;
    justify-content : space-between;
    margin-top:30px;
    position: absolute;
    bottom: 0;
}

#step_previous_and_next_block button{
    padding: 10px 16% !important; 
    font-weight: 500;
    width: fit-content;
}
#step_previous_and_next_block .button{
    flex: auto;
}

#step_previous_and_next_block div:nth-child(2){
    text-align: right;
}
/* ------------------------------ */
/* ----- BTN GENERAL STYLE ------ */
/* ------------------------------ */
#step_previous_and_next_block{
    border-width: 0.501166px 0px 0.5px 0px;
    border-style: solid;
    border-color: rgba(60, 60, 67, 0.36);
    background-color: #f6f6f6;
    border : 1px solid #c6c6c6;
    z-index: 1;
}


#step_previous_and_next_block #nextStepBtn {
    background-color: #FBCD5C;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    border: 0px;
}
.step-container #nextStepBtn:hover{
    background-color: #FBCD5C !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1) !important;
}


#step_previous_and_next_block #prevStepBtn{
    background-color: #f6f6f6 !important;
    margin-left: auto;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15) !important;
    border-radius: 30px;
    border: 0px
}

#step_previous_and_next_block #prevStepBtn:hover {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1) !important;
    background-color: #f6f6f6 !important;
}
#step_previous_and_next_block button[name="see_results"]{
    background-color: #B5EED7 !important;
}
#step_previous_and_next_block button[name="see_results"]:hover{
    background-color: #B5EED7 !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1) !important;
}

/* ---------------------- */
/* ----- BTN LABEL ------ */
/* --------------------- */
#step_previous_and_next_block #prevStepBtn::before {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    color: #282828;
}

#step_previous_and_next_block #nextStepBtn::before {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    color: #282828;
}

/* ------------------------------------ */
/* ----- BTN SPINNER SIZE CREA 7 ------ */
/* ------------------------------------ */

.spinner-size {
    width: 1rem;
    height: 1rem;
    border-width: .2em;
    margin-bottom: 2px;
}

/* =============================
/* MEDIA QUERIES
================================ */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    #step_previous_and_next_block {
        padding: 15px 40px!important;
        position: absolute; 
        bottom: 0;
        width: 66.6% !important;
        transform: translate(0%, 0%);
    }

    #step_previous_and_next_block button{
        padding: 10px 45px !important;
    }
    #step_previous_and_next_block .button{
        flex:inherit;
    }
    #step_previous_and_next_block div:first-child{
        margin-right:0px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #step_previous_and_next_block {
        padding: 15px 80px!important;
    }
}

