/*
========================
search
========================
*/
.search_bar {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    border-radius: 999px;
    background-color: var(--wp--custom--color--neutral--50);
}

.search_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.search_icon svg {
    width: 16px;
    height: 16px;
    fill: var(--wp--custom--color--blue--400);
}

.search_input {
    border: none;
    background: none;
    outline: none;
    font-size: 10px;
    font-weight: 700;
}

.search_input::placeholder {
    color: var(--wp--custom--color--neutral--300);
}

.search_input[type="text"] {
    width: 100%;
    padding: 0;
    border: none;
}

.search_input[type="text"]:focus {
    outline: 0;
}

@media screen and (min-width: 1280px) {
    .btn_icon,
    .search_icon svg {
        width: 18px;
        height: 18px;
    }

    .search_input {
        font-size: 12px;
        line-height: 20px;
    }
}
