.product-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    background: #f6f6f6;
    width: 100%;
    padding: 10px 15px;
    line-height: 20px;
}

.short-name {
    font-size: 18px;
    font-weight: bold;
}

.Show-item {
    display: flex;
    align-items: center;
}

.form-control {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#searchBtn {
    display: inline-block;
    vertical-align: middle;
    padding: .85em 1em;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: 0;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    background-image: none;
    background-color: #049de3;
    border-radius: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}