/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    ul.product-category-list li.item{
        width: 49%;   
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #frmMain{
        width: auto;
    }

    #home-page-photos .home-page-photos-buckets{
        flex-direction: row;
        justify-content: center;
    }
    #home-page-photos .bucket{
        flex: 0 1 25%;
    }
    ul.product-category-list li.item{
        width: 32%;   
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    :root {
        --content-spacing: 1.5rem;
    }
    body{
        background-image: url('/images/background.png');
        background-size: cover;
        background-attachment: fixed;
    }
    .section{
        padding: 0 var(--content-spacing);
        align-items: stretch;
    }
    .section.full-width{
        padding: var(--content-spacing);
    }
    .myrec-flex-row{
        flex-direction: row;
        align-items: stretch;
    }
    .myrec-flex-col{
        gap: var(--content-spacing);
    }
    .public-alert{
        padding: .5rem;
        font-size: var(--content-spacing);
        line-height: 1.75rem;
    }
    .main-content{
        padding: var(--content-spacing);
    }
    header .siteName{
        font-size: var(--content-spacing);
    }
    nav#myrec-main-nav{
        display: flex;
    }
    nav#myrec-mobile-nav{
        display: none;
    }
    #home-page-icons{
        justify-content: space-evenly;
        gap: 0;
        flex-wrap: nowrap;
    }
    #home-page-icons .home-page-icon{
        flex: 1;
    }
    #home-page-icons .home-page-icon .icon{
        font-size: 3.5rem;
    }
    .home-page-photos-list{
        flex-wrap: wrap;
    }
    #home-page-photos .home-page-photos-list .list-image img{
        width: 100%;
    }
    #home-page-photos .home-page-photos-list .list-image{
        width: 100%;
    }

    #home-page-photos .home-page-photos-list .list-photo{
        flex: 18%;
        max-width: 20%;
        gap: 0.5rem;
    }


    #program-list{
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: center;
    }
    #program-list .category{
        flex: 0 0 23%;
    }
    .myrec-account-nav{
        display: flex;
    }
    .overview-col{
        gap: .5rem;
    }
    #no-more-tables.form-table tr{
        flex-direction: row;
        gap: 2rem;
    }


    ul.product-category-list li.item{
        width: 19%;   
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
 #frmMain{
    width: 1000px;
 }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}