.chosearch {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.chosearch table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}
.chosearch table td, .chosearch #customers th {
    border: 1px solid #ddd;
    padding: 8px;
}
.chosearch table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.chosearch table tr:hover {
    background-color: #ddd;
}
.chosearch table th {
    padding: 12px;
    text-align: left;
    background-color: rgba(16, 90, 105, 0.6) !important;
    color: white;
}
.chosearch .results-table-cont {
    max-height: 600px !important;
    overflow-y: auto;
}

#chosearch-input {
    width: 100%;
    position: relative;
    cursor: text;
    font-size: 27px;
    line-height: 28px;
    padding: 0 16px;
    height: 63px;
    background-color: #fff;
    border: 1px solid #d6d6e7;
    border-radius: 3px;
    color: #23263b;
    box-shadow: inset 0 1px 4px 0 rgba(119, 122, 175, 0.3);
    overflow: hidden;
    transition: all 100ms ease-in-out;
}
#chosearch-input :focus {
    border-color: #3c4fe0;
    box-shadow: 0 1px 0 0 rgba(35, 38, 59, 0.05);
}

#chosearch-input-submit {
    width: 100%;
    margin-top: 14px;
}