#search-result[hidden] { display: none !important; }
#search-result {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    box-sizing: border-box;
}
.search-inner { width: 100%; }
.search-suggest {
    width: 100%;
    max-height: min(600px, 72vh);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 10px 20px;
    background: #fff;
    border: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 35px rgba(27, 42, 51, .2);
}
.search-suggest__item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 8px 0;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 73, 73, .25);
}
.search-suggest__item:last-child { border-bottom: 0; }
.search-suggest__item:hover,
.search-suggest__item:focus {
    background: #f6f8f9;
    color: #ed4b4e;
    text-decoration: none;
    outline: none;
}
.search-suggest__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 66px;
    overflow: hidden;
    background: #fff;
}
.search-suggest__image img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 88px !important;
    max-height: 62px !important;
    object-fit: contain !important;
}
.search-suggest__body { min-width: 0; }
.search-suggest__title {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}
.search-suggest__article {
    display: block;
    margin-top: 3px;
    color: #89949a;
    font-size: 12px;
    line-height: 1.3;
}
.search-suggest mark {
    padding: 0;
    background: transparent;
    color: inherit;
    font-weight: 700;
}
.search-suggest__empty {
    padding: 24px 20px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    color: #777;
    text-align: center;
    box-shadow: 0 12px 35px rgba(27, 42, 51, .2);
}
@media (max-width: 640px) {
    #search-result {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        width: 100%;
        margin: 0;
    }
    .search-suggest { max-height: 60vh; padding: 8px 12px; }
    .search-suggest__item { grid-template-columns: 72px minmax(0, 1fr); gap: 10px; }
    .search-suggest__image { width: 72px; }
    .search-suggest__image img { max-width: 68px !important; }
}
