.container {
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table-all {
    max-width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.table-tittle {
    text-align: center;
    padding-bottom: 50px;
}

#font-p,
.table-tittle p {
    margin: 0;
}

.table-from-content {
    border-top: 3px solid #6b6b6b;
}

.col-con {
    display: flex;
    border-bottom: 1.5px solid #6b6b6b;
}

#col-con-alto {
    border-bottom: 3px solid #6b6b6b;
}

.col-con p {
    font-weight: 600;
    background-color: #d4d4d4;
    width: 150px;
    padding: 15px 0px 15px 15px;
    margin: 0;
}

.col-con input,
#alto {
    font-size: 12pt;
    padding-left: 10px;
    margin: 10px 15px 10px 15px;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
}

#alto {
    width: 70vh;
    height: 15vh;
    padding-top: 10px;
    padding-bottom: 6px;
    padding-right: 10px;
}

#address,
.input-m {
    width: 70vh;
}

#col-box {
    width: 35vh;
}

.col-submit {
    display: flex;
    justify-content: center;
}

.input-m {
    display: flex;
    align-items: center;
}

.input-m input {
    margin-right: 5px;
}

#submit {
    width: 200px;
    height: 40px;
    background-color: #F0844A;
    color: white;
    font-weight: 900;
    border: 0px solid black;
    margin-top: 30px;
    cursor: pointer;
}

#submit:hover {
    background-color: #dd763e;
}


/* RWD */

@media (max-width: 1200px) {

    .container {
        padding-left: 150px;
        padding-right: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #address,
    .input-m,
    #alto {
        width: 50vh;
    }

    #col-box {
        width: 30vh;
    }

    #alto {
        width: 50vh;
    }
}

@media (max-width: 768px) {

    .container {
        padding-left: 100px;
        padding-right: 100px;
    }

    #address,
    .input-m,
    #alto {
        width: 30vh;
    }

    #col-box {
        width: 30vh;
    }

}

@media (max-width: 540px) {

    .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .col-con {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .col-con p {
        font-weight: 600;
        background-color: #ffffff00;
        width: 304px;
        padding: 20px 0px 10px 15px;
        margin: 0;
    }

    #address,
    #col-box,
    #alto {
        height: 30px;
    }

    #address,
    .input-m,
    #alto,
    #col-box {
        width: 80%;
    }

    .input-m {
        width: 100%;
    }

}