.fns,
.fns *,
.fns :before,
.fns :after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
}

.fns_form form {
    font-family: 'Open Sans', serif;
    font-size: 15px;
}
.fns_field {
    margin: 0 0 20px;
}
.fns_field input[type="text"] {
    margin: 5px 0 0;
    width: 100%;
}
.fns_field select {
    margin: 5px 0 0;
    width: 100%;
    height: 30px;
    background: #f8f8f8;
}

.fns_loading {
    text-align: center;
}

.fns_result {
    display: none;
}
.fns_result_table_wrapper {
    overflow-x: auto;
}
.fns_result_table {
    display: table;
}
.fns_result_table_theadtr {
    display: table-row;
}
.fns_result_table_tr {
    display: table-row;
}
.fns_result_table_cell {
    display: table-cell;
    padding: 10px;
    border-top: 1px solid #ecf2f4;
    border-left: 1px solid #ecf2f4;
    font-size: 14px;
}
.fns_result_table_cell:last-child {
    border-right: 1px solid #ecf2f4;
}
.fns_result_table_tr:last-child .fns_result_table_cell {
    border-bottom: 1px solid #ecf2f4;
}
.fns_result_table_theadtr .fns_result_table_cell {
    border-bottom: 1px solid #ecf2f4;
    font-weight: 700;
    text-align: center;
}

.fns_error {
    display: none;
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid #f00;
    text-align: center;
    color: #f00;
}
.fns_error p {
    margin: 0;
    padding: 0;
}

.fns_result_detail {
    margin: 20px 0 0;
}
.fns_detail_single {
    display: none;
}

.fns_form button,
.fns_result button {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 20px;
    border: 0px;
    border-radius: 3px;
    font: 18px 'Open Sans', serif;
    line-height: 1.6;
    word-wrap: break-word;
    background-color: #289dcc;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background-color 0.3s linear 0s;
    -o-transition: background-color 0.3s linear 0s;
    transition: background-color 0.3s linear 0s;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.fns_back {
    margin: 20px 0 0;
}
