@media (min-width: 1023px) {

.scheeps .search-result__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: -8px;
    margin-left: 20px;
}

.scheeps .search-result-item, .scheeps .search-history-item {
    /*margin: 8px 8px 0 0;*/
    display: block;
    position: relative;
    padding: 8px 4px;
    background: unset;
}


.scheeps .search-result-item__txt, .scheeps .search-history-item__txt {
    color: rgb(28, 33, 38);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 8px;
    display: block;
    white-space: nowrap;
    background-color: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-size: 12px;
    line-height: 130%;
    color: #7b7b7b;
    transition: color .25s, border-color .25s, background-color .25s;
    cursor: pointer;
    position: relative;
}

.scheeps .search-result-item__txt:hover, .scheeps .search-history-item__txt:hover {
    background-color: #455999 !important;
    color: #FFF !important;
}

.scheeps .search-result-item--item {
    background: unset;
}

.scheeps .search-result-item__sec {
    display: none;
}

.scheeps .search-history-item__delete {
    display: none;
}

.scheeps .search-history-item:hover {
    background-color: unset;
}

.search-history-item__delete2 {
    z-index: 5;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #dadada;    
}

.sclear {
    padding-right: 42px !important;
}

}

@media (max-width: 1023px) {
    .search-history-item__delete2 {
	display: none;
    }
}