.ProductSearchGrid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    column-gap: 40px;
}

@media (max-width: 650px) {
    .ProductSearchGrid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}

.ProductSearchGrid .FormGroup {
    margin-bottom: 20px;
}

.ProductSearchGrid .FormGroup label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.ProductSearchGrid .FormGroup select {
    display: block;
    height: 50px;
    font-weight: bold;
    padding: 10px;
    width: 100%;
}

.InfoBoxGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

@media (max-width: 1024px) {
    .InfoBoxGrid {
        display: flex;
        flex-direction: column-reverse;
        row-gap: 20px;
    }
}

.BG-Gray {
    background: #f6f6f6;
}

#Header {
    margin-bottom: 60px;
}

select {
    box-shadow:inset 0 0 3px rgba(0,0,0,.4);
}