.info_comercial {
    width: 100%;
    height: 100%;
    
    margin-top: 0px;

    border-radius: 0px;
    background-color: #fff;

    display: none;

    flex-direction: column;
    align-items: center;
}

.info_comercial > .info_comercial_head {
    width: 92%;
    display: flex;
    align-items: center;
    padding-top: 30px;
    flex-direction: column;
}

.info_comercial > .info_comercial_head > h1 {
    display: inline-flex;
    margin: 0;

}

.info_comercial_body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    overflow: auto;
    flex-direction: column;
    padding-bottom: 40px;
    padding-top: 60px;
}

.info_comercial_body_subcontainer {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px;
}

.info_comercial_body_option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #f1f1f1;
    background: #f3f3f3;
    border-radius: 10px;
    width: 100%;
    height: 7vh;
    font-size: 18px;

    margin-bottom: 20px;
    padding-left: 10px;
    cursor: pointer;
}

.info_comercial_body_option.select {
    background-color: #cddee6; 
}


.info_comercial_form {
    border-radius: 10px;
    width: 100%;
    max-height: 50vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: scroll;
    margin: 0 auto;
    font-size: 16px;
}

.info_comercial_form > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.info_comercial_form > div > input {
    padding: 5px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 1em;
 }

 .info_comercial_body_form_container {
    width: 90%;
    padding: 5%;
    border-radius: 30px;
}