.search-match-box {
    width: 100%;
    min-height: 150px;
    max-height: 220px;
    position: absolute;
    top: 41px;
    border: 1px solid #e3e3e3;
    border-radius: 9px;
    background-color: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
}
.search-match-box ul {
    list-style-type: none;
    margin: 0;
    line-height: 1;
}
.search-match-box ul li {
    font-size: 16px;
    padding: 10px 15px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-bottom: solid 1px #e3e3e3;
}
.search-match-box ul li:hover {
    background-color: #eee;
}
.search-match-box::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
}

/* background of the scrollbar except button or resizer */
.search-match-box::-webkit-scrollbar-track {
    background-color:transparent;
}
.search-match-box::-webkit-scrollbar-track:hover {
    background-color:transparent;
}

/* scrollbar itself */
.search-match-box::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 5px solid transparent;
}
.search-match-box::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:5px solid #f4f4f4
}

@media all and (max-width: 768px) {
    .box-for-desktop {
        display: none;
    }
}

.box-for-mobile {
    display: none;
    cursor: pointer;
}
@media all and (max-width: 768px) {
    .box-for-mobile {
        display: block;
    }
}
.el-dialog.dialog-searching-for-mobile {
    position: relative;
    background-color: transparent;
    box-shadow: none;
    --el-dialog-width: 80%;
    box-shadow: none;
}
.el-dialog.dialog-searching-for-mobile .el-dialog__headerbtn:hover {
    background-color: transparent;
}
.el-dialog.dialog-searching-for-mobile .el-dialog__headerbtn .el-dialog__close {
    color: #fff;
}
.el-dialog.dialog-searching-for-mobile .el-dialog__headerbtn:hover .el-dialog__close {
    color: #fff;
}
.el-dialog.dialog-searching-for-mobile .searching-for-mobile-box .content {
    position: relative;
}
.el-dialog.dialog-searching-for-mobile .search_bar {
    background-color: #fff;
    align-items: center;
}
.el-dialog.dialog-searching-for-mobile .search_bar >input {
    background-color: #fff;
    border: none;
    width: 100%;
}
.el-dialog.dialog-searching-for-mobile .search-match-box {
    top: 60px;
}