.search_form_holder {
    text-align: center;
}

.form_filter_list {
    text-align: center;
    margin: 10px 0;
}

.form_filter_list > li {
    display: inline-block;
    vertical-align: top;
}

.check_emul {
    display: block;
}

.check_emul input {
    display: none;
}

.check_text {
    cursor: pointer;
    display: block;
    position: relative;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    letter-spacing: 0.5px;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    transition: 0s;
}

.check_emul input:checked + .check_text {
    position: relative;
    background: #378de3;
    color: #fff;
    cursor: default;
}

.check_emul input:checked + .check_text:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    height: 0;
    width: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #378de3;
}

.form_search_cell {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.form_search_field {
    display: block;
    background: #fff;
    border: 1px solid #378de3;
    padding: 10px 105px 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-transition: background 0.1s, box-shadow 0.1s;
    -moz-transition: background 0.1s, box-shadow 0.1s;
    transition: background 0.1s, box-shadow 0.1s;
}

.form_search_btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90px;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
    background-color: #3ac162;
    border: 1px solid #219a45;
    color: #eafcef;
    line-height: normal;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
