.search_bar {
    display: flex;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 15px;
    width: max-content;
    background-color: var(--white);
    box-shadow: 0px 3px 19px #0000000D;
    margin: 0 auto;
}

.search_box {
    width: 330px;
    height: 46px;
    margin-right: 25px;
    padding: 0;
    padding-left: 25px;
    border: 2px solid var(--form-grey);
    color: var(--form-grey);
    border-radius: 5px;
    background-color: transparent;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    box-sizing: border-box;
}

.search_box::placeholder {
    color: var(--form-grey);
}

@media (max-width: 990px) {
    .search_bar {
        width: 80%;
    }

    .search_box {
        width: calc(100% - 138px - 25px);
    }
}

@media (max-width: 700px) {
    .search_bar {
        width: 100%;
    }

    .search_box {
        width: calc(100% - 138px - 25px);
    }
}


@media (max-width: 550px) {
    .search_bar {
        flex-direction: column;
    }

    .search_box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .search_button {
        width: 100%;
    }
}