/*---------------------------------------------
                  Search
----------------------------------------------*/
#sidebar {
    max-width: 100% !important;
    margin: 0 auto 10px !important;
    padding: 20px 30px;
    background-color: #fffbf7;
    border: solid 1px #ccc;
    font-weight: 700;
}

#sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    width: calc(100% - 130px);
    margin-bottom: 0;
}

#sidebar select {
    height: 30px;
    padding: 0 4px;
    margin-right: 5px;
    color: #000;
    font-size: 14px;
}

.filter-item-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 5px;
    border-bottom: dotted 1px #ccc;
}

.filter-item-wrap:last-child {
    border: none;
    margin-bottom: 0;
}

.filter-item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    width: 120px;
    text-align: center;
    background-color: #ff9800;
    color: #fff;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 0;
}

.filter-item-wrap ul {
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

.filter li {
    list-style: none;
    margin-bottom: 5px;
}

.filter-label-new li:first-child {
    display: none;
}

.filter li label {
    display: flex;
    align-items: center;
}

.filter li input {
    margin-right: 5px;
}

.kyeword-search {
    display: flex;
    width: 350px;
    height: 35px;
    margin-bottom: 0;
}

#seachtext {
    font-size: 13px;
    height: 100%;
    color: #000;
}

.kyeword-search button {
    display: block;
    width: 60px;
    height: 100%;
    padding: 5px;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.kyeword-search button:hover {
    background-color: #ffbf61 !important;
}

/*---------------------------------------------

                    PC

----------------------------------------------*/
@media only screen and (min-width: 1025px) {}

/*---------------------------------------------

                    PC-Under

----------------------------------------------*/
@media only screen and (max-width: 1024px) {

    #sidebar ul {
        width: 100%;
    }

    .has-sidebar #sidebar {
        order: unset;
    }

}

/*---------------------------------------------

                    Tablet

----------------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 1024px) {}

/*---------------------------------------------

                    Mobile

----------------------------------------------*/

@media only screen and (max-width: 767px) {
    .has-sidebar #sidebar {
        padding: 10px;
    }

    .filter-item-title {
        margin-bottom: 5px;
    }

    .filter li label {
        font-size: 12px !important;
        margin-right: 10px;
    }
}
