/* Content */

.content_container {
    padding: 0 60px;
}

.content_container h1 {
    font-size: 30px;
    font-weight: 500;
}

.content_container h6 {
    font-size: 14px;
    color: #777777;
    font-weight: 300;
}

.content_header_text {
    margin-bottom: 30px;
    margin-top: 30px;
}


/* Steps */

.steps_container {
    margin: 20px;
}

.steps_container .div_step>span {
    font-size: 18px;
    letter-spacing: -0.45px;
    color: #000000;
    opacity: 0.7;
}

.div_step {
    margin-bottom: 30px;
}

.step_square {
    border: 1px dashed #C3C3C3;
    border-radius: 10px;
    padding: 20px 40px;
    position: relative;
    margin: 10px 0;
    display: flex;
}

.step_square .card_container input {
    display: none;
}

.card_container a:hover {
    text-decoration: none;
}

.step_square .card_option {
    background: #F7F7F8 0% 0% no-repeat padding-box;
    border: 1px solid #D7D8DC;
    border-radius: 8px;
    width: 95px;
    height: 110px;
    padding: 15px 5px;
    text-align: center;
    color: #707070;
    cursor: pointer;
    margin: auto;
    margin-bottom: 5px;
    transition: all 0.5s ease;
}

.step_square .card_option_active {
    background: #FF6600 0% 0% no-repeat padding-box;
    border: 1px solid #FF6600;
    color: #FFF;
}

.step_square .card_option span {
    font-size: 12px;
    display: block;
    margin: 10px 0;
    font-weight: 300;
    color: inherit;
}

.step_square .card_option i {
    font-size: 40px;
}

.step_square .step_number {
    position: absolute;
    top: 30px;
    left: -26px;
    width: 54px;
    height: 54px;
    background: #FF6600 0% 0% no-repeat padding-box;
    border: 7px solid #F9F9F9;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    font-weight: 600;
    font-size: 20px;
}

.step_container {
    opacity: 1;
    transition: all 0.5s ease;
}


/* detail section */

.details_container .label_div {
    font-size: 14px;
    color: #777676;
    font-weight: 300;
    display: flex;
}

.details_container .label_div label {
    display: block;
    margin: auto;
    margin-right: 0;
}


/* Radio button */

.radio_container {
    display: flex;
    border: 1px solid #F1F1F1;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.radio_container_active {
    border: 0.75px solid #FF6600;
}

.radio_container input {
    display: none;
}

.checkbox_check {
    width: 20px;
    height: 20px;
    background: #D7D8DC 0% 0% no-repeat padding-box;
    border: 3px solid #ECEDEF;
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
    margin: auto 0;
    color: white;
    transition: all 0.5s ease;
}

.checkbox_check.checkbox_check_active {
    background: #7AAA39 0% 0% no-repeat padding-box;
}

.checkbox_check i {
    opacity: 0;
    line-height: inherit;
    transition: all 0.5s ease;
}

.checkbox_check.checkbox_check_active i {
    opacity: 1;
}

.checkbox_label {
    letter-spacing: 0px;
    color: #656565;
    margin-left: 10px;
    font-weight: 300;
}

.checkbox_label b {
    font-weight: 500;
}


/* Generate button */

.generate_btn {
    display: block;
    margin: auto;
    width: 20%;
}

.reset_btn {
    display: block;
    margin: auto;
}

#boton_volver_generar {
    padding: 10px;
}


/* No products */

.content_no_products {
    display: grid;
    text-align: center;
}

.content_no_products i {
    color: var(--orange);
    font-size: 60pt;
    padding: 30px 0;
}

.content_no_products span,
.content_no_products b,
.content_no_products a {
    padding: 5px 0;
}

.content_no_products a {
    color: var(--orange);
}

.content_no_products a:hover {
    color: var(--grey_light);
    text-decoration: none;
}

.text_grey {
    color: var(--grey_light);
}


/* Important section */

.important_section {
    background-color: #d8edf8;
    color: #3686af;
    padding: 20px 120px;
    margin: 15px 0;
    border-radius: 2px;
}

.important_icon {
    position: absolute;
    left: 32px;
    top: 32px;
    font-size: 45pt;
}


/* Responsive Content */

@media screen and (max-width: 767px) {
    div#container {
        max-width: initial;
    }
    .content_container {
        padding: 0;
    }
    .step_square {
        padding: 30px 10px;
        margin-top: 25px;
    }
    .step_square .step_number {
        top: -27px;
        left: 45%;
        right: 50%;
        transform: scale(0.8, 0.8);
    }
    .step_square .card_option {
        /* transform: scale(0.8, 0.8); */
    }
    .steps_container {
        margin: 0;
    }
    .col-12 {
        padding: 0;
    }
    .content_container {
        text-align: center;
    }
    .generate_btn {
        width: auto;
    }
    .details_container {
        padding: 0 15px;
    }
    .details_container .label_div label {
        margin-right: auto;
        margin-left: 0;
    }
    .checkbox_check {
        display: inline-table;
    }
    .col.card_container {
        padding: 0;
    }
    .important_section {
        padding: 10px;
    }
    .important_icon {
        position: relative;
        top: auto;
        left: auto;
        font-size: 25pt;
    }
}