/**
 * BURSTY Stores - Online
 */

.grid-online {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 360px) {
    .grid-online {
        grid-template-columns: 1fr;
    }
}