/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.category_list {
    background: #DCDEE0;
    padding: 8px;
}

.category_list form {
    position: relative;
}

.category_list form select {
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background: #6d6d6d;
    display: block;
    width: 100%;
    font-weight: 400;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    padding: 8px;
    background-image: url("../img/select-down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.category_list form input {
    background: #20a943;
    border: 0;
    padding: 8px 20px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
    width: 100%;
    border: 2px solid #20a943;
}


.category_list form input:hover {
    color: #20a943;
    background: #fff;
}


.js .category_list form input {
    display: none;
}

.category_list__iconWrapper {
    position: absolute;
    right: 10px;
    top: 17px;
}