/* FORM SHOULD NOT BREAK FLEX */
#searchBox {
    margin: 0;
}

/* FLEX CONTAINER */
.search-container {
    width: calc(100% - 30px);
    max-width: 480px;
    margin: 12px auto 16px;

    display: none;
    align-items: center;

    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);

    position: relative;
}

/* INPUT */
#searchInput {
    flex: 1;
    height: 44px;
    padding: 0 14px;
width: calc(70% - 30px);
    max-width: 480px;
    font-size: 16px;
    border: 2px solid #ff6600;
    /*border-right: none;*/
    border-radius: 8px 8px 8px 8px;

    outline: none;
}

/* BUTTON */
.search-btn {
    height: 44px;
    width: 46px;

    border: 2px solid #ff6600;
    border-left: none;

    background: #ff6600;
    color: #fff;
    font-size: 18px;

    cursor: pointer;
    border-radius: 8px 8px 8px 8px;

	/*display: flex;*/
    align-items: center;
    justify-content: center;
}

/* DROPDOWN */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
font-size: 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;

    z-index: 99;
    max-height: 250px;
    overflow-y: auto;
    display: none;
     font-family: "Inter", system-ui, sans-serif;
    font-size: 18px;
    line-height: 2.5;
    padding: 10px 14px;
    font-weight: 400;
    color: #333;
}

