header {
    height: 50px;
    background: white;
    padding: 10px 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    z-index: 10;
    top: 0;
    width: 100%;
}

#logo {
    max-height: 30px;
    float: left;
}

header>div {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

#search-bar-and-icon {
    max-width: 60%;
    min-width: 40%;
    padding: 5px;
    border-radius: 3px;
    background: #f0f0f0;
    align-items: center;
}

#search-bar-and-icon:hover {
    box-shadow: #888888 0px 0px 5px;
}

#search-bar {
    border: none;
    font-size: 14px;
    font-weight: 400;
    background: #f0f0f0;
    width: 70%;
}

#search-bar:focus {
    border: none;
    outline: none;
}

#search-bar::placeholder {
    color: #848484;
}

#search-icon {
    height: 20px;
    float: right;
}

#cart {
    float: right;
    margin: 5px 10px 0 0;
}