.search-box-banner {
    margin: 40px 0;
}

div.search-box-banner form.searchform input.search-input {
    background-color: #ffffff !important;
    color: #8B8B8B !important;
    height: 50px;
    font-size: 18px;
    border-radius: unset;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

div.search-box-banner form.searchform input.search-input::placeholder {
    color: #8B8B8B;
    content: 'Search...';
}

div.search-box-banner form.searchform i.icon-search {
    color: #D32121;
}

#select-web {
    position: relative;
    background-color: #e4e4e5;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 120px;
    cursor: pointer;
}

#select-web > #img-select {
    padding: 0 10px;
    width: 80%;
}

#select-web #list-web {
    position: absolute;
    top: 55px;
    height: 150px;
    overflow-y: scroll;
    z-index: 99;
    background: #ffffff;
    display: none;
}

#select-web  ul{
    list-style: none;
    margin: 0;
}

#select-web #list-web > ul > li {
    cursor: pointer;
    margin-bottom: 0;
    padding: 8px 0;
}

#select-web #list-web > ul > li:hover {
    background-color: #e4e4e5;
}

#select-web #list-web > ul > li > img{
    width: 70%;
}

#select-web > #img-select > span {
    display: block;
    background-image: url(./images/taobao.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 35px;
}

div#result-search {
    position: absolute;
    width: 100%;
    z-index: 98;
}

ul.list-result-search {
    list-style: none;
    background-color: #ffffff;
    border-radius: 5px;
    max-height: 165px;
    overflow-y: scroll;
}

ul.list-result-search > li {
    text-align: left;
    padding: 10px;
    margin: 0;
    font-size: 17px;
    border-bottom: 0.5px solid #e4e2e2;
    color: #D32121;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

ul.list-result-search > li:hover {
    background-color: #D32121;
    color: #ffffff;
}

ul.list-result-search > li:last-child {
    border-bottom: unset;
}

.loader {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-top: 3px solid #292929;
    border-right: 3px solid #efefef;
    border-bottom: 3px solid #efefef;
    border-left: 3px solid #efefef;
    border-radius: 100px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    100% {
      transform: rotate(360deg);
    }
}