.search-form__popup-list {
    display: flex;
    flex-direction: column;
}
.search-form {
    position: relative;
}

.search-form form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form__input {
    width: 271px;
    height: 36px;
    padding: 8px 8px 8px 36px;
}

.search-form__button {
    position: absolute;
    left: 0;
    top: auto;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    outline: none;
}
.search-form__button svg {
    stroke: #101820;
}


.search-form__popup {
    position: absolute;
    background: #ffffff;
    border: 1px solid #000000;
    z-index: 9999;
    left: 0;
    right: 0;
    display: none;
}

.search-form__popup.is-open {
    display: block;
}

.search-form__popup-link {
    color: #333333;
    text-decoration: none;
    padding: 3px 8px;
}

.search-form__popup-link:hover {
    background: rgba(0, 0, 0, .1);
    text-decoration: none;
}