@charset "utf-8";

.page_consult .main {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    background-color: #fff;
    padding: 50px 30px;
}

@media (max-width: 768px) {
    .page_consult .main {
        padding: 15px;
    }
}


/*
.consult_wrapper  .breadcrumb_box {
    background-color: #fff;
}
*/

/*
 * form_custom
 * */
.form_custom {
    max-width: 800px;
    margin: 0 auto;
}


.form_custom .form-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form_custom .label {
    width: 20%;
    min-height: 33px;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;

    display: flex;
    align-items: center;
}


.form_custom .label_required {

    position: relative;
}

.form_custom .label_required:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    content: '*';
    color: #f00;
}


.form_custom .form-control {
    display: block;
    width: 80%;
    min-height: 33px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.form_custom .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form_custom .form-group .dd {
    display: flex;
    position: relative;
    width: 50%;
    padding: 10px;
}

.form_custom .form-group .dt {
    display: flex;
    position: relative;
    width: 100%;
    padding: 10px;
}

.form_custom .form-btn {
    padding-left: 20%;
}

@media (max-width: 768px) {
    .form_custom .form-group {
        width: 100%;
        display: block;
    }

    .form_custom .label {
        width: 100%;
    }

    .form_custom .form-control {
        width: 100%;
    }

    .form_custom .form-btn {
        padding: 0;
        text-align: center;
    }
}
