search-bar
{
    width: 100%;
    max-width: 960px;
    background: #FAFAFA;
    display: flex;
    justify-content: center;
    padding-left: calc((100% - 960px) / 2);
    padding-right: calc((100% - 960px) / 2);
    padding-bottom: 64px;
}
search-bar .container
{
    width: 100%;
    position: relative;
}
search-bar svg
{
    width: 24px;
    height: 24px;
    position: absolute;
    left: 12px;
    top: 12px;
    pointer-events: none;
}
search-bar input
{
    display: flex;
    width: 100%;
    height: 48px;
    padding: 0px 12px 0px 44px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
    color: #702A2A;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    border: unset;
    outline: none;
}
