@media (min-width: 1025px) {
    .search-container {
        max-width: 325px;
        min-width: 325px;    
    }
}

@media (max-width: 1024px) {
    .suggestions {
        right: 0px;
    }

    .search-container {
        width: 100%;
        margin-right: 10px;
    }
}

.search-container {
    position: relative;
    box-sizing: border-box;
}

#keywordInput {
    width: 100%;
    flex: 1 1 80%;
    border: none;
    padding: 5px;
}

.suggestions {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #e9e9eb;
    border: 1px solid #e9e9eb;
    border-radius: 0 0 4px 4px;
    border-top: none;
    box-sizing: border-box;
    font-size: 14px;
    color: black;
    display: none;
    text-align: left;
}

.suggestions a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}

.suggestions li:hover {
    background-color: white;
    border-radius: none;
}

.suggestions li:last-child:hover {
    border-radius: 0 0 4px 4px;
    border-bottom: none;
}

.search-btn-clear,
.search-btn-submit {
    padding: 5px;
    color: #a2a2a8;
    flex: 1 1 10%;
}

.search-btn-clear:hover,
.search-btn-submit:hover {
    color: #262634;
    cursor: pointer;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: stretch;
    border: 1px solid #e9e9eb;
    border-radius: 4px;
    height: 42px;
    width: 100%;
}