/* options / sorting */
.options-form {
    width: 100vw;
    height: 6vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
    color: white;
}
.options-form select, .options-form input {
    height: 4vh;
    /*width: 10vw;*/
    border: 1px solid white;
    background-color: black;
    font-family: Helvetica, Arial, sans-serif;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 2vh;
    color: white;
}
.options-form input {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 4vh;
}

/* product display */
.product-row {
    width: 80vw;
    margin-left: 10vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 4vh;
}
.product-container {
    width: 15vw;
    border: 1px solid white;
}
.product-container .img {
    height: 12vw;
    width: 12vw;
    margin: 1.5vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-container .img img {
    height: 12vw;
}
.product-container a {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
    margin-left: 1.5vw;
    text-decoration: none;
    color: white;
}
.product-container span {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.5vh;
    margin-left: 1.5vw;
    padding-bottom: 1.5vw;
    color: lightgray;
}

/* responsive */
@media only screen and (max-width: 768px) {
    
    .options-form {
        margin-top: 4vh;
    }
    .product-row {
        width: 100vw;
        margin-left: 0;
        margin-bottom: 0;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
    .product-container {
        width: 75vw;
        text-align: center;
        margin-bottom: 6vh;
    }
    .product-container .img {
        height: 65vw;
        width: 65vw;
        margin: 5vw;
    }
    .product-container .img img {
        height: 65vw;
    }
    .product-container a {
        font-size: 4vh;
    }
    .product-container span {
        font-size: 2.5vh;
    }
    
}