#search-form .seller__search__row {
    justify-content: center;
}

#search-form hr {
    margin-bottom: 20px;
    border-top: 1px solid #b0b0b0;
}

#search-form .form-search-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#search-form .c-box-display-block {
    display: block;
    max-width: 1000px;
    width: 900px;
}

#search-form .c-box--form-search {
    display: grid;
    grid-template-columns: 40% 60%;
}

#search-form .title-search--form {
    font-weight: bolder;
    font-size: 20px;
    text-align: start;
}

#search-form .c-form__search {
    margin: 0;
}

#search-form .c-box--form-search-select {
    display: grid;
    grid-template-columns: 40% 60%;
    margin-top: 25px;
    margin-bottom: 40px;
}

#search-form .c-form__search__input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 0;
}

#search-form .c-form-select--content {
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
}

#search-form .c-select__box,
#search-form .seller__search__row__input .c-select {
    width: 100%;
}

#search-form .c-box .c-select select {
    width: 100%;
}

.seller__result {
    margin-top: 20px;
}

.seller__result__item__body {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.seller__result__item__thumbnail, .seller__result__item__info {
    width: 50%;
}

.seller__result__item__no__image {
    width: 100%;
    display: flex;
    height: 170px;
    color: rgb(243, 243, 243);
    background-color: rgb(186, 186, 186);
    justify-content: center;
    align-items: center;
}

.seller__result__item__badge__header {
    padding: 5px 0;
    background-color: #EB0A1E;
    color: #FFFFFF;
    width: 100%;
    max-width: 118px;
    border-radius: 15px;
}

.seller__result__item__content {
    height: 100%;
    max-height: 170px;
    margin-left: 10px;
}

.seller__result__item__name {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    text-align: left;
}

.seller__result__item__price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

.seller__result__item__price > span {
    font-size: 12px;
    color: #333333;
    font-weight: 600;
    margin-right: 10px;
}

.seller__result__item__badge__bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.seller__result__item__badge__bottom > div {
    width: 45%;
    text-align: center;
    color: #EB0A1E;
    background-color: rgba(235, 10, 30, 0.1);
    border: 2px solid #EB0A1E;
    margin-top: 10px;
}

.seller__result__item__badge__bottom > div:first-child {
    margin-right: 10px;
}

.seller__result__item__image > img {
  max-width: 100%;
  height: initial;
  max-height: 150px;
}

.seller__result__item {
    position: relative;
}

.seller__result__item__tags {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.seller__result__item__price__detail {
    display: flex;
    align-items: flex-end;
}

.seller__result__item__price__detail > p {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 26px;
}

.seller__result__item__price__detail > span {
    font-size: 12px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 2px;
}

@media only screen and (max-width: 760px){
    #search-form .c-box--form-search {
        grid-template-columns: 100%;
    }

    #search-form .title-search--form {
        font-size: 16px;
        margin-bottom: 12px;
    }

    #search-form .c-box--form-search-select {
        grid-template-columns: 100%;
    }

    .seller__result__items {
        display: flex;
        flex-wrap: wrap;
    }

    .seller__result__items > div {
        width: 100%;
        max-width: 48%;
    }

    .seller__result__items > div:nth-child(odd) {
        margin-right: 10px;
    }

    .seller__result__item__body {
        flex-direction: column;
    }

    .seller__result__item__thumbnail, .seller__result__item__info {
        width: 100%;
    }

    .seller__result__item__content {
        margin-left: 0;
        margin-top: 10px;
    }

    .seller__result__item__badge__header {
        max-width: 77px;
    }

    .seller__result__item__name {
        font-size: 14px;
        font-weight: 600;
    }

    .seller__result__item__badge__bottom {
        flex-direction: column;
    }

    .seller__result__item__badge__bottom > div {
        width: 100%;
    }

    .seller__result__item__badge__bottom > div:first-child {
        margin-right: 0;
    }

    .seller__result__item__no__image {
        height: 100px;
    }

    .seller__result__item__image > img {
        object-fit: cover;
        width: 100%;
        height: 150px;
    }

    .seller__result__item__price__detail > span {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .seller__search__row__input {
        text-align: left;
    }

    #search-btn {
        min-width: 270px;
    }

    .seller__result {
        margin-top: 0;
    }
}
