.smartsearch-title__wrap {
    width: 100%;
}

.smartsearch-title__result {
    position: absolute;
    z-index: 1001;
    background-color: #fff;
    width: 100%;
    top: -2px;
    padding-top: 0;
    padding-bottom: 20px;
    -webkit-box-shadow: 0px 0px 20px rgba(51, 51, 51, 0.2);
    box-shadow: 0px 0px 20px rgba(51, 51, 51, 0.2);
    -webkit-transition: opacity .2s, visibility .2s;
    transition: opacity .2s, visibility .2s;

}

.search-title__icon {
    display: none;
    position: absolute;
    cursor: pointer;
    top: 1px;
    bottom: 1px;
    right: 10px;
    width: 22px;
    color: var(--color-gray-500);
    justify-content: center;
    align-items: center;
    z-index: 107;
}

.search-title__icon.show {
    display: flex;
}

.search-title__icon.show+button {
    opacity: 0;
}

.smartsearch-title__result-item {}

.smartsearch-title__result-item .item-name {
    font-weight: 500;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #E5E5E5;
    -webkit-transition: .2s;
    transition: .2s;
}

.smartsearch-title__result-item .item-price {
    margin-left: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
}

.smartsearch-title__result-item:hover .item-name {
    background-color: #00A1D9;
    color: #fff;
}