.search-results{
    all: unset;
    display: flex;
    width: 21.806vw;
    max-width: 100%;
    max-height: calc(48px * 5);
    overflow-y: scroll;
    padding: 12px 8px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #A6A6A6;
    background: rgba(92, 92, 102, 0.70);
    backdrop-filter: blur(16px);
    position: absolute;
    bottom:  -4px;
    left: 0;
    transform: translateY(100%);
}

.search-results::-webkit-scrollbar {
    display: none;
}

@media (max-width: 480px){
    .search-results{
        width: 100%;
    }
}