:where(.search-container) {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    grid-area: features;

    :where(.search-label) {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: flex-end;
    }

    :where(.search-input) {
        border-radius: 5rem;
        background: transparent;
        padding: 0.5rem 2rem;
        color: var(--logo-color);
        border: solid var(--logo-color) 1px;
        
        &::placeholder {
            color: var(--logo-color);
        }

        &::-webkit-search-cancel-button {
            -webkit-appearance: none;
            background-color: var(--logo-color);
            -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
            background-size: 20px 20px;
            height: 20px;
            width: 20px;
        }

        &:is(:focus, :hover) + .search-icon {
            display: none;
        }
    }

    :where(.search-icon) {
        transform: translateX(-1.5rem);
        position: absolute;
        display: flex;

        & > svg {
            width: 1.5rem;

            & > path {
                fill: var(--logo-color);
            }
        }
    }
}


