.filter_wrapper {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.heading {
    background-color: #4943b2;
    color: white;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.service_sec_title {
    position: relative;
    height: 20px;
}
.service_sec_title .underline {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #dfdfdf;
    margin-top: 12px;
}

.service_sec_title div{
    font-size: 1.1em;
    font-weight: bold;
    display: inline-block;
    background-color: white;
    color: navy;
    padding-right: 10px;
    position: absolute;

}

/* // comment */
.comment_container {
    /* display: flex; */
    margin-top: 20px;
}
.clearfix {
    clear: both;
}
.comment_container .other {
    display: block;
    float: left;
}
.comment_text {
    background-color: #efefef;
    padding: 5px 15px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    display: inline-block;
    min-width: 200px;
    margin-bottom: 10px;
}

.comment_container .self {
    display: block;
    float: right;
}

.self .comment_text {
    border-top-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-top-right-radius: 0;
}

.select2-container {
    border: 1px solid #ced4da;
    border-radius: 3px;
    padding: 2px;
}

.select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 3px;
    outline: none;
}

.comment-body {
    height: 350px;
    overflow-y: auto;
}

@media screen and (max-width: 768px) {
    .filter_wrapper {
        flex-direction: column;
    }

}


.info-table {
    border:1px solid #dfdfdf;
    border-collapse: collapse;
    width: 100%;
}

.info-table tr, .info-table td {
    border: 1px solid #dfdfdf;
    padding: 4px 2px;
}