div.title-search-result{
    font-family: "Golos Text VF";
    border-radius: 12px;
    border: 2px solid #E6E8EC;
    background: #FFF;
    box-shadow: 0 9px 62px 0 rgba(0, 0, 0, 0.06);
    padding: 20px 16px;
    z-index: 9;
    display:none;
}
div.title-search-result .block-search{
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: auto;
}
div.title-search-result .block-search::-webkit-scrollbar{
    width: 3px;
}
div.title-search-result .block-search::-webkit-scrollbar-thumb{
    height: 140px;
    border-radius: 2px;
    background: #D0D4DA;
}
div.title-search-result .block-search .block-search--top{
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
}
div.title-search-result .block-search .block-search--top span{
    color: #5A616C;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}
div.title-search-result hr{
    margin-left: -18px;
    margin-right: -18px;
    border-bottom: 1px solid #E6E8EC;
}
.title-search-all.history{
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 18px;
    color: #111827;
    border-radius: 6px;
}

.title-search-all.history:hover{
    background: #F5F5F5;
}

.title-search-all.history .clear{
    cursor: pointer;
    height: 20px;
}

.title-search-item{
    padding: 12px 20px;
    border-radius: 6px;
}
.title-search-item a{
    font-size: 18px;
    color: #111827;
}
.title-search-item:hover{
    background: #F5F5F5;
}
.block_bestsellers--items .item{
    display: flex;
    gap: 16px;
    padding: 14px 12px;
    align-items: center;
}
.block_bestsellers--items .item img{
    width: 52px;
    object-fit: cover;
    height: 52px;
}
.block_bestsellers--items .item .title{
    font-size: 18px;
    color: #111827;
}
.block_bestsellers--items .item .chapter{
    color: #5A616C;
    font-size: 13px;
}

#title-search-input{
    border-radius: 10px;
    border: 2px solid #E6E8EC;
    background: #FFF;
    padding: 12px 16px;
    width: 660px;
    color: #9299A5;
    font-size: 18px;
    line-height: 24px;
}
#title-search-input:focus{
    border: 2px solid #F17F1B;
    color: #111827;
}
#search form{
    position:relative;
}

#search input[type=submit]{
    font-size: 0;
    border: 0;
    background: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21.0004 21L16.6504 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z' stroke='%239299A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") ;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.block-empty{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 48px;
    border-radius: 12px;
    background: #F5F5F5;
    font-size: 20px;
    color: #5A616C;
    text-overflow: ellipsis;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

@media(max-width: 1500px) {
    #title-search-input{
        max-width: 518px;
        width: 100%;
    }
}